Модуль:Wd/i18n: Розніца паміж версіямі

З Вікіпедыі, свабоднай энцыклапедыі
[недагледжаная версія][дагледжаная версія]
Змесціва выдалена Змесціва дададзена
Swen1221 (размовы | уклад)
др пачатак перакладу
Няма тлумачэння праўкі
Радок 1: Радок 1:
-- The values and functions in this submodule should be localized per wiki.
-- The values and functions in this submodule should be localized per wiki.


local p = {
local p = {}

["errors"] = {
function p.init(aliasesP)
["unknown-data-type"] = "Невядомы тып значэння даных '$1'.",
p = {
["missing-required-parameter"] = "Не зададзены параметр уласцівасці, неабходны па меншай меры адзін",
["errors"] = {
["extra-required-parameter"] = "Параметар '$1' павінен быць вызначаны як дадатковы",
["unknown-data-type"] = "Невядомы тып значэння даных '$1'.",
["no-function-specified"] = "You must specify a function to call", -- equal to the standard module error message
["missing-required-parameter"] = "Не зададзены параметр уласцівасці, неабходны па меншай меры адзін",
["main-called-twice"] = 'The function "main" cannot be called twice',
["extra-required-parameter"] = "Параметр '$1' павінен быць вызначаны як дадатковы",
["no-such-function"] = 'The function "$1" does not exist' -- equal to the standard module error message
["no-function-specified"] = "Трэба задаць функцыю для выкліку", -- equal to the standard module error message
},
["main-called-twice"] = 'Функцыя main не можа быць выклікана двойчы',
["numeric"] = {
["no-such-function"] = ' Фнукцыя "$1 не існуе' -- equal to the standard module error message
["decimal-mark"] = ",",
["delimiter"] = " "
},
["datetime"] = {
["prefixes"] = {
["decade-period"] = ""
},
},
["suffixes"] = {
["info"] = {
["edit-on-wikidata"] = "Рэдагаваць у Вікідадзеных"
["decade-period"] = "s",
["millennium"] = " millennium",
["century"] = " century",
["million-years"] = " million years",
["billion-years"] = " billion years",
["year"] = " year",
["years"] = " years"
},
},
["numeric"] = {
["julian-calendar"] = "Julian calendar", -- linked page title
["julian"] = "Julian",
["decimal-mark"] = ".",
["BCE"] = "BCE",
["delimiter"] = ","
},
["CE"] = "CE",
["datetime"] = {
["common-era"] = "Common Era" -- linked page title
["prefixes"] = {
},
["coord"] = {
["decade-period"] = ""
},
["latitude-north"] = "N",
["latitude-south"] = "S",
["suffixes"] = {
["longitude-east"] = "E",
["decade-period"] = "",
["longitude-west"] = "W",
["millennium"] = " тысячагоддзе",
["degrees"] = "°",
["century"] = " стагоддзе",
["minutes"] = "'",
["million-years"] = " мільёнаў гадоў",
["seconds"] = '"',
["billion-years"] = " мільярдаў гадоў",
["separator"] = ", "
["year"] = " год",
["years"] = " гады"
},
},
["values"] = {
["julian-calendar"] = "Юліянскі каляндар", -- linked page title
["unknown"] = "unknown",
["none"] = "none"
["julian"] = "Юліянскі",
["BCE"] = "да н.э.",
},
["CE"] = "н.э.",
["cite"] = {
["common-era"] = "нашай эры" -- linked page title
["cite-web"] = "Cite web", -- title of template equivalent to [[:en:Template:Cite web]], leave empty (i.e. "") to use default rendering
},
["cite-q"] = "Cite Q", -- title of template equivalent to [[:en:Template:Cite Q]], leave empty (i.e. "") to use default rendering
["url"] = "url",
["coord"] = {
["title"] = "title",
["latitude-north"] = "N",
["website"] = "website",
["latitude-south"] = "S",
["date"] = "date",
["longitude-east"] = "E",
["access-date"] = "access-date",
["longitude-west"] = "W",
["archive-url"] = "archive-url",
["degrees"] = "°",
["archive-date"] = "archive-date",
["minutes"] = "'",
["author"] = "author",
["seconds"] = '"',
["publisher"] = "publisher",
["separator"] = ", "
},
["quote"] = "quote",
["language"] = "language",
["values"] = {
["pages"] = "pages",
["unknown"] = "невядомы",
["chapter"] = "chapter"
["none"] = "няма"
},
["cite"] = {
["version"] = "2", -- increment this each time the below parameters are changed to avoid conflict errors
["web"] = {
-- <= left side: all allowed reference properties for *web page sources* per https://www.wikidata.org/wiki/Help:Sources
-- => right side: corresponding parameter names in (equivalent of) [[:en:Template:Cite web]] (if non-existent, keep empty i.e. "")
[aliasesP.statedIn] = "website",
[aliasesP.referenceURL] = "url",
[aliasesP.publicationDate] = "date",
[aliasesP.retrieved] = "access-date",
[aliasesP.title] = "title",
[aliasesP.archiveURL] = "archive-url",
[aliasesP.archiveDate] = "archive-date",
[aliasesP.language] = "language",
[aliasesP.author] = "author", -- existence of author1, author2, author3, etc. is assumed
[aliasesP.publisher] = "publisher",
[aliasesP.quote] = "quote",
[aliasesP.pages] = "pages" -- extra option
},
["q"] = {
-- <= left side: all allowed reference properties for *sources other than web pages* per https://www.wikidata.org/wiki/Help:Sources
-- => right side: corresponding parameter names in (equivalent of) [[:en:Template:Cite Q]] (if non-existent, keep empty i.e. "")
[aliasesP.statedIn] = "1",
[aliasesP.pages] = "pages",
[aliasesP.column] = "at",
[aliasesP.chapter] = "chapter",
[aliasesP.sectionVerseOrParagraph] = "section",
["external-id"] = "id", -- used for any type of database property ID
[aliasesP.title] = "title",
[aliasesP.publicationDate] = "date",
[aliasesP.retrieved] = "access-date"
}
}
}
}
}


