မဝ်ဂျူ:shn-headword

နူ ဝိက်ရှေန်နရဳ
ထာမ်ပလိက်တဏအ်ဒးနွံကဵုလိက်စၟတ်သမ္တီမချူလဝ်သာဓက။
သ္ပဂုန်တုဲထာမ်ပလိက်တဏအ်ဒးစၟတ်သမ္တီကဵုလိက်မချူလဝ်နူကဵုဓမံက်ထ္ၜးကဵုဗီုပြၚ်ကိစ္စမရန်တၟအ်လဝ် ကဵု ပရေၚ်မရပ်စပ်လ္တူမုက်လိက်နကဵုလိက်စၟတ်သမ္တီမချူလဝ်သာဓက

local export = {}
local pos_functions = {}

local lang = require("Module:languages").getByCode("shn")
local script = require("Module:scripts").getByCode("Mymr")
local PAGENAME = mw.title.getCurrentTitle().text

function export.show(frame)

	local args = frame:getParent().args
	local poscat = frame.args[1] or error("Part of speech has not been specified. Please pass parameter 1 to the module invocation.")
	
	local data = {lang = lang, sc = script, pos_category = poscat, categories = {}, heads = {args["head"] or PAGENAME}, inflections = {}}
	
	if args["cat2"] then
		
	end
	if args["cat3"] then
		
	end
	
	if pos_functions[poscat] then
		pos_functions[poscat](args, data)
	end

	local content = mw.title.new(PAGENAME):getContent()
	local code = mw.ustring.match(content, "{{shn%-pron[^}]*}}")

	if not code then
		
	end

	return require("Module:headword").full_headword(data)

end

pos_functions["နာမ်"] = function(args, data)

	local classifiers = {label = "ပါ်ခြာဂကူအဇာ"}

	if args[1] then
		for _,par in ipairs(args) do
			if par == "*" then
				table.insert(classifiers, PAGENAME) -- shorthand
				
				
			else
				table.insert(classifiers, par)
				
			end
		end
		table.insert(data.inflections, classifiers)
	end

end

pos_functions["ကြိယာ"] = function(args, data)

	local par1 = args[1]; if par1 == "" then par1 = nil end
	local par2 = args[2]; if par2 == "" then par2 = nil end
	local par3 = args[3]; if par3 == "" then par3 = nil end
	local abstract_forms = {label = "နာမ်စိတ္တဇ", accel = {form = "နာမ်စိတ္တဇ"}}

	if par1 ~= "-" then
		if not par1 then
			table.insert(abstract_forms, "လွင်ႈ" .. PAGENAME)
		else
			if par1 == "~" then
				table.insert(abstract_forms, "လွင်ႈ" .. PAGENAME)
				table.insert(abstract_forms, "တၢင်း" .. PAGENAME)
			else
				table.insert(abstract_forms, par1)
				table.insert(abstract_forms, par2)
				table.insert(abstract_forms, par3)
			end
		end
		table.insert(data.inflections, abstract_forms)
	end

end

pos_functions["နာမဝိသေသန"] = function(args, data)

	local par1 = args[1]; if par1 == "" then par1 = nil end
	local par2 = args[2]; if par2 == "" then par2 = nil end
	local par3 = args[3]; if par3 == "" then par3 = nil end
	local abstract_forms = {label = "နာမ်စိတ္တဇ", accel = {form = "နာမ်စိတ္တဇ"}}

	if par1 ~= "-" then
		if not par1 then
			table.insert(abstract_forms, "တၢင်း" .. PAGENAME)
		else
			table.insert(abstract_forms, par1)
			table.insert(abstract_forms, par2)
			table.insert(abstract_forms, par3)
		end
		table.insert(data.inflections, abstract_forms)
	end

end

-- same logic
pos_functions["ကြိယာဝိသေသန"] = pos_functions["နာမဝိသေသန"]
-- same logic
pos_functions["နာမ်မကိတ်ညဳ"] = pos_functions["နာမ်"]

return export