Module:form of/templates: Difference between revisions

From Laenkea
Jump to navigation Jump to search
No edit summary
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 23: Line 23:
["pos"] = {},
["pos"] = {},
["nocat"] = {},
["nocat"] = {},
["cat"] = {},
["post"] = {},
["note"] = {},
["q"] = {alias_of = "note"}
}
}


Line 53: Line 55:
pos = args["pos"],
pos = args["pos"],
nocat = args["nocat"],
nocat = args["nocat"],
cat = args["cat"]
post = args["post"],
note = args["note"]
}
}
end
end

Latest revision as of 12:21, 17 August 2024

Documentation for this module may be created at Module:form of/templates/documentation

local export = {}

local m_form_of = require("Module:form of")
local m_languages = require("Module:languages")
local m_parameters = require("Module:parameters")

local inflection_params = {
	[1] = {required = true},
	[2] = {required = true},
	[3] = {list = true},
	["alt"] = {},
	["t"] = {},
	["pos"] = {},
}

local form_params = {
	[1] = {required = true},
	[2] = {required = true},
	[3] = {alias_of = "form"},
	["form"] = {},
	["alt"] = {},
	["t"] = {},
	["pos"] = {},
	["nocat"] = {},
	["post"] = {},
	["note"] = {},
	["q"] = {alias_of = "note"}
}

local list_params = {
	[1] = {list = true},
	["alt"] = {},
}

function export.inflection_of(frame)
	local args = m_parameters.process(frame:getParent().args, inflection_params)
	return m_form_of.make_form_of{
		language = m_languages.get_by_code(args[1]),
		term = args[2],
		inflection = args[3],
		alt = args["alt"],
		gloss = args["t"],
		pos = args["pos"],
	}
end

function export.form_of(frame)
	local args = m_parameters.process(frame:getParent().args, form_params)
	return m_form_of.make_form_of{
		language = m_languages.get_by_code(args[1]),
		term = args[2],
		form = args["form"],
		alt = args["alt"],
		gloss = args["t"],
		pos = args["pos"],
		nocat = args["nocat"],
		post = args["post"],
		note = args["note"]
	}
end

function export.inflection_list(frame)
	local args = m_parameters.process(frame:getParent().args, list_params)
	return m_form_of.list_form{
		inflection = args[1],
		alt = args["alt"],
	}
end

return export