Modul:Uses Wikidata

Saking Wikipédia

Dokuméntasi antuk modul puniki prasida kakardi ring Modul:Uses Wikidata/doc

local p = {}

function p.usesProperty(frame)
	local parent = frame.getParent(frame)
	local result = ''
	local ii = 1
	while true do
		local p_num = mw.text.trim(parent.args[ii] or '')
		if p_num ~= '' then
			local label = mw.wikibase.label(p_num) or "TEN WENTEN LABEL"
			result = result .. "<li><b><i>[[d:Property:" .. p_num .. "|" .. label .. " <small>(" .. string.upper(p_num) .. ")</small>]]</i></b> (lihat [[d:Property talk:" .. p_num .. "|pembicaraan]]; [[d:Special:WhatLinksHere/Property:" .. p_num .. "|kegunaan]])</li>"
			ii = ii + 1
		else break
		end
	end
	return result
end

function p.tuProperty(frame)
	local parent = frame.getParent(frame)
	local result = ''
	local ii = 1
	while true do
		local p_num = mw.text.trim(parent.args[ii] or '')
		if p_num ~= '' then
			local label = mw.wikibase.label(p_num) or "TEN WENTEN LABEL"
			result = result .. "<ul><li><span style='font-size:90%;line-height:1;'>●</span>&nbsp;&nbsp;<b>[[d:Property:" .. p_num .. "|" .. label .. "]]</b> <span style='font-size:90%;'>([[d:Property talk:" .. string.upper(p_num) .. "|" .. p_num .. "]])</span></li></ul>"
			ii = ii + 1
		else break
		end
	end
	return result
end

return p