ထႅမ်းပလဵတ်ႉ ဢၼ်ၼႆႉ တိုၵ်ႉလူဝ်ႇ ၽိုၼ်ၵႅမ်မိုဝ်းမၼ်း။
ၶႅၼ်းတေႃႈ တႅမ်ႈပၼ် ၽိုၼ်ၵႅမ်မိုဝ်း ထႅမ်းပလဵတ်ႉ ဢၼ်ၼႆႉ သေ ၼႄပၼ် လွင်ႈယိူင်းဢၢၼ်း လႄႈ လၢႆးၸႂ်ႉတိုဝ်း ၵႃႈတီႈ ၼႃႈလိၵ်ႈ ၽိုၼ်ၵႅမ်မိုဝ်း သေၵမ်း။

local export = {}

local m_languages = require("Module:languages")

function export.categorize(lang, source, roots, ids, sort_key)
	local categories = {}
	
	if lang:getCode() ~= source:getCode() then
		table.insert(categories,
		"ဝေႃးႁၢၼ် " ..	lang:getCanonicalName() .. " ဢၼ်ၽႄႈတိူၼ်းမႃးတီႈ " .. source:getCanonicalName())
	end
	
	for index, root in ipairs(roots) do
		if lang:getCode() == source:getCode() then
			table.insert(categories,
				"ဝေႃးႁၢၼ် " .. lang:getCanonicalName() .. " ဢၼ်ပဵၼ် ငိူၼ်ႈငဝ်ႈတိုၼ်း ၶွင်း " .. root .. (ids[index] and " (" .. ids[index] .. ")" or ""))
		else
			table.insert(categories,
				"ဝေႃးႁၢၼ် " .. lang:getCanonicalName() .. " ဢၼ်ၽႄႈတိူၼ်းမႃးတီႈ " .. source:getCanonicalName() ..
						" root " .. root .. (ids[index] and " (" .. ids[index] .. ")" or ""))
		end
	end
	
	return require("Module:utilities").format_categories(categories, lang, sort_key)
end

function export.show(frame)
	local params = {
		[1] = { required = true },
		[2] = { required = true },
		[3] = { required = true, list = true },
		["id"] = { list = true, allow_holes = true },
		["sort"] = {},
	}
	
	local args = require("Module:parameters").process(frame:getParent().args, params)
	
	local lang = m_languages.getByCode(args[1]) or m_languages.error(args[1], 1)
	local source = m_languages.getByCode(args[2]) or m_languages.error(args[2], 2)
	
	return export.categorize(lang, source, args[3], args.id, args.sort)
end

return export