La documentació d'ús d'aquest mòdul es pot crear a Mòdul:Wikidata/i18n/ús

local i18n = {
	["errors"] = {
		["property-not-found"] = "Propietat no trobada.",
		["qualifier-not-found"] = "Qualificador no trobat.",
	},
	
	["datetime"] =
	{
		-- $1 is a placeholder for the actual number, or use the format of #time parser function
		["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; thousand separators added afterwards
		[5] = "$10000 anys",			-- precision: ten thousand years; thousand separators added afterwards
		[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
		[8] = "dècada del $1",			-- precision: decade
		[9] = "$1",						-- 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
		
		["hms"] = {["hours"] = "h", ["minutes"] = "′", ["seconds"] = "″"},	-- duration: xh x′ x″
	},
	
	["years-old"] = {"($1 any)", "($1 anys)"}, -- year(s) old, as in {{PLURAL:$1|singular|plural}}
	
	["cite"] = {						-- cite parameters of local templates
		["title"]        = "títol",
		["author"]       = "autor",
		["date"]         = "data",
		["pages"]        = "pàgina",
		["language"]     = "llengua",
		-- cite web parameters
		["url"]			= "url",
		["website"]		= "obra",
		["access-date"]	= "consulta",
		["archive-url"]	= "arxiuurl",
		["archive-date"] = "arxiudata",
		["publisher"]	= "editor",
		["quote"]		= "citació",
		-- cite journal parameters
		["work"]		= "publicació",
		["issue"]		= "exemplar",
		["issn"]		= "issn",
		["doi"]			= "doi"
	},
	
	-- local wiki settings
	["addpencil"] = false, -- adds a pencil icon linked to Wikidata statement, planned to overwrite by Wikidata Bridge
	["categorylabels"] = "", -- void for no local category
	["addfallback"] = {} -- additional fallback language codes
}


-- Functions for local grammatical cases
local cases = {
	["infoboxlabel"] = function(word) return require("Module:Wikidata/labels").fixInfoboxLabel(word) end,
	["infoboxdata"] = function(word) return require("Module:Wikidata/labels").fixInfoboxData(word) end,
}

return {
	i18n = i18n,
	cases = cases
}