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

-- Excepcions per a function getLabel
local infoboxLabelsFromId = {
}

-- Correccions d'etiquetes de forma adequada per a una infotaula (paràmetre label)
-- S'usa a function claim amb case=infoboxlabel
local infoboxlabels = {
}

-- Canvis en valors necessaris per a una infotaula (paràmetre data)
local infoboxdata = {
}

-- Codi de funcions de suport

local function fixInfoboxLabel(label, type)
	local lang = mw.language.getContentLanguage()
	label = lang:lcfirst(label)
	if infoboxlabels[label] then
		label = infoboxlabels[label]
	else
		label = string.gsub(label, " %(.+", "")
		if type == "adm" then
			label = string.gsub(label, " de .+", "")
			label = string.gsub(label, " dels? .+", "")
			label = string.gsub(label, " d'.+", "")
			if label == 'estat' then
				label = 'estat federat'
			end
		end
	end
	
	return lang:ucfirst(label)
end


local function fixInfoboxData(label)
	return label
end

-- Return exported functions
return {
	infoboxLabelsFromId = infoboxLabelsFromId,
	fixInfoboxLabel = fixInfoboxLabel,
	fixInfoboxData = fixInfoboxData,
	}