אונטערשייד צווישן ווערסיעס פון "יחידה:באניצט אייגנשאפטן"

פון המכלול
קפיצה לניווט קפיצה לחיפוש
ק (rv)
 
(מכלוליזאציע)
 
(2 מיטלסטע ווערסיעס פון 2 באַניצער נישט געוויזן.)
שורה 4: שורה 4:
local parent = frame.getParent(frame)
local parent = frame.getParent(frame)
local result = ''
local result = ''
local ii = 1
for k,v in pairs(parent.args) do
while true do
local p_num = v or ''
local p_num = parent.args[ii] or ''
if p_num ~= '' then
if p_num ~= '' then
local label = mw.wikibase.label(p_num) or "NO LABEL"
local label = "NO LABEL"
result = result .. "<li><b>[[d:Property:" .. p_num .. "|" .. label ..
result = result .. "<li><b>[[d:Property:" .. p_num .. "|" .. label ..
frame:expandTemplate{title = "כ", args = {}} .. " <small>(" .. string.upper(p_num) .. ")</small>]]</b></li>"
frame:expandTemplate{title = "כ", args = {}} .. " <small>(" .. string.upper(p_num) .. ")</small>]]</b></li>"
ii = ii + 1
else break
end
end
end
end

יעצטיגע רעוויזיע זינט 01:41, 6 מערץ 2023

מען קען שאפן דאקומענטאציע פאר דעם מאדול ביי יחידה:באניצט אייגנשאפטן/דאק

local p = {}

function p.usesProperty(frame)
	local parent = frame.getParent(frame)
	local result = ''
	for k,v in pairs(parent.args) do
		local p_num = v or ''
		if p_num ~= '' then
			local label = "NO LABEL"
			result = result .. "<li><b>[[d:Property:" .. p_num .. "|" .. label ..
				frame:expandTemplate{title = "כ", args = {}} .. " <small>(" .. string.upper(p_num) .. ")</small>]]</b></li>"
		end
	end
	return result
end
 
return p