ماژول:Finditem
نما
توضیحات این پودمان میتواند در ماژول:Finditem/توضیحات قرار گیرد.
local p = {}
local i18n =
{
["noentity"] = "[[category:صفحهئونی که ویکی دیتا ندارنه]]",
["nolabel"] = "[[category:صفحهئونی که وشون ویکی دیتا دگرس نییه]]"
}
function findlabelold(entity)
if entity
and entity.labels
and entity.labels['mzn']
and entity.labels['mzn'].value
then
local lang = entity.labels['mzn']
if lang['language'] == 'mzn'
then
return ''
else
return i18n.nolabel
end
end
end
function findlabel(id)
local label = mw.wikibase.getLabelByLang( id , 'mzn' ) or ''
if label ~= '' then return '' end
return i18n.nolabel
end
function p.find(frame)
if not mw.wikibase then return '' end
--local entity = mw.wikibase.getEntityObject()
local EntityId = mw.wikibase.getEntityIdForCurrentPage()
local er = i18n.noentity
if frame.args[1] ~= nil then er = frame.args[1] end
if EntityId then
return findlabel(EntityId)
else
-- This is the place to insert a category for articles that don't have items in Wikidata.
-- enwiki doesn't seem to have such a category, so in this case it is empty.
-- For other wikis, just remove the two comment dashes and insert the correct category name.
return er
end
end
return p