function p.getOrdinalSuffix(num)
p.getOrdinalSuffix = function(num)
if tostring(num):sub(-2,-2) == '1' then
if tostring(num):sub(-2,-2) == '1' then
return "th" -- 10th, 11th, 12th, 13th, ... 19th
return "th" -- 10th, 11th, 12th, 13th, ... 19th
end

num = tostring(num):sub(-1)

if num == '1' then
return "st"
elseif num == '2' then
return "nd"
elseif num == '3' then
return "rd"
else
return "th"
end
end
end

p.addDelimiters = function(n)
num = tostring(num):sub(-1)
local left, num, right = string.match(n, "^([^%d]*%d)(%d*)(.-)$")

if num == '1' then
if left and num and right then
return "st"
return left .. (num:reverse():gsub("(%d%d%d)", "%1" .. p['numeric']['delimiter']):reverse()) .. right
elseif num == '2' then
else
return "nd"
return n
elseif num == '3' then
end
return "rd"
else
return "th"
end
end
end


return p
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
end



Версія ад 09:32, 3 сакавіка 2021

Дакументацыю да гэтага модуля можна стварыць у Модуль:Wd/i18n/Дакументацыя

-- The values and functions in this submodule should be localized per wiki.

local p = {}

function p.init(aliasesP)
	p = {
		["errors"] = {
	   	    ["unknown-data-type"]          = "Невядомы тып значэння даных '$1'.",
		    ["missing-required-parameter"] = "Не зададзены параметр уласцівасці, неабходны па меншай меры адзін",
		    ["extra-required-parameter"]   = "Параметр '$1' павінен быць вызначаны як дадатковы",
		    ["no-function-specified"]      = "Трэба задаць функцыю для выкліку",  -- equal to the standard module error message
		    ["main-called-twice"]          = 'Функцыя main не можа быць выклікана двойчы',
		    ["no-such-function"]           = ' Фнукцыя "$1 не існуе'  -- equal to the standard module error message
		},
		["info"] = {
			["edit-on-wikidata"] = "Рэдагаваць у Вікідадзеных"
		},
		["numeric"] = {
			["decimal-mark"] = ".",
			["delimiter"]    = ","
		},
		["datetime"] = {
			["prefixes"] = {
				["decade-period"] = ""
			},
			["suffixes"] = {
				["decade-period"] = "-я",
				["millennium"]    = " тысячагоддзе",
				["century"]       = " стагоддзе",
				["million-years"] = " мільёнаў гадоў",
				["billion-years"] = " мільярдаў гадоў",
				["year"]          = " год",
				["years"]         = " гады"
			},
			["julian-calendar"] = "Юліянскі каляндар",  -- linked page title
			["julian"]          = "Юліянскі",
			["BCE"]             = "да н.э.",
			["CE"]              = "н.э.",
			["common-era"]      = "нашай эры"  -- linked page title
		},
		["coord"] = {
			["latitude-north"] = "N",
			["latitude-south"] = "S",
			["longitude-east"] = "E",
			["longitude-west"] = "W",
			["degrees"]        = "°",
			["minutes"]        = "'",
			["seconds"]        = '"',
			["separator"]      = ", "
		},
		["values"] = {
			["unknown"] = "невядомы",
			["none"]    = "няма"
		},
		["cite"] = {
			["version"] = "2",  -- increment this each time the below parameters are changed to avoid conflict errors
			["web"] = {
				-- <= left side: all allowed reference properties for *web page sources* per https://www.wikidata.org/wiki/Help:Sources
				-- => right side: corresponding parameter names in (equivalent of) [[:en:Template:Cite web]] (if non-existent, keep empty i.e. "")
				[aliasesP.statedIn]        = "website",
				[aliasesP.referenceURL]    = "url",
				[aliasesP.publicationDate] = "date",
				[aliasesP.retrieved]       = "access-date",
				[aliasesP.title]           = "title",
				[aliasesP.archiveURL]      = "archive-url",
				[aliasesP.archiveDate]     = "archive-date",
				[aliasesP.language]        = "language",
				[aliasesP.author]          = "author",  -- existence of author1, author2, author3, etc. is assumed
				[aliasesP.publisher]       = "publisher",
				[aliasesP.quote]           = "quote",
				[aliasesP.pages]           = "pages"  -- extra option
			},
			["q"] = {
				-- <= left side: all allowed reference properties for *sources other than web pages* per https://www.wikidata.org/wiki/Help:Sources
				-- => right side: corresponding parameter names in (equivalent of) [[:en:Template:Cite Q]] (if non-existent, keep empty i.e. "")
				[aliasesP.statedIn]                = "1",
				[aliasesP.pages]                   = "pages",
				[aliasesP.column]                  = "at",
				[aliasesP.chapter]                 = "chapter",
				[aliasesP.sectionVerseOrParagraph] = "section",
				["external-id"]                    = "id",  -- used for any type of database property ID
				[aliasesP.title]                   = "title",
				[aliasesP.publicationDate]         = "date",
				[aliasesP.retrieved]               = "access-date"
			}
		}
	}

	p.getOrdinalSuffix = function(num)
		if tostring(num):sub(-2,-2) == '1' then
			return "th"  -- 10th, 11th, 12th, 13th, ... 19th
		end

		num = tostring(num):sub(-1)

		if num == '1' then
			return "st"
		elseif num == '2' then
			return "nd"
		elseif num == '3' then
			return "rd"
		else
			return "th"
		end
	end

	p.addDelimiters = function(n)
		local left, num, right = string.match(n, "^([^%d]*%d)(%d*)(.-)$")

		if left and num and right then
			return left .. (num:reverse():gsub("(%d%d%d)", "%1" .. p['numeric']['delimiter']):reverse()) .. right
		else
			return n
		end
	end

	return p
end

return p