aboutsummaryrefslogtreecommitdiff
path: root/advtrains/protection.lua
diff options
context:
space:
mode:
authorywang <yw05@forksworld.de>2021-04-23 14:53:09 +0200
committerY. Wang <yw05@forksworld.de>2022-10-15 01:18:34 +0200
commit4df8595547cd60a0b8c581affec4139269e31b5b (patch)
tree042ed3ba314b4fb321b1618389eeca81608907b4 /advtrains/protection.lua
parentc1bf9b360160f9a9b242ba9234af28edd6ccfdd3 (diff)
downloadadvtrains-4df8595547cd60a0b8c581affec4139269e31b5b.tar.gz
advtrains-4df8595547cd60a0b8c581affec4139269e31b5b.tar.bz2
advtrains-4df8595547cd60a0b8c581affec4139269e31b5b.zip
Add strings for translation; add zh_TW translation
Diffstat (limited to 'advtrains/protection.lua')
-rw-r--r--advtrains/protection.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/advtrains/protection.lua b/advtrains/protection.lua
index 7474977..cca54a9 100644
--- a/advtrains/protection.lua
+++ b/advtrains/protection.lua
@@ -145,12 +145,12 @@ function advtrains.check_track_protection(pos, pname, near, prot_p)
--atdebug("CTP: ",pos,pname,near,prot_p,"priv=",priv,"prot=",prot,"dprot=",dprot)
if not priv and (not boo or prot or not dprot) then
- minetest.chat_send_player(pname, "You are not allowed to build "..nears.."tracks without track_builder privilege")
+ minetest.chat_send_player(pname, attrans("You are not allowed to build "..nears.."tracks without the track_builder privilege"))
minetest.log("action", pname.." tried to modify terrain "..nears.."track at "..minetest.pos_to_string(apos).." but is not permitted to (no privilege)")
return false
end
if prot then
- minetest.chat_send_player(pname, "You are not allowed to build "..nears.."tracks at protected position!")
+ minetest.chat_send_player(pname, attrans("You are not allowed to build "..nears.."tracks at this protected position"))
minetest.record_protection_violation(pos, pname)
minetest.log("action", pname.." tried to modify "..nears.."track at "..minetest.pos_to_string(apos).." but position is protected!")
return false
@@ -181,7 +181,7 @@ function advtrains.check_turnout_signal_protection(pos, pname)
nocheck=false
return true
else
- minetest.chat_send_player(pname, "You are not allowed to operate turnouts and signals (missing railway_operator privilege)")
+ minetest.chat_send_player(pname, attrans("You are not allowed to operate turnouts and signals (missing railway_operator privilege)"))
minetest.log("action", pname.." tried to operate turnout/signal at "..minetest.pos_to_string(pos).." but does not have railway_operator")
nocheck=false
return false