Пређи на садржај

Модул:Wikidata label

С Википедије, слободне енциклопедије

Документацију овог модула можете да направите на страници Модул:Wikidata label/док

local p = {}
 
function p.label( frame )
	return mw.wikibase.label( frame.args[1] )
end
 
function p.labelForLang( frame )
	local langcode = frame.args[1]
	local id = frame.args[2]	-- "id" must be nil, as access to other Wikidata objects is disabled in Mediawiki configuration
 
	return mw.wikibase.getEntityObject(id).labels[langcode].value
end
 
return p