יחידה:Adjacent stations/i18n

מתוך ויקיפדיה, האנציקלופדיה החופשית

ניתן ליצור תיעוד על היחידה הזאת בדף יחידה:Adjacent stations/i18n/תיעוד

local p = {}

p = {
	['he'] = {
		['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+או%s+',
		['via-format'] = '%s+דרך%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 'מספר שורה זהה בשימוש כמה פעמים עבור ' .. s
		end,
		['error_format'] = 'חסרה טבלת תחנה בדף הנתונים',
		['error_line'] = 'טבלת הקווים לא נמצאת ביחידה',
		['error_missing'] = function(s)
			return s and '"' .. (s or '') .. '" לא נמצא בדף המידע'
		end,
		['error_unknown'] = function(s)
			return s and 'קו לא ידוע "' .. (s or '') .. '"'
		end
	}
}

return p