Module:category tree/lang/sego: Difference between revisions

Created page with "local labels = {} local noun_declensions = { "-os" } for _, g in ipairs{"masculine", "feminine"} do for _, decl in ipairs(noun_declensions) do labels[g .. " " .. decl .. " nouns"] = { description = "{{{langname}}} " .. g .. " nouns that end in {{l|sego|" .. decl .. "}}.", parents = {{name = "nouns by inflection type"}, {name = g .. " nouns"}}, displaytitle = g .. " ''" .. decl .. "'' nouns", breadcrumb = decl, } end end return {LABELS = labels}"
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:


local noun_declensions = {
local noun_declensions = {
"-os"
"-os", "-a"
}
}


Line 10: Line 10:
description = "{{{langname}}} " .. g .. " nouns that end in {{l|sego|" .. decl .. "}}.",
description = "{{{langname}}} " .. g .. " nouns that end in {{l|sego|" .. decl .. "}}.",
parents = {{name = "nouns by inflection type"}, {name = g .. " nouns"}},
parents = {{name = "nouns by inflection type"}, {name = g .. " nouns"}},
displaytitle = g .. " ''" .. decl .. "'' nouns",
displaytitle = "{{{langname}}} " .. g .. " ''" .. decl .. "'' nouns",
breadcrumb = decl,
breadcrumb = decl,
}
}