aboutsummaryrefslogtreecommitdiff
path: root/advtrains/couple.lua
diff options
context:
space:
mode:
authorY. Wang <yw05@forksworld.de>2023-10-04 22:14:18 +0200
committerY. Wang <yw05@forksworld.de>2024-04-13 10:36:35 +0200
commita4a2cf7fa02c68473e0b667c42ddba67dd765115 (patch)
tree4d9122e2d069e97e28826a1e2dfe84e5e0d27a8f /advtrains/couple.lua
parente842c2889e828feb0fe274b5eb5f5eea5ca4bec9 (diff)
downloadadvtrains-a4a2cf7fa02c68473e0b667c42ddba67dd765115.tar.gz
advtrains-a4a2cf7fa02c68473e0b667c42ddba67dd765115.tar.bz2
advtrains-a4a2cf7fa02c68473e0b667c42ddba67dd765115.zip
Fix some translations strings in the source file
Diffstat (limited to 'advtrains/couple.lua')
-rw-r--r--advtrains/couple.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/advtrains/couple.lua b/advtrains/couple.lua
index d82e193..9474dcf 100644
--- a/advtrains/couple.lua
+++ b/advtrains/couple.lua
@@ -335,11 +335,11 @@ function advtrains.check_matching_coupler_types(t1, t1_front, t2, t2_front)
for typ,_ in pairs(t1_cplt) do
table.insert(t1_cplhr, advtrains.coupler_types[typ] or typ)
end
- if #t1_cplhr==0 then t1_cplhr[1]=attrans("<none>") end
+ if #t1_cplhr==0 then t1_cplhr[1]=attrans("<No coupler>") end
for typ,_ in pairs(t2_cplt) do
table.insert(t2_cplhr, advtrains.coupler_types[typ] or typ)
end
- if #t2_cplhr==0 then t2_cplhr[1]=attrans("<none>") end
+ if #t2_cplhr==0 then t2_cplhr[1]=attrans("<No coupler>") end
return false, attrans("Can not couple: The couplers of the trains do not match (@1 and @2).", table.concat(t1_cplhr, ","), table.concat(t2_cplhr, ","))
end