Module:For: रिवीजन सभ के बीचा में अंतर

विकिपीडिया से
Content deleted Content added
छो १० revisions imported from en:Module:For
छो localization
 
लाइन 16: लाइन 16:
local use = args[1]
local use = args[1]
local category = ''
local category = ''
if (not use or use == 'other uses') and
if (not use or use == 'अन्य अर्थ') and
(not args.category or yesno(args.category)) then
(not args.category or yesno(args.category)) then
category = '[[श्रेणी:हैटनोट टेम्पलेट में अमान्य पैरामीटर के इस्तेमाल]]'
category = '[[Category:Hatnote templates using unusual parameters]]'
end
end
local pages = {}
local pages = {}

19:31, 4 नवंबर 2016 ले भइल नया बदलाव

मॉड्यूल बिबरनलेख[बनाईं]
local mArguments --initialize lazily
local yesno = require('Module:Yesno')
local mHatlist = require('Module:Hatnote list')
local mHatnote = require('Module:Hatnote')
local p = {}

--Implements {{For}} from the frame
--uses capitalized "For" to avoid collision with Lua reserved word "for"
function p.For (frame)
	mArguments = require('Module:Arguments')
	return p._For(mArguments.getArgs(frame))
end

--Implements {{For}} but takes a manual arguments table
function p._For (args)
	local use = args[1]
	local category = ''
	if (not use or use == 'अन्य अर्थ') and
		(not args.category or yesno(args.category)) then
			category = '[[श्रेणी:हैटनोट टेम्पलेट में अमान्य पैरामीटर के इस्तेमाल]]'
	end
	local pages = {}
	function two (a, b) return a, b, 1 end --lets us run ipairs from 2
	for k, v in two(ipairs(args)) do table.insert(pages, v) end
	return mHatnote._hatnote(
		mHatlist.forSeeTableToString({{use = use, pages = pages}}),
		{selfref = args.selfref}
	) .. category
end

return p