Module:category tree/lang/siwa: Difference between revisions
Created page with "local labels = {} return {LABELS = labels}" |
No edit summary |
||
| (One intermediate revision by the same user not shown) | |||
| Line 1: | Line 1: | ||
local labels = {} | local labels = {} | ||
for _, pos in ipairs{"nouns", "adjectives"} do | |||
for _, decl in ipairs{"a", "e", "i", "o", "u", "y", "l", "r", "n", "s", "t"} do | |||
labels[decl .. "-declension " .. pos] = { | |||
description = "{{{langname}}} " .. pos .. " that belong to the ''" .. decl .. "'' declension.", | |||
parents = pos .. " by inflection type", | |||
breadcrumb = decl, | |||
displaytitle = "{{{langname}}} ''" .. decl .. "''-declension " .. pos, | |||
} | |||
end | |||
end | |||
return {LABELS = labels} | return {LABELS = labels} | ||