This module contains the data used by Module:labels and, by extension, the templates {{context}}, {{label}}, {{term-context}} and {{term-label}}. It lists all recognised labels along with other information. Regional labels are located in a separate module, Module:labels/data/regional.

Three tables are exported at once: labels, aliases and deprecated. The keys of these tables are label identifiers (passed to the templates), while the values are described below.

Labels redaktə

labels contains most data associated with the actual labels.

The following values are supported:

display
The wikitext to display for the label. If this is omitted, the displayed text will default to the label's identifier.
plain_categories
A list of categories that this label should add to a page. The categories are not adjusted depending on the language; they will be taken verbatim, and entries in all languages will be added to the same category. As this is generally undesirable, the plain_categories value should only be used when a label would only ever be used for a single language.
topical_categories
A list of language-dependent topical categories that this label should add to a page. These categories are of the form "[language code]:[category name]". For example, Category:en:Physics.
pos_categories
A list of language-dependent part-of-speech-like categories that this label should add to a page. These categories are of the form "[language name] [category name]". For example, Category:English pluralia tantum.
sense_categories
A list of sense-dependent categories that this label should add to a page. Depending on the template used, categories are either of the form "[language name] terms with [category name] senses" (when using {{context}}/{{label}}) or "[language name] [category name] terms" (when using {{term-context}} or {{term-label}}). For example, Category:English archaic terms and Category:English terms with archaic senses.
regional_categories
A list of language-dependent regional/dialect categories that this label should add to a page. These categories are of the form "[category name] [language name]". For example, Category:British English.

Aliases redaktə

Aliases are not labels, but work like redirects to proper labels. When a label is defined here, it "behaves" as if it were the label it "redirects" to. For example, if "American" is listed as an alias of "US", then whenever the label "American" is used in an entry, it's treated as if the label "US" had been used in its place.

The label that an alias points to does not have to be defined in the list itself. So if you want to make "American" an alias of "US", but do not create a full label for "US", that works too.

Double aliases (an alias of another alias) are not supported, and will cause a script error if used.

Deprecated redaktə

The deprecated table can be used to mark labels as deprecated. The key should be an identifier, and the value should be set to true. When a deprecated label identifier is used, the label is wrapped in a <span class="deprecated-label"> and the page is added to Category:Entries with deprecated labels. A single alias may be deprecated instead of the entire label.


local labels = {}
local aliases = {}
local deprecated = {}

--  Helper labels

labels['_'] = {
	display = '',
	omit_preComma = true,
	omit_postComma = true }

labels['and'] = {
	omit_preComma = true,
	omit_postComma = true }
aliases['&'] = 'and'

labels['or'] = {
	omit_preComma = true,
	omit_postComma = true }

labels['except'] = { -- combine with 'except in', 'outside'? or retain for entries like "wnuczę"?
	omit_preComma = true,
	omit_postComma = true }

labels['outside'] = {
	omit_preComma = true,
	omit_postComma = true }
aliases['except in'] = 'outside'

-- Qualifier labels

labels['chiefly'] = {omit_postComma = true}
aliases['especially'] = 'chiefly'
aliases['mainly'] = 'chiefly'
aliases['mostly'] = 'chiefly'
aliases['particularly'] = 'chiefly'
aliases['primarily'] = 'chiefly'

labels['excluding'] = {omit_postComma = true}

labels['extremely'] = {omit_postComma = true}

labels['frequently'] = {omit_postComma = true}

labels['humorously'] = {omit_postComma = true,
	pos_categories = {"jocular terms"} } -- should be "terms with X senses", leaving "X terms" to the term-context temp?

labels['including'] = {omit_postComma = true}

labels['literally'] = {display = '[[Appendix:Glossary#literally|literally]]',
	omit_postComma = true}
aliases['literal'] = 'literally'

labels['many'] = {omit_postComma = true} -- e.g. "many dialects"

labels['markedly'] = {omit_postComma = true}

labels['mildly'] = {omit_postComma = true}

labels['now'] = {omit_postComma = true}
aliases['nowadays'] = 'now'

labels['of'] = {omit_postComma = true}

labels['of a'] = {omit_postComma = true}

labels['of an'] = {omit_postComma = true}

labels['often'] = {omit_postComma = true}

labels['originally'] = {omit_postComma = true}

labels['possibly'] = {omit_postComma = true}
-- aliases['perhaps'] = 'possibly'

labels['rarely'] = {omit_postComma = true}

labels['slightly'] = {omit_postComma = true}

labels['sometimes'] = {omit_postComma = true}

labels['somewhat'] = {omit_postComma = true}

labels['strongly'] = {omit_postComma = true}

labels['typically'] = {omit_postComma = true}

labels['usually'] = {omit_postComma = true}

labels['very'] = {omit_postComma = true}

-- Grammatical labels

labels["abbreviation"] = {
	display = "[[abbreviation]]",
	pos_categories = {"abbreviations"} }

labels["acronym"] = {
	display = "[[acronym]]",
	pos_categories = {"acronyms"} }

labels["active"] = {
	display = "[[w:Active voice|active]]" }
aliases["active voice"] = "active"
aliases["in the active"] = "active"

labels["ambitransitive"] = {
	display = "[[transitive]], [[intransitive]]",
	pos_categories = {"transitive verbs", "intransitive verbs"} }

labels["archaic-verb-form"] = {
	display = "[[Appendix:Glossary#archaic|archaic]]",
	pos_categories = {"archaic verb forms"} }

labels["attributive"] = {
	display = "[[Appendix:English nouns#Attributive|attributive]]" }

labels["attributively"] = {
	display = "[[Appendix:English nouns#Attributive|attributively]]" }

labels["auxiliary"] = {
	display = "[[Appendix:Glossary#auxiliary|auxiliary]]" }

labels["by ellipsis"] = {
	display = "by [[ellipsis]]",
	pos_categories = {"ellipses"} }

labels["by extension"] = {}

labels["cardinal"] = {
	pos_categories = {"cardinal numbers"} }

labels["causative"] = {
	display = "[[causative]]"}

labels["collective"] = {
	display = "collective",
	pos_categories = {"collective nouns"} }

labels["collectively"] = {
	display = "collectively",
	pos_categories = {"collective nouns"} }

labels["comparable"] = {
	display = "[[Appendix:Glossary#comparable|comparable]]"}

labels["copulative"] = {
	display = "[[copular verb|copulative]]",
	pos_categories = {"copulative verbs"} }
aliases["copular"] = "copulative"

labels["countable"] = {
	display = "[[Appendix:Glossary#countable|countable]]",
	pos_categories = {"countable nouns"} }

labels["ditransitive"] = {
	display = "[[Appendix:Glossary#D|ditransitive]]",
	pos_categories = {"ditransitive verbs"} }

labels["emphatic"] = {
	display = "[[Appendix:Glossary#emphatic|emphatic]]"}

labels["ergative"] = {
	display = "[[Appendix:Glossary#ergative|ergative]]",
	pos_categories = {"ergative verbs"} }

labels["fractional"] = {
	pos_categories = {"fractional numbers"} }

labels["idiomatic"] = {
	display = "[[Appendix:Glossary#idiomatic|idiomatic]]",
	pos_categories = {"idioms"} }
aliases["idiom"] = "idiomatic"

labels["snowclone"] = {
	display = "[[Appendix:Glossary#snowclone|snowclone]]",
	pos_categories = {"snowclones"} }

labels["impersonal"] = {
	display = "[[Appendix:Glossary#impersonal verb|impersonal]]",
	pos_categories = {"impersonal verbs"} }

labels["in the singular"] = {
	display = "in the [[singular]]" }
aliases["in singular"] = "in the singular"

labels["in the dual"] = {
	display = "in the [[dual]]" }
aliases["in dual"] = "in the dual"

labels["in the plural"] = {
	display = "in the [[plural]]" }
aliases["in plural"] = "in the plural"

labels["in the mediopassive"] = {
	display = "in the [[mediopassive]]"}
aliases["in mediopassive"] = "in the mediopassive"
aliases["mediopassive"] = "in the mediopassive"

labels["inanimate"] = {
	display = "[[Appendix:Glossary#inanimate|inanimate]]"}

aliases["indef"] = "indefinite"

labels["initialism"] = {
	display = "[[initialism]]",
	pos_categories = {"initialisms"} }

labels["intransitive"] = {
	display = "[[Appendix:Glossary#intransitive|intransitive]]",
	pos_categories = {"intransitive verbs"} }

labels["not comparable"] = {
	display = "[[Appendix:Glossary#uncomparable|not comparable]]"}
aliases["notcomp"] = "not comparable"
aliases["uncomparable"] = "not comparable"

labels["middle"] = {
	display = "[[w:Voice (grammar)#Middle|middle voice]]" }
aliases["middle voice"] = "middle"
aliases["in the middle"] = "middle"

labels["onomatopoeia"] = {
	display = "[[onomatopoeia]]",
	pos_categories = {"onomatopoeias"} }

labels["ordinal"] = {
	pos_categories = {"ordinal numbers"} }

deprecated["plural"] = true

labels["passive"] = {
	display = "[[w:Passive voice|passive]]" }
aliases["passive voice"] = "passive"
aliases["in the passive"] = "passive"

labels["plural only"] = {
	pos_categories = {"pluralia tantum"} }
aliases["pluralonly"] = "plural only"
aliases["plurale tantum"] = "plural only"

labels["possessive pronoun"] = {
	display = "possessive",
	pos_categories = {"possessive pronouns"} }

labels["postpositive"] = {
	display = "[[Appendix:Glossary#postpositive|postpositive]]"}

labels["productive"] = {
	display = "[[productive|productive]]"}

labels["reciprocal"] = {
	display = "[[reciprocal]]"}

labels["reflexive"] = {
	display = "[[reflexive]]"}

labels["rhetorical question"] = {
	display = "[[Appendix:Glossary#rhetorical question|rhetorical question]]",
	pos_categories = {"rhetorical questions"} }

labels["set phrase"] = {
	display = "[[set phrase]]"}

labels["simile"] = {
	display = "[[Appendix:Glossary#simile|simile]]",
	pos_categories = {"similes"} }

deprecated["singular"] = true

labels["singular only"] = {
	display = "singular only",
	pos_categories = {"singularia tantum"} }
aliases["singulare tantum"] = "singular only"
aliases["no plural"] = "singular only"

labels["transitive"] = {
	display = "[[Appendix:Glossary#transitive|transitive]]",
	pos_categories = {"transitive verbs"} }

labels["uncountable"] = {
	display = "[[Appendix:Glossary#uncountable|uncountable]]",
	pos_categories = {"uncountable nouns"} }

labels["usually plural"] = {
	display = "chiefly in the [[plural]]" }
aliases["usually in the plural"] = "usually plural"
aliases["usually in plural"] = "usually plural"


-- Regional labels
local regional = require("Module:labels/data/regional")

for key, val in pairs(regional.labels) do
	labels[key] = val
end

