Pumunta sa nilalaman

Module:category tree/fam/tup

Mula Wiksiyonaryo

This data submodule defines part of Wiktionary's category structure.

For an introduction to the category tree system and a description of how to add or modify categories, see Module:category tree/documentation.


local labels = {}

------- TUPIAN LEMMA CLASSES -------

labels["pluriform adjectives"] = {
	description = "{{{langname}}} adjectives that have a relational prefix added to their stem.",
	breadcrumb = "pluriform",
	parents = {"adjectives by inflection type"},
}

labels["pluriform nouns"] = {
	description = "{{{langname}}} nouns that have a relational prefix added to their stem.",
	breadcrumb = "pluriform",
	parents = {"nouns by inflection type"},
}

labels["pluriform postpositions"] = {
	description = "{{{langname}}} postpositions that have a relational prefix added to their stem.",
	breadcrumb = "pluriform",
	parents = {"postpositions by inflection type"},
}

labels["pluriform verbs"] = {
	description = "{{{langname}}} verbs that have a relational prefix added to their stem.",
	breadcrumb = "pluriform",
	parents = {"verbs by inflection type"},
}

-- 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}