aboutsummaryrefslogtreecommitdiff
path: root/advtrains/atc.lua
diff options
context:
space:
mode:
authorywang <yw05@forksworld.de>2020-07-19 15:50:34 +0200
committerywang <yw05@forksworld.de>2020-07-19 16:21:08 +0200
commitcc78b63e342c131e2a08b3697681d9d5fbf86d4f (patch)
treed344fa9eac221c805d2364cbc48e9ee2209158b9 /advtrains/atc.lua
parent19509acf56aef4b6e5f45023ee5603e95822fe69 (diff)
downloadadvtrains-cc78b63e342c131e2a08b3697681d9d5fbf86d4f.tar.gz
advtrains-cc78b63e342c131e2a08b3697681d9d5fbf86d4f.tar.bz2
advtrains-cc78b63e342c131e2a08b3697681d9d5fbf86d4f.zip
[BREAKING] Use client-side translations instead of intllib; add zh_CN translations
* Client-side translations is used instead of intllib. [Breaks MT4 compat] * Existing locale files have been moved to advtrains/locale and named with the format advtrains.[lang].tr * Add zh_CN locale. (requires a font that supports CJK text)
Diffstat (limited to 'advtrains/atc.lua')
-rw-r--r--advtrains/atc.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/advtrains/atc.lua b/advtrains/atc.lua
index fa9f097..20f52b9 100644
--- a/advtrains/atc.lua
+++ b/advtrains/atc.lua
@@ -128,9 +128,9 @@ advtrains.atc_function = function(def, preset, suffix, rotation)
if fields.mode then
meta:set_string("mode", idxtrans[fields.mode])
if fields.mode=="digiline" then
- meta:set_string("infotext", attrans("ATC controller, mode @1\nChannel: @2", fields.mode, meta:get_string("command")) )
+ meta:set_string("infotext", attrans("ATC controller, mode @1\nChannel: @2", (fields.mode or "?"), meta:get_string("command")) )
else
- meta:set_string("infotext", attrans("ATC controller, mode @1\nCommand: @2", fields.mode, meta:get_string("command")) )
+ meta:set_string("infotext", attrans("ATC controller, mode @1\nCommand: @2", (fields.mode or "?"), meta:get_string("command")) )
end
meta:set_string("formspec", atc.get_atc_controller_formspec(pos, meta))
end
@@ -141,9 +141,9 @@ advtrains.atc_function = function(def, preset, suffix, rotation)
meta:set_string("command_on", fields.command_on)
meta:set_string("channel", fields.channel)
if fields.mode=="digiline" then
- meta:set_string("infotext", attrans("ATC controller, mode @1\nChannel: @2", fields.mode, meta:get_string("command")) )
+ meta:set_string("infotext", attrans("ATC controller, mode @1\nChannel: @2", (fields.mode or "?"), meta:get_string("command")) )
else
- meta:set_string("infotext", attrans("ATC controller, mode @1\nCommand: @2", fields.mode, meta:get_string("command")) )
+ meta:set_string("infotext", attrans("ATC controller, mode @1\nCommand: @2", (fields.mode or "?"), meta:get_string("command")) )
end
meta:set_string("formspec", atc.get_atc_controller_formspec(pos, meta))