for key, val in pairs(regional.aliases) do
	aliases[key] = val
end

for key, val in pairs(regional.deprecated) do
	deprecated[key] = val
end

-- Topical labels

labels["accounting"] = {
	topical_categories = {"Accounting"} }

labels["acoustics"] = {
	display = "[[acoustics]]",
	topical_categories = {"Acoustics"} }

labels["acting"] = {
	topical_categories = {"Acting"} }

labels["advertising"] = {
	topical_categories = {"Advertising"} }

labels["aeronautics"] = {
	display = "[[aeronautics]]",
	topical_categories = {"Aeronautics"} }

labels["aerospace"] = {
	display = "[[aeronautics]], [[space science|space]]",
	topical_categories = {"Aerospace"} }

labels["agriculture"] = {
	display = "[[agriculture]]",
	topical_categories = {"Agriculture"} }

labels["aircraft"] = {
	topical_categories = {"Aircraft"} }

labels["alchemy"] = {
	display = "[[alchemy]]",
	topical_categories = {"Alchemy"} }

labels["alcohol"] = {
	topical_categories = {"Alcoholism"} }

labels["algebra"] = {
	topical_categories = {"Cəbr"} }

labels["algebraic geometry"] = {
	topical_categories = {"Geometry"} }

labels["alternative medicine"] = {
	display = "[[alternative medicine]]",
	topical_categories = {"Alternative medicine"} }

labels["amateur radio"] = {
	display = "[[amateur radio]]",
	topical_categories = {"Amateur radio"} }
aliases["ham radio"] = "amateur radio"

labels["American football"] = {
	display = "[[American football]]",
	topical_categories = {"Football (American)"} }

labels["amino acid"] = {
	display = "biochemistry",
	topical_categories = {"Amino acids"} }

labels["analysis"] = {
	topical_categories = {"Mathematical analysis"} }
aliases["mathematical analysis"] = "analysis"

labels["analytic geometry"] = {
	topical_categories = {"Geometry"} }

labels["analytical chemistry"] = {
	display = "[[analytical]] [[chemistry]]",
	topical_categories = {"Analytical chemistry"} }

labels["anarchism"] = {
	topical_categories = {"Anarchism"} }

labels["anatomy"] = {
	display = "[[anatomy]]",
	topical_categories = {"Anatomy"} }
aliases["zootomy"] = "anatomy"

labels["Ancient Rome"] = {
	topical_categories = {"Ancient Rome"} }

labels["Anglicanism"] = {
	display = "[[Anglicanism]]",
	topical_categories = {"Anglicanism"} }

labels["animation"] = {
	topical_categories = {"Animation"} }

labels["anime"] = {
	display = "[[anime]]",
	topical_categories = {"Japanese fiction"} }

labels["anthropology"] = {
	display = "[[anthropology]]",
	topical_categories = {"Anthropology"} }

labels["arachnology"] = {
	display = "[[arachnology]]",
	topical_categories = {"Arachnology"} }

labels["archaeology"] = {
	display = "[[archaeology]]",
	topical_categories = {"Archaeology"} }

labels["archery"] = {
	display = "[[archery]]",
	topical_categories = {"Archery"} }

labels["architecture"] = {
	display = "[[architecture]]",
	topical_categories = {"Architecture"} }

labels["arithmetic"] = {
	topical_categories = {"Arithmetic"} }

labels["Armenian mythology"] = {
	display = "[[Armenian]] [[mythology]]",
	topical_categories = {"Armenian mythology"} }

labels["artificial intelligence"] = {
	topical_categories = {"Artificial intelligence"} }

labels["arts"] = {
	display = "art",
	topical_categories = {"Art"} }
aliases["art"] = "arts"

labels["asterism"] = {
	display = "[[uranography]]",
	topical_categories = {"Asterisms"} }

labels["astrology"] = {
	topical_categories = {"Astrology"} }

labels["astronautics"] = {
	display = "[[astronautics]]",
	topical_categories = {"Astronautics"} }

labels["astronomy"] = {
	display = "[[astronomy]]",
	topical_categories = {"Astronomy"} }

labels["astrophysics"] = {
	display = "[[astrophysics]]",
	topical_categories = {"Astrophysics"} }

labels["Asturian mythology"] = {
	display = "[[Asturian]] [[mythology]]",
	topical_categories = {"Asturian mythology"} }

labels["athletics"] = {
	display = "[[athletics]]",
	topical_categories = {"Athletics"} }

labels["Australian Aboriginal mythology"] = {
	topical_categories = {"Australian Aboriginal mythology"} }

labels["Australian rules football"] = {
	display = "[[Australian rules football]]",
	topical_categories = {"Australian rules football"} }

labels["auto racing"] = {
	display = "[[auto racing]]",
	topical_categories = {"Auto racing"} }

labels["automotive"] = {
	topical_categories = {"Automotive"} }
aliases["automobiles"] = "automotive"

labels["aviation"] = {
	display = "[[aviation]]",
	topical_categories = {"Aviation"} }

labels["backgammon"] = {
	display = "[[backgammon]]",
	topical_categories = {"Backgammon"} }

labels["bacteriology"] = {
	display = "[[bacteriology]]",
	topical_categories = {"Bacteriology"} }

labels["badminton"] = {
	display = "[[badminton]]",
	topical_categories = {"Badminton"} }

labels["ball games"] = {
	display = "[[ball game]]s",
	topical_categories = {"Ball games"} }

labels["ballet"] = {
	topical_categories = {"Ballet"} }

labels["banking"] = {
	topical_categories = {"Banking"} }

labels["baseball"] = {
	display = "[[baseball]]",
	topical_categories = {"Baseball"} }

labels["basketball"] = {
	display = "[[basketball]]",
	topical_categories = {"Basketball"} }

labels["BDSM"] = {
	topical_categories = {"BDSM"} }

labels["beekeeping"] = {
	topical_categories = {"Beekeeping"} }

labels["betting"] = {
	display = "gambling",
	topical_categories = {"Betting"} }

labels["biblical"] = {
	topical_categories = {"Bible"} }
aliases["Bible"] = "biblical"
aliases["Biblical"] = "biblical"

labels["biblical character"] = {
	display = "biblical",
	topical_categories = {"Biblical characters"} }
aliases["Biblical character"] = "biblical character"
aliases["biblical figure"] = "biblical character"
aliases["Biblical figure"] = "biblical character"

labels["billiards"] = {
	display = "[[billiards]]",
	topical_categories = {"Billiards"} }

labels["bingo"] = {
	display = "[[bingo]]",
	topical_categories = {"Bingo"} }

labels["biochemistry"] = {
	display = "[[biochemistry]]",
	topical_categories = {"Biochemistry"} }

labels["biology"] = {
	display = "[[biology]]",
	topical_categories = {"Biology"} }

labels["biotechnology"] = {
	topical_categories = {"Biotechnology"} }

labels["birdwatching"] = {
	display = "[[birdwatching]]",
	topical_categories = {"Birdwatching"} }

labels["blogging"] = {
	topical_categories = {"Internet"} }

labels["board games"] = {
	display = "[[board game]]s",
	topical_categories = {"Board games"} }

labels["board sports"] = {
	topical_categories = {"Board sports"} }

labels["bodybuilding"] = {
	display = "[[bodybuilding]]",
	topical_categories = {"Bodybuilding"} }

labels["book of the bible"] = {
	display = "biblical",
	topical_categories = {"Books of the Bible"} }

labels["botany"] = {
	display = "[[botany]]",
	topical_categories = {"Botany"} }

labels["bowling"] = {
	display = "[[bowling]]",
	topical_categories = {"Bowling"} }

labels["boxing"] = {
	display = "[[boxing]]",
	topical_categories = {"Boxing"} }

labels["brewing"] = {
	topical_categories = {"Brewing"} }

labels["bridge"] = {
	display = "[[bridge]]",
	topical_categories = {"Bridge"} }

labels["broadcasting"] = {
	topical_categories = {"Broadcasting"} }

labels["bryology"] = {
	topical_categories = {"Bryology"} }

labels["Buddhism"] = {
	topical_categories = {"Buddhism"} }

labels["bullfighting"] = {
	display = "[[bullfighting]]",
	topical_categories = {"Bullfighting"} }

labels["business"] = {
	display = "[[business]]",
	topical_categories = {"Business"} }

labels["calculus"] = {
	display = "[[calculus]]",
	topical_categories = {"Calculus"} }

labels["Canadian football"] = {
	display = "[[Canadian football]]",
	topical_categories = {"Canadian football"} }

labels["canid"] = {
	display = "[[zoology]]",
	topical_categories = {"Canids"} }

labels["canoeing"] = {
	display = "[[canoeing]]",
	topical_categories = {"Water sports"} }

labels["carbohydrate"] = {
	display = "biochemistry",
	topical_categories = {"Carbohydrates"} }

labels["card games"] = {
	display = "[[card game]]s",
	topical_categories = {"Card games"} }
aliases["cards"] = "card games"
aliases["playing card"] = "card games"

labels["cardiology"] = {
	topical_categories = {"Cardiology"} }

labels["carpentry"] = {
	topical_categories = {"Carpentry"} }

labels["cartography"] = {
	display = "[[cartography]]",
	topical_categories = {"Cartography"} }

labels["category theory"] = {
	display = "[[category theory]]",
	topical_categories = {"Category theory"} }

labels["caving"] = {
	display = "[[caving]]",
	topical_categories = {"Caving"} }

labels["Celtic mythology"] = {
	display = "[[Celtic]] [[mythology]]",
	topical_categories = {"Celtic mythology"} }

labels["ceramics"] = {
	display = "[[ceramics]]",
	topical_categories = {"Ceramics"} }

labels["cheerleading"] = {
	display = "[[cheerleading]]",
	topical_categories = {"Cheerleading"} }

labels["chemical engineering"] = {
	topical_categories = {"Chemical engineering"} }

labels["chemistry"] = {
	display = "[[chemistry]]",
	topical_categories = {"Chemistry"} }

labels["chess"] = {
	display = "[[chess]]",
	topical_categories = {"Chess"} }

labels["Chinese mythology"] = {
	display = "[[Chinese]] [[mythology]]",
	topical_categories = {"Chinese mythology"} }

labels["Christianity"] = {
	display = "[[Christianity]]",
	topical_categories = {"Christianity"} }
aliases["christianity"] = "Christianity"
deprecated["christianity"] = true

labels["cinematography"] = {
	topical_categories = {"Cinematography"} }
aliases["filmology"] = "cinematography"

labels["cladistics"] = {
	display = "[[cladistics]]",
	topical_categories = {"Systematics"} }

labels["classical mechanics"] = {
	display = "[[classical mechanics]]",
	topical_categories = {"Classical mechanics"} }

labels["classical studies"] = {
	topical_categories = {"Classical studies"} }

labels["climatology"] = {
	topical_categories = {"Climatology"} }

labels["climbing"] = {
	topical_categories = {"Climbing"} }

