Module:WikidataIB/i18n

Ón Vicipéid, an chiclipéid shaor.

Documentation for this module may be created at Module:WikidataIB/i18n/doc

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"] =
	{
		"Eanáir", "Feabhra", "Márta", "Aibreán", "Bealtaine", "Meitheamh",
		"Iúil", "Lúnasa", "Meán Fomhair", "Deireadh Fómhair", "Samhain", "Nollaig"
	},
	["century"] = "céad bliain",
	["BC"] = "RCh",
	["BCE"] = "RCh",
	["ordinal"] =
	{
		["default"] = "."
	},
	["filespace"] = "File",
	["Unknown"] = "Anaithnid",
	["NaN"] = "Ní Uimhir",
	-- set the following to the name of a tracking category,
	-- e.g. "[[Category:Articles with missing Wikidata information]]", or "" to disable:
	["missinginfocat"] = "[[Catagóir:Leathanaigh le faisnéis Wikidata ar iarraidh]]",
	["editonwikidata"] = "Cuir in eagar ar 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]  = " míle",
		[6]  = " milliún",
		[9]  = " billiún",
		[12] = " trilliún",
	}
}

return p