Модул:category tree/poscatboiler/data/lang-specific/ne

Документацију овог модула можете да направите на страници Модул:category tree/poscatboiler/data/lang-specific/ne/док

local labels = {}
local handlers = {}

--------------------------------- Verbs --------------------------------

labels["compound verbs by base verb"] = {
	description = "{{{langname}}} compound verbs categorized by base verb.",
	parents = {"verbs"},
}

table.insert(handlers, function(data)
	local base_verb = data.label:match("^compound verbs with base verb (.*)$")
	if base_verb then
		local altlink = "{{m|ne||" .. base_verb .. "}}"
		local altlink_no_tr = "{{m|ne||" .. base_verb .. "|tr=-}}"
		return {
			description = "{{{langname}}} compound verbs formed with the base verb {{m|ne|" .. base_verb .. "}}.",
			displaytitle = "{{{langname}}} compound verbs with base verb " .. altlink_no_tr,
			parents = {
				{name = "compound verbs by base verb", sort = base_verb}
			},
			breadcrumb = altlink,
		}
	end
end)


return {LABELS = labels, HANDLERS = handlers}