Modul:WikidataIB/i18n: Forskjell mellom sideversjoner
Hopp til navigering
Hopp til søk
Ingen redigeringsforklaring |
m 14 sideversjoner ble importert |
||
| (12 mellomliggende versjoner av 3 brukere er ikke vist) | |||
| Linje 1: | Linje 1: | ||
local i18n = | local p = {} | ||
{ | |||
p.i18n = { | |||
["errors"] = | ["errors"] = | ||
{ | { | ||
| Linje 30: | Linje 31: | ||
}, | }, | ||
["filespace"] = "Fil", | ["filespace"] = "Fil", | ||
["Unknown"] = " | ["Unknown"] = "ukjent", | ||
["NaN"] = "Ikke et nummer", | ["NaN"] = "Ikke et nummer", | ||
-- set the following to the name of a tracking category, | -- set the following to the name of a tracking category, | ||
-- e.g. "[[Category:Articles with missing Wikidata information]]", or "" to disable: | -- e.g. "[[Category:Articles with missing Wikidata information]]", or "" to disable: | ||
["missinginfocat"] = "[[ | ["missinginfocat"] = "[[Kategori:Artikler hvor elementer mangler oversatte etiketter]]", | ||
["editonwikidata"] = "Rediger på Wikidata", | ["editonwikidata"] = "Rediger på Wikidata", | ||
["latestdatequalifier"] = function (date) return "before " .. date end, | ["latestdatequalifier"] = function (date) return "before " .. date end, | ||
| Linje 44: | Linje 45: | ||
[3] = " tusen", | [3] = " tusen", | ||
[6] = " million", | [6] = " million", | ||
[9] = " | [9] = " milliard", | ||
[12] = " | [12] = " billion", | ||
} | } | ||
} | } | ||
return p | |||
Siste sideversjon per 22. apr. 2026 kl. 01:10
Dokumentasjon for denne modulen kan opprettes på Modul:WikidataIB/i18n/dok
local p = {}
p.i18n = {
["errors"] =
{
["property-not-found"] = "Property not found.",
["No property supplied"] = "No property supplied",
["entity-not-found"] = "Wikidata entity not found.",
["unknown-claim-type"] = "Unknown claim type.",
["unknown-entity-type"] = "Unknown entity type.",
["qualifier-not-found"] = "Qualifier not found.",
["site-not-found"] = "Wikimedia project not found.",
["labels-not-found"] = "No labels found.",
["descriptions-not-found"] = "No descriptions found.",
["aliases-not-found"] = "No aliases found.",
["unknown-datetime-format"] = "Unknown datetime format.",
["local-article-not-found"] = "Article is available on Wikidata, but not on Wikipedia",
["dab-page"] = " (dab)",
},
["months"] =
{
"Januar", "Februar", "Mars", "April", "Mai", "Juni",
"Juli", "August", "September", "Oktober", "November", "Desember"
},
["century"] = "århundre",
["BC"] = "f.Kr",
["BCE"] = "f.Kr",
["ordinal"] =
{
["default"] = "."
},
["filespace"] = "Fil",
["Unknown"] = "ukjent",
["NaN"] = "Ikke et nummer",
-- set the following to the name of a tracking category,
-- e.g. "[[Category:Articles with missing Wikidata information]]", or "" to disable:
["missinginfocat"] = "[[Kategori:Artikler hvor elementer mangler oversatte etiketter]]",
["editonwikidata"] = "Rediger på Wikidata",
["latestdatequalifier"] = function (date) return "before " .. date end,
-- some languages, e.g. Bosnian use a period as a suffix after each number in a date
["datenumbersuffix"] = "",
["list separator"] = ", ",
["multipliers"] = {
[0] = "",
[3] = " tusen",
[6] = " million",
[9] = " milliard",
[12] = " billion",
}
}
return p