mirror of
https://github.com/luanti-org/luanti.git
synced 2025-08-26 18:21:04 +00:00
Fix various cases of double-escaped error messages
This commit is contained in:
parent
29b7aea38b
commit
e5a5d5a672
7 changed files with 18 additions and 18 deletions
|
@ -363,7 +363,7 @@ local function create_world_buttonhandler(this, fields)
|
|||
|
||||
local message
|
||||
if game == nil then
|
||||
message = fgettext("No game selected")
|
||||
message = fgettext_ne("No game selected")
|
||||
end
|
||||
|
||||
if message == nil then
|
||||
|
@ -382,7 +382,7 @@ local function create_world_buttonhandler(this, fields)
|
|||
end
|
||||
|
||||
if menudata.worldlist:uid_exists_raw(worldname) then
|
||||
message = fgettext("A world named \"$1\" already exists", worldname)
|
||||
message = fgettext_ne("A world named \"$1\" already exists", worldname)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue