มอดูล:Adjacent stations/i18n
หน้าตา
local p = {}
p = {
['th-TH'] = {
['preceding'] = function(s)
return s and s .. 'ก่อนหน้า'
end,
['following'] = function(s)
return s and s .. 'ต่อไป'
end,
['stop_noun'] = 'สถานี',
['nonstop_past'] = function(s)
return s and s .. 'ไม่หยุดรับที่นี่'
end,
['nonstop_present'] = function(s)
return s and s .. 'ไม่หยุดรับที่นี่'
end,
['comma'] = function(s)
return s and ', ' .. s
end,
['or'] = function(s)
return s and ' หรือ ' .. s
end,
['via-first'] = false, -- If the «via» text comes before termini, change to «true»
['via'] = function(s)
return s and ' ผ่าน ' .. 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 'มุ่งหน้า ' .. s
end,
['through'] = function(s)
return s and 'มุ่งหน้าสู่ ' .. s
end,
['reverse'] = 'ทิศทางสวนกัน',
['oneway'] = 'ทิศทางเดียว',
['terminus'] = 'สถานีปลายทาง',
['transfer'] = function(s)
return s and 'เชื่อมต่อที่ ' .. 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