Bước tới nội dung

Mô đun:shn-headword

Từ điển mở Wiktionary

local export = {}
local pos_functions = {}

local lang = require("Module:languages").getByCode("shn")
local script = require("Module:scripts").getByCode("Mymr")
local PAGENAME = mw.loadData("Module:headword/data").pagename

function export.show(frame)

	local args = frame:getParent().args
	local poscat = frame.args[1] or error("Từ loại không được chỉ rõ. Vui lòng thêm tham số đầu tiên để gọi mô đun.")
	
	local head = args["head"]
	local tr = args["tr"]
	
	local data = {
		lang = lang,
		pos_category = poscat,
		categories = {},
		heads = {head},
		translits = {tr},
		inflections = {}
	}
	
	if args["cat2"] then
		table.insert(data.categories, args["cat2"] .. " tiếng Shan")
	end
	if args["cat3"] then
		table.insert(data.categories, args["cat3"] .. " tiếng Shan")
	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
		table.insert(data.categories, "Mục từ không có Bản mẫu:shn-pron tiếng Shan")
	end

	local letter = true
	local specialLetter = mw.ustring.gmatch(PAGENAME, '.-([ၵၶၸတၼပၽမလသ][ျြ]).-')
	while true do
		letter = specialLetter()
		if (not letter) then break end
		table.insert(data.categories, "Từ đánh vần với " .. letter .. " tiếng Shan")
	end

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

end

pos_functions["Danh từ"] = function(args, data)

	local classifiers = {label = "loại từ"}

	if args[1] then
		for _,par in ipairs(args) do
			if par == "*" then
				table.insert(classifiers, PAGENAME) -- shorthand
				table.insert(data.categories, "Loại từ tiếng Shan")
				table.insert(data.categories, "Danh từ có loại từ " .. par .. " tiếng Shan")
			else
				table.insert(classifiers, par)
				table.insert(data.categories, "Danh từ có loại từ " .. par .. " tiếng Shan")
			end
		end
		table.insert(data.inflections, classifiers)
	end

end

pos_functions["Động từ"] = 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 = "danh từ trừu tượng", accel = {form = "abstract-noun"}}

	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["Tính từ"] = 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 = "danh từ trừu tượng", accel = {form = "abstract-noun"}}

	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["Phó từ"] = pos_functions["Tính từ"]
-- same logic
pos_functions["Danh từ riêng"] = pos_functions["Danh từ"]

return export