Module:category tree/lang/snon: Difference between revisions
No edit summary |
No edit summary |
||
| (2 intermediate revisions by 2 users not shown) | |||
| Line 19: | Line 19: | ||
-- Verbs -- | -- Verbs -- | ||
labels[" | for _, part in ipairs{"i", "è"} do | ||
labels[part .. "-negative verbs"] = { | |||
description = "{{{langname}}} verbs which use {{l|snon|" .. part .. "}} to form the negative.", | |||
parents = "verbs", | 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} | return {LABELS = labels} | ||