Jump to content

Մոդուլ:Հայերենի բարբառներ

Վիքիբառարան-ից
00:37, 18 Հուլիսի 2019 տարբերակ, ԱշոտՏՆՂ (Քննարկում | խմբագրումներ)
(տարբ.) ←Նախորդ տարբերակ | Ընթացիկ տարբերակ (տարբ.) | Հաջորդ տարբերակ→ (տարբ.)

Documentation for this module may be created at Մոդուլ:Հայերենի բարբառներ/doc

local data = mw.loadData("Մոդուլ:Հայերենի բարբառներ/տվյալներ")

local p = {}

function p.main( frame )
	local s = ""
	local title = mw.title.getCurrentTitle()
	local pargs = frame:getParent().args
	if title and title.namespace == 0 and not pargs["nocat"] then
		for i,v in ipairs(pargs) do
			if not data[v] == nil then
				s = s .. data[v] .. ", "
			end
		end
		s = s:sub(1, -4)
	end
	return s
end

return p