Modulis:Wd/i18n

Permanently protected module
Vikipēdijas lapa
Dokumentācijas ikona Moduļa dokumentācija[izveidot]
-- The values and functions in this submodule should be localized per wiki.

local p = {
	["errors"] = {
		["unknown-data-type"]          = "Unknown or unsupported datatype '$1'.",
		["missing-required-parameter"] = "No required parameters defined, needing at least one",
		["extra-required-parameter"]   = "Parameter '$1' must be defined as optional",
		["no-function-specified"]      = "You must specify a function to call",  -- equal to the standard module error message
		["main-called-twice"]          = 'The function "main" cannot be called twice',
		["no-such-function"]           = 'The function "$1" does not exist'  -- equal to the standard module error message
	},
	["numeric"] = {
		["decimal-mark"] = ",",
		["delimiter"]    = " "
	},
	["datetime"] = {
		["prefixes"] = {
			["decade-period"] = ""
		},
		["suffixes"] = {
			["decade-period"] = "s",
			["millennium"]    = " millennium",
			["century"]       = " gadsmits",
			["million-years"] = " million years",
			["billion-years"] = " billion years",
			["year"]          = " gads",
			["years"]         = " gadi"
		},
		["julian-calendar"] = "Julian calendar",  -- linked page title
		["julian"]          = "Julian",
		["BCE"]             = "BCE",
		["CE"]              = "CE",
		["common-era"]      = "Common Era"  -- linked page title
	},
	["coord"] = {
		["latitude-north"] = "N",
		["latitude-south"] = "S",
		["longitude-east"] = "E",
		["longitude-west"] = "W",
		["degrees"]        = "°",
		["minutes"]        = "'",
		["seconds"]        = '"',
		["separator"]      = ", "
	},
	["values"] = {
		["unknown"] = "nezināma",
		["none"]    = "nav"
	},
	["cite"] = {
		["cite-web"]     = "Cite web",  -- title of template equivalent to [[:en:Template:Cite web]], leave empty (i.e. "") to use default rendering
		["cite-q"]       = "",  -- title of template equivalent to [[:en:Template:Cite Q]], leave empty (i.e. "") to use default rendering
		["url"]          = "url",
		["title"]        = "title",
		["website"]      = "website",
		["date"]         = "date",
		["access-date"]  = "access-date",
		["archive-url"]  = "archive-url",
		["archive-date"] = "archive-date",
		["author"]       = "author",
		["publisher"]    = "publisher",
		["quote"]        = "quote",
		["language"]     = "language",
		["pages"]        = "pages",
		["chapter"]      = "chapter"
	}
}

function p.getOrdinalSuffix(num)
	return "."
end

function p.addDelimiters(n)
	local left, num, right = string.match(n, "^([^%d]*%d)(%d*)(.-)$")
	return left .. (num:reverse():gsub("(%d%d%d)", "%1" .. p['numeric']['delimiter']):reverse()) .. right
end

return p