وحدة:category tree/lang/gmq-osw
المظهر
local labels = {}
local handlers = {}
local rmatch = mw.ustring.match
table.insert(handlers, function(data)
local stem = rmatch(data.label, "^(.+[%s%-]stem) nouns$")
if stem then
return {
description = "Old Swedish " .. stem .. " nouns.",
breadcrumb = stem,
parents = {{name = "nouns by inflection type", sort = stem}},
}
end
end)
return {LABELS = labels, HANDLERS = handlers}