labels["clinical psychology"] = {
	display = "[[clinical]] [[psychology]]",
	topical_categories = {"Clinical psychology"} }

labels["clothing"] = {
	display = "clothing",
	topical_categories = {"Clothing"} }

labels["coenzyme"] = {
	display = "[[biochemistry]]",
	topical_categories = {"Coenzymes"} }

labels["combinatorics"] = {
	display = "[[combinatorics]]",
	topical_categories = {"Combinatorics"} }

labels["comedy"] = {
	topical_categories = {"Comedy"} }

labels["comics"] = {
	topical_categories = {"Comics"} }

labels["communication"] = {
	topical_categories = {"Communication"} }
aliases["communications"] = "communication"

labels["communism"] = {
	topical_categories = {"Communism"} }
aliases["Communism"] = "communism"

labels["complex analysis"] = {
	display = "[[complex analysis]]",
	topical_categories = {"Complex analysis"} }

labels["computational linguistics"] = {
	topical_categories = {"Computational linguistics"} }
	
labels["computer games"] = {
	display = "[[computer game]]s",
	topical_categories = {"Video games"} }

labels["computer graphics"] = {
	topical_categories = {"Computer graphics"} }

labels["computer hardware"] = {
	topical_categories = {"Computer hardware"} }

labels["computer languages"] = {
	display = "[[computer language]]s",
	topical_categories = {"Computer languages"} }
aliases["computer language"] = "computer languages"

labels["computer science"] = {
	display = "[[computer science]]",
	topical_categories = {"Computer science"} }
aliases["comp sci"] = "computer science"

labels["computer security"] = {
	topical_categories = {"Computer security"} }

labels["computing"] = {
	display = "[[computing]]",
	topical_categories = {"Computing"} }
aliases["computer"] = "computing"
aliases["computers"] = "computing"

labels["computing theory"] = {
	topical_categories = {"Theory of computing"} }
aliases["comptheory"] = "computing theory"

labels["conchology"] = {
	display = "[[conchology#English|conchology]]",
	topical_categories = {"Conchology"} }

labels["constellation"] = {
	display = "[[astronomy]]",
	topical_categories = {"Constellations"} }

labels["construction"] = {
	topical_categories = {"Construction"} }

labels["cooking"] = {
	topical_categories = {"Cooking"} }
aliases["culinary"] = "cooking"
aliases["cuisine"] = "cooking"
aliases["cookery"] = "cooking"
aliases["gastronomy"] = "cooking"

labels["cookware"] = {
	display = "cooking",
	topical_categories = {"Cookware and bakeware"} }

labels["copyright"] = {
	display = "copyright law",
	topical_categories = {"Copyright"} }

labels["cosmetics"] = {
	topical_categories = {"Cosmetics"} }
aliases["cosmetology"] = "cosmetics"

labels["cribbage"] = {
	display = "[[cribbage]]",
	topical_categories = {"Cribbage"} }

labels["cricket"] = {
	display = "[[cricket]]",
	topical_categories = {"Cricket"} }

labels["crime"] = {
	topical_categories = {"Crime"} }

labels["criminology"] = {
	topical_categories = {"Criminology"} }

labels["cryptography"] = {
	display = "[[cryptography]]",
	topical_categories = {"Cryptography"} }

labels["cryptozoology"] = {
	display = "[[cryptozoology]]",
	topical_categories = {"Cryptozoology"} }

labels["crystallography"] = {
	topical_categories = {"Crystallography"} }

labels["cultural anthropology"] = {
	topical_categories = {"Cultural anthropology"} }

labels["curling"] = {
	display = "[[curling]]",
	topical_categories = {"Curling"} }

labels["numismatics"] = {
	display = "numismatics",
	topical_categories = {"Currency"} }
aliases["currency"] = "numismatics"
deprecated["currency"] = true

labels["cybernetics"] = {
	topical_categories = {"Cybernetics"} }

labels["cycling"] = {
	display = "[[cycling]]",
	topical_categories = {"Cycling"} }

labels["cytology"] = {
	display = "[[cytology]]",
	topical_categories = {"Cytology"} }

labels["dance"] = {
	display = "[[dance]]",
	topical_categories = {"Dance"} }

labels["darts"] = {
	display = "[[darts]]",
	topical_categories = {"Darts"} }

labels["data management"] = {
	topical_categories = {"Data management"} }

labels["data modeling"] = {
	topical_categories = {"Data modeling"} }

labels["databases"] = {
	topical_categories = {"Databases"} }
aliases["database"] = "databases"

labels["deltiology"] = {
	display = "[[deltiology]]",
	topical_categories = {"Deltiology"} }

labels["demoscene"] = {
	display = "[[demoscene]]",
	topical_categories = {"Demoscene"} }

labels["dentistry"] = {
	topical_categories = {"Dentistry"} }

labels["dermatology"] = {
	topical_categories = {"Dermatology"} }

labels["dice games"] = {
	display = "[[dice game]]s",
	topical_categories = {"Dice games"} }
aliases["dice"] = "dice games"

labels["dictation"] = {
	display = "[[dictation]]",
	topical_categories = {"Dictation"} }

labels["diplomacy"] = {
	topical_categories = {"Diplomacy"} }

labels["disease"] = {
	display = "[[pathology]]",
	topical_categories = {"Diseases"} }
aliases["diseases"] = "disease"

labels["diving"] = {
	display = "[[diving]]",
	topical_categories = {"Diving"} }

labels["dominoes"] = {
	display = "[[dominoes]]",
	topical_categories = {"Dominoes"} }

labels["drama"] = {
	topical_categories = {"Drama"} }

labels["dressage"] = {
	display = "[[dressage]]",
	topical_categories = {"Dressage"} }

labels["E number"] = {
	display = "food manufacture",
	plain_categories = {"E numbers"} }

labels["earth science"] = {
	display = "[[earth science]]",
	topical_categories = {"Earth sciences"} }

labels["Eastern Orthodoxy"] = {
	topical_categories = {"Eastern Orthodoxy"} }

labels["ecclesiastical"] = {
	topical_categories = {"Christianity"} }

labels["ecology"] = {
	display = "[[ecology]]",
	topical_categories = {"Ecology"} }

labels["economics"] = {
	display = "[[economics]]",
	topical_categories = {"Economics"} }

labels["education"] = {
	topical_categories = {"Education"} }

labels["Egyptian mythology"] = {
	display = "[[Egyptian]] [[mythology]]",
	topical_categories = {"Egyptian mythology"} }

labels["Egyptology"] = {
	topical_categories = {"Ancient Egypt"} }

labels["electrencephalography"] = {
	display = "[[electrencephalography]]",
	topical_categories = {"Electrencephalography"} }

labels["electrical engineering"] = {
	topical_categories = {"Electrical engineering"} }

labels["electricity"] = {
	topical_categories = {"Electricity"} }

labels["electrodynamics"] = {
	topical_categories = {"Electrodynamics"} }

labels["electromagnetism"] = {
	topical_categories = {"Electromagnetism"} }

labels["electronics"] = {
	topical_categories = {"Electronics"} }

labels["element symbol"] = {
	display = "chemistry",
	plain_categories = {"Symbols for chemical elements"} }

labels["embryology"] = {
	topical_categories = {"Embryology"} }

labels["emergency medicine"] = {
	display = "[[emergency medicine]]",
	topical_categories = {"Emergency medicine"} }

labels["endocrinology"] = {
	display = "[[endocrinology]]",
	topical_categories = {"Endocrinology"} }

labels["engineering"] = {
	display = "[[engineering]]",
	topical_categories = {"Engineering"} }

labels["enterprise engineering"] = {
	topical_categories = {"Enterprise engineering"} }

labels["entomology"] = {
	display = "[[entomology]]",
	topical_categories = {"Entomology"} }

labels["enzyme"] = {
	display = "biochemistry",
	topical_categories = {"Enzymes"} }

labels["epidemiology"] = {
	display = "[[epidemiology]]",
	topical_categories = {"Epidemiology"} }

labels["epistemology"] = {
	display = "[[epistemology]]",
	topical_categories = {"Epistemology"} }

labels["equestrianism"] = {
	display = "[[equestrianism]]",
	topical_categories = {"Equestrianism"} }

labels["espionage"] = {
	display = "[[espionage]]",
	topical_categories = {"Espionage"} }

labels["ethics"] = {
	topical_categories = {"Ethics"} }

labels["ethnography"] = {
	display = "[[ethnography]]",
	topical_categories = {"Ethnography"} }

labels["European folklore"] = {
	display = "European [[folklore]]",
	topical_categories = {"European folklore"} }

labels["exercise"] = {
	display = "[[exercise|exercise (sport)]]",
	topical_categories = {"Exercise"} }

labels["falconry"] = {
	display = "[[falconry]]",
	topical_categories = {"Falconry"} }

labels["fantasy"] = {
	topical_categories = {"Fantasy"} }

labels["fashion"] = {
	topical_categories = {"Fashion"} }

labels["fatty acid"] = {
	display = "organic chemistry",
	topical_categories = {"Fatty acids"} }

labels["felid"] = {
	display = "[[zoology]]",
	topical_categories = {"Felids"} }

labels["feminism"] = {
	display = "[[feminism]]",
	topical_categories = {"Feminism"} }

labels["fencing"] = {
	display = "[[fencing]]",
	topical_categories = {"Fencing"} }

labels["fiction"] = {
	topical_categories = {"Fiction"} }

labels["fictional character"] = {
	topical_categories = {"Fictional characters"} }

labels["field hockey"] = {
	display = "[[field hockey]]",
	topical_categories = {"Field hockey"} }

labels["figure of speech"] = {
	display = "rhetoric",
	topical_categories = {"Figures of speech"} }

labels["figure skating"] = {
	display = "[[figure skating]]",
	topical_categories = {"Figure skating"} }

labels["film"] = {
	topical_categories = {"Film"} }
aliases["cinema"] = "film"

labels["finance"] = {
	topical_categories = {"Finance"} }

labels["firefighting"] = {
	topical_categories = {"Firefighting"} }

labels["fishing"] = {
	display = "[[fishing]]",
	topical_categories = {"Fishing"} }
aliases["angling"] = "fishing"

labels["fluid dynamics"] = {
	topical_categories = {"Fluid dynamics"} }

labels["fluid mechanics"] = {
	topical_categories = {"Mechanics"} }

labels["folklore"] = {
	display = "folklore",
	topical_categories = {"Folklore"} }

labels["footwear"] = {
	display = "[[footwear]]",
	topical_categories = {"Footwear"} }

labels["forestry"] = {
	topical_categories = {"Forestry"} }

labels["freemasonry"] = {
	display = "[[freemasonry]]",
	topical_categories = {"Freemasonry"} }

labels["functional analysis"] = {
	display = "[[functional analysis]]",
	topical_categories = {"Functional analysis"} }

labels["functional group prefix"] = {
	display = "organic chemistry",
	topical_categories = {"Functional group prefixes"} }

