Documentation for this module may be created at Module:category tree/fam/alg/doc

local labels = {}

labels["transitive animate verbs"] = {
	description = "{{{langname}}} transitive verbs with an animate object, commonly abbreviated VTA.",
	breadcrumb = "transitive animate",
	parents = {"verbs by inflection type", {name = "transitive verbs", sort = "animate"}},
}

labels["transitive inanimate verbs"] = {
	description = "{{{langname}}} transitive verbs with an inanimate object, commonly abbreviated VTI.",
	breadcrumb = "transitive inanimate",
	parents = {"verbs by inflection type", {name = "transitive verbs", sort = "inanimate"}},
}

labels["animate intransitive verbs"] = {
	description = "{{{langname}}} intransitive verbs with an animate subject, commonly abbreviated VAI.",
	breadcrumb = "animate intransitive",
	parents = {"verbs by inflection type", {name = "intransitive verbs", sort = "animate"}},
}

labels["inanimate intransitive verbs"] = {
	description = "{{{langname}}} intransitive verbs with an inanimate subject, commonly abbreviated VII.",
	breadcrumb = "inanimate intransitive",
	parents = {"verbs by inflection type", {name = "intransitive verbs", sort = "inanimate"}},
}

-- Add 'umbrella_parents' key if not already present.
for key, data in pairs(labels) do
	if not data.umbrella_parents then
		data.umbrella_parents = "Terms by grammatical category subcategories by language"
	end
end

return {LABELS = labels}