Module:category tree/lang/cel-gal: Difference between revisions
Created page with "local labels = {} return {LABELS = labels}" |
No edit summary |
||
| (3 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
local labels = {} | local labels = {} | ||
for _, pos in ipairs{"nouns", "proper nouns"} do | |||
for _, decl in ipairs{"a", "e", "o", "n", "nt", "á", "r", "consonant"} do | |||
local decltext = decl .. "-declension" | |||
labels[decltext .. " " .. pos] = { | |||
description = "{{{langname}}} " .. pos .. " that end in " .. (decl == "consonant" and "a consonant" or "''-" .. decl .. "''") .. ".", | |||
parents = {{name = pos .. " by inflection type", sort = declnum}}, | |||
breadcrumb = decl, | |||
} | |||
end | |||
end | |||
return {LABELS = labels} | return {LABELS = labels} | ||