labels["functional group suffix"] = {
	display = "organic chemistry",
	topical_categories = {"Functional group suffixes"} }

labels["furniture"] = {
	topical_categories = {"Furniture"} }

labels["fuzzy logic"] = {
	display = "[[fuzzy logic]]",
	topical_categories = {"Fuzzy logic"} }

labels["Gaelic football"] = {
	display = "[[Gaelic football]]",
	topical_categories = {"Gaelic football"} }

labels["galaxy"] = {
	display = "astronomy",
	topical_categories = {"Galaxies"} }

labels["gambling"] = {
	topical_categories = {"Gambling"} }

labels["game of go"] = {
	display = "[[Go|game of Go]]",
	topical_categories = {"Go"} }

labels["game theory"] = {
	display = "[[game theory]]",
	topical_categories = {"Game theory"} }

labels["games"] = {
	display = "[[game]]s",
	topical_categories = {"Games"} }
aliases["game"] = "games"

labels["gaming"] = {
	display = "[[gaming]]",
	topical_categories = {"Gaming"} }

labels["genealogy"] = {
	topical_categories = {"Genealogy"} }

labels["genetic disorder"] = {
	display = "[[medical]] [[genetics]]",
	topical_categories = {"Genetic disorders"} }

labels["genetics"] = {
	display = "[[genetics]]",
	topical_categories = {"Genetics"} }

labels["geography"] = {
	display = "[[geography]]",
	topical_categories = {"Geography"} }

labels["geology"] = {
	display = "[[geology]]",
	topical_categories = {"Geology"} }

labels["geometry"] = {
	display = "[[geometry]]",
	topical_categories = {"Geometry"} }

labels["geomorphology"] = {
	display = "[[geomorphology]]",
	topical_categories = {"Geomorphology"} }

labels["gerontology"] = {
	display = "[[gerontology]]",
	topical_categories = {"Gerontology"} }

labels["glassblowing"] = {
	topical_categories = {"Glassblowing"} }

labels["Gnosticism"] = {
	topical_categories = {"Gnosticism"} }
aliases["gnosticism"] = "Gnosticism"

labels["golf"] = {
	display = "[[golf]]",
	topical_categories = {"Golf"} }

labels["government"] = {
	topical_categories = {"Government"} }

labels["grammar"] = {
	display = "[[grammar]]",
	topical_categories = {"Grammar"} }

labels["graph theory"] = {
	display = "[[graph theory]]",
	topical_categories = {"Graph theory"} }

labels["graphical user interface"] = {
	display = "[[graphical user interface]]",
	topical_categories = {"Graphical user interface"} }
aliases["GUI"] = "graphical user interface"

labels["Greek god"] = {
	display = "[[Greek]] [[mythology]]",
	topical_categories = {"Greek deities"} }

labels["Greek mythology"] = {
	display = "[[Greek]] [[mythology]]",
	topical_categories = {"Greek mythology"} }
aliases["greekmyth"] = "Greek mythology"
deprecated["greekmyth"] = true

labels["group theory"] = {
	display = "[[group theory]]",
	topical_categories = {"Group theory"} }

labels["gymnastics"] = {
	display = "[[gymnastics]]",
	topical_categories = {"Gymnastics"} }

labels["gynaecology"] = {
	topical_categories = {"Gynaecology"} }

labels["handball"] = {
	display = "[[handball]]",
	topical_categories = {"Handball"} }

labels["Hawaiian mythology"] = {
	display = "[[Hawaiian]] [[mythology]]",
	topical_categories = {"Hawaiian mythology"} }

labels["healthcare"] = {
	topical_categories = {"Healthcare"} }

labels["hematology"] = {
	topical_categories = {"Hematology"} }

labels["heraldiccharge"] = {
	display = "heraldry",
	topical_categories = {"Heraldic charges"} }

labels["heraldry"] = {
	topical_categories = {"Heraldry"} }

labels["herbalism"] = {
	topical_categories = {"Herbs"} }

labels["herpetology"] = {
	display = "[[herpetology]]",
	topical_categories = {"Herpetology"} }

labels["Hinduism"] = {
	topical_categories = {"Hinduism"} }

labels["Hindu god"] = {
	display = "Hinduism",
	topical_categories = {"Hindu deities"} }

labels["historiography"] = {
	topical_categories = {"Historiography"} }

labels["history"] = {
	topical_categories = {"History"} }

labels["hockey"] = {
	display = "[[field hockey]] or [[ice hockey]]",
	topical_categories = {"Field hockey", "Ice hockey"} }

labels["Hokkien"] = {
	display = "Hokkien",
	regional_categories = {"Hokkien"} }

labels["homeopathy"] = {
	topical_categories = {"Homeopathy"} }

labels["hormone"] = {
	display = "biochemistry",
	topical_categories = {"Hormones"} }

labels["horse racing"] = {
	display = "[[horse racing]]",
	topical_categories = {"Horse racing"} }

labels["horticulture"] = {
	topical_categories = {"Horticulture"} }
aliases["gardening"] = "horticulture"

labels["HTML"] = {
	topical_categories = {"HTML"} }

labels["human resources"] = {
	topical_categories = {"Human resources"} }

labels["humanities"] = {
	topical_categories = {"Humanities"} }

labels["hunting"] = {
	topical_categories = {"Hunting"} }

labels["hurling"] = {
	display = "[[hurling]]",
	topical_categories = {"Hurling"} }

labels["hydrocarbon chain prefix"] = {
	display = "organic chemistry",
	topical_categories = {"Hydrocarbon chain prefixes"} }

labels["hydrocarbon chain suffix"] = {
	display = "organic chemistry",
	topical_categories = {"Hydrocarbon chain suffixes"} }

labels["hydrology"] = {
	display = "[[hydrology]]",
	topical_categories = {"Hydrology"} }

labels["ice hockey"] = {
	display = "[[ice hockey]]",
	topical_categories = {"Ice hockey"} }

labels["ichthyology"] = {
	display = "[[ichthyology]]",
	topical_categories = {"Ichthyology"} }

labels["immunochemistry"] = {
	topical_categories = {"Immunochemistry"} }

labels["immunology"] = {
	display = "[[immunology]]",
	topical_categories = {"Immunology"} }

labels["import/export"] = {
	topical_categories = {"Import/export"} }

labels["incoterm"] = {
	display = "[[incoterm]]",
	topical_categories = {"Incoterms"} }

labels["Indo-European studies"] = {
	display = "[[linguistics]]",
	topical_categories = {"Indo-European studies"} }
aliases["indo-european studies"] = "Indo-European studies"

labels["information science"] = {
	topical_categories = {"Information science"} }

labels["information theory"] = {
	topical_categories = {"Information theory"} }

labels["inorganic chemistry"] = {
	topical_categories = {"Inorganic chemistry"} }

labels["inorganic compound"] = {
	display = "inorganic chemistry",
	topical_categories = {"Inorganic compounds"} }

labels["international law"] = {
	topical_categories = {"International law"} }

labels["Internet"] = {
	display = "[[Internet]]",
	topical_categories = {"Internet"} }
aliases["internet"] = "Internet"
aliases["online"] = "Internet"

labels["Iranian mythology"] = {
	display = "[[Iranian]] [[mythology]]",
	topical_categories = {"Iranian mythology"} }

labels["Irish mythology"] = {
	display = "[[Irish]] [[mythology]]",
	topical_categories = {"Irish mythology"} }

labels["Islam"] = {
	topical_categories = {"Islam"} }

labels["isotope"] = {
	display = "[[physics]]",
	topical_categories = {"Isotopes"} }

labels["Jainism"] = {
	topical_categories = {"Jainism"} }

labels["Java programming language"] = {
	display = "[[w:Java (programming language)|Java programming language]]",
	topical_categories = {"Java programming language"} }
aliases["JavaPL"] = "Java programming language"
aliases["Java PL"] = "Java programming language"

labels["jazz"] = {
	topical_categories = {"Jazz"} }

labels["Jewish law"] = {
	topical_categories = {"Jewish law"} }
aliases["Halacha"] = "Jewish law"
aliases["Halachah"] = "Jewish law"
aliases["Halakha"] = "Jewish law"
aliases["Halakhah"] = "Jewish law"
aliases["halacha"] = "Jewish law"
aliases["halachah"] = "Jewish law"
aliases["halakha"] = "Jewish law"
aliases["halakhah"] = "Jewish law"
aliases["jewish law"] = "Jewish law"
aliases["Jewish Law"] = "Jewish law"

labels["journalism"] = {
	topical_categories = {"Media"} }

labels["Judaism"] = {
	topical_categories = {"Judaism"} }

labels["judo"] = {
	display = "[[judo]]",
	topical_categories = {"Judo"} }

labels["juggling"] = {
	topical_categories = {"Juggling"} }

labels["knitting"] = {
	topical_categories = {"Knitting"} }

labels["lacrosse"] = {
	display = "[[lacrosse]]",
	topical_categories = {"Lacrosse"} }

labels["landforms"] = {
	display = "landform",
	topical_categories = {"Landforms"} }

labels["law"] = {
	topical_categories = {"Law"} }
aliases["legal"] = "law"

labels["law enforcement"] = {
	topical_categories = {"Law enforcement"} }
aliases["police"] = "law enforcement"

labels["letterpress"] = {
	display = "letterpress typography",
	topical_categories = {"Typography"} }
aliases["metal type"] = "letterpress"
aliases["metal typesetting"] = "letterpress"

labels["lexicography"] = {
	display = "[[lexicography]]",
	topical_categories = {"Lexicography"} }

labels["LGBT"] = {
	display = "[[LGBT]]",
	topical_categories = {"LGBT"} }

labels["library science"] = {
	topical_categories = {"Library science"} }

labels["lichenology"] = {
	display = "[[lichenology]]",
	topical_categories = {"Lichenology"} }

labels["limnology"] = {
	display = "[[limnology]]",
	topical_categories = {"Ecology"} }

labels["linear algebra"] = {
	topical_categories = {"Linear algebra"} }
aliases["vector"] = "linear algebra"
aliases["vector algebra"] = "linear algebra"
deprecated["vector"] = true

labels["linguistic morphology"] = {
	display = "linguistics",
	topical_categories = {"Linguistic morphology"} }
aliases["morphology"] = "linguistic morphology"
deprecated["morphology"] = true

labels["linguistics"] = {
	display = "[[linguistics]]",
	topical_categories = {"Linguistics"} }

labels["literature"] = {
	topical_categories = {"Literature"} }

labels["logic"] = {
	topical_categories = {"Logic"} }

labels["logical fallacy"] = {
	display = "[[rhetoric]]",
	topical_categories = {"Logical fallacies"} }

labels["luge"] = {
	display = "[[luge]]",
	topical_categories = {"Luge"} }

labels["machining"] = {
	topical_categories = {"Machining"} }

labels["mahjong"] = {
	display = "[[mahjong]]",
	topical_categories = {"Mahjong"} }

