Module:category tree/poscatboiler/data/lang-specific/sa
Appearance
- පහත දැක්වෙන උපදෙස්, Module:documentation මගින් ජනනය කොට ඇත. [සංස්කරණය කරන්න]
- ප්රයෝජනවත් සබැඳි: root page • root page’s subpages • සබැඳි • transclusions • testcases • sandbox
This module handles generating the descriptions and categorization for සංස්කෘත category pages of the format "සංස්කෘත 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 = {}
local handlers = {}
local rmatch = mw.ustring.match
--------------------------------- Roots --------------------------------
labels["diaspirate roots"] = {
description = "Sanskrit roots where an initial unaspirated consonant may become aspirated in some derivatives. This occurs when the root is followed immediately by a {{w|sibilant}}, which triggers an aspiration throwback and the aspiration migrates leftward, docking onto the initial consonant. See more at {{w|Grassmann's law}}",
parents = {{ name = "roots" }}
}
--------------------------------- Verbs --------------------------------
labels["verbs with diaspirate roots"] = {
description = "Sanskrit verbs where a root-initial unaspirated consonant may become aspirated within the verbal paradigm. This occurs when the root is followed immediately by a {{w|sibilant}}, which triggers an aspiration throwback and the aspiration migrates leftward, docking onto the initial consonant. See more at {{w|Grassmann's law}}",
parents = {{ name = "verbs" }}
}
labels["verbs by class"] = {
description = "Sanskrit verbs categorized by class.",
parents = {{name = "verbs by inflection type", sort = "class"}},
}
table.insert(handlers, function(data)
local cls = rmatch(data.label, "^class ([0-9]*) verbs")
if cls then
return {
description = "Sanskrit class " .. cls .. " verbs.",
breadcrumb = cls,
parents = {{name = "verbs by class", sort = cls}},
}
end
end)
labels["verbs by aorist type"] = {
description = "Sanskrit verbs categorized by aorist type.",
parents = {{name = "verbs by inflection type", sort = "class"}},
breadcrumb = "aorist types"
}
for _, aor in pairs({ "iṣ-", "ṣ-", "kṣ-", "a-", "root "}) do
labels["verbs with " .. aor .. "aorist"] = {
description = "Sanskrit verbs with the " .. aor .. "aorist",
parents = {{ name = "verbs by aorist type", sort = aor }},
breadcrumb = aor .. "aorist"
}
end
return {LABELS = labels, HANDLERS = handlers}