Mô đun:see-headword
Giao diện
local export = {}
local pos_functions = {}
local lang = require("Module:languages").getByCode("see")
-- The main entry point.
-- This is the only function that can be invoked from a template.
function export.show(frame)
PAGENAME = mw.title.getCurrentTitle().text
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 cat = args["cat"]; if cat == "" then cat = nil end
local cat2 = args["cat2"]; if cat2 == "" then cat2 = nil end
local cat3 = args["cat3"]; if cat3 == "" then cat3 = nil end
local head = args["head"]; if head == "" then head = nil end
local data = {lang = lang, pos_category = cat or poscat, categories = {}, heads = {PAGENAME}, genders = {}, inflections = {}}
if cat2 then table.insert(data.categories, cat2 .. " tiếng Seneca") end
if cat3 then table.insert(data.categories, cat3 .. " tiếng Seneca") end
if pos_functions[poscat] then
pos_functions[poscat](args, data)
end
return require("Module:headword").full_headword(data)
end
pos_functions["Danh từ"] = function(args, data)
end
pos_functions["Danh từ riêng"] = function(args, data)
end
pos_functions["Phó từ"] = function(args, data)
table.insert(data.categories, "Phó từ tiếng Seneca")
end
return export