Jump to content

Module:category tree/wiktionary votes

From Wiktionary, the free dictionary

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

-----------------------------------------------------------------------------
--                                                                         --
--                              RAW CATEGORIES                             --
--                                                                         --
-----------------------------------------------------------------------------

raw_categories["Wiktionary votes"] = {
	preceding = "{{also|Wiktionary:Votes}}",
	description = "This category is for votes.",
	breadcrumb = "Votes",
	parents = "Wiktionary",
}

raw_categories["Closed votes"] = {
	preceding = "{{also|WT:Votes|WT:Votes/Timeline}}",
	description = "This category contains votes that are no longer active. They are kept for reference and should not be modified.",
	parents = "Wiktionary votes",
}

raw_categories["Closed votes that failed"] = {
	description = "Closed votes that failed.",
	parents = {{name = "Closed votes", sort = "failed"}},
	can_be_empty = true,
}

raw_categories["Closed votes that had no consensus"] = {
	description = "Closed votes that had no consensus.",
	parents = {{name = "Closed votes", sort = "had no consensus"}},
	can_be_empty = true,
}

raw_categories["Closed votes that passed"] = {
	description = "Closed votes that passed.",
	parents = {{name = "Closed votes", sort = "passed"}},
	can_be_empty = true,
}

raw_categories["Closed votes that were suspended"] = {
	description = "Closed votes that were suspended.",
	parents = {{name = "Closed votes", sort = "were suspended"}},
	can_be_empty = true,
}

raw_categories["Votes that have not been closed"] = {
	description = "This category is intended for votes that have not been started, concluded, or withdrawn.",
	additional = "The category is included automatically upon creation of a new vote, as coded in the preloaded templates. It may be removed from the decision section at the time that such decision is made.",
	parents = {{name = "Wiktionary votes", sort = "not been closed"}},
	can_be_empty = true,
}

raw_categories["Votes that have not been opened"] = {
	description = "This category contains proposed votes. Votes that are still being reread and corrected and are not ready to face editors' approval.",
	parents = {{name = "Wiktionary votes", sort = "not been opened"}},
	can_be_empty = true,
}

return { RAW_CATEGORIES = raw_categories }