မဝ်ဂျူ:fi-headword

နူ ဝိက်ရှေန်နရဳ

Documentation for this module may be created at မဝ်ဂျူ:fi-headword/doc

local export = {}
local lang = require("Module:languages").getByCode("fi")
local m_utilities = require("Module:utilities")

export.adj = function(frame)
	local title = mw.title.getCurrentTitle().text
	local args = frame:getParent().args
	local data = {lang = lang, pos_category = "နာမဝိသေသန"}
	local categories = {}
	
	if args["head"] then
		data.heads = {args["head"]}
	end
	
	if not args[1] then
		
	elseif args[1] == "-" then
		data.inflections = {{ label = "not comparable" }}
		
	elseif not args[2] then
		table.insert(categories, "fi-adj with no 1 or 2")
	else
		local stem = args[1]
		local comp = {{term = stem .. args[2], accel = {form = "comparative"}}}
		local sup = {}
		
		for i = 3, 10 do
			if not args[i] then break end
			table.insert(sup, {term = stem .. args[i], accel = {form = "superlative"}})
		end
		
		if args["c2"] then
			table.insert(comp, {term = args["c2"], accel = {form = "comparative"}})
		elseif args["comp2"] then
			table.insert(comp, {term = args["comp2"], accel = {form = "comparative"}})
		end
		
		if args["c3"] then
			table.insert(comp, {term = args["c3"], accel = {form = "comparative"}})
		elseif args["comp3"] then
			table.insert(comp, {term = args["comp3"], accel = {form = "comparative"}})
		end
		
		data.inflections = {{label = "comparative", unpack(comp)}, {label = "superlative", unpack(sup)}}
	end
	
	data.categories = categories
	return require("Module:headword").full_headword(data)
end

return export