Модул:category tree/poscatboiler/data/lang-specific/ang
Документацију овог модула можете да направите на страници Модул:category tree/poscatboiler/data/lang-specific/ang/док
local labels = {}
local handlers = {}
--------------------------------- Nouns/Pronouns/Numerals --------------------------------
labels["consonant stem nouns"] = {
description = "Old English consonant stem nouns.",
additional = "Note that the stem class is named from the perspective of Proto-Germanic, and the stem suffix may no longer be visible synchronically.",
parents = {{name = "nouns by inflection type", sort = "consonant stem"}},
breadcrumb = "consonant stem",
}
labels["masculine a-stem nouns"] = {
description = "Old English masculine ''a-''stem nouns. These nouns have a genitive singular in ''-es'' and a nominative plural in ''-as''.",
parents = {{name = "a-stem nouns", sort = "masculine"}},
breadcrumb = "masculine",
}
labels["neuter a-stem nouns"] = {
description = "Old English neuter ''a-''stem nouns. These nouns have a genitive singular in ''-es'' and a nominative plural that is either endingless (if the stem is heavy) or ending in ''-u'' (if the stem is light).",
parents = {{name = "a-stem nouns", sort = "neuter"}},
breadcrumb = "neuter",
}
for _, pos in ipairs({"nouns"}) do
local sgpos = pos:gsub("s$", "")
for _, decl in ipairs { "a-", "i-", "n-", "nd-", "ō-", "u-", "z-" } do
labels[decl .. "stem " .. pos] = {
description = "Old English ''" .. decl .. "''stem " .. pos .. ".",
additional = "Note that the stem class is named from the perspective of Proto-Germanic, and the stem suffix may no longer be visible synchronically.",
breadcrumb = {name = decl .. "stem", nocap = true},
parents = {{
name = pos .. " by inflection type",
sort = decl,
}},
}
end
end
for _, decl in ipairs({"n-"}) do
for _, gender in ipairs { "masculine", "feminine", "neuter" } do
labels[gender .. " " .. decl .. "stem nouns"] = {
description = "Old English " .. gender .. " ''" .. decl .. "''stem nouns.",
breadcrumb = {name = gender},
parents = {{
name = decl .. "stem nouns",
sort = gender,
}},
}
end
end
return {LABELS = labels, HANDLERS = handlers}