Module:category tree/lang/snon: Difference between revisions

Melinoë (talk | contribs)
Blanked the page
Tag: Blanking
No edit summary
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
local labels = {}


--------------------------------- Nouns/Pronouns/Numerals --------------------------------
labels["lenite nouns"] = {
description = "{{{langname}}} nouns which trigger lenition in the following term.",
parents = "nouns by inflection type",
}
labels["radical nouns"] = {
description = "{{{langname}}} nouns which do not trigger lenition in the following term.",
parents = "nouns by inflection type",
}
labels["eclipse nouns"] = {
description = "{{{langname}}} nouns which trigger eclipsis in the following term.",
parents = "nouns by inflection type",
}
-- Verbs --
for _, part in ipairs{"i", "è"} do
labels[part .. "-negative verbs"] = {
description = "{{{langname}}} verbs which use {{l|snon|" .. part .. "}} to form the negative.",
parents = "verbs",
displaytitle = "{{{langname}}} ''" .. part .. "''-negative verbs",
breadcrumb = part,
}
end
local prepositions = {
"{{l|snon|til}} > {{l|snon|tilmì}}",
"{{l|snon|frà}} > {{l|snon|fràmhì}}",
"{{l|snon|i}} > {{l|snon|inì}}",
}
for i, desc in ipairs(prepositions) do
local num = tostring(i)
labels["class " .. num .. " prepositions"] = {
description = "{{{langname}}} prepositions of pattern " .. num .. ", e.g. " .. desc .. ".",
parents = {{name="prepositions by inflection type", sort = num}},
breadcrumb = num,
}
end
return {LABELS = labels}