Module:Adjacent stations/i18n
- العربية
- تۆرکجه
- Basa Bali
- বাংলা
- 閩南語 / Bân-lâm-gú
- Беларуская
- भोजपुरी
- ChiTumbuka
- Dagbanli
- الدارجة
- Farefare
- فارسی
- Fiji Hindi
- Français
- ગુજરાતી
- 客家語 / Hak-kâ-ngî
- 한국어
- हिन्दी
- Hrvatski
- Bahasa Indonesia
- Jawa
- Kurdî
- Magyar
- मैथिली
- Македонски
- മലയാളം
- مصرى
- Bahasa Melayu
- Minangkabau
- 閩東語 / Mìng-dĕ̤ng-ngṳ̄
- မြန်မာဘာသာ
- नेपाली
- 日本語
- ਪੰਜਾਬੀ
- پنجابی
- Português
- Русский
- Sesotho
- සිංහල
- Simple English
- سنڌي
- Slovenščina
- کوردی
- Sunda
- Tagalog
- தமிழ்
- တႆး
- తెలుగు
- ไทย
- Türkçe
- Twi
- اردو
- Tiếng Việt
- ייִדיש
- 粵語
- 中文
- Kadazandusun
Appearance
From Wikipedia, the free encyclopedia
Pages related to |
Module:Adjacent stations |
---|
(talk | sandbox | sub-pages) |
{{Infobox station }} |
(talk | sandbox | testcases) |
{{Station link }} |
(talk | sandbox | testcases) |
{{Station icon link }} |
(talk | sandbox | testcases) |
{{Rail color }} |
(talk | sandbox | testcases) |
{{Line link }} |
(talk | sandbox | testcases) |
{{Rail icon }} |
(talk | sandbox | testcases) |
{{Rail color box }} |
(talk | sandbox | testcases) |
{{Adjacent stations }} |
(talk | sandbox | testcases) |
{{Line terminus link }} |
(talk | sandbox | testcases) |
I18n for Module:Adjacent stations
The above documentation is transcluded from Module:Adjacent stations/i18n/doc. (edit | history)
Editors can experiment in this module's sandbox (create | mirror) and testcases (create) pages.
Subpages of this module.
Editors can experiment in this module's sandbox (create | mirror) and testcases (create) pages.
Subpages of this module.
local p = {} p = { ['en-GB'] = { ['preceding'] = function(s) return s and 'Preceding ' .. s end, ['following'] = function(s) return s and 'Following ' .. s end, ['stop_noun'] = 'station', ['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 ' or ' .. 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 'towards ' .. s end, ['through'] = function(s) return s and 'through to ' .. s end, ['reverse'] = 'Reverses direction', ['oneway'] = 'One-way operation', ['terminus'] = 'Terminus', ['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 } } p['en-US'] = mw.clone(p['en-GB']) p['en-US']['towards'] = function(s) return s and 'toward ' .. s end p['en-AU'] = mw.clone(p['en-GB']) return p