Module:Wd/i18n
Útlit
Hægt er að búa til leiðbeiningar fyrir þessa skriftu á Module:Wd/i18n/doc
-- The values and functions in this submodule should be localized per wiki.
local p = {}
function p.init(aliasesP)
p = {
["errors"] = {
["unknown-data-type"] = "Ukjend eller ikke støtta datatype '$1'.",
["missing-required-parameter"] = "Ingen påkrevde parametrar definerte, minst ein er krevd",
["extra-required-parameter"] = "Parameter '$1' må definerast om alternativt",
["no-function-specified"] = "Du må definera ein funksjon", -- equal to the standard module error message
["main-called-twice"] = 'Funksjonen "main" kan ikkje bli brukt to ganger',
["no-such-function"] = 'Funksjonen "$1" finst ikkje' -- equal to the standard module error message
},
["info"] = {
["edit-on-wikidata"] = "Endre på Wikidata"
},
["numeric"] = {
["decimal-mark"] = ",",
["delimiter"] = " "
},
["datetime"] = {
["prefixes"] = {
["decade-period"] = ""
},
["suffixes"] = {
["decade-period"] = "-åra",
["millennium"] = " tusenår",
["century"] = " hundreår",
["million-years"] = " millionar år",
["billion-years"] = " milliardar år",
["year"] = " år",
["years"] = " år"
},
["julian-calendar"] = "den julianske kalenderen", -- linked page title
["julian"] = "Julian",
["BCE"] = "f.Kr.",
["CE"] = "e.Kr.",
["common-era"] = "Kristi fødsel" -- linked page title
},
["coord"] = {
["latitude-north"] = "N",
["latitude-south"] = "S",
["longitude-east"] = "Ø",
["longitude-west"] = "V",
["degrees"] = "°",
["minutes"] = "'",
["seconds"] = '"',
["separator"] = " "
},
["values"] = {
["unknown"] = "ukjend",
["none"] = "ingen"
},
["cite"] = {
["version"] = "3", -- 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"] = {
-- => 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)
return "." -- 1. 10. osv
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