مواد ڏانھن هلو

ماڊيول:High-use

کليل ڄاڻ چيڪلي، وڪيپيڊيا مان


هي ماڊيول {{High-use}} کي لاڳو ڪري ٿو۔ جڏهن دستياب هجن، ته هي بوٽ ذريعي اپڊيٽ ٿيل قدرن کي Module:Transclusion_count/data/ جي ذيلي صفحن مان استعمال ڪري ٿو۔


local p = {}

local _fetch = require('Module:Transclusion_count').fetch

function p.num(frame, count)
	if count == nil then count = _fetch(frame) end
	
	-- آئوٽ پٽ متن تيار ڪريو
	local return_value = ""
	if count == nil then
		if frame.args[1] == "risk" then
			return_value = "تمام وڏي انگ ۾"
		else
			return_value = "گھڻن"
		end
	else
		-- ننڍن انگن لاءِ 2 significant figures ۽ وڏن لاءِ 3
		local sigfig = 2
		if count >= 100000 then
			sigfig = 3
		end
		
		-- مناسب significant figures موجب گول ڪرڻ جي تياري
		local f = math.floor(math.log10(count)) - sigfig + 1
		
		-- مناسب هنڌ تي گول ڪريو، ۽ "لڳ ڀڳ" يا "+" شامل ڪريو
		if (frame.args[2] == "yes") or (mw.ustring.sub(frame.args[1],-1) == "+") then
			-- هيٺئين پاسي گول ڪريو
			return_value = string.format("%s+", mw.getContentLanguage():formatNum(math.floor( (count / 10^(f)) ) * (10^(f))) )
		else
			-- ويجهي انگ تائين گول ڪريو
			return_value = string.format("لڳ ڀڳ %s", mw.getContentLanguage():formatNum(math.floor( (count / 10^(f)) + 0.5) * (10^(f))) )
		end
		
		-- سڀني صفحن جو سيڪڙو شامل ڪريو
		if frame.args["all-pages"] and frame.args["all-pages"] ~= "" then
			local percent = math.floor( ( (count/frame:callParserFunction('NUMBEROFPAGES', 'R') ) * 100) + 0.5)
			return_value = string.format("%s صفحا، جيڪي سڀني مان لڳ ڀڳ %s%% آهن", return_value, percent)
		end	
	end
	
	return return_value
end

function p.risk(frame)
	local return_value = ""
	if frame.args[1] == "risk" then
		return_value = "risk"
	else
		local count = _fetch(frame)
		if count and count >= 100000 then return_value = "risk" end
	end
	return return_value
end

function p.text(frame, count)
	if count == nil then count = _fetch(frame) end
	local return_value = {}
	
	local title = mw.title.getCurrentTitle()
	if title.subpageText == "doc" or title.subpageText == "sandbox" then
		title = title.basePageTitle
	end
	
	local templatecount = string.format("https://tools.wmflabs.org/templatecount/index.php?lang=en&namespace=%s&name=%s",mw.title.getCurrentTitle().namespace,mw.uri.encode(title.text))
	
	local used_on_text = string.format("'''هي %s [%s %s صفحن] تي استعمال ٿئي ٿو'''",
			(mw.title.getCurrentTitle().namespace == 828 and "Lua ماڊيول" or "سانچو"),
			templatecount,
			p.num(frame, count)
	)
	
	local sandbox_text =  string.format("%s جي [[%s/sandbox|/sandbox]] يا [[%s/testcases|/testcases]] ذيلي صفحن%s ",
			(mw.title.getCurrentTitle().namespace == 828 and "ماڊيول" or "سانچي"),
			title.fullText, title.fullText,
			(mw.title.getCurrentTitle().namespace == 828 and "۔" or "، يا پنهنجي [[Wikipedia:Subpages#How to create user subpages|يوزر ذيلي صفحي]] ۾۔")
	)
	
	if (frame.args[1] == "risk" or (count and count >= 100000) ) then
		local info = "" 
		if frame.args["info"] and frame.args["info"] ~= "" then
			info = "<br />" .. frame.args["info"]
		end
		sandbox_text = string.format("۔%s<br /> وڏي پيماني جي رنڊڪ ۽ سرور تي غير ضروري بار کان بچڻ لاءِ، ان ۾ ڪا به تبديلي ڪرڻ کان اڳ %s ۾ آزمائجي۔ آزمودل تبديليون پوءِ هڪ ئي ترميم ۾ هن صفحي ۾ شامل ڪري سگهجن ٿيون۔&#x20;",
				info, sandbox_text
		)
	else
		sandbox_text = string.format("، تنهن ڪري ان ۾ تبديليون وڏي پيماني تي نظر اينديون۔ مهرباني ڪري ڪنهن به تبديلي کي %s ۾ آزمائي ڏسو",
				sandbox_text
		)
	end
	
	local discussion_text = "مهرباني ڪري تبديليءَ بابت بحث "
	if frame.args["2"] and frame.args["2"] ~= "" and frame.args["2"] ~= "yes" then
		discussion_text = string.format("%s[[%s]] تي ڪريو", discussion_text, frame.args["2"])
	else
		discussion_text = string.format("%s[[%s|ڳالهه ٻولهه واري صفحي]] تي ڪريو", discussion_text, title.talkPageTitle.fullText )
	end
	
	return table.concat({used_on_text, sandbox_text, discussion_text, "، پوءِ انهن کي لاڳو ڪريو۔"})
end

function p.main(frame)
	local count = _fetch(frame)
	local return_value = ""
	local image = "[[File:Ambox warning yellow.svg|40px|alt=Warning|link=]]"
	local type_param = "style"
	if (frame.args[1] == "risk" or (count and count >= 100000) ) then
		image = "[[File:Ambox warning orange.svg|40px|alt=Warning|link=]]"
		type_param = "content"
	end
	
	if frame.args["form"] == "editnotice" then
		return_value = frame:expandTemplate{
				title = 'editnotice',
				args = {
						["image"] = image,
						["text"] = p.text(frame, count),
						["expiry"] = (frame.args["expiry"] or "")
				}
		}
	else
		return_value = frame:expandTemplate{
				title = 'ombox',
				args = {
						["type"] = type_param,
						["image"] = image,
						["text"] = p.text(frame, count),
						["expiry"] = (frame.args["expiry"] or "")
				}
		}
	end
	
	return return_value
end

return p