মডিউল:পার্শ্ববর্তী স্টেশন/i18n

উইকিপিডিয়া, মুক্ত বিশ্বকোষ থেকে
মডিউল নথি[তৈরি করুন]
local p = {}

p = {
	['bn-BD'] = {
		['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 ' 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 'অভিমুখে ' .. s
		end,
		['through'] = function(s)
			return s and 'through to ' .. s
		end,
		['reverse'] = 'Reverses direction',
		['oneway'] = 'One-way operation',
		['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 'অজানা লাইন "' .. (s or '') .. '"'
		end
	}
}

return p