Модул:category tree/poscatboiler/data/lang-specific/pi
Документацију овог модула можете да направите на страници Модул:category tree/poscatboiler/data/lang-specific/pi/док
local labels = {}
local handlers = {}
--------------------------------- Verbs --------------------------------
labels["verbs by conjugation"] = {
description = "Pali verbs categorized by conjugation.",
parents = {{name = "verbs by inflection type", sort = "conjugation"}},
}
for _, conj in ipairs {
{"first", "1"},
{"second", "2"},
{"third", "3"},
{"fourth", "4"},
{"fifth", "5"},
{"sixth", "6"},
{"seventh", "7"},
} do
local ordinal, cardinal = unpack(conj)
labels[ordinal .. " conjugation verbs"] = {
description = "Pali verbs of the " .. ordinal .. " conjugation.",
parents = {{name = "verbs by conjugation", sort = cardinal}},
breadcrumb = ordinal,
}
end
labels["irregular conjugation verbs"] = {
description = "Pali irregularly-conjugated verbs.",
parents = {{name = "verbs by conjugation", sort = "irregular"}, {name = "irregular verbs", sort = "*"}},
breadcrumb = "irregular",
}
labels["desiderative verbs"] = {
description = "Pali verbs with the following morphology: "..
"reduplicated verbal root xxx + [[desiderative]] affix, "..
"and the following semantics: to wish to do the action xxx.",
parents = {{name = "verbs", sort = "desiderative"}},
}
return {LABELS = labels, HANDLERS = handlers}