labels["malacology"] = {
	display = "[[malacology]]",
	topical_categories = {"Malacology"} }

labels["mammalogy"] = {
	display = "[[mammalogy]]",
	topical_categories = {"Mammalogy"} }

labels["management"] = {
	topical_categories = {"Management"} }

labels["manga"] = {
	display = "[[manga]]",
	topical_categories = {"Japanese fiction"} }

labels["manufacturing"] = {
	topical_categories = {"Manufacturing"} }
aliases["industry"] = "manufacturing"
deprecated["industry"] = true

labels["marching"] = {
	display = "[[w:Marching|marching]]",
	topical_categories = {"Marching"} }

labels["marine biology"] = {
	display = "[[marine biology]]",
	topical_categories = {"Marine biology"} }
aliases["coral science"] = "marine biology"

labels["marketing"] = {
	topical_categories = {"Marketing"} }

labels["martial arts"] = {
	display = "[[martial arts]]",
	topical_categories = {"Martial arts"} }

labels["Marxism"] = {
	display = "[[Marxism]]",
	topical_categories = {"Marxism"} }

labels["massage"] = {
	display = "[[massage]]",
	topical_categories = {"Massage"} }

labels["materials science"] = {
	topical_categories = {"Materials science"} }

labels["mathematics"] = {
	display = "[[mathematics]]",
	topical_categories = {"Mathematics"} }
aliases["math"] = "mathematics"
aliases["maths"] = "mathematics"

labels["mechanical engineering"] = {
	topical_categories = {"Mechanical engineering"} }

labels["mechanics"] = {
	topical_categories = {"Mechanics"} }

labels["media"] = {
	topical_categories = {"Media"} }

labels["mediaeval folklore"] = {
	display = "mediaeval [[folklore]]",
	topical_categories = {"European folklore"} }
aliases["medieval folklore"] = "mediaeval folklore"

labels["medical genetics"] = {
	display = "[[medical]] [[genetics]]",
	topical_categories = {"Medical genetics"} }

labels["medicine"] = {
	display = "[[medicine]]",
	topical_categories = {"Medicine"} }
aliases["medical"] = "medicine"

labels["Mesopotamian god"] = {
	display = "[[Mesopotamian]] [[mythology]]",
	topical_categories = {"Mesopotamian deities"} }

labels["Mesopotamian mythology"] = {
	display = "[[Mesopotamian]] [[mythology]]",
	topical_categories = {"Mesopotamian mythology"} }

labels["metadata"] = {
	topical_categories = {"Data management"} }

labels["metallurgy"] = {
	display = "[[metallurgy]]",
	topical_categories = {"Metallurgy"} }

labels["metamaterial"] = {
	display = "[[physics]]",
	topical_categories = {"Metamaterials"} }

labels["metaphysics"] = {
	topical_categories = {"Metaphysics"} }

labels["meteorology"] = {
	display = "[[meteorology]]",
	topical_categories = {"Meteorology"} }

labels["metrology"] = {
	topical_categories = {"Metrology"} }

labels["microbiology"] = {
	topical_categories = {"Microbiology"} }

labels["microelectronics"] = {
	topical_categories = {"Microelectronics"} }

labels["microscopy"] = {
	topical_categories = {"Microscopy"} }

labels["military"] = {
	display = "[[military]]",
	topical_categories = {"Military"} }

labels["military ranks"] = {
	display = "military",
	topical_categories = {"Military ranks"} }
aliases["military rank"] = "military ranks"

labels["military unit"] = {
	display = "military",
	topical_categories = {"Military units"} }

labels["mineral"] = {
	display = "mineralogy",
	topical_categories = {"Minerals"} }

labels["mineralogy"] = {
	topical_categories = {"Mineralogy"} }

labels["mining"] = {
	topical_categories = {"Mining"} }

labels["mobile phones"] = {
	display = "mobile telephony",
	topical_categories = {"Mobile phones"} }
aliases["cell phone"] = "mobile phones"
aliases["cell phones"] = "mobile phones"
aliases["mobile phone"] = "mobile phones"
aliases["mobile telephony"] = "mobile phones"

labels["molecular biology"] = {
	topical_categories = {"Molecular biology"} }

labels["monarchy"] = {
	topical_categories = {"Monarchy"} }

labels["money"] = {
	topical_categories = {"Money"} }

labels["Mormonism"] = {
	topical_categories = {"Mormonism"} }

labels["motorcycling"] = {
	topical_categories = {"Motorcycles"} }

labels["motor racing"] = {
	display = "[[motor racing]]",
	topical_categories = {"Motor racing"} }
aliases["motor sport"] = "motor racing"

labels["muscle"] = {
	display = "anatomy",
	topical_categories = {"Muscles"} }

labels["mushroom"] = {
	display = "mycology",
	topical_categories = {"Mushrooms"} }
aliases["mushrooms"] = "mushroom"

labels["music"] = {
	display = "[[music]]",
	topical_categories = {"Music"} }

labels["musical instruments"] = {
	display = "[[music]]",
	topical_categories = {"Musical instruments"} }
aliases["musical instrument"] = "musical instruments"
aliases["musici"] = "musical instruments"
deprecated["musici"] = true

labels["music genre"] = {
	display = "[[music]]",
	topical_categories = {"Music genres"} }

labels["musician"] = {
	display = "[[music]]",
	topical_categories = {"Musicians"} }

labels["mycology"] = {
	display = "[[mycology]]",
	topical_categories = {"Mycology"} }

labels["mythological creature"] = {
	display = "[[mythology]]",
	topical_categories = {"Mythological creatures"} }

labels["mythology"] = {
	display = "[[mythology]]",
	topical_categories = {"Mythology"} }

labels["nanotechnology"] = {
	topical_categories = {"Nanotechnology"} }

labels["narratology"] = {
	topical_categories = {"Narratology"} }

labels["nautical"] = {
	display = "[[nautical]]",
	topical_categories = {"Nautical"} }

labels["navigation"] = {
	topical_categories = {"Navigation"} }

labels["Nazism"] = {
	display = "[[w:Nazism|Nazism]]",
	topical_categories = {"Nazism"} }
aliases["Nazi"] = "Nazism"
aliases["nazi"] = "Nazism"
aliases["nazism"] = "Nazism"

labels["nematology"] = {
	topical_categories = {"Zoology"} }

labels["netball"] = {
	display = "[[netball]]",
	topical_categories = {"Netball"} }

labels["networking"] = {
	topical_categories = {"Networking"} }

labels["neuroanatomy"] = {
	topical_categories = {"Neuroanatomy"} }

labels["neurology"] = {
	display = "[[neurology]]",
	topical_categories = {"Neurology"} }

labels["neuroscience"] = {
	topical_categories = {"Neuroscience"} }

labels["neurosurgery"] = {
	topical_categories = {"Neurosurgery"} }

labels["neurotoxin"] = {
	display = "neurotoxicology",
	topical_categories = {"Neurotoxins"} }

labels["neurotransmitter"] = {
	display = "biochemistry",
	topical_categories = {"Neurotransmitters"} }

labels["newspapers"] = {
	topical_categories = {"Newspapers"} }

labels["Norse mythology"] = {
	display = "[[Norse]] [[mythology]]",
	topical_categories = {"Norse mythology"} }

labels["nuclear physics"] = {
	topical_categories = {"Nuclear physics"} }

labels["number theory"] = {
	topical_categories = {"Number theory"} }

labels["numismatics"] = {
	topical_categories = {"Money"} }

labels["nutrition"] = {
	topical_categories = {"Nutrition"} }

labels["object-oriented"] = {
	display = "[[w:Object-oriented programming|object-oriented programming]]",
	topical_categories = {"Object-oriented programming"} }
aliases["object-oriented programming"] = "object-oriented"

labels["occult"] = {
	topical_categories = {"Occult"} }

labels["oceanography"] = {
	topical_categories = {"Oceanography"} }

labels["oenology"] = {
	topical_categories = {"Wine"} }

labels["oil industry"] = {
	topical_categories = {"Oil industry"} }
aliases["oil drilling"] = "oil industry"

labels["oncology"] = {
	display = "[[oncology]]",
	topical_categories = {"Oncology"} }

labels["online gaming"] = {
	topical_categories = {"Video games"} }
aliases["online games"] = "online gaming"
aliases["MMO"] = "online gaming"
aliases["MMORPG"] = "online gaming"

labels["opera"] = {
	topical_categories = {"Opera"} }

labels["operating systems"] = {
	topical_categories = {"Software"} }

labels["ophthalmology"] = {
	topical_categories = {"Ophthalmology"} }

labels["optics"] = {
	topical_categories = {"Optics"} }

labels["organic chemistry"] = {
	topical_categories = {"Organic chemistry"} }

labels["organic compound"] = {
	display = "organic chemistry",
	topical_categories = {"Organic compounds"} }

labels["ornithology"] = {
	topical_categories = {"Ornithology"} }

labels["orthodontics"] = {
	topical_categories = {"Dentistry"} }

labels["orthography"] = {
	topical_categories = {"Orthography"} }

labels["paganism"] = {
	topical_categories = {"Paganism"} }
aliases["pagan"] = "paganism"
aliases["neopagan"] = "paganism"
aliases["neopaganism"] = "paganism"
aliases["neo-pagan"] = "paganism"
aliases["neo-paganism"] = "paganism"

labels["paintball"] = {
	display = "[[paintball]]",
	topical_categories = {"Paintball"} }

labels["painting"] = {
	topical_categories = {"Painting"} }

labels["palaeography"] = {
	display = "[[paleography|palaeography]]",
	topical_categories = {"Palaeography"} }
aliases["paleography"] = "palaeography"

labels["paleontology"] = {
	display = "[[paleontology]]",
	topical_categories = {"Paleontology"} }
aliases["palaeontology"] = "paleontology"

labels["palmistry"] = {
	topical_categories = {"Palmistry"} }

labels["palynology"] = {
	display = "[[palynology]]",
	topical_categories = {"Palynology"} }

labels["parapsychology"] = {
	topical_categories = {"Parapsychology"} }

labels["part of speech"] = {
	display = "[[grammar]]",
	topical_categories = {"Parts of speech"} }

labels["particle"] = {
	display = "physics",
	topical_categories = {"Subatomic particles"} }

labels["particle physics"] = {
	display = "[[particle physics]]",
	topical_categories = {"Particle physics"} }

labels["pasteurisation"] = {
	display = "[[pasteurisation#English|pasteurisation]]",
	topical_categories = {"Pasteurisation"} }

labels["patent law"] = {
	display = "patents",
	topical_categories = {"Patent law"} }
aliases["patents"] = "patent law"

labels["pathology"] = {
	display = "[[pathology]]",
	topical_categories = {"Pathology"} }

labels["petrochemistry"] = {
	topical_categories = {"Petrochemistry"} }

labels["petrology"] = {
	display = "[[petrology]]",
	topical_categories = {"Petrology"} }

