Module:category tree/fam/wasc: Difference between revisions

From Linguifex
Jump to navigation Jump to search
No edit summary
No edit summary
 
(14 intermediate revisions by the same user not shown)
Line 5: Line 5:
breadcrumb = "human",
breadcrumb = "human",
parents = {"nouns by class"},
parents = {"nouns by class"},
umbrella_parents = {"nouns by language"},
umbrella_parents = {name = "nouns by class", is_label = true},
}
}


Line 12: Line 12:
breadcrumb = "agent",
breadcrumb = "agent",
parents = {"human nouns"},
parents = {"human nouns"},
umbrella_parents = {name = "human nouns", is_label = true}
}
}


return {LABELS = labels}
return {LABELS = labels}

Latest revision as of 19:42, 8 May 2026


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

labels["human nouns"] = {
	description = "{{{langname}}} nouns which cause human agreement.",
	breadcrumb = "human",
	parents = {"nouns by class"},
	umbrella_parents = {name = "nouns by class", is_label = true},
}

labels["agent nouns"] = {
	description = "{{{langname}}} nouns derived with agentivizers.",
	breadcrumb = "agent",
	parents = {"human nouns"},
	umbrella_parents = {name = "human nouns", is_label = true}
}

return {LABELS = labels}