وحدة:category tree/lang/pi
المظهر
local labels = {}
local handlers = {}
local unpack = unpack or table.unpack -- Lua 5.2 compatibility
--------------------------------- Verbs --------------------------------
labels["verbs by conjugation"] = {
description = "{{{langname}}} verbs categorized by conjugation.",
breadcrumb = "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 = "{{{langname}}} verbs of the " .. ordinal .. " conjugation.",
parents = {{name = "verbs by conjugation", sort = cardinal}},
breadcrumb = ordinal,
}
end
labels["irregular conjugation verbs"] = {
description = "{{{langname}}} irregularly-conjugated verbs.",
breadcrumb_and_first_sort_base = "irregular",
parents = {"verbs by conjugation", {name = "irregular verbs", sort = "*"}},
}
labels["desiderative verbs"] = {
description = "{{{langname}}} verbs with the following morphology: "..
"reduplicated verbal root xxx + [[desiderative]] affix, "..
"and the following semantics: to wish to do the action xxx.",
breadcrumb_and_first_sort_base = "desiderative",
parents = {"verbs"},
}
local asi_a = "with aorist in {{m|pi||-āsi}}/{{m|pi||-a}}"
labels["verbs with aorist in -āsi/-a"] = {
description = "{{{langname}}} verbs " .. asi_a .. ".",
displaytitle = "{{{langname}}} verbs " .. asi_a,
breadcrumb = asi_a,
parents = {{name = "verbs by conjugation", sort = "aorist in -āsi/-a"}},
}
return {LABELS = labels, HANDLERS = handlers}