labels["pharmaceutical drug"] = {
	display = "[[pharmacology]]",
	topical_categories = {"Pharmaceutical drugs"} }

labels["pharmacology"] = {
	display = "[[pharmacology]]",
	topical_categories = {"Pharmacology"} }

labels["pharmacy"] = {
	topical_categories = {"Pharmacy"} }

labels["pharyngology"] = {
	display = "[[pharyngology]]",
	topical_categories = {"Pharyngology"} }

labels["philately"] = {
	topical_categories = {"Philately"} }

labels["philosophy"] = {
	display = "[[philosophy]]",
	topical_categories = {"Philosophy"} }

labels["phonetics"] = {
	display = "[[phonetics]]",
	topical_categories = {"Phonetics"} }

labels["phonology"] = {
	display = "[[phonology]]",
	topical_categories = {"Phonology"} }

labels["photography"] = {
	display = "[[photography]]",
	topical_categories = {"Photography"} }

labels["phrenology"] = {
	display = "[[phrenology]]",
	topical_categories = {"Phrenology"} }

labels["physical chemistry"] = {
	display = "[[physical chemistry]]",
	topical_categories = {"Physical chemistry"} }

labels["physics"] = {
	display = "[[physics]]",
	topical_categories = {"Physics"} }

labels["physiology"] = {
	display = "[[physiology]]",
	topical_categories = {"Physiology"} }

labels["phytopathology"] = {
	display = "[[phytopathology]]",
	topical_categories = {"Phytopathology"} }

labels["planetology"] = {
	display = "[[planetology]]",
	topical_categories = {"Planetology"} }

labels["plant"] = {
	display = "botany",
	topical_categories = {"Plants"} }

labels["plant disease"] = {
	display = "[[phytopathology]]",
	topical_categories = {"Plant diseases"} }

labels["poetry"] = {
	topical_categories = {"Poetry"} }

labels["poison"] = {
	display = "toxicology",
	topical_categories = {"Poisons"} }

labels["poker"] = {
	display = "[[poker]]",
	topical_categories = {"Poker"} }

labels["poker slang"] = {
	display = "[[poker]] [[slang]]",
	topical_categories = {"Poker"} }

labels["political science"] = {
	topical_categories = {"Political science"} }

labels["political subdivision"] = {
	display = "government",
	topical_categories = {"Political subdivisions"} }

labels["politics"] = {
	topical_categories = {"Politics"} }
aliases["political"] = "politics"

labels["polymer science"] = {
	topical_categories = {"Polymer science"} }

labels["pornography"] = {
	topical_categories = {"Pornography"} }

labels["Portuguese folklore"] = {
	display = "Portuguese [[folklore]]",
	topical_categories = {"European folklore"} }

labels["pottery"] = {
	topical_categories = {"Ceramics"} }

labels["pragmatics"] = {
	topical_categories = {"Pragmatics"} }

labels["printing"] = {
	display = "[[printing]]",
	topical_categories = {"Printing"} }

labels["probability theory"] = {
	topical_categories = {"Probability theory"} }

labels["programming"] = {
	display = "[[programming]]",
	topical_categories = {"Programming"} }
aliases["computer programming"] = "programming"

labels["pronominal"] = {
	display = "takes a [[reflexive pronoun]]" }

labels["property law"] = {
	topical_categories = {"Property law"} }

labels["prosody"] = {
	topical_categories = {"Prosody"} }

labels["protein"] = {
	display = "biochemistry",
	topical_categories = {"Proteins"} }
aliases["proteins"] = "protein"

labels["Protestantism"] = {
	topical_categories = {"Protestantism"} }

labels["pseudoscience"] = {
	topical_categories = {"Pseudoscience"} }

labels["psychiatry"] = {
	topical_categories = {"Psychiatry"} }

labels["psychoanalysis"] = {
	topical_categories = {"Psychoanalysis"} }

labels["psychology"] = {
	topical_categories = {"Psychology"} }

labels["psychotherapy"] = {
	topical_categories = {"Psychotherapy"} }

labels["publishing"] = {
	display = "[[publishing]]",
	topical_categories = {"Publishing"} }

labels["pyrotechnics"] = {
	topical_categories = {"Pyrotechnics"} }

labels["Quakerism"] = {
	topical_categories = {"Quakerism"} }

labels["quantum mechanics"] = {
	display = "[[quantum mechanics]]",
	topical_categories = {"Quantum mechanics"} }
aliases["quantum physics"] = "quantum mechanics"
aliases["quantum"] = "quantum mechanics"
deprecated["quantum"] = true

labels["radiation"] = {
	display = "[[physics]]",
	topical_categories = {"Radiation"} }

labels["radio"] = {
	display = "[[radio]]",
	topical_categories = {"Radio"} }

labels["Raëlism"] = {
	display = "[[Raëlism]]",
	topical_categories = {"Raëlism"} }

labels["rail transport"] = {
	topical_categories = {"Rail transportation"} }
aliases["railroading"] = "rail transport"
aliases["rail"] = "rail transport"

labels["railroads"] = {
	display = "rail transport",
	topical_categories = {"Rail transportation"} }

labels["rasta"] = {
	display = "Rastafarian",
	topical_categories = {"Rastafarian"} }

labels["real estate"] = {
	display = "[[real estate]]",
	topical_categories = {"Real estate"} }

labels["relativity"] = {
	display = "physics",
	topical_categories = {"Relativity"} }

labels["religion"] = {
	display = "[[religion]]",
	topical_categories = {"Religion"} }

labels["rhetoric"] = {
	display = "[[rhetoric]]",
	topical_categories = {"Rhetoric"} }

labels["robotics"] = {
	topical_categories = {"Robotics"} }

labels["role-playing games"] = {
	topical_categories = {"Role-playing games"} }
aliases["role playing games"] = "role-playing games"
aliases["RPG"] = "role-playing games"

labels["roller derby"] = {
	display = "[[roller derby]]",
	topical_categories = {"Roller derby"} }

labels["Roman Catholicism"] = {
	topical_categories = {"Roman Catholicism"} }

labels["Roman god"] = {
	display = "[[Roman]] [[mythology]]",
	topical_categories = {"Roman deities"} }

labels["Roman mythology"] = {
	display = "[[Roman]] [[mythology]]",
	topical_categories = {"Roman mythology"} }

labels["roofing"] = {
	topical_categories = {"Roofing"} }

labels["rosiculture"] = {
	display = "[[rosiculture]]",
	topical_categories = {"Rosiculture"} }

labels["rowing"] = {
	display = "[[rowing]]",
	topical_categories = {"Rowing"} }

labels["Rubik's Cube"] = {
	display = "[[Rubik's Cube]]",
	topical_categories = {"Rubik's Cube"} }
aliases["Rubik's cubes"] = "Rubik's Cube"

labels["rugby"] = {
	display = "[[rugby]]",
	topical_categories = {"Rugby"} }

labels["rugby league"] = {
	topical_categories = {"Rugby league"} }

labels["rugby union"] = {
	display = "[[rugby union]]",
	topical_categories = {"Rugby union"} }

labels["sailing"] = {
	display = "[[sailing]]",
	topical_categories = {"Sailing"} }

labels["schools"] = {
	display = "education",
	topical_categories = {"Schools"} }

labels["science fiction"] = {
	topical_categories = {"Science fiction"} }
aliases["scifi"] = "science fiction"

labels["sciences"] = {
	topical_categories = {"Sciences"} }
aliases["science"] = "sciences"
aliases["scientific"] = "sciences"

labels["Scientology"] = {
	display = "[[Scientology]]",
	topical_categories = {"Scientology"} }

labels["scrapbooks"] = {
	topical_categories = {"Scrapbooks"} }

labels["sculpture"] = {
	topical_categories = {"Sculpture"} }

labels["seduction community"] = {
	display = "[[w:Seduction community|seduction community]]",
	topical_categories = {"Seduction community"} }

labels["seismology"] = {
	display = "[[seismology]]",
	topical_categories = {"Seismology"} }

labels["semantics"] = {
	topical_categories = {"Semantics"} }

labels["semiotics"] = {
	topical_categories = {"Semiotics"} }

labels["set theory"] = {
	topical_categories = {"Set theory"} }

labels["sewing"] = {
	topical_categories = {"Sewing"} }

labels["sexology"] = {
	topical_categories = {"Sexology"} }

labels["sexuality"] = {
	display = "[[sexuality]]",
	topical_categories = {"Sexuality"} }

labels["Shinto"] = {
	display = "[[Shintō]]",
	topical_categories = {"Shinto"} }

labels["shipping"] = {
	topical_categories = {"Shipping"} }

labels["shogi"] = {
	display = "[[shogi]]",
	topical_categories = {"Shogi"} }

labels["signal processing"] = {
	topical_categories = {"Signal processing"} }

labels["Sikhism"] = {
	topical_categories = {"Sikhism"} }

labels["singing"] = {
	display = "[[singing]]",
	topical_categories = {"Singing"} }

labels["skateboarding"] = {
	display = "[[skateboarding]]",
	topical_categories = {"Skateboarding"} }

labels["skating"] = {
	display = "[[skating]]",
	topical_categories = {"Skating"} }

labels["skeleton"] = {
	display = "anatomy",
	topical_categories = {"Skeleton"} }

labels["skiing"] = {
	display = "[[skiing]]",
	topical_categories = {"Skiing"} }

labels["snooker"] = {
	display = "[[snooker]]",
	topical_categories = {"Snooker"} }

labels["snowboarding"] = {
	display = "[[snowboarding]]",
	topical_categories = {"Snowboarding"} }

labels["soccer"] = {
	display = "[[soccer]]",
	topical_categories = {"Football (soccer)"} }
aliases["football"] = "soccer"

labels["social sciences"] = {
	topical_categories = {"Social sciences"} }
aliases["social science"] = "social sciences"

labels["sociolinguistics"] = {
	topical_categories = {"Sociolinguistics"} }

labels["sociology"] = {
	topical_categories = {"Sociology"} }

labels["softball"] = {
	display = "[[softball]]",
	topical_categories = {"Softball"} }

labels["software"] = {
	topical_categories = {"Software"} }

labels["software architecture"] = {
	topical_categories = {"Software engineering", "Programming"} }

labels["software engineering"] = {
	topical_categories = {"Software engineering"} }

labels["soil science"] = {
	topical_categories = {"Soil science"} }

labels["sound"] = {
	display = "[[sound]]",
	topical_categories = {"Sound"} }

labels["sound engineering"] = {
	topical_categories = {"Sound engineering"} }

labels["Soviet Union"] = {
	topical_categories = {"Soviet Union"} }
aliases["USSR"] = "Soviet Union"

labels["space flight"] = {
	topical_categories = {"Space"} }

labels["space science"] = {
	topical_categories = {"Space"} }
aliases["space"] = "space science"

labels["spectroscopy"] = {
	topical_categories = {"Spectroscopy"} }

labels["spiritualism"] = {
	topical_categories = {"Spiritualism"} }

