Module:WikidataIB/i18n
Appearance
local i18n = {
["errors"] =
{
["property-not-found"] = "Property not found.",
["No property supplied"] = "No property supplied",
["entity-not-found"] = "Entity not found.",
["unknown-claim-type"] = "Unknown claim type.",
["unknown-entity-type"] = "Unknown entity type.",
["qualifier-not-found"] = "Qualifier not found.",
["site-not-found"] = "Site not found.",
["labels-not-found"] = "Labels not found.",
["descriptions-not-found"] = "Descriptions not found.",
["aliases-not-found"] = "Aliases not found.",
["unknown-datetime-format"] = "Unknown datetime format.",
["local-article-not-found"] = "Local article not found",
["dab-page"] = " (dab)",
},
["months"] =
{
"January", "February", "March", "April", "May", "June",
"July", "August", "September", "October", "November", "December"
},
["century"] = "century",
["BC"] = "BC",
["BCE"] = "BCE",
["ordinal"] =
{
[1] = "",
[2] = "",
[3] = "",
["default"] = ""
},
["filespace"] = "File",
["Unknown"] = "Unknown",
["NaN"] = "Not a Number",
-- set the following to the name of a tracking category,
-- e.g. "[[Category:Articles with missing Wikidata information]]", or "" to disable:
["missinginfocat"] = "[[Kategori:Articles without Wikidata information]]",
["editonwikidata"] = "Edit on 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] = " thousand",
[6] = " million",
[9] = " billion",
[12] = " trillion",
}
}
return {
i18n = i18n
}