Module:category tree/poscatboiler/data/lang-specific/fax

Hello, you have come here looking for the meaning of the word Module:category tree/poscatboiler/data/lang-specific/fax. In DICTIOUS you will not only get to know all the dictionary meanings for the word Module:category tree/poscatboiler/data/lang-specific/fax, but we will also tell you about its etymology, its characteristics and you will know how to say Module:category tree/poscatboiler/data/lang-specific/fax in singular and plural. Everything you need to know about the word Module:category tree/poscatboiler/data/lang-specific/fax you have here. The definition of the word Module:category tree/poscatboiler/data/lang-specific/fax will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofModule:category tree/poscatboiler/data/lang-specific/fax, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.

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}