labels["sports"] = {
	display = "[[sports]]",
	topical_categories = {"Sports"} }
aliases["sport"] = "sports"

labels["squash"] = {
	display = "[[squash|squash (sport)]]",
	topical_categories = {"Squash"} }

labels["standard of identity"] = {
	display = "[[standard of identity]]",
	topical_categories = {"Standards of identity"} }

labels["star"] = {
	display = "astronomy",
	topical_categories = {"Stars"} }

labels["statistics"] = {
	topical_categories = {"Statistics"} }

labels["Star Wars"] = {
	topical_categories = {"Star Wars"} }

labels["steroid"] = {
	display = "[[biochemistry]]",
	topical_categories = {"Steroids"} }

labels["steroid hormone"] = {
	display = "[[biochemistry]], [[steroids]]",
	topical_categories = {"Hormones"} }
aliases["steroid drug"] = "steroid hormone"

labels["stock market"] = {
	topical_categories = {"Stock market"} }

labels["stock symbol"] = {
	topical_categories = {"Stock symbols for companies"} }

labels["subculture"] = {
	topical_categories = {"Culture"} }

labels["sumo"] = {
	display = "[[sumo]]",
	topical_categories = {"Sumo"} }

labels["surface feature"] = {
	display = "planetology",
	topical_categories = {"Planetary nomenclature"} }

labels["surfing"] = {
	display = "[[surfing]]",
	topical_categories = {"Surfing"} }

labels["surgery"] = {
	display = "[[surgery]]",
	topical_categories = {"Surgery"} }

labels["surveying"] = {
	topical_categories = {"Surveying"} }

labels["sushi"] = {
	topical_categories = {"Sushi"} }

labels["swimming"] = {
	display = "[[swimming]]",
	topical_categories = {"Swimming"} }

labels["swords"] = {
	topical_categories = {"Swords"} }

labels["symptom"] = {
	display = "medicine",
	topical_categories = {"Medical signs and symptoms"} }

labels["systematics"] = {
	display = "[[systematics]]",
	topical_categories = {"Systematics"} }

labels["systems engineering"] = {
	topical_categories = {"Systems engineering"} }

labels["systems theory"] = {
	display = "[[systems theory]]",
	topical_categories = {"Systems theory"} }

labels["table tennis"] = {
	display = "[[table tennis]]",
	topical_categories = {"Table tennis"} }

labels["tarot"] = {
	display = "[[tarot]]",
	topical_categories = {"Divination"} }

labels["taxation"] = {
	display = "[[taxation]]",
	topical_categories = {"Law"} }
aliases["tax"] = "taxation"
aliases["taxes"] = "taxation"

labels["taxonomic name"] = {
	display = "taxonomy",
	topical_categories = {"Taxonomic names"} }

labels["taxonomy"] = {
	display = "[[taxonomy]]",
	topical_categories = {"Taxonomy"} }

labels["technology"] = {
	topical_categories = {"Technology"} }

labels["telecommunications"] = {
	topical_categories = {"Telecommunications"} }
aliases["telecommunication"] = "telecommunications"
aliases["telecom"] = "telecommunications"

labels["telegraphy"] = {
	topical_categories = {"Telegraphy"} }

labels["telephony"] = {
	topical_categories = {"Telephony"} }
aliases["telephone"] = "telephony"
aliases["telephones"] = "telephony"

labels["television"] = {
	topical_categories = {"Television"} }

labels["tennis"] = {
	display = "[[tennis]]",
	topical_categories = {"Tennis"} }

labels["teratology"] = {
	topical_categories = {"Teratology"} }

labels["Tetris"] = {
	display = "[[Tetris]]",
	topical_categories = {"Tetris"} }

labels["textiles"] = {
	topical_categories = {"Textiles"} }

labels["theater"] = {
	topical_categories = {"Theater"} }
aliases["theatre"] = "theater"

labels["theology"] = {
	display = "[[theology]]",
	topical_categories = {"Theology"} }

labels["thermodynamics"] = {
	display = "[[thermodynamics]]",
	topical_categories = {"Thermodynamics"} }

labels["tincture"] = {
	display = "[[heraldry]]",
	topical_categories = {"Heraldic tincture"} }

labels["topology"] = {
	display = "[[topology]]",
	topical_categories = {"Topology"} }

labels["tourism"] = {
	topical_categories = {"Tourism"} }

labels["toxicology"] = {
	topical_categories = {"Toxicology"} }

labels["trading"] = {
	topical_categories = {"Trading"} }

labels["trading cards"] = {
	display = "[[trading card]]s",
	topical_categories = {"Trading cards"} }

labels["transgender"] = {
	display = "[[transgender]]",
	topical_categories = {"Transgender"} }

labels["translation studies"] = {
	topical_categories = {"Translation studies"} }

labels["transport"] = {
	topical_categories = {"Transport"} }
aliases["transportation"] = "transport"

labels["travel"] = {
	topical_categories = {"Travel"} }

labels["trigonometry"] = {
	topical_categories = {"Trigonometry"} }

labels["two-up"] = {
	display = "[[two-up]]",
	topical_categories = {"Two-up"} }

labels["typography"] = {
	display = "[[typography]]",
	topical_categories = {"Typography"} }
aliases["typesetting"] = "typography"

labels["ufology"] = {
	display = "[[ufology]]",
	topical_categories = {"Ufology"} }

labels["uranography"] = {
	display = "[[astronomy]]",
	topical_categories = {"Uranograsphy"} }

labels["vegetable"] = {
	display = "[[vegetable]]",
	topical_categories = {"Vegetables"} }
aliases["vegetables"] = "vegetable"

labels["vehicle"] = {
	display = "vehicles",
	topical_categories = {"Vehicles"} }
aliases["vehicles"] = "vehicle"

labels["veterinary medicine"] = {
	topical_categories = {"Veterinary medicine"} }

labels["video game genre"] = {
	display = "[[video game]]s",
	topical_categories = {"Video game genres"} }

labels["video games"] = {
	display = "[[video game]]s",
	topical_categories = {"Video games"} }
aliases["video gaming"] = "video games"

labels["virology"] = {
	topical_categories = {"Virology"} }

labels["vitamin"] = {
	display = "biochemistry",
	topical_categories = {"Vitamins"} }

labels["volcanology"] = {
	topical_categories = {"Volcanology"} }
aliases["vulcanology"] = "volcanology"

labels["volleyball"] = {
	display = "[[volleyball]]",
	topical_categories = {"Volleyball"} }

labels["weaponry"] = {
	topical_categories = {"Weapons"} }
aliases["weapons"] = "weaponry"

labels["weather"] = {
	topical_categories = {"Weather"} }

labels["weaving"] = {
	topical_categories = {"Weaving"} }

labels["web design"] = {
	display = "[[web design]]",
	topical_categories = {"Web design"} }

labels["web development"] = {
	display = "web development",
	topical_categories = {"Programming", "Web design"} }

labels["weightlifting"] = {
	display = "[[weightlifting]]",
	topical_categories = {"Weightlifting"} }

labels["wine"] = {
	topical_categories = {"Wine"} }

labels["woodworking"] = {
	topical_categories = {"Woodworking"} }

labels["wrestling"] = {
	display = "[[wrestling]]",
	topical_categories = {"Wrestling"} }

labels["writing"] = {
	topical_categories = {"Writing"} }

labels["yoga"] = {
	display = "[[yoga]]",
	topical_categories = {"Yoga"} }

labels["yoga pose"] = {
	display = "[[yoga]]",
	topical_categories = {"Yoga poses"} }
aliases["asana"] = "yoga pose"

labels["zodiac constellations"] = {
	display = "[[astronomy]]",
	topical_categories = {"Constellations in the zodiac"} }

labels["zoology"] = {
	display = "[[zoology]]",
	topical_categories = {"Zoology"} }

labels["Zoroastrianism"] = {
	topical_categories = {"Zoroastrianism"} }


-- Usage labels

labels["ACG"] = {
	display = "[[ACG]]",
	pos_categories = {"fandom slang"} } -- see also "fandom slang"

labels["advertising slang"] = {
	pos_categories = {"advertising slang"} }
aliases["ad slang"] = "advertising slang"
aliases["cosmo"] = "advertising slang"

labels["affectionate"] = {
	display = "[[affectionate]]",
	pos_categories = {"affectionate terms"} } -- should be "terms with X senses", leaving "X terms" to the term-context temp
aliases["endearing"] = "affectionate"

labels["archaic"] = {
	display = "[[Appendix:Glossary#archaic|archaic]]",
	sense_categories = {"archaic"} }

labels["Australian slang"] = {
	regional_categories = {"Australian"},
	plain_categories = {"Australian slang"} }

labels["avoidance"] = {
	display = "[[Appendix:Glossary#avoidance|avoidance term]]"}

labels["Braille"] = {
	display = "[[w:Braille|Braille]]" }

labels["British slang"] = {
	plain_categories = {"British slang"} }
aliases["UK slang"] = "British slang"

labels["buzzword"] = {
	display = "[[buzzword]]",
	pos_categories = {"buzzwords"} }

labels["cant"] = {
	display = "[[cant]]",
	pos_categories = {"cant"} }

labels["capitalized"] = {
	display = "[[capitalized]]"}

labels["childish"] = {
	display = "[[childish]]",
	pos_categories = {"childish terms"} } -- should be "terms with X senses", leaving "X terms" to the term-context temp?
aliases["baby talk"] = "childish"
aliases["child language"] = "childish"

labels["chu Nom"] = {
	display = "[[Vietnamese]] [[chữ Nôm]]",
	plain_categories = {"Vietnamese Han tu"} }

labels["Classic 1811 Dictionary of the Vulgar Tongue"] = {
	display = "[[Appendix:Glossary#archaic|archaic]], [[Appendix:Glossary#slang|slang]]",
	plain_categories = {"Classic 1811 Dictionary of the Vulgar Tongue"} }
aliases["1811"] = "Classic 1811 Dictionary of the Vulgar Tongue"

labels["Cockney rhyming slang"] = {
	display = "[[Cockney rhyming slang]]",
	plain_categories = {"Cockney rhyming slang"} }

labels["colloquial"] = {
	display = "[[Appendix:Glossary#colloquial|colloquial]]",
	pos_categories = {"colloquialisms"} }
aliases["colloquially"] = "colloquial"

labels["colloquial-um"] = {
	display = "[[Appendix:Glossary#colloquial|colloquial]]",
	pos_categories = {"colloquialisms containing sequence um"} }

labels["colloquial-un"] = {
	display = "[[Appendix:Glossary#colloquial|colloquial]]",
	pos_categories = {"colloquialisms containing sequence un"} }

labels["dated"] = {
	display = "[[Appendix:Glossary#dated|dated]]",
	pos_categories = {"dated terms"} } -- should be "terms with X senses", leaving "X terms" to the term-context temp

labels["dated form"] = {
	display = "[[Appendix:Glossary#dated|dated form]]",
	pos_categories = {"dated forms"} }

