انتقل إلى المحتوى

وحدة:category tree/lang/sh

من ويكاموس، القاموس الحر
local labels = {}
local handlers = {}

local lang = require("Module:languages").getByCode("sh")
local rfind = mw.ustring.find
local rmatch = mw.ustring.match

for _, pos in ipairs { "nouns" } do
	labels["masculine animate " .. pos] = {
		description = "{{{langname}}} masculine " .. pos .. " that refer to humans or animals.",
		breadcrumb = "animate",
		parents = {{name = "masculine " .. pos, sort = "animate"}},
	}
		
	labels["masculine inanimate " .. pos] = {
		description = "{{{langname}}} masculine " .. pos .. " that refer to inanimate objects.",
		breadcrumb = "inanimate",
		parents = {{name = "masculine " .. pos, sort = "inanimate"}},
	}
end

return {LABELS = labels}