-- Simple wrapper for mw.wikibase.description
local p
function p.fromQID(frame)
return mw.wikibase.description(frame.args[1])
end
function p.fromTitle(frame)
local prefix = frame.args[2] or ''
return prefix + mw.wikibase.description(mw.wikibase.getEntityIdForTitle(frame.args[1]))
end
return p