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

From Wiktionary, the free dictionary
Jump to navigation Jump to search

This module handles generating the descriptions and categorization for German category pages of the format "German 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 = {}



-----------------------------------------------------------------------------
--                                                                         --
--                                   NOUNS                                 --
--                                                                         --
-----------------------------------------------------------------------------


--------------------------------- Noun labels --------------------------------

labels["mixed nouns"] = {
	description = "{{{langname}}} nouns following the [[Appendix:Glossary#mixed declension|mixed declension]].",
	parents = {"nouns by inflection type"},
	breadcrumb = "mixed",
}

labels["weak nouns"] = {
	description = "{{{langname}}} nouns following the [[Appendix:Glossary#weak declension|weak declension]].",
	parents = {"nouns by inflection type"},
	breadcrumb = "weak",
}

labels["specially-declined language names"] = {
	description = "{{{langname}}} nouns referring to language-families, languages and dialects, with two possible declensions. One follows a typical neuter noun declension, while the other is more adjectival and is only used with the definite article.",
	parents = {"nouns by inflection type"},
}



-----------------------------------------------------------------------------
--                                                                         --
--                                   VERBS                                 --
--                                                                         --
-----------------------------------------------------------------------------


--------------------------------- Verb labels --------------------------------

labels["irregular weak verbs"] = {
	description = "{{{langname}}} [[Appendix:Glossary#weak verb|weak verbs]] with irregular past tense or past participle.",
	parents = {{name = "irregular verbs", sort = "weak"}},
	breadcrumb = "weak",
}

labels["irregular strong verbs"] = {
	description = "{{{langname}}} [[Appendix:Glossary#strong verb|strong verbs]] that cannot be categorized into one of the seven primary categories of strong verbs.",
	parents = {{name = "irregular verbs", sort = "strong"}},
	breadcrumb = "strong",
}

labels["verbs using haben as auxiliary"] = {
	description = "{{{langname}}} verbs that conjugate their composed tenses using {{m|de|haben}}.",
	parents = {{name = "verbs by inflection type", sort = "haben as auxiliary"}},
	breadcrumb = "{{m|de||haben}} as auxiliary",
}

labels["verbs using sein as auxiliary"] = {
	description = "{{{langname}}} verbs that conjugate their composed tenses using {{m|de|sein}}.",
	parents = {{name = "verbs by inflection type", sort = "sein as auxiliary"}},
	breadcrumb = "{{m|de||sein}} as auxiliary",
}

labels["verbs using haben and sein as auxiliary"] = {
	description = "{{{langname}}} verbs that conjugate their composed tenses using either {{m|de|haben}} or {{m|de|sein}} (possibly with a difference in meaning).",
	parents = {{name = "verbs by inflection type", sort = "haben and sein as auxiliary"}},
	breadcrumb = "{{m|de||haben}} and {{m|de||sein}} as auxiliary",
}


return {LABELS = labels}