labels["dated sense"] = {
	display = "[[Appendix:Glossary#dated|dated]]",
	sense_categories = {"dated"} } -- combine with previous

labels["derogatory"] = {
	display = "[[derogatory]]",
	pos_categories = {"derogatory terms"} } -- should be "terms with X senses", leaving "X terms" to the term-context temp

labels["dialect"] = {
	pos_categories = {"dialectal terms"} } -- should be "terms with X senses", leaving "X terms" to the term-context temp

labels["dialectal"] = {
	pos_categories = {"dialectal terms"} } -- should be "terms with X senses", leaving "X terms" to the term-context temp

labels["dialects"] = {
	pos_categories = {"dialectal terms"} } -- should be "terms with X senses", leaving "X terms" to the term-context temp

labels["dismissal"] = {
	display = "[[dismissal]]",
	pos_categories = {"dismissals"} }

labels["ethnic slur"] = {
	display = "[[ethnic]] [[slur]]",
	pos_categories = {"ethnic slurs"} }
aliases["racial slur"] = "ethnic slur"

labels["euphemistic"] = {
	display = "[[Appendix:Glossary#euphemism|euphemistic]]",
	pos_categories = {"euphemisms"} }
aliases["euphemism"] = "euphemistic"

labels["eye dialect"] = {
	pos_categories = {"eye dialect"} }

labels["familiar"] = {
	display = "[[Appendix:Glossary#familiar|familiar]]",
	pos_categories = {"familiar terms"} } -- should be "terms with X senses", leaving "X terms" to the term-context temp?

labels["fandom slang"] = {
	pos_categories = {"fandom slang"} }
aliases["fandom"] = "fandom slang"

labels["figuratively"] = {
	display = "[[Appendix:Glossary#figurative|figuratively]]"}
aliases["figurative"] = "figuratively"
aliases["metaphorically"] = "figuratively"
aliases["metaphorical"] = "figuratively"
aliases["metaphor"] = "figuratively"

labels["formal"] = {
	display = "[[Appendix:Glossary#formal|formal]]",
	pos_categories = {"formal terms"} } -- should be "terms with X senses", leaving "X terms" to the term-context temp?

labels["gay slang"] = {
	pos_categories = {"gay slang"} }

labels["historical"] = {
	display = "[[Appendix:Glossary#historical|historical]]",
	sense_categories = {"historical"} }
aliases["historic"] = "historical"
aliases["history"] = "historical"

-- applies to Japanese and Korean, etc., please do not confuse with "polite"
labels["honorific"] = {
	pos_categories = {"honorific terms"} } -- should be "terms with X senses", leaving "X terms" to the term-context temp?

-- for Ancient Greek
labels['Homeric epithet'] = {
  display = "[[Homeric Greek|Homeric]] [[w:Homeric epithets|epithet]]",
  omit_postComma = true }
  
-- applies to Japanese and Korean, etc.
labels["humble"] = {
	pos_categories = {"humble terms"} } -- should be "terms with X senses", leaving "X terms" to the term-context temp?

labels["humorous"] = {
	pos_categories = {"jocular terms"} } -- should be "terms with X senses", leaving "X terms" to the term-context temp; NB and cf a similar "jocular" label further up on this page
aliases["jocular"] = "humorous"

labels["hyperbolic"] = {
	pos_categories = {"hyperboles"} }
aliases["hyperbole"] = "hyperbolic"

labels["hypercorrect"] = {
	display = "[[Appendix:Glossary#hypercorrect|hypercorrect]]",
	pos_categories = {"hypercorrections"} }

labels["hyperforeign"] = {
	display = "[[Appendix:Glossary#hyperforeign|hyperforeign]]",
	pos_categories = {"hyperforeign terms"} }

labels["informal"] = {
	display = "[[Appendix:Glossary#informal|informal]]",
	pos_categories = {"informal terms"} } -- should be "terms with X senses", leaving "X terms" to the term-context temp
aliases["informally"] = "informal"

labels["Internet slang"] = {
	pos_categories = {"internet slang"} }
aliases["internet slang"] = "Internet slang"

labels["IRC"] = {
	display = "[[IRC]]",
	pos_categories = {"internet slang"} }

labels["ironic"] = {}

labels["leet"] = {
	display = "[[leetspeak]]",
	pos_categories = {"leet"} }
aliases["leetspeak"] = "leet"

labels["literary"] = {
	pos_categories = {"literary terms"} } -- should be "terms with X senses", leaving "X terms" to the term-context temp
aliases["bookish"] = "literary"

labels["loosely"] = {
	display = "[[loosely#Adverb|loosely]]"}

labels["Lubunyaca"] = {
	display = "[[Lubunyaca]]",
	pos_categories = {"Lubunyaca"} }

labels["medical slang"] = {
	pos_categories = {"medical slang"} }

labels["men's speech"] = { -- for Awetí, Karajá, etc., where men and women use different words
	display = "[[Appendix:Glossary#men's speech|men's speech]]",
	pos_categories = {"men's speech terms"} }
aliases["male speech"] = "men's speech"

labels["metonymically"] = {
	display = "[[metonymy|metonymically]]",
	pos_categories = {"metonyms"} }
aliases["metonymic"] = "metonymically"
aliases["metonymy"] = "metonymically"
aliases["metonym"] = "metonymically"

labels["military slang"] = {
	pos_categories = {"military slang"} }

labels["minced oath"] = {
	display = "[[minced oath]]",
	pos_categories = {"euphemisms"} }

labels["neologism"] = {
	display = "[[Appendix:Glossary#neologism|neologism]]",
	pos_categories = {"neologisms"} }
aliases["neologistic"] = "neologism"

labels["New Julfa"] = {
	regional_categories = {"New Julfa"} }
aliases["Jugha"] = "New Julfa"

labels["no longer productive"] = {
	display = "no longer [[Appendix:Glossary#productive|productive]]" }

labels["nonce word"] = {
	pos_categories = {"nonce terms"} } -- should be "terms with X senses", leaving "X terms" to the term-context temp?
aliases["nonce"] = "nonce word"

labels["nonstandard"] = {
	display = "[[Appendix:Glossary#nonstandard|nonstandard]]",
	pos_categories = {"nonstandard terms"} } -- should be "terms with X senses", leaving "X terms" to the term-context temp
aliases["non-standard"] = "nonstandard"

labels["nonstandard form"] = {
	display = "[[Appendix:Glossary#nonstandard|nonstandard form]]",
	pos_categories = {"nonstandard forms"} }

labels["obsolete"] = {
	display = "[[Appendix:Glossary#obsolete|obsolete]]",
	sense_categories = {"obsolete"} }

labels["obsolete term"] = {
	display = "[[Appendix:Glossary#obsolete|obsolete]]",
	pos_categories = {"obsolete terms"} } -- combine with previous two, q.v.

labels["offensive"] = {
	display = "[[offensive]]",
	pos_categories = {"offensive terms"} } -- should be "terms with X senses", leaving "X terms" to the term-context temp

labels["pejorative"] = {
	display = "[[pejorative]]",
	pos_categories = {"pejoratives"} }
aliases["disparaging"] = "pejorative"

labels["poetic"] = {
	pos_categories = {"poetic terms"} } -- should be "terms with X senses", leaving "X terms" to the term-context temp

labels["Polari"] = {
	display = "[[Polari]]",
	pos_categories = {"Polari slang"} }

labels["polite"] = {
	pos_categories = {"polite terms"} }

labels["politically correct"] = {
	pos_categories = {"politically correct terms"} } -- should be "terms with X senses", leaving "X terms" to term-context?

labels["post-classical"] = {
	display = "post-classical",
	regional_categories = {"Post-classical"} }
aliases["Post-classical"] = "post-classical"
aliases["post-Classical"] = "post-classical"
aliases["Post-Classical"] = "post-classical"
aliases["Postclassical"] = "post-classical"
aliases["postclassical"] = "post-classical"

labels["proscribed"] = {
	display = "[[Appendix:Glossary#proscribed|proscribed]]",
	pos_categories = {"disputed terms"} }

labels["radio slang"] = {
	pos_categories = {"radio slang"} }

labels["rare"] = {
	sense_categories = {"rare"} }
aliases["rare sense"] = "rare"

labels["rare term"] = {
	display = "rare",
	pos_categories = {"rare terms"} } -- see comments about "obsolete"

labels["religious slur"] = {
	display = "[[religious]] [[slur]]",
	pos_categories = {"religious slurs"} }
aliases["sectarian slur"] = "religious slur"

labels["retronym"] = {
	display = "[[retronym]]",
	pos_categories = {"retronyms"} }

labels["rock"] = {
	display = "petrology",
	topical_categories = {"Rocks"} }

labels["sarcastic"] = {
	display = "[[sarcastic]]",
	pos_categories = {"sarcastic terms"} }

labels["slang"] = {
	display = "[[Appendix:Glossary#slang|slang]]",
	pos_categories = {"slang"} }

labels["text messaging"] = {
	display = "[[text messaging]]",
	pos_categories = {"text messaging slang"} }
aliases["texting"] = "text messaging"

labels["trademark"] = {
	display = "[[trademark]]",
	pos_categories = {"trademarks"} }

labels["transferred sense"] = {
	display = "[[transferred sense#English|transferred sense]]",
	pos_categories = {"terms with transferred senses"} }

labels["transferred senses"] = {
	display = "[[transferred sense#English|transferred senses]]",
	pos_categories = {"terms with transferred senses"} }

labels["uds."] = {
	display = "[[Appendix:Spanish pronouns#Ustedes and vosotros|used formally in Spain]]"}

labels["uncommon"] = {
	pos_categories = {"rare forms"} }

labels["very rare"] = {
	pos_categories = {"rare forms"} }

labels["vulgar"] = {
	display = "[[Appendix:Glossary#vulgar|vulgar]]",
	pos_categories = {"vulgarities"} }
aliases["coarse"] = "vulgar"
aliases["obscene"] = "vulgar"
aliases["profane"] = "vulgar"

labels["vesre"] = {
	plain_categories = {"Vesre"} }

labels["watercraft"] = {
	display = "[[nautical]]",
	topical_categories = {"Watercraft"} }

labels["Wiktionary and WMF jargon"] = {
	display = "Wiktionary and [[Appendix:Glossary#W|WMF]] jargon",
	topical_categories = {"Wiki"} }
aliases["WMF"] = "Wiktionary and WMF jargon"
aliases["WMF jargon"] = "Wiktionary and WMF jargon"
aliases["Wiktionary"] = "Wiktionary and WMF jargon"
aliases["Wiktionary jargon"] = "Wiktionary and WMF jargon"

labels["women's speech"] = { -- for Awetí, Karajá, etc., where men & women use different words
	display = "[[Appendix:Glossary#women's speech|women's speech]]",
	pos_categories = {"women's speech terms"} }
aliases["female speech"] = "women's speech"


return {["labels"] = labels, ["aliases"] = aliases, ["deprecated"] = deprecated}