Mô đun:Trạm liền kề/i18n
Giao diện
Pages related to |
Mô đun:Trạm liền kề |
---|
(thảo luận | sandbox | sub-pages) |
{{Thông tin nhà ga}} |
(thảo luận | sandbox | testcases) |
{{Liên kết ga}} |
(thảo luận | sandbox | testcases) |
{{Đường sắt màu}} |
(thảo luận | sandbox | testcases) |
{{Tuyến liên kết}} |
(thảo luận | sandbox | testcases) |
{{Biểu trưng đường sắt}} |
(thảo luận | sandbox | testcases) |
{{Rail color box}} |
(thảo luận | sandbox | testcases) |
{{Trạm liền kề}} |
(thảo luận | sandbox | testcases) |
I18n dành cho Mô đun:Trạm liền kề
local p = {}
p = {
['vi'] = {
['preceding'] = function(s)
return s and 'Ga trước ' .. s
end,
['following'] = function(s)
return s and 'Ga sau ' .. s
end,
['stop_noun'] = 'Ga',
['nonstop_past'] = function(s)
return s and s .. ' did not stop here'
end,
['nonstop_present'] = function(s)
return s and s .. ' does not stop here'
end,
['comma'] = function(s)
return s and ', ' .. s
end,
['or'] = function(s)
return s and ' hoặc ' .. s
end,
['via-first'] = false, -- If the «via» text comes before termini, change to «true»
['via'] = function(s)
return s and ' via ' .. s
end,
['comma-format'] = ',%s+',
['or-format'] = '%s+or%s+',
['via-format'] = '%s+via%s+(.+)$', -- first match is station name
['towards'] = function(s)
return s and 'hướng đi ' .. s
end,
['through'] = function(s)
return s and 'through to ' .. s
end,
['reverse'] = 'Reverses direction',
['oneway'] = 'One-way operation',
['terminus'] = 'Ga cuối',
['transfer'] = function(s)
return s and 'transfer at ' .. s
end,
['error_duplicate'] = function(s)
return s and 'Same row number used multiple times for ' .. s
end,
['error_format'] = 'Station format table missing in data page',
['error_line'] = 'Lines table missing in data module',
['error_missing'] = function(s)
return s and '"' .. (s or '') .. '" is missing from the data page'
end,
['error_unknown'] = function(s)
return s and 'Unknown line "' .. (s or '') .. '"'
end
}
}
return p