mirror of
https://github.com/moparisthebest/minetest
synced 2024-10-31 15:35:02 -04:00
Don't do formspec escaping twice for loading description
This commit is contained in:
parent
be9024a397
commit
25dfd1bbf5
@ -224,10 +224,10 @@ function menu_handle_key_up_down(fields,textlist,settingname)
|
||||
|
||||
configure_selected_world_params(newidx)
|
||||
end
|
||||
|
||||
|
||||
return true
|
||||
end
|
||||
|
||||
|
||||
return false
|
||||
end
|
||||
|
||||
@ -237,7 +237,7 @@ function asyncOnlineFavourites()
|
||||
if not menudata.public_known then
|
||||
menudata.public_known = {{
|
||||
name = fgettext("Loading..."),
|
||||
description = fgettext("Try reenabling public serverlist and check your internet connection.")
|
||||
description = fgettext_ne("Try reenabling public serverlist and check your internet connection.")
|
||||
}}
|
||||
end
|
||||
menudata.favorites = menudata.public_known
|
||||
@ -262,22 +262,22 @@ end
|
||||
--------------------------------------------------------------------------------
|
||||
function text2textlist(xpos,ypos,width,height,tl_name,textlen,text,transparency)
|
||||
local textlines = core.splittext(text,textlen)
|
||||
|
||||
|
||||
local retval = "textlist[" .. xpos .. "," .. ypos .. ";"
|
||||
.. width .. "," .. height .. ";"
|
||||
.. tl_name .. ";"
|
||||
|
||||
|
||||
for i=1, #textlines, 1 do
|
||||
textlines[i] = textlines[i]:gsub("\r","")
|
||||
retval = retval .. core.formspec_escape(textlines[i]) .. ","
|
||||
end
|
||||
|
||||
|
||||
retval = retval .. ";0;"
|
||||
|
||||
|
||||
if transparency then
|
||||
retval = retval .. "true"
|
||||
end
|
||||
|
||||
|
||||
retval = retval .. "]"
|
||||
|
||||
return retval
|
||||
|
Loading…
Reference in New Issue
Block a user