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