45,647
edits
No edit summary |
No edit summary |
||
Line 110: | Line 110: | ||
table.insert(data.categories, "High Valyrian " .. gender_names[args[1]] .. " " .. data.pos_category) | table.insert(data.categories, "High Valyrian " .. gender_names[args[1]] .. " " .. data.pos_category) | ||
args["gen"] = generate_gen_sg() | |||
for i, form in ipairs(args[" | for i, form in ipairs(args["gen"]) do | ||
args[" | args["gen"][i] = {term = form} | ||
end | |||
args["gen"].label = "genitive" | |||
table.insert(data.inflections, args["gen"]) | |||
if data.pos_category == "nouns" or not args["nopl"] then | |||
args["pl"] = generate_nom_pl() | |||
for i, form in ipairs(args["pl"]) do | |||
args["pl"][i] = {term = form} | |||
end | end | ||
args[" | args["pl"].label = "plural" | ||
table.insert(data.inflections, args[" | table.insert(data.inflections, args["pl"]) | ||
end | end | ||
end | end |