aboutsummaryrefslogtreecommitdiff
path: root/advtrains/protection.lua
diff options
context:
space:
mode:
authorY. Wang <yw05@forksworld.de>2023-10-04 15:45:02 +0200
committerY. Wang <yw05@forksworld.de>2024-04-13 10:36:35 +0200
commiteebec1093ab7d039ef46160c2488da7e732b51aa (patch)
tree65367c1efe62b8e111dbf2d5a18e26c480d7a6da /advtrains/protection.lua
parent65397c28ee56bb4458c41726ceb165e6405f119d (diff)
downloadadvtrains-eebec1093ab7d039ef46160c2488da7e732b51aa.tar.gz
advtrains-eebec1093ab7d039ef46160c2488da7e732b51aa.tar.bz2
advtrains-eebec1093ab7d039ef46160c2488da7e732b51aa.zip
Begin transition to .po files
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 83ead86..89e15eb 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, attrans.nopriv("track_builder", "build "..nears.."tracks"))
+ minetest.chat_send_player(pname, near and attrans("You are not allowed to build near tracks without the track_builder privilege.") or attrans("You are not allowed to build 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, attrans("You are not allowed to build "..nears.."tracks at this protected position."))
+ minetest.chat_send_player(pname, near and attrans("You are not allowed to build near tracks at this protected position.") or attrans("You are not allowed to build 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, attrans.nopriv("railway_operator", "operate turnouts and signals"))
+ minetest.chat_send_player(pname, attrans("You are not allowed to operate turnouts and signals without the 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