Modul:Wikidata/mirror/i18n

local i18n = {
	["errors"] = {
		["property-not-found"] = "Properti tidak ditemukan.",
		["qualifier-not-found"] = "Kualifier tidak ditemukan."
	},
	
	["datetime"] =
	{
		-- $1 is a placeholder for the actual number
		["beforenow"] = "fa $1",		-- how to format negative numbers for precisions 0 to 5
		["afternow"] = "d'aquí $1",		-- how to format positive numbers for precisions 0 to 5
		["bc"] = '$1 aC',				-- how print negative years
		["ad"] = "$1 dC",				-- how print 1st century AD dates
		[0] = "$1 mil milions d'anys",	-- precision: billion years
		[1] = "$100 milions d'anys",	-- precision: hundred million years
		[2] = "$10 milions d'anys",		-- precision: ten million years
		[3] = "$1 milions d'anys",		-- precision: million years
		[4] = "$100000 anys",			-- precision: hundred thousand years
		[5] = "$10000 anys",			-- precision: ten thousand years
		[8] = "dècada del $1",			-- precision: decade
		-- the following use the format of #time parser function
		[6] = '"mil·lenni" "<span style=\'font-variant:small-caps; text-transform:lowercase;\'>"xrY"</span>"',-- precision: millennium
		[7] = '"segle" "<span style=\'font-variant:small-caps; text-transform:lowercase;\'>"xrY"</span>"',-- precision: century
		[9] = "Y",						-- precision: year
		[10] = "F Y",					-- precision: month
		[11] = function(ts) return mw.ustring.match(ts, "\-(%d+)T") == "01" and 'j"r" F Y' or "j F Y" end, -- precision: day
	},
	
	["years-old"] = {
		["singular"] = "($1)",		-- year old, or nominative singular for 3 plural forms
		["plural"] = "($1)",		-- years old, or genitive plural for 3 plural forms
		["paucal"] = "",				-- genitive singular for 3 plural forms
	},
	
	["cite"] = {					-- Cite web parameters
		["url"]          = "url",
		["title"]        = "title",
		["website"]      = "website",
		["access-date"]  = "access-date",
		["archive-url"]  = "archive-url",
		["archive-date"] = "archive-date",
		["author"]       = "author",
		["publisher"]    = "publisher",
		["quote"]        = "quote",
		["language"]     = "bahasa",
		["date"]         = "data",
		["pages"]        = "pages"
	},
	
	-- local wiki settings
	["addpencil"] = true, -- adds a pencil icon linked to Wikidata statement, planned to overwrite by Wikidata Bridge
	["categorylabels"] = "", -- void for no local category
	["addfallback"] = {'ms', 'jv', 'es', 'gl', 'pt', 'an', 'ast', 'ext'} -- additional fallback language codes
}

-- Functions for local grammatical cases
local cases = {
	-- local fixes
	["infoboxlabel"] = function(word) return require("Modul:Wikidata/labels/mirror").fixInfoboxLabel(word) end,
	["infoboxdata"] = function(word) return require("Modul:Wikidata/labels/mirror").fixInfoboxData(word) end,
	-- plurals with rules in Catalan
	["plural"] = function(word, ...) if arg[1] == "ca" then return require("Module:ca-flexió").plural(word) end return word end,
	-- ordinal in Catalan, needs to be internationalised
	["ordinal"] = function(number, ...) if arg[1] == "ca" then return require("Module:ca-flexió").ordinal(number, arg[2]) end return number end,
	-- naming locations in Catalan manual of style, ...=arg{}, arg[1]=lang, arg[2]=Qid (location), arg[3]=Qid (article, no anachronisms)
	["location"] = function(label, ...) return require("Module:Location").naming(label, arg[2]) end,
	["locationcontext"] = function(label, ...) return require("Module:Location").naming(label, arg[2], arg[3]) end,
}

return {
	i18n = i18n,
	cases = cases
}