Module:qay-headword: Difference between revisions

no edit summary
(Created page with "local export = {} local pos_functions = {} local sub = mw.ustring.sub local find = mw.ustring.find local match = mw.ustring.match local gmatch = mw.ustring.gmatch local gsub...")
 
No edit summary
Line 16: Line 16:


local legal_gender = {
local legal_gender = {
["in"] = true,
["in"] = true, ["i"] = true,
["an"] = true,
["an"] = true, ["a"] = true,
["?"] = true,
["?"] = true,
}
}


local gender_names = {
local gender_names = {
["in"] = "inanimate",
["in"] = "inanimate", ["i"] = "inanimate",
["an"] = "animate",
["an"] = "animate", ["a"] = "animate",
["?"] = "unknown",
["?"] = "unknown",
}
}