This module handles generating the descriptions and categorization for Fala category pages of the format "Fala LABEL" where LABEL can be any text. Examples are Category:Bulgarian conjugation 2.1 verbs and Category:Russian velar-stem neuter-form nouns. This module is part of the poscatboiler system, which is a general framework for generating the descriptions and categorization of category pages.
For more information, see Module:category tree/poscatboiler/data/lang-specific/documentation.
NOTE: If you add a new language-specific module, you must add the language code to the list at the top of Module:category tree/poscatboiler/data/lang-specific in order for the module to be recognized.
local labels = {}
labels = {
description = "Fala verbs categorized by conjugation.",
parents = {"verbs by inflection type"},
}
labels = {
description = "Fala first conjugation verbs, derived from Latin ].",
parents = {"verbs by conjugation"},
}
labels = {
description = "Fala second conjugation verbs, derived from Latin ] or ] verbs.",
parents = {"verbs by conjugation"},
}
labels = {
description = "Fala third conjugation verbs, derived from Latin ] or ] verbs.",
parents = {"verbs by conjugation"},
}
-- Add labels for verbs with consonant alternations
labels = {
description = "{{{langname}}} verbs categorized by type of consonant alternation.",
parents = {"verbs by inflection type"},
}
local consonant_alternations = {
= {"qu", "c"},
= {"c", "z"},
= {"gu", "g"},
= {"gü", "gu"},
}
for alt, frontback in pairs(consonant_alternations) do
local desc
local front, back = unpack(frontback)
desc = "{{{langname}}} verbs whose final consonant alternates between ''" .. front .. "'' before front vowels (''e'', ''i'') " ..
"and ''" .. back .. "'' before back vowels (''a'', ''o'', ''u'')."
labels = {
description = desc,
displaytitle = "{{{langname}}} verbs with {{m|fax||" .. alt .. "}} alternation",
parents = {{name = "verbs by consonant alternation", sort = alt}},
breadcrumb = "{{m|fax||" .. alt .. "}}",
}
end
return {LABELS = labels}