Wiktionary
tpiwiktionary
https://tpi.wiktionary.org/wiki/Fran_Pes
MediaWiki 1.39.0-wmf.22
case-sensitive
Media
Sipesol
Toktok
Yusa
Toktok bilong yusa
Wiktionary
Wiktionary toktok
Fail
Toktok bilong fail
MediaWiki
Toktok bilong mediawiki
Templet
Toktok bilong templet
Halivim
Toktok bilong halivim
Grup
Toktok bilong grup
TimedText
TimedText talk
Module
Module talk
Gadget
Gadget talk
Gadget definition
Gadget definition talk
Module:utilities
828
3472
13241
11027
2022-07-29T18:32:53Z
Asinis632
1829
Scribunto
text/plain
local export = {}
local data = mw.loadData("Module:utilities/data")
local notneeded = data.notneeded
local neededhassubpage = data.neededhassubpage
-- A helper function to escape magic characters in a string
-- Magic characters: ^$()%.[]*+-?
function export.pattern_escape(text)
if type(text) == "table" then
text = text.args[1]
end
text = mw.ustring.gsub(text, "([%^$()%%.%[%]*+%-?])", "%%%1")
return text
end
function export.plain_gsub(text, pattern, replacement)
local invoked = false
if type(text) == "table" then
invoked = true
if text.args then
local frame = text
local params = {
[1] = {},
[2] = {},
[3] = { allow_empty = true },
}
local args = require("Module:parameters").process(frame.args, params)
text = args[1]
pattern = args[2]
replacement = args[3]
else
error("If the first argument to plain_gsub is a table, it should be a frame object.")
end
else
if not ( type(pattern) == "string" or type(pattern) == "number" ) then
error("The second argument to plain_gsub should be a string or a number.")
end
if not ( type(replacement) == "string" or type(replacement) == "number" ) then
error("The third argument to plain_gsub should be a string or a number.")
end
end
pattern = export.pattern_escape(pattern)
if invoked then
text = mw.ustring.gsub(text, pattern, replacement)
return text
else
return mw.ustring.gsub(text, pattern, replacement)
end
end
--[[
Format the categories with the appropriate sort key. CATEGORIES is a list of
categories.
-- LANG is an object encapsulating a language; if nil, the object for
language code 'und' (undetermined) will be used.
-- SORT_KEY is placed in the category invocation, and indicates how the
page will sort in the respective category. Normally this should be nil,
and a default sort key based on the subpage name (the part after the
colon) will be used.
-- SORT_BASE lets you override the default sort key used when SORT_KEY is
nil. Normally, this should be nil, and a language-specific default sort
key is computed from the subpage name (e.g. for Russian this converts
Cyrillic ё to a string consisting of Cyrillic е followed by U+10FFFF,
so that effectively ё sorts after е instead of the default Wikimedia
sort, which (I think) is based on Unicode sort order and puts ё after я,
the last letter of the Cyrillic alphabet.
-- FORCE_OUTPUT forces normal output in all namespaces. Normally, nothing
is output if the page isn't in the main, Appendix:, Reconstruction: or
Citations: namespaces.
]]
export.format_categories = require("Module:utilities/format_categories")
-- Used by {{categorize}}
function export.template_categorize(frame)
local NAMESPACE = mw.title.getCurrentTitle().nsText
local format = frame.args["format"]
local args = frame:getParent().args
local langcode = args[1]; if langcode == "" then langcode = nil end
local sort_key = args["sort"]; if sort_key == "" then sort_key = nil end
local categories = {}
if not langcode then
if NAMESPACE == "Templet" then return "" end
error("Language code has not been specified. Please pass parameter 1 to the template.")
end
local lang = require("Module:languages").getByCode(langcode)
if not lang then
if NAMESPACE == "Templet" then return "" end
error("The language code \"" .. langcode .. "\" is not valid.")
end
local prefix = ""
if format == "pos" then
prefix = lang:getCanonicalName() .. " "
elseif format == "topic" then
prefix = lang:getCode() .. ":"
end
local i = 2
local cat = args[i]
while cat do
if cat ~= "" then
table.insert(categories, prefix .. cat)
end
i = i + 1
cat = args[i]
end
return export.format_categories(categories, lang, sort_key)
end
function export.catfix(lang, sc)
if not lang then
require("Module:debug").track("catfix/no lang")
return nil
elseif type(lang) ~= "table" then
require("Module:debug").track("catfix/lang not table")
return nil
end
local canonicalName = lang:getCanonicalName() or error('The first argument to the function "catfix" should be a language object from Module:languages.')
if sc and not sc.getCode then
error('The second argument to the function "catfix" should be a script object from Module:scripts.')
end
-- To add script classes to links on pages created by category boilerplate templates.
if not sc then
sc = data.catfix_scripts[lang:getCode()]
if sc then
sc = require("Module:scripts").getByCode(sc)
end
end
return "<span id=\"catfix\" style=\"display:none;\" class=\"CATFIX-" .. mw.uri.anchorEncode(canonicalName) .. "\">" ..
require("Module:script utilities").tag_text(" ", lang, sc, nil) ..
"</span>"
end
function export.catfix_template(frame)
local params = {
[1] = {},
[2] = { alias_of = "sc" },
["sc"] = {},
}
local args = require("Module:parameters").process(frame:getParent().args, params)
local lang = require("Module:languages").getByCode(args[1]) or require("Module:languages").err(args[1], 1)
local sc = args.sc
if sc then
sc = require("Module:scripts").getByCode(sc) or error('The script code "' .. sc .. '", provided in the second parameter, is not valid.')
end
return export.catfix(lang, sc)
end
-- Not exporting because it is not used yet.
local function getDateTense(frame)
local name_num_mapping = {["January"] = 1, ["February"] = 2, ["March"] = 3, ["April"] = 4, ["May"] = 5, ["June"] = 6,
["July"] = 7, ["August"] = 8, ["September"] = 9, ["October"] = 10, ["November"] = 11, ["December"] = 12,
[1] = 1, [2] = 2, [3] = 3, [4] = 4, [5] = 5, [6] = 6, [7] = 7, [8] = 8, [9] = 9, [10] = 10, [11] = 11, [12] = 12}
local month = name_num_mapping[frame.args[2]]
local date = os.time({year = frame.args[1], day = frame.args[3], month = month})
local today = os.time() -- 12 AM/PM
local diff = os.difftime(date, today)
local daylength = 24 * 3600
if diff < -daylength / 2 then return "past"
else
if diff > daylength / 2 then return "future"
else return "present" end
end
end
function export.make_id(lang, str)
--[[ If called with invoke, first argument is a frame object.
If called by a module, first argument is a language object. ]]
local invoked = false
if type(lang) == "table" then
if lang.args then
invoked = true
local frame = lang
local params = {
[1] = {},
[2] = {},
}
local args = require("Module:parameters").process(frame:getParent().args, params)
local langCode = args[1]
str = args[2]
local m_languages = require("Module:languages")
lang = m_languages.getByCode(langCode) or m_languages.err(langCode, 1)
elseif not lang.getCanonicalName then
error("The first argument to make_id should be a language object.")
end
end
if not ( type(str) == "string" or type(str) == "number" ) then
error("The second argument to make_id should be a string or a number.")
end
local id = require("Module:senseid").anchor(lang, str)
if invoked then
return '<li class="senseid" id="' .. id .. '">'
else
return id
end
end
return export
fdrodjq0p1x3570zywva8s6rg9e7ldg
Grup:Tok Teki
14
3526
13235
10850
2022-07-29T18:15:05Z
Asinis632
1829
wikitext
text/x-wiki
{{also|:Category:Old Anatolian Turkish language|:Category:Ottoman Turkish language}}
{{auto cat|Turkey|Cyprus|Northern Cyprus}}
[[Grup:Olgeta tokples|Tok Teki]]
9vru8y3bito06pxb0bik1csuayhnzum
13236
13235
2022-07-29T18:15:39Z
Asinis632
1829
wikitext
text/x-wiki
{{also|:Grup:Old Anatolian Turkish language|:Grup:Ottoman Turkish language}}
{{auto cat|Turkey|Cyprus|Northern Cyprus}}
[[Grup:Olgeta tokples|Tok Teki]]
7x8nbbl278w9flhhw6ddoepgmkm99r7
Module:category tree
828
3673
13273
13114
2022-07-29T19:17:46Z
Asinis632
1829
Scribunto
text/plain
local export = {}
local m_utilities = require("Module:utilities")
local inFundamental = mw.loadData("Module:category tree/data")
local show_error, check_name, link_box, show_catfix, show_categories, show_intro, show_editlink, show_pagelist,
show_breadcrumbs, show_description, show_appendix, show_children, show_TOC
-- The main entry point.
-- This is the only function that can be invoked from a template.
function export.show(frame)
local template = frame.args["template"]
if not template or template == "" then
error("The \"template\" parameter was not specified.")
end
if mw.title.getCurrentTitle().nsText == "Templet" then
local text = {}
table.insert(text, "This template should be used on pages in the Category: namespace, ")
table.insert(text, "and automatically generates descriptions and categorization for categories of a recognized type (see below).")
table.insert(text, " It is implemented by [[Module:category tree]] and its submodule [[Module:category tree/")
table.insert(text, template .. "]].")
if frame.args["useautocat"] then
table.insert(text, " It is preferable not to invoke this template directly, but to simply use ")
table.insert(text, require("Module:template link").format_link({"auto cat"}))
table.insert(text, " (with no parameters), which will automatically invoke this template on appropriately-named category pages.")
end
return table.concat(text)
elseif mw.title.getCurrentTitle().nsText ~= "Grup" then
error("This template/module can only be used on pages in the Category: namespace.")
end
local submodule = require("Module:category tree/" .. template)
-- Get all the parameters and the label data
local current
if submodule.new_main then
current = submodule.new_main(frame)
else
local info = {}
for key, val in pairs(frame.args) do
if val ~= "" and key ~= "useautocat" then
info[key] = val
end
end
info.template = nil
current = submodule.new(info, true)
end
local functions = {
"getBreadcrumbName",
"getDataModule",
"canBeEmpty",
"getDescription",
"getParents",
"getChildren",
"getUmbrella",
"getAppendix",
"getTOCTemplateName",
}
if current then
for i, functionName in pairs(functions) do
if type(current[functionName]) ~= "function" then
require("Module:debug").track{ "category tree/missing function", "category tree/missing function/" .. functionName }
end
end
end
local boxes = {}
local display = {}
local categories = {}
if template == "topic cat" then
table.insert(categories, "[[Grup:topic cat]]")
end
-- Check if the category is empty
local isEmpty = mw.site.stats.pagesInCategory(mw.title.getCurrentTitle().text, "all") == 0
-- Are the parameters valid?
if not current then
table.insert(categories, "[[Grup:Categories with invalid label]]")
table.insert(categories, isEmpty and "[[Grup:Empty categories]]" or nil)
table.insert(display, show_error(
"The label given to the " ..
require("Module:template link").format_link{template} ..
" template is not valid. You may have mistyped it, or it simply has not been created yet. " ..
"To add a new label, please consult the documentation of the template."))
-- Exit here, as all code beyond here relies on current not being nil
return table.concat(categories, "") .. table.concat(display, "\n\n")
end
-- Does the category have the correct name?
if mw.title.getCurrentTitle().text ~= current:getCategoryName() then
table.insert(categories, "[[Grup:Categories with incorrect name]]")
table.insert(display, show_error(
"Based on the parameters given to the " ..
require("Module:template link").format_link{template} ..
" template, this category should be called '''[[:Grup:" .. current:getCategoryName() .. "]]'''."))
end
-- Add cleanup category for empty categories
local canBeEmpty = current:canBeEmpty()
if isEmpty and not canBeEmpty then
table.insert(categories, "[[Grup:Empty categories]]")
end
if current:isHidden() then
table.insert(categories, "__HIDDENCAT__")
end
if canBeEmpty then
table.insert(categories, " __EXPECTUNUSEDCATEGORY__")
end
table.insert(boxes, show_intro(current))
table.insert(boxes, show_editlink(current))
table.insert(boxes, show_related_changes())
table.insert(boxes, show_pagelist(current))
-- Generate the displayed information
table.insert(display, show_breadcrumbs(current))
table.insert(display, show_description(current))
table.insert(display, show_appendix(current))
table.insert(display, show_children(current))
table.insert(display, show_TOC(current))
table.insert(display, show_catfix(current))
show_categories(current, categories)
return table.concat(boxes, "\n") .. "\n" .. table.concat(display, "\n\n") .. table.concat(categories, "")
end
function show_error(text)
return mw.getCurrentFrame():expandTemplate{title = "maintenance box", args = {
"red",
image = "[[File:Ambox warning pn.svg|50px]]",
title = "The automatically-generated contents of this category has errors.",
text = text,
}}
end
-- Check the name of the current page, and return an error if it's not right.
function check_name(current, template, info)
local errortext = nil
local category = nil
if not current then
errortext =
"The label \"" .. (info.label or "") .. "\" given to the " ..
require("Module:template link").format_link{template} .. " template is not valid. " ..
"You may have mistyped it, or it simply has not been created yet. To add a new label, please consult the documentation of the template."
category = "[[Grup:Categories with invalid label]]"
else
end
if errortext then
return (category or "") .. show_error(errortext)
else
return nil
end
end
local function get_catfix_info(current)
local lang, sc
if current.getCatfixInfo then
lang, sc = current:getCatfixInfo()
elseif not (current._info and current._info.no_catfix) then
-- FIXME: This is hacky and should be removed.
lang = current._lang
sc = current._info and current._info.sc and require("Module:scripts").getByCode(current._info.sc) or nil
end
return lang, sc
end
-- Show the "catfix" that adds language attributes and script classes to the page.
function show_catfix(current)
local lang, sc = get_catfix_info(current)
if lang then
return m_utilities.catfix(lang, sc)
else
return nil
end
end
-- Show the parent categories that the current category should be placed in.
function show_categories(current, categories)
local parents = current:getParents()
if not parents then
return
end
for _, parent in ipairs(parents) do
if type(parent.name) == "string" then
table.insert(categories, "[[" .. parent.name .. "|" .. parent.sort .. "]]")
else
table.insert(categories, "[[Grup:" .. parent.name:getCategoryName() .. "|" .. parent.sort .. "]]")
end
end
-- Also put the category in its corresponding "umbrella" or "by language" category.
local umbrella = current:getUmbrella()
if umbrella then
local sort
if current._lang then
sort = current._lang:getCanonicalName()
else
sort = current:getCategoryName()
end
if type(umbrella) == "string" then
table.insert(categories, "[[" .. umbrella .. "|" .. sort .. "]]")
else
table.insert(categories, "[[Grup:" .. umbrella:getCategoryName() .. "|" .. sort .. "]]")
end
end
end
function link_box(content)
return "<div class=\"noprint plainlinks\" style=\"float: right; clear: both; margin: 0 0 .5em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; margin-top: -1px; padding: 5px; font-weight: bold;\">"
.. content .. "</div>"
end
function show_related_changes()
local title = mw.title.getCurrentTitle().fullText
return link_box(
"["
.. tostring(mw.uri.fullUrl("Special:RecentChangesLinked", {
target = title,
showlinkedto = 0,
}))
.. ' <span title="Recent edits and other changes to pages in ' .. title .. '">Recent changes</span>]')
end
function show_editlink(current)
return link_box(
"[" .. tostring(mw.uri.fullUrl(current:getDataModule(), "action=edit"))
.. " Edit category data]")
end
function show_pagelist(current)
local namespace = ""
local info = current:getInfo()
if info.label == "citations" or info.label == "citations of undefined terms" then
namespace = "Citations"
elseif info.code then
local lang = require("Module:languages").getByCode(info.code)
if lang then
if lang:getType() == "reconstructed" then
namespace = "Reconstruction"
elseif lang:getType() == "appendix-constructed" then
namespace = "Appendix"
end
end
end
local recent = mw.getCurrentFrame():callParserFunction{
name = "#tag",
args = {
"DynamicPageList",
"category=" .. mw.title.getCurrentTitle().text .. "\n" ..
"namespace=" .. namespace .. "\n" ..
"count=10\n" ..
"mode=ordered\n" ..
"ordermethod=categoryadd\n" ..
"order=descending"
}
}
local oldest = mw.getCurrentFrame():callParserFunction{
name = "#tag",
args = {
"DynamicPageList",
"category=" .. mw.title.getCurrentTitle().text .. "\n" ..
"namespace=" .. namespace .. "\n" ..
"count=10\n" ..
"mode=ordered\n" ..
"ordermethod=lastedit\n" ..
"order=ascending"
}
}
return [=[
{| id="newest-and-oldest-pages" class="wikitable" style="float: right; clear: both; margin: 0 0 .5em 1em;"
! Recent additions to the category
|-
| id="recent-additions" style="font-size:0.9em;" | ]=] .. recent .. [=[
|-
! Oldest pages ordered by last edit
|-
| id="oldest-pages" style="font-size:0.9em;" | ]=] .. oldest .. [=[
|}]=]
end
-- Show navigational "breadcrumbs" at the top of the page.
function show_breadcrumbs(current)
local steps = {}
-- Start at the current label and move our way up the "chain" from child to parent, until we can't go further.
while current do
local category = nil
local display_name = nil
local nocap = nil
if type(current) == "string" then
category = current
display_name = current:gsub("^Grup:", "")
else
category = "Grup:" .. current:getCategoryName()
display_name, nocap = current:getBreadcrumbName()
end
if not nocap then
display_name = mw.getContentLanguage():ucfirst(display_name)
end
table.insert(steps, 1, "[[:" .. category .. "|" .. display_name .. "]]")
-- Move up the "chain" by one level.
if type(current) == "string" then
current = nil
else
current = current:getParents()
end
if current then
current = current[1].name
elseif inFundamental[category] then
current = "Grup:Kirapim"
end
end
steps = table.concat(steps, " » ")
return "<small>" .. steps .. "</small>"
end
-- Show the intro text that goes at the very top of the page.
function show_intro(current)
return (current.getIntro and current:getIntro() or "")
end
-- Show a short description text for the category.
function show_description(current)
return (current:getDescription() or "")
end
function show_appendix(current)
local appendix
if current.getAppendix then
appendix = current:getAppendix()
end
if appendix then
return "For more information, see [[" .. appendix .. "]]."
else
return nil
end
end
-- Show a list of child categories.
function show_children(current)
local children = current:getChildren()
if not children then
return nil
end
table.sort(children, function(first, second) return mw.ustring.upper(first.sort) < mw.ustring.upper(second.sort) end)
local children_list = {}
for _, child in ipairs(children) do
local child_pagetitle
if type(child.name) == "string" then
child_pagetitle = child.name
else
child_pagetitle = "Grup:" .. child.name:getCategoryName()
end
local child_page = mw.title.new(child_pagetitle)
if child_page.exists then
local child_description =
child.description or
type(child.name) == "string" and child.name:gsub("^Grup:", "") .. "." or
child.name:getDescription("child")
table.insert(children_list, "* [[:" .. child_pagetitle .. "]]: " .. child_description)
end
end
return table.concat(children_list, "\n")
end
-- Show a table of contents with links to each letter in the language's script.
function show_TOC(current)
local titleText = mw.title.getCurrentTitle().text
local inCategoryPages = mw.site.stats.pagesInCategory(titleText, "pages")
local inCategorySubcats = mw.site.stats.pagesInCategory(titleText, "subcats")
local TOC_type
-- Compute type of table of contents required.
if inCategoryPages > 2500 or inCategorySubcats > 2500 then
TOC_type = "full"
elseif inCategoryPages > 200 or inCategorySubcats > 200 then
TOC_type = "normal"
else
-- No (usual) need for a TOC if all pages or subcategories can fit on one page;
-- but allow this to be overridden by a custom TOC handler.
TOC_type = "none"
end
if current.getTOC then
local TOC_text = current:getTOC(TOC_type)
if TOC_text ~= true then
return TOC_text
end
end
if TOC_type ~= "none" then
local templatename = current:getTOCTemplateName()
local TOC_template
if TOC_type == "full" then
-- This category is very large, see if there is a "full" version of the TOC.
local TOC_template_full = mw.title.new(templatename .. "/full")
if TOC_template_full.exists then
TOC_template = TOC_template_full
end
end
if not TOC_template then
local TOC_template_normal = mw.title.new(templatename)
if TOC_template_normal.exists then
TOC_template = TOC_template_normal
end
end
if TOC_template then
return mw.getCurrentFrame():expandTemplate{title = TOC_template.text, args = {}}
end
end
return nil
end
function export.test(frame)
local template = frame.args[1]
local submodule = require("Module:category tree/" .. template)
if submodule.new_main then
current = submodule.new_main(frame)
else
local info = {}
for key, val in pairs(frame.args) do
info[key] = val; if info[key] == "" then info[key] = nil end
end
info.template = nil
current = submodule.new(info, true)
end
end
return export
s0gd0g96jyolspy02tqyvyjg1jdpfke
13275
13273
2022-07-29T20:44:09Z
Asinis632
1829
Scribunto
text/plain
local export = {}
local m_utilities = require("Module:utilities")
local inFundamental = mw.loadData("Module:category tree/data")
local show_error, check_name, link_box, show_catfix, show_categories, show_intro, show_editlink, show_pagelist,
show_breadcrumbs, show_description, show_appendix, show_children, show_TOC
-- The main entry point.
-- This is the only function that can be invoked from a template.
function export.show(frame)
-- local template = frame.args["template"]
-- if not template or template == "" then
-- error("The \"template\" parameter was not specified.")
-- end
if mw.title.getCurrentTitle().nsText == "Templet" then
local text = {}
table.insert(text, "This template should be used on pages in the Category: namespace, ")
table.insert(text, "and automatically generates descriptions and categorization for categories of a recognized type (see below).")
table.insert(text, " It is implemented by [[Module:category tree]] and its submodule [[Module:category tree/")
table.insert(text, template .. "]].")
if frame.args["useautocat"] then
table.insert(text, " It is preferable not to invoke this template directly, but to simply use ")
table.insert(text, require("Module:template link").format_link({"auto cat"}))
table.insert(text, " (with no parameters), which will automatically invoke this template on appropriately-named category pages.")
end
return table.concat(text)
elseif mw.title.getCurrentTitle().nsText ~= "Grup" then
error("This template/module can only be used on pages in the Category: namespace.")
end
local submodule = require("Module:category tree/" .. template)
-- Get all the parameters and the label data
local current
if submodule.new_main then
current = submodule.new_main(frame)
else
local info = {}
for key, val in pairs(frame.args) do
if val ~= "" and key ~= "useautocat" then
info[key] = val
end
end
info.template = nil
current = submodule.new(info, true)
end
local functions = {
"getBreadcrumbName",
"getDataModule",
"canBeEmpty",
"getDescription",
"getParents",
"getChildren",
"getUmbrella",
"getAppendix",
"getTOCTemplateName",
}
if current then
for i, functionName in pairs(functions) do
if type(current[functionName]) ~= "function" then
require("Module:debug").track{ "category tree/missing function", "category tree/missing function/" .. functionName }
end
end
end
local boxes = {}
local display = {}
local categories = {}
if template == "topic cat" then
table.insert(categories, "[[Grup:topic cat]]")
end
-- Check if the category is empty
local isEmpty = mw.site.stats.pagesInCategory(mw.title.getCurrentTitle().text, "all") == 0
-- Are the parameters valid?
if not current then
table.insert(categories, "[[Grup:Categories with invalid label]]")
table.insert(categories, isEmpty and "[[Grup:Empty categories]]" or nil)
table.insert(display, show_error(
"The label given to the " ..
require("Module:template link").format_link{template} ..
" template is not valid. You may have mistyped it, or it simply has not been created yet. " ..
"To add a new label, please consult the documentation of the template."))
-- Exit here, as all code beyond here relies on current not being nil
return table.concat(categories, "") .. table.concat(display, "\n\n")
end
-- Does the category have the correct name?
if mw.title.getCurrentTitle().text ~= current:getCategoryName() then
table.insert(categories, "[[Grup:Categories with incorrect name]]")
table.insert(display, show_error(
"Based on the parameters given to the " ..
require("Module:template link").format_link{template} ..
" template, this category should be called '''[[:Grup:" .. current:getCategoryName() .. "]]'''."))
end
-- Add cleanup category for empty categories
local canBeEmpty = current:canBeEmpty()
if isEmpty and not canBeEmpty then
table.insert(categories, "[[Grup:Empty categories]]")
end
if current:isHidden() then
table.insert(categories, "__HIDDENCAT__")
end
if canBeEmpty then
table.insert(categories, " __EXPECTUNUSEDCATEGORY__")
end
table.insert(boxes, show_intro(current))
table.insert(boxes, show_editlink(current))
table.insert(boxes, show_related_changes())
table.insert(boxes, show_pagelist(current))
-- Generate the displayed information
table.insert(display, show_breadcrumbs(current))
table.insert(display, show_description(current))
table.insert(display, show_appendix(current))
table.insert(display, show_children(current))
table.insert(display, show_TOC(current))
table.insert(display, show_catfix(current))
show_categories(current, categories)
return table.concat(boxes, "\n") .. "\n" .. table.concat(display, "\n\n") .. table.concat(categories, "")
end
function show_error(text)
return mw.getCurrentFrame():expandTemplate{title = "maintenance box", args = {
"red",
image = "[[File:Ambox warning pn.svg|50px]]",
title = "The automatically-generated contents of this category has errors.",
text = text,
}}
end
-- Check the name of the current page, and return an error if it's not right.
function check_name(current, template, info)
local errortext = nil
local category = nil
if not current then
errortext =
"The label \"" .. (info.label or "") .. "\" given to the " ..
require("Module:template link").format_link{template} .. " template is not valid. " ..
"You may have mistyped it, or it simply has not been created yet. To add a new label, please consult the documentation of the template."
category = "[[Grup:Categories with invalid label]]"
else
end
if errortext then
return (category or "") .. show_error(errortext)
else
return nil
end
end
local function get_catfix_info(current)
local lang, sc
if current.getCatfixInfo then
lang, sc = current:getCatfixInfo()
elseif not (current._info and current._info.no_catfix) then
-- FIXME: This is hacky and should be removed.
lang = current._lang
sc = current._info and current._info.sc and require("Module:scripts").getByCode(current._info.sc) or nil
end
return lang, sc
end
-- Show the "catfix" that adds language attributes and script classes to the page.
function show_catfix(current)
local lang, sc = get_catfix_info(current)
if lang then
return m_utilities.catfix(lang, sc)
else
return nil
end
end
-- Show the parent categories that the current category should be placed in.
function show_categories(current, categories)
local parents = current:getParents()
if not parents then
return
end
for _, parent in ipairs(parents) do
if type(parent.name) == "string" then
table.insert(categories, "[[" .. parent.name .. "|" .. parent.sort .. "]]")
else
table.insert(categories, "[[Grup:" .. parent.name:getCategoryName() .. "|" .. parent.sort .. "]]")
end
end
-- Also put the category in its corresponding "umbrella" or "by language" category.
local umbrella = current:getUmbrella()
if umbrella then
local sort
if current._lang then
sort = current._lang:getCanonicalName()
else
sort = current:getCategoryName()
end
if type(umbrella) == "string" then
table.insert(categories, "[[" .. umbrella .. "|" .. sort .. "]]")
else
table.insert(categories, "[[Grup:" .. umbrella:getCategoryName() .. "|" .. sort .. "]]")
end
end
end
function link_box(content)
return "<div class=\"noprint plainlinks\" style=\"float: right; clear: both; margin: 0 0 .5em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; margin-top: -1px; padding: 5px; font-weight: bold;\">"
.. content .. "</div>"
end
function show_related_changes()
local title = mw.title.getCurrentTitle().fullText
return link_box(
"["
.. tostring(mw.uri.fullUrl("Special:RecentChangesLinked", {
target = title,
showlinkedto = 0,
}))
.. ' <span title="Recent edits and other changes to pages in ' .. title .. '">Recent changes</span>]')
end
function show_editlink(current)
return link_box(
"[" .. tostring(mw.uri.fullUrl(current:getDataModule(), "action=edit"))
.. " Edit category data]")
end
function show_pagelist(current)
local namespace = ""
local info = current:getInfo()
if info.label == "citations" or info.label == "citations of undefined terms" then
namespace = "Citations"
elseif info.code then
local lang = require("Module:languages").getByCode(info.code)
if lang then
if lang:getType() == "reconstructed" then
namespace = "Reconstruction"
elseif lang:getType() == "appendix-constructed" then
namespace = "Appendix"
end
end
end
local recent = mw.getCurrentFrame():callParserFunction{
name = "#tag",
args = {
"DynamicPageList",
"category=" .. mw.title.getCurrentTitle().text .. "\n" ..
"namespace=" .. namespace .. "\n" ..
"count=10\n" ..
"mode=ordered\n" ..
"ordermethod=categoryadd\n" ..
"order=descending"
}
}
local oldest = mw.getCurrentFrame():callParserFunction{
name = "#tag",
args = {
"DynamicPageList",
"category=" .. mw.title.getCurrentTitle().text .. "\n" ..
"namespace=" .. namespace .. "\n" ..
"count=10\n" ..
"mode=ordered\n" ..
"ordermethod=lastedit\n" ..
"order=ascending"
}
}
return [=[
{| id="newest-and-oldest-pages" class="wikitable" style="float: right; clear: both; margin: 0 0 .5em 1em;"
! Recent additions to the category
|-
| id="recent-additions" style="font-size:0.9em;" | ]=] .. recent .. [=[
|-
! Oldest pages ordered by last edit
|-
| id="oldest-pages" style="font-size:0.9em;" | ]=] .. oldest .. [=[
|}]=]
end
-- Show navigational "breadcrumbs" at the top of the page.
function show_breadcrumbs(current)
local steps = {}
-- Start at the current label and move our way up the "chain" from child to parent, until we can't go further.
while current do
local category = nil
local display_name = nil
local nocap = nil
if type(current) == "string" then
category = current
display_name = current:gsub("^Grup:", "")
else
category = "Grup:" .. current:getCategoryName()
display_name, nocap = current:getBreadcrumbName()
end
if not nocap then
display_name = mw.getContentLanguage():ucfirst(display_name)
end
table.insert(steps, 1, "[[:" .. category .. "|" .. display_name .. "]]")
-- Move up the "chain" by one level.
if type(current) == "string" then
current = nil
else
current = current:getParents()
end
if current then
current = current[1].name
elseif inFundamental[category] then
current = "Grup:Kirapim"
end
end
steps = table.concat(steps, " » ")
return "<small>" .. steps .. "</small>"
end
-- Show the intro text that goes at the very top of the page.
function show_intro(current)
return (current.getIntro and current:getIntro() or "")
end
-- Show a short description text for the category.
function show_description(current)
return (current:getDescription() or "")
end
function show_appendix(current)
local appendix
if current.getAppendix then
appendix = current:getAppendix()
end
if appendix then
return "For more information, see [[" .. appendix .. "]]."
else
return nil
end
end
-- Show a list of child categories.
function show_children(current)
local children = current:getChildren()
if not children then
return nil
end
table.sort(children, function(first, second) return mw.ustring.upper(first.sort) < mw.ustring.upper(second.sort) end)
local children_list = {}
for _, child in ipairs(children) do
local child_pagetitle
if type(child.name) == "string" then
child_pagetitle = child.name
else
child_pagetitle = "Grup:" .. child.name:getCategoryName()
end
local child_page = mw.title.new(child_pagetitle)
if child_page.exists then
local child_description =
child.description or
type(child.name) == "string" and child.name:gsub("^Grup:", "") .. "." or
child.name:getDescription("child")
table.insert(children_list, "* [[:" .. child_pagetitle .. "]]: " .. child_description)
end
end
return table.concat(children_list, "\n")
end
-- Show a table of contents with links to each letter in the language's script.
function show_TOC(current)
local titleText = mw.title.getCurrentTitle().text
local inCategoryPages = mw.site.stats.pagesInCategory(titleText, "pages")
local inCategorySubcats = mw.site.stats.pagesInCategory(titleText, "subcats")
local TOC_type
-- Compute type of table of contents required.
if inCategoryPages > 2500 or inCategorySubcats > 2500 then
TOC_type = "full"
elseif inCategoryPages > 200 or inCategorySubcats > 200 then
TOC_type = "normal"
else
-- No (usual) need for a TOC if all pages or subcategories can fit on one page;
-- but allow this to be overridden by a custom TOC handler.
TOC_type = "none"
end
if current.getTOC then
local TOC_text = current:getTOC(TOC_type)
if TOC_text ~= true then
return TOC_text
end
end
if TOC_type ~= "none" then
local templatename = current:getTOCTemplateName()
local TOC_template
if TOC_type == "full" then
-- This category is very large, see if there is a "full" version of the TOC.
local TOC_template_full = mw.title.new(templatename .. "/full")
if TOC_template_full.exists then
TOC_template = TOC_template_full
end
end
if not TOC_template then
local TOC_template_normal = mw.title.new(templatename)
if TOC_template_normal.exists then
TOC_template = TOC_template_normal
end
end
if TOC_template then
return mw.getCurrentFrame():expandTemplate{title = TOC_template.text, args = {}}
end
end
return nil
end
function export.test(frame)
local template = frame.args[1]
local submodule = require("Module:category tree/" .. template)
if submodule.new_main then
current = submodule.new_main(frame)
else
local info = {}
for key, val in pairs(frame.args) do
info[key] = val; if info[key] == "" then info[key] = nil end
end
info.template = nil
current = submodule.new(info, true)
end
end
return export
7m458kjo0s2a7c1jlvyj3taka5fbi8t
13276
13275
2022-07-29T20:45:37Z
Asinis632
1829
Undo revision 13275 by [[Special:Contributions/Asinis632|Asinis632]] ([[User talk:Asinis632|talk]])
Scribunto
text/plain
local export = {}
local m_utilities = require("Module:utilities")
local inFundamental = mw.loadData("Module:category tree/data")
local show_error, check_name, link_box, show_catfix, show_categories, show_intro, show_editlink, show_pagelist,
show_breadcrumbs, show_description, show_appendix, show_children, show_TOC
-- The main entry point.
-- This is the only function that can be invoked from a template.
function export.show(frame)
local template = frame.args["template"]
if not template or template == "" then
error("The \"template\" parameter was not specified.")
end
if mw.title.getCurrentTitle().nsText == "Templet" then
local text = {}
table.insert(text, "This template should be used on pages in the Category: namespace, ")
table.insert(text, "and automatically generates descriptions and categorization for categories of a recognized type (see below).")
table.insert(text, " It is implemented by [[Module:category tree]] and its submodule [[Module:category tree/")
table.insert(text, template .. "]].")
if frame.args["useautocat"] then
table.insert(text, " It is preferable not to invoke this template directly, but to simply use ")
table.insert(text, require("Module:template link").format_link({"auto cat"}))
table.insert(text, " (with no parameters), which will automatically invoke this template on appropriately-named category pages.")
end
return table.concat(text)
elseif mw.title.getCurrentTitle().nsText ~= "Grup" then
error("This template/module can only be used on pages in the Category: namespace.")
end
local submodule = require("Module:category tree/" .. template)
-- Get all the parameters and the label data
local current
if submodule.new_main then
current = submodule.new_main(frame)
else
local info = {}
for key, val in pairs(frame.args) do
if val ~= "" and key ~= "useautocat" then
info[key] = val
end
end
info.template = nil
current = submodule.new(info, true)
end
local functions = {
"getBreadcrumbName",
"getDataModule",
"canBeEmpty",
"getDescription",
"getParents",
"getChildren",
"getUmbrella",
"getAppendix",
"getTOCTemplateName",
}
if current then
for i, functionName in pairs(functions) do
if type(current[functionName]) ~= "function" then
require("Module:debug").track{ "category tree/missing function", "category tree/missing function/" .. functionName }
end
end
end
local boxes = {}
local display = {}
local categories = {}
if template == "topic cat" then
table.insert(categories, "[[Grup:topic cat]]")
end
-- Check if the category is empty
local isEmpty = mw.site.stats.pagesInCategory(mw.title.getCurrentTitle().text, "all") == 0
-- Are the parameters valid?
if not current then
table.insert(categories, "[[Grup:Categories with invalid label]]")
table.insert(categories, isEmpty and "[[Grup:Empty categories]]" or nil)
table.insert(display, show_error(
"The label given to the " ..
require("Module:template link").format_link{template} ..
" template is not valid. You may have mistyped it, or it simply has not been created yet. " ..
"To add a new label, please consult the documentation of the template."))
-- Exit here, as all code beyond here relies on current not being nil
return table.concat(categories, "") .. table.concat(display, "\n\n")
end
-- Does the category have the correct name?
if mw.title.getCurrentTitle().text ~= current:getCategoryName() then
table.insert(categories, "[[Grup:Categories with incorrect name]]")
table.insert(display, show_error(
"Based on the parameters given to the " ..
require("Module:template link").format_link{template} ..
" template, this category should be called '''[[:Grup:" .. current:getCategoryName() .. "]]'''."))
end
-- Add cleanup category for empty categories
local canBeEmpty = current:canBeEmpty()
if isEmpty and not canBeEmpty then
table.insert(categories, "[[Grup:Empty categories]]")
end
if current:isHidden() then
table.insert(categories, "__HIDDENCAT__")
end
if canBeEmpty then
table.insert(categories, " __EXPECTUNUSEDCATEGORY__")
end
table.insert(boxes, show_intro(current))
table.insert(boxes, show_editlink(current))
table.insert(boxes, show_related_changes())
table.insert(boxes, show_pagelist(current))
-- Generate the displayed information
table.insert(display, show_breadcrumbs(current))
table.insert(display, show_description(current))
table.insert(display, show_appendix(current))
table.insert(display, show_children(current))
table.insert(display, show_TOC(current))
table.insert(display, show_catfix(current))
show_categories(current, categories)
return table.concat(boxes, "\n") .. "\n" .. table.concat(display, "\n\n") .. table.concat(categories, "")
end
function show_error(text)
return mw.getCurrentFrame():expandTemplate{title = "maintenance box", args = {
"red",
image = "[[File:Ambox warning pn.svg|50px]]",
title = "The automatically-generated contents of this category has errors.",
text = text,
}}
end
-- Check the name of the current page, and return an error if it's not right.
function check_name(current, template, info)
local errortext = nil
local category = nil
if not current then
errortext =
"The label \"" .. (info.label or "") .. "\" given to the " ..
require("Module:template link").format_link{template} .. " template is not valid. " ..
"You may have mistyped it, or it simply has not been created yet. To add a new label, please consult the documentation of the template."
category = "[[Grup:Categories with invalid label]]"
else
end
if errortext then
return (category or "") .. show_error(errortext)
else
return nil
end
end
local function get_catfix_info(current)
local lang, sc
if current.getCatfixInfo then
lang, sc = current:getCatfixInfo()
elseif not (current._info and current._info.no_catfix) then
-- FIXME: This is hacky and should be removed.
lang = current._lang
sc = current._info and current._info.sc and require("Module:scripts").getByCode(current._info.sc) or nil
end
return lang, sc
end
-- Show the "catfix" that adds language attributes and script classes to the page.
function show_catfix(current)
local lang, sc = get_catfix_info(current)
if lang then
return m_utilities.catfix(lang, sc)
else
return nil
end
end
-- Show the parent categories that the current category should be placed in.
function show_categories(current, categories)
local parents = current:getParents()
if not parents then
return
end
for _, parent in ipairs(parents) do
if type(parent.name) == "string" then
table.insert(categories, "[[" .. parent.name .. "|" .. parent.sort .. "]]")
else
table.insert(categories, "[[Grup:" .. parent.name:getCategoryName() .. "|" .. parent.sort .. "]]")
end
end
-- Also put the category in its corresponding "umbrella" or "by language" category.
local umbrella = current:getUmbrella()
if umbrella then
local sort
if current._lang then
sort = current._lang:getCanonicalName()
else
sort = current:getCategoryName()
end
if type(umbrella) == "string" then
table.insert(categories, "[[" .. umbrella .. "|" .. sort .. "]]")
else
table.insert(categories, "[[Grup:" .. umbrella:getCategoryName() .. "|" .. sort .. "]]")
end
end
end
function link_box(content)
return "<div class=\"noprint plainlinks\" style=\"float: right; clear: both; margin: 0 0 .5em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; margin-top: -1px; padding: 5px; font-weight: bold;\">"
.. content .. "</div>"
end
function show_related_changes()
local title = mw.title.getCurrentTitle().fullText
return link_box(
"["
.. tostring(mw.uri.fullUrl("Special:RecentChangesLinked", {
target = title,
showlinkedto = 0,
}))
.. ' <span title="Recent edits and other changes to pages in ' .. title .. '">Recent changes</span>]')
end
function show_editlink(current)
return link_box(
"[" .. tostring(mw.uri.fullUrl(current:getDataModule(), "action=edit"))
.. " Edit category data]")
end
function show_pagelist(current)
local namespace = ""
local info = current:getInfo()
if info.label == "citations" or info.label == "citations of undefined terms" then
namespace = "Citations"
elseif info.code then
local lang = require("Module:languages").getByCode(info.code)
if lang then
if lang:getType() == "reconstructed" then
namespace = "Reconstruction"
elseif lang:getType() == "appendix-constructed" then
namespace = "Appendix"
end
end
end
local recent = mw.getCurrentFrame():callParserFunction{
name = "#tag",
args = {
"DynamicPageList",
"category=" .. mw.title.getCurrentTitle().text .. "\n" ..
"namespace=" .. namespace .. "\n" ..
"count=10\n" ..
"mode=ordered\n" ..
"ordermethod=categoryadd\n" ..
"order=descending"
}
}
local oldest = mw.getCurrentFrame():callParserFunction{
name = "#tag",
args = {
"DynamicPageList",
"category=" .. mw.title.getCurrentTitle().text .. "\n" ..
"namespace=" .. namespace .. "\n" ..
"count=10\n" ..
"mode=ordered\n" ..
"ordermethod=lastedit\n" ..
"order=ascending"
}
}
return [=[
{| id="newest-and-oldest-pages" class="wikitable" style="float: right; clear: both; margin: 0 0 .5em 1em;"
! Recent additions to the category
|-
| id="recent-additions" style="font-size:0.9em;" | ]=] .. recent .. [=[
|-
! Oldest pages ordered by last edit
|-
| id="oldest-pages" style="font-size:0.9em;" | ]=] .. oldest .. [=[
|}]=]
end
-- Show navigational "breadcrumbs" at the top of the page.
function show_breadcrumbs(current)
local steps = {}
-- Start at the current label and move our way up the "chain" from child to parent, until we can't go further.
while current do
local category = nil
local display_name = nil
local nocap = nil
if type(current) == "string" then
category = current
display_name = current:gsub("^Grup:", "")
else
category = "Grup:" .. current:getCategoryName()
display_name, nocap = current:getBreadcrumbName()
end
if not nocap then
display_name = mw.getContentLanguage():ucfirst(display_name)
end
table.insert(steps, 1, "[[:" .. category .. "|" .. display_name .. "]]")
-- Move up the "chain" by one level.
if type(current) == "string" then
current = nil
else
current = current:getParents()
end
if current then
current = current[1].name
elseif inFundamental[category] then
current = "Grup:Kirapim"
end
end
steps = table.concat(steps, " » ")
return "<small>" .. steps .. "</small>"
end
-- Show the intro text that goes at the very top of the page.
function show_intro(current)
return (current.getIntro and current:getIntro() or "")
end
-- Show a short description text for the category.
function show_description(current)
return (current:getDescription() or "")
end
function show_appendix(current)
local appendix
if current.getAppendix then
appendix = current:getAppendix()
end
if appendix then
return "For more information, see [[" .. appendix .. "]]."
else
return nil
end
end
-- Show a list of child categories.
function show_children(current)
local children = current:getChildren()
if not children then
return nil
end
table.sort(children, function(first, second) return mw.ustring.upper(first.sort) < mw.ustring.upper(second.sort) end)
local children_list = {}
for _, child in ipairs(children) do
local child_pagetitle
if type(child.name) == "string" then
child_pagetitle = child.name
else
child_pagetitle = "Grup:" .. child.name:getCategoryName()
end
local child_page = mw.title.new(child_pagetitle)
if child_page.exists then
local child_description =
child.description or
type(child.name) == "string" and child.name:gsub("^Grup:", "") .. "." or
child.name:getDescription("child")
table.insert(children_list, "* [[:" .. child_pagetitle .. "]]: " .. child_description)
end
end
return table.concat(children_list, "\n")
end
-- Show a table of contents with links to each letter in the language's script.
function show_TOC(current)
local titleText = mw.title.getCurrentTitle().text
local inCategoryPages = mw.site.stats.pagesInCategory(titleText, "pages")
local inCategorySubcats = mw.site.stats.pagesInCategory(titleText, "subcats")
local TOC_type
-- Compute type of table of contents required.
if inCategoryPages > 2500 or inCategorySubcats > 2500 then
TOC_type = "full"
elseif inCategoryPages > 200 or inCategorySubcats > 200 then
TOC_type = "normal"
else
-- No (usual) need for a TOC if all pages or subcategories can fit on one page;
-- but allow this to be overridden by a custom TOC handler.
TOC_type = "none"
end
if current.getTOC then
local TOC_text = current:getTOC(TOC_type)
if TOC_text ~= true then
return TOC_text
end
end
if TOC_type ~= "none" then
local templatename = current:getTOCTemplateName()
local TOC_template
if TOC_type == "full" then
-- This category is very large, see if there is a "full" version of the TOC.
local TOC_template_full = mw.title.new(templatename .. "/full")
if TOC_template_full.exists then
TOC_template = TOC_template_full
end
end
if not TOC_template then
local TOC_template_normal = mw.title.new(templatename)
if TOC_template_normal.exists then
TOC_template = TOC_template_normal
end
end
if TOC_template then
return mw.getCurrentFrame():expandTemplate{title = TOC_template.text, args = {}}
end
end
return nil
end
function export.test(frame)
local template = frame.args[1]
local submodule = require("Module:category tree/" .. template)
if submodule.new_main then
current = submodule.new_main(frame)
else
local info = {}
for key, val in pairs(frame.args) do
info[key] = val; if info[key] == "" then info[key] = nil end
end
info.template = nil
current = submodule.new(info, true)
end
end
return export
s0gd0g96jyolspy02tqyvyjg1jdpfke
13280
13276
2022-07-30T06:20:59Z
Asinis632
1829
Undo revision 13276 by [[Special:Contributions/Asinis632|Asinis632]] ([[User talk:Asinis632|talk]])
Scribunto
text/plain
local export = {}
local m_utilities = require("Module:utilities")
local inFundamental = mw.loadData("Module:category tree/data")
local show_error, check_name, link_box, show_catfix, show_categories, show_intro, show_editlink, show_pagelist,
show_breadcrumbs, show_description, show_appendix, show_children, show_TOC
-- The main entry point.
-- This is the only function that can be invoked from a template.
function export.show(frame)
local template = frame.args["templet"]
if not template or template == "" then
error("The \"template\" parameter was not specified.")
end
if mw.title.getCurrentTitle().nsText == "Templet" then
local text = {}
table.insert(text, "This template should be used on pages in the Category: namespace, ")
table.insert(text, "and automatically generates descriptions and categorization for categories of a recognized type (see below).")
table.insert(text, " It is implemented by [[Module:category tree]] and its submodule [[Module:category tree/")
table.insert(text, template .. "]].")
if frame.args["useautocat"] then
table.insert(text, " It is preferable not to invoke this template directly, but to simply use ")
table.insert(text, require("Module:template link").format_link({"auto cat"}))
table.insert(text, " (with no parameters), which will automatically invoke this template on appropriately-named category pages.")
end
return table.concat(text)
elseif mw.title.getCurrentTitle().nsText ~= "Grup" then
error("This template/module can only be used on pages in the Category: namespace.")
end
local submodule = require("Module:category tree/" .. template)
-- Get all the parameters and the label data
local current
if submodule.new_main then
current = submodule.new_main(frame)
else
local info = {}
for key, val in pairs(frame.args) do
if val ~= "" and key ~= "useautocat" then
info[key] = val
end
end
info.template = nil
current = submodule.new(info, true)
end
local functions = {
"getBreadcrumbName",
"getDataModule",
"canBeEmpty",
"getDescription",
"getParents",
"getChildren",
"getUmbrella",
"getAppendix",
"getTOCTemplateName",
}
if current then
for i, functionName in pairs(functions) do
if type(current[functionName]) ~= "function" then
require("Module:debug").track{ "category tree/missing function", "category tree/missing function/" .. functionName }
end
end
end
local boxes = {}
local display = {}
local categories = {}
if template == "topic cat" then
table.insert(categories, "[[Grup:topic cat]]")
end
-- Check if the category is empty
local isEmpty = mw.site.stats.pagesInCategory(mw.title.getCurrentTitle().text, "all") == 0
-- Are the parameters valid?
if not current then
table.insert(categories, "[[Grup:Categories with invalid label]]")
table.insert(categories, isEmpty and "[[Grup:Empty categories]]" or nil)
table.insert(display, show_error(
"The label given to the " ..
require("Module:template link").format_link{template} ..
" template is not valid. You may have mistyped it, or it simply has not been created yet. " ..
"To add a new label, please consult the documentation of the template."))
-- Exit here, as all code beyond here relies on current not being nil
return table.concat(categories, "") .. table.concat(display, "\n\n")
end
-- Does the category have the correct name?
if mw.title.getCurrentTitle().text ~= current:getCategoryName() then
table.insert(categories, "[[Grup:Categories with incorrect name]]")
table.insert(display, show_error(
"Based on the parameters given to the " ..
require("Module:template link").format_link{template} ..
" template, this category should be called '''[[:Grup:" .. current:getCategoryName() .. "]]'''."))
end
-- Add cleanup category for empty categories
local canBeEmpty = current:canBeEmpty()
if isEmpty and not canBeEmpty then
table.insert(categories, "[[Grup:Empty categories]]")
end
if current:isHidden() then
table.insert(categories, "__HIDDENCAT__")
end
if canBeEmpty then
table.insert(categories, " __EXPECTUNUSEDCATEGORY__")
end
table.insert(boxes, show_intro(current))
table.insert(boxes, show_editlink(current))
table.insert(boxes, show_related_changes())
table.insert(boxes, show_pagelist(current))
-- Generate the displayed information
table.insert(display, show_breadcrumbs(current))
table.insert(display, show_description(current))
table.insert(display, show_appendix(current))
table.insert(display, show_children(current))
table.insert(display, show_TOC(current))
table.insert(display, show_catfix(current))
show_categories(current, categories)
return table.concat(boxes, "\n") .. "\n" .. table.concat(display, "\n\n") .. table.concat(categories, "")
end
function show_error(text)
return mw.getCurrentFrame():expandTemplate{title = "maintenance box", args = {
"red",
image = "[[File:Ambox warning pn.svg|50px]]",
title = "The automatically-generated contents of this category has errors.",
text = text,
}}
end
-- Check the name of the current page, and return an error if it's not right.
function check_name(current, template, info)
local errortext = nil
local category = nil
if not current then
errortext =
"The label \"" .. (info.label or "") .. "\" given to the " ..
require("Module:template link").format_link{template} .. " template is not valid. " ..
"You may have mistyped it, or it simply has not been created yet. To add a new label, please consult the documentation of the template."
category = "[[Grup:Categories with invalid label]]"
else
end
if errortext then
return (category or "") .. show_error(errortext)
else
return nil
end
end
local function get_catfix_info(current)
local lang, sc
if current.getCatfixInfo then
lang, sc = current:getCatfixInfo()
elseif not (current._info and current._info.no_catfix) then
-- FIXME: This is hacky and should be removed.
lang = current._lang
sc = current._info and current._info.sc and require("Module:scripts").getByCode(current._info.sc) or nil
end
return lang, sc
end
-- Show the "catfix" that adds language attributes and script classes to the page.
function show_catfix(current)
local lang, sc = get_catfix_info(current)
if lang then
return m_utilities.catfix(lang, sc)
else
return nil
end
end
-- Show the parent categories that the current category should be placed in.
function show_categories(current, categories)
local parents = current:getParents()
if not parents then
return
end
for _, parent in ipairs(parents) do
if type(parent.name) == "string" then
table.insert(categories, "[[" .. parent.name .. "|" .. parent.sort .. "]]")
else
table.insert(categories, "[[Grup:" .. parent.name:getCategoryName() .. "|" .. parent.sort .. "]]")
end
end
-- Also put the category in its corresponding "umbrella" or "by language" category.
local umbrella = current:getUmbrella()
if umbrella then
local sort
if current._lang then
sort = current._lang:getCanonicalName()
else
sort = current:getCategoryName()
end
if type(umbrella) == "string" then
table.insert(categories, "[[" .. umbrella .. "|" .. sort .. "]]")
else
table.insert(categories, "[[Grup:" .. umbrella:getCategoryName() .. "|" .. sort .. "]]")
end
end
end
function link_box(content)
return "<div class=\"noprint plainlinks\" style=\"float: right; clear: both; margin: 0 0 .5em 1em; background: #f9f9f9; border: 1px #aaaaaa solid; margin-top: -1px; padding: 5px; font-weight: bold;\">"
.. content .. "</div>"
end
function show_related_changes()
local title = mw.title.getCurrentTitle().fullText
return link_box(
"["
.. tostring(mw.uri.fullUrl("Special:RecentChangesLinked", {
target = title,
showlinkedto = 0,
}))
.. ' <span title="Recent edits and other changes to pages in ' .. title .. '">Recent changes</span>]')
end
function show_editlink(current)
return link_box(
"[" .. tostring(mw.uri.fullUrl(current:getDataModule(), "action=edit"))
.. " Edit category data]")
end
function show_pagelist(current)
local namespace = ""
local info = current:getInfo()
if info.label == "citations" or info.label == "citations of undefined terms" then
namespace = "Citations"
elseif info.code then
local lang = require("Module:languages").getByCode(info.code)
if lang then
if lang:getType() == "reconstructed" then
namespace = "Reconstruction"
elseif lang:getType() == "appendix-constructed" then
namespace = "Appendix"
end
end
end
local recent = mw.getCurrentFrame():callParserFunction{
name = "#tag",
args = {
"DynamicPageList",
"category=" .. mw.title.getCurrentTitle().text .. "\n" ..
"namespace=" .. namespace .. "\n" ..
"count=10\n" ..
"mode=ordered\n" ..
"ordermethod=categoryadd\n" ..
"order=descending"
}
}
local oldest = mw.getCurrentFrame():callParserFunction{
name = "#tag",
args = {
"DynamicPageList",
"category=" .. mw.title.getCurrentTitle().text .. "\n" ..
"namespace=" .. namespace .. "\n" ..
"count=10\n" ..
"mode=ordered\n" ..
"ordermethod=lastedit\n" ..
"order=ascending"
}
}
return [=[
{| id="newest-and-oldest-pages" class="wikitable" style="float: right; clear: both; margin: 0 0 .5em 1em;"
! Recent additions to the category
|-
| id="recent-additions" style="font-size:0.9em;" | ]=] .. recent .. [=[
|-
! Oldest pages ordered by last edit
|-
| id="oldest-pages" style="font-size:0.9em;" | ]=] .. oldest .. [=[
|}]=]
end
-- Show navigational "breadcrumbs" at the top of the page.
function show_breadcrumbs(current)
local steps = {}
-- Start at the current label and move our way up the "chain" from child to parent, until we can't go further.
while current do
local category = nil
local display_name = nil
local nocap = nil
if type(current) == "string" then
category = current
display_name = current:gsub("^Grup:", "")
else
category = "Grup:" .. current:getCategoryName()
display_name, nocap = current:getBreadcrumbName()
end
if not nocap then
display_name = mw.getContentLanguage():ucfirst(display_name)
end
table.insert(steps, 1, "[[:" .. category .. "|" .. display_name .. "]]")
-- Move up the "chain" by one level.
if type(current) == "string" then
current = nil
else
current = current:getParents()
end
if current then
current = current[1].name
elseif inFundamental[category] then
current = "Grup:Kirapim"
end
end
steps = table.concat(steps, " » ")
return "<small>" .. steps .. "</small>"
end
-- Show the intro text that goes at the very top of the page.
function show_intro(current)
return (current.getIntro and current:getIntro() or "")
end
-- Show a short description text for the category.
function show_description(current)
return (current:getDescription() or "")
end
function show_appendix(current)
local appendix
if current.getAppendix then
appendix = current:getAppendix()
end
if appendix then
return "For more information, see [[" .. appendix .. "]]."
else
return nil
end
end
-- Show a list of child categories.
function show_children(current)
local children = current:getChildren()
if not children then
return nil
end
table.sort(children, function(first, second) return mw.ustring.upper(first.sort) < mw.ustring.upper(second.sort) end)
local children_list = {}
for _, child in ipairs(children) do
local child_pagetitle
if type(child.name) == "string" then
child_pagetitle = child.name
else
child_pagetitle = "Grup:" .. child.name:getCategoryName()
end
local child_page = mw.title.new(child_pagetitle)
if child_page.exists then
local child_description =
child.description or
type(child.name) == "string" and child.name:gsub("^Grup:", "") .. "." or
child.name:getDescription("child")
table.insert(children_list, "* [[:" .. child_pagetitle .. "]]: " .. child_description)
end
end
return table.concat(children_list, "\n")
end
-- Show a table of contents with links to each letter in the language's script.
function show_TOC(current)
local titleText = mw.title.getCurrentTitle().text
local inCategoryPages = mw.site.stats.pagesInCategory(titleText, "pages")
local inCategorySubcats = mw.site.stats.pagesInCategory(titleText, "subcats")
local TOC_type
-- Compute type of table of contents required.
if inCategoryPages > 2500 or inCategorySubcats > 2500 then
TOC_type = "full"
elseif inCategoryPages > 200 or inCategorySubcats > 200 then
TOC_type = "normal"
else
-- No (usual) need for a TOC if all pages or subcategories can fit on one page;
-- but allow this to be overridden by a custom TOC handler.
TOC_type = "none"
end
if current.getTOC then
local TOC_text = current:getTOC(TOC_type)
if TOC_text ~= true then
return TOC_text
end
end
if TOC_type ~= "none" then
local templatename = current:getTOCTemplateName()
local TOC_template
if TOC_type == "full" then
-- This category is very large, see if there is a "full" version of the TOC.
local TOC_template_full = mw.title.new(templatename .. "/full")
if TOC_template_full.exists then
TOC_template = TOC_template_full
end
end
if not TOC_template then
local TOC_template_normal = mw.title.new(templatename)
if TOC_template_normal.exists then
TOC_template = TOC_template_normal
end
end
if TOC_template then
return mw.getCurrentFrame():expandTemplate{title = TOC_template.text, args = {}}
end
end
return nil
end
function export.test(frame)
local template = frame.args[1]
local submodule = require("Module:category tree/" .. template)
if submodule.new_main then
current = submodule.new_main(frame)
else
local info = {}
for key, val in pairs(frame.args) do
info[key] = val; if info[key] == "" then info[key] = nil end
end
info.template = nil
current = submodule.new(info, true)
end
end
return export
cbal7smwekzvabv54hh3u5zl07812pt
Module:utilities/format categories
828
3674
13240
11028
2022-07-29T18:31:05Z
Asinis632
1829
Scribunto
text/plain
local data = mw.loadData("Module:utilities/format_categories/data")
--[[
Format the categories with the appropriate sort key. CATEGORIES is a list of
categories.
-- LANG is an object encapsulating a language; if nil, the object for
language code 'und' (undetermined) will be used.
-- SORT_KEY is placed in the category invocation, and indicates how the
page will sort in the respective category. Normally this should be nil,
and a default sort key based on the subpage name (the part after the
colon) will be used.
-- SORT_BASE lets you override the default sort key used when SORT_KEY is
nil. Normally, this should be nil, and a language-specific default sort
key is computed from the subpage name (e.g. for Russian this converts
Cyrillic ё to a string consisting of Cyrillic е followed by U+10FFFF,
so that effectively ё sorts after е instead of the default Wikimedia
sort, which (I think) is based on Unicode sort order and puts ё after я,
the last letter of the Cyrillic alphabet.
-- FORCE_OUTPUT forces normal output in all namespaces. Normally, nothing
is output if the page isn't in the main, Appendix:, Reconstruction: or
Citations: namespaces.
]]
return function(categories, lang, sort_key, sort_base, force_output, sc)
if type(lang) == "table" and not lang.getCode then
error("The second argument to format_categories should be a language object.")
end
local title_obj = mw.title.getCurrentTitle()
if force_output or data.allowedNamespaces[title_obj.nsText] or data.allowedPrefixedPages[title_obj.prefixedText] then
local PAGENAME = title_obj.text
local SUBPAGENAME = title_obj.subpageText
if not lang then
lang = require("Module:languages").getByCode("und")
end
-- Generate a default sort key
sort_base = lang:makeSortKey(sort_base or SUBPAGENAME, sc)
if sort_key and sort_key ~= "" then
-- Gather some statistics regarding sort keys
if mw.ustring.upper(sort_key) == sort_base then
table.insert(categories, "Sort key tracking/redundant")
end
else
sort_key = sort_base
end
-- If the sortkey is empty, remove it.
-- Leave the sortkey if it is equal to PAGENAME, because it still
-- might be different from DEFAULTSORT and therefore have an effect; see
-- [[Wiktionary:Grease pit/2020/April#Module:utilities#format categories]].
if sort_key == "" then
sort_key = nil
end
local out_categories = {}
for key, cat in ipairs(categories) do
out_categories[key] = "[[Grup:" .. cat .. (sort_key and "|" .. sort_key or "") .. "]]"
end
return table.concat(out_categories, "")
else
return ""
end
end
i42fwdtmeayj8xquvipvdf63kb1vuwu
Module:category tree/data
828
3678
13242
13188
2022-07-29T18:37:30Z
Asinis632
1829
Scribunto
text/plain
local data = {
"All language families",
"All languages",
"All scripts",
"Categories only containing subcategories",
"Character boxes",
"Characters by script",
"Entries with audio examples",
"Entries with redirects",
"Entry maintenance by language",
"Figures of speech by language",
"Gestures",
"Lemmas by language",
"Letters",
"Lists",
"Non-lemma forms by language",
"Phrasebooks by language",
"Protologisms",
"Regionalisms",
"Rhymes by language",
"Sentences by language",
"All sets",
"Shortenings by language",
"Symbols by language",
"Synchronized entries by language",
"Terms by etymology by language",
"Terms by lexical property by language",
"Terms by semantic function by language",
"Terms by usage by language",
"All topics",
"Unicode blocks",
"Unsupported titles",
"Wiktionary",
"Wiktionary pages that don't exist",
"Wiktionary-namespace discussion pages",
}
for i, category in ipairs(data) do
data[i] = nil
data["Grup:" .. category] = true
end
return data
1frj1rqhdbhterc3x5x7yg6mdqgss7x
Module:auto cat/testcases
828
5232
13237
2022-07-29T18:21:11Z
Asinis632
1829
Created page with "local tests = require("Module:UnitTests") local m_auto = require("Module:auto cat") function tests:check(title, expected) self:equals( "[[:Category:" .. title .. "|" .. title .. "]]", m_auto.test(title), expected, { display = function(template) return "[[Template:" .. template .. "|" .. template .. "]]" end } ) end function tests:test_langcatboiler() -- langcatboiler not enabled by default because it requires additional args -- self:check('Germa..."
Scribunto
text/plain
local tests = require("Module:UnitTests")
local m_auto = require("Module:auto cat")
function tests:check(title, expected)
self:equals(
"[[:Category:" .. title .. "|" .. title .. "]]",
m_auto.test(title),
expected,
{
display = function(template)
return "[[Template:" .. template .. "|" .. template .. "]]"
end
}
)
end
function tests:test_langcatboiler()
-- langcatboiler not enabled by default because it requires additional args
-- self:check('German language', 'langcatboiler')
self:check('Java programming language', 'topic cat')
self:check('Nouns by language', 'poscatboiler')
-- langcatboiler not enabled by default because it requires additional args
-- self:check('American Sign Language', 'langcatboiler')
end
function tests:test_family_cat()
self:check('Indo-European languages', 'family cat')
self:check('Terms derived from Romance languages', 'poscatboiler')
self:check('Computer languages', 'topic cat')
self:check('fr:Computer languages', 'topic cat')
self:check('Terms derived from creole or pidgin languages', 'poscatboiler')
-- self:check('Egyptian hieroglyphic script languages', 'scriptcatboiler')
self:check('Extinct languages', 'topic cat')
self:check('Mixed languages', 'family cat')
self:check('Terms derived from substrate languages', 'poscatboiler')
self:check('English given names from Austronesian languages', 'name cat')
self:check('English given names', 'poscatboiler')
end
function tests:test_language_splitter()
-- Autocat must grab "Norwegian Nynorsk" and not "Norwegian" as the language
-- name here.
self:check('Norwegian Nynorsk words prefixed with des-', 'prefix cat')
end
return tests
axs244gxhelk59pxaab3uz2esnb86a5
Module:auto cat/testcases/doc
828
5233
13238
2022-07-29T18:21:46Z
Asinis632
1829
Created page with "{{#invoke:auto cat/testcases|run_tests}}"
wikitext
text/x-wiki
{{#invoke:auto cat/testcases|run_tests}}
anurg4opk4bmlpid09zcur4zi403bup
Module:UnitTests
828
5234
13239
2022-07-29T18:22:18Z
Asinis632
1829
Created page with "local UnitTester = {} local ustring = mw.ustring local is_combining = require "Module:Unicode data".is_combining local UTF8_char = '[\1-\127\194-\244][\128-\191]*' local sorted_pairs = require('Module:table').sortedPairs local Array = require("Module:array") local tick, cross = '[[File:Yes check.svg|20px|alt=Passed|link=|Test passed]]', '[[File:X mark.svg|20px|alt=Failed|link=|Test failed]]' local result_table_header = '{| class="unit-tests wikitable"\n! class="uni..."
Scribunto
text/plain
local UnitTester = {}
local ustring = mw.ustring
local is_combining = require "Module:Unicode data".is_combining
local UTF8_char = '[\1-\127\194-\244][\128-\191]*'
local sorted_pairs = require('Module:table').sortedPairs
local Array = require("Module:array")
local tick, cross =
'[[File:Yes check.svg|20px|alt=Passed|link=|Test passed]]',
'[[File:X mark.svg|20px|alt=Failed|link=|Test failed]]'
local result_table_header = '{| class="unit-tests wikitable"\n! class="unit-tests-img-corner" style="cursor:pointer" title="Only failed tests"| !! Text !! Expected !! Actual'
local function iter_UTF8(str)
return string.gmatch(str, UTF8_char)
end
-- Skips over bytes that are not used by UTF-8, and will count overlong encodings.
local function len(str)
local _, length = string.gsub(str, UTF8_char, '')
return length
end
local function first_difference(s1, s2)
if type(s1) ~= 'string' or type(s2) ~= 'string' then return 'N/A' end
if s1 == s2 then return '' end
local next_char1, next_char2 = iter_UTF8(s1), iter_UTF8(s2)
local max = math.min(len(s1), len(s2))
for i = 1, max do
local c1, c2 = next_char1(), next_char2()
if c1 ~= c2 then return i end
end
return max + 1
end
local function highlight(str)
if ustring.find(str, "%s") then
return '<span style="background-color: pink;">' ..
string.gsub(str, " ", " ") .. '</span>'
else
return '<span style="color: red;">' ..
str .. '</span>'
end
end
local function find_noncombining(str, i, incr)
local char = ustring.sub(str, i, i)
while char ~= '' and is_combining(ustring.codepoint(char)) do
i = i + incr
char = ustring.sub(str, i, i)
end
return i
end
-- Highlight character where a difference was found. Start highlight at first
-- non-combining character before the position. End it after the first non-
-- combining characters after the position. Can specify a custom highlighing
-- function.
local function highlight_difference(actual, expected, differs_at, func)
if type(differs_at) ~= "number" or not (actual and expected) then
return actual
end
differs_at = find_noncombining(expected, differs_at, -1)
local i = find_noncombining(actual, differs_at, -1)
local j = find_noncombining(actual, differs_at + 1, 1)
j = j - 1
return ustring.sub(actual, 1, i - 1) ..
(type(func) == "function" and func or highlight)(ustring.sub(actual, i, j)) ..
ustring.sub(actual, j + 1, -1)
end
local function val_to_str(v)
if type(v) == 'string' then
v = string.gsub(v, '\n', '\\n')
if string.find(string.gsub(v, '[^\'"]', ''), '^"+$') then
return "'" .. v .. "'"
end
return '"' .. string.gsub(v, '"', '\\"' ) .. '"'
elseif type(v) == 'table' then
local result, done = Array(), {}
for k, val in ipairs(v) do
result:insert(val_to_str(val))
done[k] = true
end
for k, val in sorted_pairs(v) do
if not done[k] then
if (type(k) ~= "string") or not string.find(k, '^[_%a][_%a%d]*$') then
k = '[' .. val_to_str(k) .. ']'
end
result:insert(k .. '=' .. val_to_str(val))
end
end
return '{' .. result:concat(', ') .. '}'
else
return tostring(v)
end
end
local function deep_compare(t1, t2, ignore_mt)
local ty1, ty2 = type(t1), type(t2)
if ty1 ~= ty2 then return false
elseif ty1 ~= 'table' then return t1 == t2 end
local mt = getmetatable(t1)
if not ignore_mt and mt and mt.__eq then return t1 == t2 end
for k1, v1 in pairs(t1) do
local v2 = t2[k1]
if v2 == nil or not deep_compare(v1, v2) then return false end
end
for k2, v2 in pairs(t2) do
local v1 = t1[k2]
if v1 == nil or not deep_compare(v1, v2) then return false end
end
return true
end
function UnitTester:preprocess_equals(text, expected, options)
local actual = self.frame:preprocess(text)
if actual == expected then
self.result_table:insert('|- class="unit-test-pass"\n | ' .. tick)
else
self.result_table:insert('|- class="unit-test-fail"\n | ' .. cross)
self.num_failures = self.num_failures + 1
end
local differs_at = self.differs_at and (' || ' .. first_difference(expected, actual)) or ''
local comment = self.comments and (' || ' .. (options and options.comment or '')) or ''
actual = tostring(actual)
expected = tostring(expected)
if self.nowiki or options and options.nowiki then
expected = mw.text.nowiki(expected)
actual = mw.text.nowiki(actual)
end
self.result_table:insert(' || ' .. mw.text.nowiki(text) .. ' || ' .. expected .. ' || ' .. actual .. differs_at .. comment .. "\n")
self.total_tests = self.total_tests + 1
end
function UnitTester:preprocess_equals_many(prefix, suffix, cases, options)
for _, case in ipairs(cases) do
self:preprocess_equals(prefix .. case[1] .. suffix, case[2], options)
end
end
function UnitTester:preprocess_equals_preprocess(text1, text2, options)
local actual = self.frame:preprocess(text1)
local expected = self.frame:preprocess(text2)
if actual == expected then
self.result_table:insert('|- class="unit-test-pass"\n | ' .. tick)
else
self.result_table:insert('|- class="unit-test-fail"\n | ' .. cross)
self.num_failures = self.num_failures + 1
end
if self.nowiki or options and options.nowiki then
expected = mw.text.nowiki(expected)
actual = mw.text.nowiki(actual)
end
local differs_at = self.differs_at and (' || ' .. first_difference(expected, actual)) or ''
local comment = self.comments and (' || ' .. (options and options.comment or '')) or ''
self.result_table:insert(' || ' .. mw.text.nowiki(text1) .. ' || ' .. expected .. ' || ' .. actual .. differs_at .. comment .. "\n")
self.total_tests = self.total_tests + 1
end
function UnitTester:preprocess_equals_preprocess_many(prefix1, suffix1, prefix2, suffix2, cases, options)
for _, case in ipairs(cases) do
self:preprocess_equals_preprocess(prefix1 .. case[1] .. suffix1, prefix2 .. (case[2] and case[2] or case[1]) .. suffix2, options)
end
end
function UnitTester:equals(name, actual, expected, options)
if actual == expected then
self.result_table:insert('|- class="unit-test-pass"\n | ' .. tick)
else
self.result_table:insert('|- class="unit-test-fail"\n | ' .. cross)
self.num_failures = self.num_failures + 1
end
local difference = first_difference(expected, actual)
if options and options.show_difference and type(difference) == "number" then
actual = highlight_difference(actual, expected, difference,
type(options.show_difference) == "function" and options.show_difference)
end
local differs_at = self.differs_at and (' || ' .. difference) or ''
local comment = self.comments and (' || ' .. (options and options.comment or '')) or ''
if expected == nil then
expected = '(nil)'
else
expected = tostring(expected)
end
if actual == nil then
actual = '(nil)'
else
actual = tostring(actual)
end
if self.nowiki or options and options.nowiki then
expected = mw.text.nowiki(expected)
actual = mw.text.nowiki(actual)
end
if options and type(options.display) == "function" then
expected = options.display(expected)
actual = options.display(actual)
end
self.result_table:insert(' || ' .. name .. ' || ' .. expected .. ' || ' .. actual .. differs_at .. comment .. "\n")
self.total_tests = self.total_tests + 1
end
function UnitTester:equals_deep(name, actual, expected, options)
if deep_compare(actual, expected) then
self.result_table:insert('|- class="unit-test-pass"\n | ' .. tick)
else
self.result_table:insert('|- class="unit-test-fail"\n | ' .. cross)
self.num_failures = self.num_failures + 1
end
local actual_str = val_to_str(actual)
local expected_str = val_to_str(expected)
if self.nowiki or options and options.nowiki then
expected_str = mw.text.nowiki(expected_str)
actual_str = mw.text.nowiki(actual_str)
end
if options and type(options.display) == "function" then
expected_str = options.display(expected_str)
actual_str = options.display(actual_str)
end
local differs_at = self.differs_at and (' || ' .. first_difference(expected_str, actual_str)) or ''
local comment = self.comments and (' || ' .. (options and options.comment or '')) or ''
self.result_table:insert(' || ' .. name .. ' || ' .. expected_str .. ' || ' .. actual_str .. differs_at .. comment .. "\n")
self.total_tests = self.total_tests + 1
end
function UnitTester:iterate(examples, func)
require 'libraryUtil'.checkType('iterate', 1, examples, 'table')
if type(func) == 'string' then
func = self[func]
elseif type(func) ~= 'function' then
error(("bad argument #2 to 'iterate' (expected function or string, got %s)")
:format(type(func)), 2)
end
for i, example in ipairs(examples) do
if type(example) == 'table' then
func(self, unpack(example))
elseif type(example) == 'string' then
self:heading(example)
else
error(('bad example #%d (expected table or string, got %s)')
:format(i, type(example)), 2)
end
end
end
function UnitTester:heading(text)
local prefix, maintext = text:match('^#(h[0-9]+):(.*)$')
if not prefix then
maintext = text
end
local style = prefix == "h1" and "text-align: center; font-size: 150%" or "text-align: left"
self.result_table:insert((' |-\n ! colspan="%u" style="%s" | %s\n'):format(self.columns, style, maintext))
end
function UnitTester:run(frame)
self.num_failures = 0
local output = Array()
self.frame = frame
self.nowiki = frame.args['nowiki']
self.differs_at = frame.args['differs_at']
self.comments = frame.args['comments']
self.summarize = frame.args['summarize']
self.total_tests = 0
self.result_table = Array()
self.columns = 4
local table_header = result_table_header
if self.differs_at then
self.columns = self.columns + 1
table_header = table_header .. ' !! Differs at'
end
if self.comments then
self.columns = self.columns + 1
table_header = table_header .. ' !! Comments'
end
-- Sort results into alphabetical order.
local self_sorted = Array()
for key, value in pairs(self) do
if key:find('^test') then
self_sorted:insert(key)
end
end
self_sorted:sort()
-- Add results to the results table.
for _, key in ipairs(self_sorted) do
self.result_table:insert(table_header .. "\n")
self.result_table:insert('|+ style="text-align: left; font-weight: bold;" | ' .. key .. ':\n|-\n')
local traceback = "(no traceback)"
local success, mesg = xpcall(function ()
return self[key](self)
end, function (mesg)
traceback = debug.traceback("", 2)
return mesg
end)
if not success then
self.result_table:insert((' |-\n | colspan="%u" style="text-align: left" | <strong class="error">Script error during testing: %s</strong>%s\n'):format(
self.columns, mw.text.nowiki(mesg), frame:extensionTag("pre", traceback)
))
self.num_failures = self.num_failures + 1
end
self.result_table:insert("|}")
output:insert(self.result_table:concat())
self.result_table = Array()
end
local refresh_link = tostring(mw.uri.fullUrl(mw.title.getCurrentTitle().fullText, 'action=purge&forcelinkupdate'))
local failure_cat = '[[Category:Failing module unit tests]]'
if mw.title.getCurrentTitle().text:find("/documentation$") then
failure_cat = ''
end
local num_successes = self.total_tests - self.num_failures
if (self.summarize) then
if (self.num_failures == 0) then
return '<strong class="success">' .. self.total_tests .. '/' .. self.total_tests .. ' tests passed</strong>'
else
return '<strong class="error">' .. num_successes .. '/' .. self.total_tests .. ' tests passed</strong>'
end
else
return (self.num_failures == 0 and '<strong class="success">All tests passed.</strong>' or
'<strong class="error">' .. self.num_failures .. ' test' .. (self.num_failures == 1 and '' or 's' ) .. ' failed.</strong>' .. failure_cat) ..
" <span class='plainlinks unit-tests-refresh'>[" .. refresh_link .. " (refresh)]</span>\n\n" ..
output:concat("\n\n")
end
end
function UnitTester:new()
local o = {}
setmetatable(o, self)
self.__index = self
return o
end
local p = UnitTester:new()
function p.run_tests(frame) return p:run(frame) end
return p
lfqbue59qdrv5sv83wz5p6cexcr0fgc
Module:template link
828
5235
13243
2022-07-29T18:39:48Z
Asinis632
1829
Created page with "local export = {} local date_and_time = "mw:Help:Magic words#Date and time" local technical_metadata = "mw:Help:Magic words#Technical metadata" local tech_meta_another_page = "mw:Help:Magic words#Technical metadata of another page" local page_names = "mw:Help:Magic words#Page names" local namespaces = "mw:Help:Magic words#Namespaces" local formatting = "mw:Help:Magic words#Formatting" local URL_data = "mw:Help:Magic words#URL data" local localization..."
Scribunto
text/plain
local export = {}
local date_and_time = "mw:Help:Magic words#Date and time"
local technical_metadata = "mw:Help:Magic words#Technical metadata"
local tech_meta_another_page = "mw:Help:Magic words#Technical metadata of another page"
local page_names = "mw:Help:Magic words#Page names"
local namespaces = "mw:Help:Magic words#Namespaces"
local formatting = "mw:Help:Magic words#Formatting"
local URL_data = "mw:Help:Magic words#URL data"
local localization = "mw:Help:Magic words#Localization"
local miscellaneous = "mw:Help:Magic words#Miscellaneous"
local parser_functions_link = "mw:Help:Extension:ParserFunctions"
local LST = "mw:Extension:Labeled Section Transclusion"
local variables_nullary = {
["CURRENTYEAR" ] = date_and_time;
["CURRENTMONTH" ] = date_and_time;
["CURRENTMONTH1" ] = date_and_time; -- undocumented
["CURRENTMONTH2" ] = date_and_time; -- undocumented
["CURRENTMONTHNAME" ] = date_and_time;
["CURRENTMONTHNAMEGEN"] = date_and_time;
["CURRENTMONTHABBREV" ] = date_and_time;
["CURRENTDAY" ] = date_and_time;
["CURRENTDAY2" ] = date_and_time;
["CURRENTDOW" ] = date_and_time;
["CURRENTDAYNAME" ] = date_and_time;
["CURRENTTIME" ] = date_and_time;
["CURRENTHOUR" ] = date_and_time;
["CURRENTWEEK" ] = date_and_time;
["CURRENTTIMESTAMP" ] = date_and_time;
["LOCALYEAR" ] = date_and_time;
["LOCALMONTH" ] = date_and_time;
["LOCALMONTH1" ] = date_and_time; -- undocumented
["LOCALMONTH2" ] = date_and_time; -- undocumented
["LOCALMONTHNAME" ] = date_and_time;
["LOCALMONTHNAMEGEN" ] = date_and_time;
["LOCALMONTHABBREV" ] = date_and_time;
["LOCALDAY" ] = date_and_time;
["LOCALDAY2" ] = date_and_time;
["LOCALDOW" ] = date_and_time;
["LOCALDAYNAME" ] = date_and_time;
["LOCALTIME" ] = date_and_time;
["LOCALHOUR" ] = date_and_time;
["LOCALWEEK" ] = date_and_time;
["LOCALTIMESTAMP" ] = date_and_time;
["SITENAME" ] = technical_metadata;
["SERVER" ] = technical_metadata;
["SERVERNAME" ] = technical_metadata;
["DIRMARK" ] = technical_metadata;
["DIRECTIONMARK" ] = technical_metadata;
["ARTICLEPATH" ] = technical_metadata; -- undocumented
["SCRIPTPATH" ] = technical_metadata;
["STYLEPATH" ] = technical_metadata;
["CURRENTVERSION" ] = technical_metadata;
["CONTENTLANGUAGE" ] = technical_metadata;
["CONTENTLANG" ] = technical_metadata;
["PAGEID" ] = technical_metadata;
["CASCADINGSOURCES" ] = technical_metadata;
["REVISIONID" ] = technical_metadata;
["REVISIONDAY" ] = technical_metadata;
["REVISIONDAY2" ] = technical_metadata;
["REVISIONMONTH" ] = technical_metadata;
["REVISIONMONTH1" ] = technical_metadata;
["REVISIONYEAR" ] = technical_metadata;
["REVISIONTIMESTAMP" ] = technical_metadata;
["REVISIONUSER" ] = technical_metadata;
["REVISIONSIZE" ] = technical_metadata;
["NUMBEROFPAGES" ] = technical_metadata;
["NUMBEROFARTICLES" ] = technical_metadata;
["NUMBEROFFILES" ] = technical_metadata;
["NUMBEROFEDITS" ] = technical_metadata;
["NUMBEROFVIEWS" ] = technical_metadata;
["NUMBEROFUSERS" ] = technical_metadata;
["NUMBEROFADMINS" ] = technical_metadata;
["NUMBEROFACTIVEUSERS"] = technical_metadata;
["FULLPAGENAME" ] = page_names;
["PAGENAME" ] = page_names;
["BASEPAGENAME" ] = page_names;
["SUBPAGENAME" ] = page_names;
["SUBJECTPAGENAME" ] = page_names;
["ARTICLEPAGENAME" ] = page_names;
["TALKPAGENAME" ] = page_names;
["ROOTPAGENAME" ] = page_names; -- undocumented
["FULLPAGENAMEE" ] = page_names;
["PAGENAMEE" ] = page_names;
["BASEPAGENAMEE" ] = page_names;
["SUBPAGENAMEE" ] = page_names;
["SUBJECTPAGENAMEE" ] = page_names;
["ARTICLEPAGENAMEE" ] = page_names;
["TALKPAGENAMEE" ] = page_names;
["ROOTPAGENAMEE" ] = page_names; -- undocumented
["NAMESPACE" ] = namespaces;
["NAMESPACENUMBER" ] = namespaces;
["SUBJECTSPACE" ] = namespaces;
["ARTICLESPACE" ] = namespaces;
["TALKSPACE" ] = namespaces;
["NAMESPACEE" ] = namespaces;
["SUBJECTSPACEE" ] = namespaces;
["TALKSPACEE" ] = namespaces;
["!" ] = "mw:Help:Magic words#Other";
}
local variables_nonnullary = {
["PROTECTIONLEVEL" ] = technical_metadata;
["DISPLAYTITLE" ] = technical_metadata;
["DEFAULTSORT" ] = technical_metadata;
["PAGESINCATEGORY" ] = technical_metadata;
["PAGESINCAT" ] = technical_metadata;
["NUMBERINGROUP" ] = technical_metadata;
["PAGESINNS" ] = technical_metadata;
["PAGESINNAMESPACE" ] = technical_metadata;
["FULLPAGENAME" ] = page_names;
["PAGENAME" ] = page_names;
["BASEPAGENAME" ] = page_names;
["SUBPAGENAME" ] = page_names;
["SUBJECTPAGENAME" ] = page_names;
["ARTICLEPAGENAME" ] = page_names;
["TALKPAGENAME" ] = page_names;
["ROOTPAGENAME" ] = page_names; -- undocumented
["FULLPAGENAMEE" ] = page_names;
["PAGENAMEE" ] = page_names;
["BASEPAGENAMEE" ] = page_names;
["SUBPAGENAMEE" ] = page_names;
["SUBJECTPAGENAMEE" ] = page_names;
["ARTICLEPAGENAMEE" ] = page_names;
["TALKPAGENAMEE" ] = page_names;
["ROOTPAGENAMEE" ] = page_names; -- undocumented
["NAMESPACE" ] = namespaces;
["NAMESPACENUMBER" ] = namespaces;
["SUBJECTSPACE" ] = namespaces;
["ARTICLESPACE" ] = namespaces;
["TALKSPACE" ] = namespaces;
["NAMESPACEE" ] = namespaces;
["SUBJECTSPACEE" ] = namespaces;
["TALKSPACEE" ] = namespaces;
["PAGEID" ] = tech_meta_another_page;
["PAGESIZE" ] = tech_meta_another_page;
["PROTECTIONLEVEL" ] = tech_meta_another_page;
["CASCADINGSOURCES" ] = tech_meta_another_page;
["REVISIONID" ] = tech_meta_another_page;
["REVISIONDAY" ] = tech_meta_another_page;
["REVISIONDAY2" ] = tech_meta_another_page;
["REVISIONMONTH" ] = tech_meta_another_page;
["REVISIONMONTH1" ] = tech_meta_another_page;
["REVISIONYEAR" ] = tech_meta_another_page;
["REVISIONTIMESTAMP" ] = tech_meta_another_page;
["REVISIONUSER" ] = tech_meta_another_page;
}
local parser_functions = {
-- built-ins
["localurl" ] = URL_data;
["localurle" ] = URL_data;
["fullurl" ] = URL_data;
["fullurle" ] = URL_data;
["canonicalurl" ] = URL_data;
["canonicalurle"] = URL_data;
["filepath" ] = URL_data;
["urlencode" ] = URL_data;
["urldecode" ] = URL_data;
["anchorencode" ] = URL_data;
["ns" ] = namespaces;
["nse" ] = namespaces;
["formatnum" ] = formatting;
["#dateformat" ] = formatting;
["#formatdate" ] = formatting;
["lc" ] = formatting;
["lcfirst" ] = formatting;
["uc" ] = formatting;
["ucfirst" ] = formatting;
["padleft" ] = formatting;
["padright" ] = formatting;
["plural" ] = localization;
["grammar" ] = localization;
["gender" ] = localization;
["int" ] = localization;
["#language" ] = miscellaneous;
["#special" ] = miscellaneous;
["#speciale" ] = miscellaneous;
["#tag" ] = miscellaneous;
-- [[mw:Extension:ParserFunctions]]
["#expr" ] = parser_functions_link .. "##expr";
["#if" ] = parser_functions_link .. "##if";
["#ifeq" ] = parser_functions_link .. "##ifeq";
["#iferror" ] = parser_functions_link .. "##iferror";
["#ifexpr" ] = parser_functions_link .. "##ifexpr";
["#ifexist" ] = parser_functions_link .. "##ifexist";
["#rel2abs" ] = parser_functions_link .. "##rel2abs";
["#switch" ] = parser_functions_link .. "##switch";
["#time" ] = parser_functions_link .. "##time";
["#timel" ] = parser_functions_link .. "##timel";
["#titleparts" ] = parser_functions_link .. "##titleparts";
-- other extensions
["#invoke" ] = "mw:Extension:Scribunto";
["#babel" ] = "mw:Extension:Babel";
["#categorytree" ] = "mw:Extension:CategoryTree#The {{#categorytree}} parser function";
["#lst" ] = LST;
["#lstx" ] = LST;
["#lsth" ] = LST; -- not available, it seems
["#lqtpagelimit" ] = "mw:Extension:LiquidThreads";
["#useliquidthreads"] = "mw:Extension:LiquidThreads";
["#target" ] = "mw:Extension:MassMessage"; -- not documented yet
}
-- rudimentary
local function is_valid_pagename(pagename)
if (pagename == "") or pagename:match("[%[%]%|%{%}#\127<>]") then
return false
end
return true
end
local function hook_special(page)
if is_valid_pagename(page) then
return "[[Special:" .. page .. "|" .. page .. "]]"
else
return page
end
end
local parser_function_hooks = {
["#special" ] = hook_special;
["#speciale"] = hook_special;
["int"] = function (mesg)
if is_valid_pagename(mesg) then
return ("[[:MediaWiki:" .. mesg .. "|" .. mesg .. "]]")
else
return mesg
end
end;
["#categorytree"] = function (cat)
if is_valid_pagename(cat) and not (mw.title.getCurrentTitle().fullText == ("Category:" .. cat)) then
return ("[[:Category:" .. cat .. "|" .. cat .. "]]")
else
return cat
end
end;
["#invoke"] = function (mod)
if is_valid_pagename(mod) and not (mw.title.getCurrentTitle().fullText == ("Module:" .. mod)) then
return ("[[Module:%s|%s]]"):format(mod, mod)
else
return mod
end
end;
["#tag"] = function (tag)
local doc_table = require('Module:wikitag link').doc_table
if doc_table[tag] then
return ("[[%s|%s]]"):format(doc_table[tag], tag)
else
return tag
end
end;
}
function export.format_link(frame)
if mw.isSubsting() then
return require('Module:unsubst').unsubst_template("format_link")
end
local args = (frame.getParent and frame:getParent().args) or frame -- Allows function to be called from other modules.
local output = { (frame.args and frame.args.nested) and "{{" or "<code>{{" }
local templ = (frame.args and frame.args.annotate) or args[1]
local noargs = (frame.args and not frame.args.annotate) and next(args) == nil
if not templ then
if mw.title.getCurrentTitle().fullText == frame:getParent():getTitle() then
-- demo mode
return "<code>{{<var>{{{1}}}</var>|<var>{{{2}}}</var>|...}}</code>"
else
error("The template name must be given.")
end
end
local function render_title(templ)
local marker, rest
marker, rest = templ:match("^([Ss][Uu][Bb][Ss][Tt]):(.*)")
if not marker then
marker, rest = templ:match("^([Ss][Aa][Ff][Ee][Ss][Uu][Bb][Ss][Tt]):(.*)")
end
if marker then
templ = rest
table.insert(output, ("[[mw:Manual:Substitution|%s]]:"):format(marker))
end
if noargs and variables_nullary[templ] then
table.insert(output, ("[[%s|%s]]"):format(variables_nullary[templ], templ))
return
end
marker, rest = templ:match("^([Mm][Ss][Gg][Nn][Ww]):(.*)")
if marker then
templ = rest
-- not the most accurate documentation ever
table.insert(output, ("[[m:Help:Magic words#Template modifiers|%s]]:"):format(marker))
else
marker, rest = templ:match("^([Mm][Ss][Gg]):(.*)")
if marker then
templ = rest
table.insert(output, ("[[m:Help:Magic words#Template modifiers|%s]]:"):format(marker)) -- ditto
end
end
marker, rest = templ:match("^([Rr][Aa][Ww]):(.*)")
if marker then
table.insert(output, ("[[m:Help:Magic words#Template modifiers|%s]]:"):format(marker)) -- missingno.
templ = rest
end
if templ:match("^%s*/") then
table.insert(output, ("[[%s]]"):format(templ))
return
end
marker, rest = templ:match("^(.-):(.*)")
if marker then
local lcmarker = marker:lower()
if parser_functions[lcmarker] then
if parser_function_hooks[lcmarker] then
rest = parser_function_hooks[lcmarker](rest)
end
table.insert(output, ("[[%s|%s]]:%s"):format(mw.uri.encode(parser_functions[lcmarker], "WIKI"), marker, rest))
return
elseif variables_nonnullary[marker] then
table.insert(output, ("[[%s|%s]]:%s"):format(variables_nonnullary[marker], marker, rest))
return
end
end
if not is_valid_pagename(templ) then
table.insert(output, templ)
return
end
if marker then
if mw.site.namespaces[marker] then
if (title == "") or (mw.title.getCurrentTitle().fullText == templ) then -- ?? no such variable "title"
table.insert(output, templ)
elseif marker == "" and templ:find("^:") then
-- for cases such as {{temp|:entry}}; MediaWiki displays [[:entry]] without a colon, like [[entry]], but colon should be shown
table.insert(output, ("[[%s|%s]]"):format(templ, templ))
else
table.insert(output, ("[[:%s|%s]]"):format(templ, templ))
end
return
elseif mw.site.interwikiMap()[marker:lower()] then
-- XXX: not sure what to do now…
table.insert(output, ("[[:%s:|%s]]:%s"):format(marker, marker, rest))
return
end
end
if (templ == "") or (mw.title.getCurrentTitle().fullText == ("Template:" .. templ)) then
table.insert(output, templ)
else
table.insert(output, ("[[Template:%s|%s]]"):format(templ, templ))
end
end
render_title(templ)
local i = (frame.args and frame.args.annotate) and 1 or 2
while args[i] do
table.insert(output, "|" .. args[i])
i = i + 1
end
for key, value in require("Module:table").sortedPairs(args) do
if type(key) == "string" then
table.insert(output, "|" .. key .. "=" .. value)
end
end
table.insert(output, (frame.args and frame.args.nested) and "}}" or "}}</code>")
return table.concat(output)
end
return export
cy6xa1x3igx8v32yt0p1sxatf4d38ex
Module:category tree/topic cat
828
5236
13244
2022-07-29T18:41:38Z
Asinis632
1829
Created page with "local export = {} local label_data = require("Module:category tree/topic cat/data") -- Category object local Category = {} Category.__index = Category function Category.new_main(frame) local self = setmetatable({}, Category) local params = { [1] = {}, [2] = {required = true}, ["sc"] = {}, } args = require("Module:parameters").process(frame:getParent().args, params) self._info = {code = args[1], label = args[2]} self:initCommon() if not self._data..."
Scribunto
text/plain
local export = {}
local label_data = require("Module:category tree/topic cat/data")
-- Category object
local Category = {}
Category.__index = Category
function Category.new_main(frame)
local self = setmetatable({}, Category)
local params = {
[1] = {},
[2] = {required = true},
["sc"] = {},
}
args = require("Module:parameters").process(frame:getParent().args, params)
self._info = {code = args[1], label = args[2]}
self:initCommon()
if not self._data then
return nil
end
return self
end
function Category.new(info)
for key, val in pairs(info) do
if not (key == "code" or key == "label") then
error("The parameter “" .. key .. "” was not recognized.")
end
end
local self = setmetatable({}, Category)
self._info = info
if not self._info.label then
error("No label was specified.")
end
self:initCommon()
if not self._data then
error("The label “" .. self._info.label .. "” does not exist.")
end
return self
end
export.new = Category.new
export.new_main = Category.new_main
function Category:initCommon()
if self._info.code then
self._lang = require("Module:languages").getByCode(self._info.code) or
error("The language code “" .. self._info.code .. "” is not valid.")
end
-- Convert label to lowercase if possible
local lowercase_label = mw.getContentLanguage():lcfirst(self._info.label)
-- Check if the label exists
local labels = label_data["LABELS"]
if labels[lowercase_label] then
self._info.label = lowercase_label
end
self._data = labels[self._info.label]
-- Go through handlers
if not self._data then
for _, handler in ipairs(label_data["HANDLERS"]) do
self._data = handler.handler(self._info.label)
if self._data then
self._data.module = handler.module
break
end
end
end
end
function Category:getInfo()
return self._info
end
function Category:getBreadcrumbName()
local ret
if self._lang or self._info.raw then
ret = self._data.breadcrumb
else
-- FIXME, copied from [[Module:category tree/poscatboiler]]. No support for specific umbrella info yet.
ret = self._data.umbrella and self._data.umbrella.breadcrumb
end
if not ret then
ret = self._info.label
end
if type(ret) == "string" or type(ret) == "number" then
ret = {name = ret}
end
local name = self:substitute_template_specs(ret.name)
local nocap = ret.nocap
return name, nocap
end
function Category:getDataModule()
return self._data.module
end
function Category:canBeEmpty()
if self._lang then
return false
else
return true
end
end
function Category:isHidden()
return false
end
function Category:getCategoryName()
if self._lang then
return self._lang:getCode() .. ":" .. mw.getContentLanguage():ucfirst(self._info.label)
else
return mw.getContentLanguage():ucfirst(self._info.label)
end
end
local function replace_special_descriptions(desc)
-- TODO: Should probably find a better way to do this
local descriptionFormats = {
["default"] = "{{{langname}}} terms related to {{{label_lc}}}.",
["default with capital"] = "{{{langname}}} terms related to {{{label_uc}}}.",
["default with the"] = "{{{langname}}} terms related to the {{{label_uc}}}.",
["default with the lower"] = "{{{langname}}} terms related to the {{{label_lc}}}.",
["default with topic"] = "{{{langname}}} terms related to {{{label_lc}}} topics.",
["default-set"] = "{{{langname}}} terms for various {{{label_lc}}}.",
}
if descriptionFormats[desc] then
return descriptionFormats[desc]
end
if desc then
local desc_no_sing = desc:match("^(.+) no singularize$")
if desc_no_sing and descriptionFormats[desc_no_sing] then
return descriptionFormats[desc_no_sing]:gsub("({{{label_[ul]c)}}}", "%1_no_sing}}}")
end
end
return desc
end
function Category:substitute_template_specs(desc)
if not desc then
return desc
end
if type(desc) == "number" then
desc = tostring(desc)
end
-- FIXME, when does this occur? It doesn't occur in the corresponding place in [[Module:category tree/poscatboiler]].
if type(desc) ~= "string" then
return desc
end
desc = desc:gsub("{{PAGENAME}}", mw.title.getCurrentTitle().text)
if self._lang then
desc = desc:gsub("{{{langname}}}", self._lang:getCanonicalName())
desc = desc:gsub("{{{langcode}}}", self._lang:getCode())
desc = desc:gsub("{{{langcat}}}", self._lang:getCategoryName())
desc = desc:gsub("{{{langlink}}}", self._lang:makeCategoryLink())
end
local function handle_label_uc_lc(label_sub, label, no_singularize)
local singular_label, singular_label_title
if not no_singularize then
singular_label = require("Module:string utilities").singularize(label)
singular_label_title = mw.title.new(singular_label)
end
if singular_label_title and singular_label_title.exists then
desc = desc:gsub(label_sub, "[[" .. singular_label .. "|" .. label .. "]]")
else
-- 'happiness' etc. that look like plurals but aren't
local plural_label_title = mw.title.new(label)
if plural_label_title and plural_label_title.exists then
desc = desc:gsub(label_sub, "[[" .. label .. "]]")
else
desc = desc:gsub(label_sub, label)
end
end
return desc
end
if desc:find("{{{label_uc}}}") then
desc = handle_label_uc_lc("{{{label_uc}}}", mw.getContentLanguage():ucfirst(self._info.label))
end
if desc:find("{{{label_uc_no_sing}}}") then
desc = handle_label_uc_lc("{{{label_uc_no_sing}}}", mw.getContentLanguage():ucfirst(self._info.label), "no singularize")
end
if desc:find("{{{label_lc}}}") then
desc = handle_label_uc_lc("{{{label_lc}}}", mw.getContentLanguage():lcfirst(self._info.label))
end
if desc:find("{{{label_lc_no_sing}}}") then
desc = handle_label_uc_lc("{{{label_lc_no_sing}}}", mw.getContentLanguage():lcfirst(self._info.label), "no singularize")
end
if desc:find("{") then
desc = mw.getCurrentFrame():preprocess(desc)
end
return desc
end
function Category:substitute_template_specs_in_args(args)
if not args then
return args
end
local pinfo = {}
for k, v in pairs(args) do
k = self:substitute_template_specs(k)
v = self:substitute_template_specs(v)
pinfo[k] = v
end
return pinfo
end
function Category:getDescription(isChild)
-- Allows different text in the list of a category's children
local isChild = isChild == "child"
if self._lang then
local desc = self._data["description"]
desc = replace_special_descriptions(desc)
if desc then
if not isChild and self._data.additional then
desc = desc .. "\n\n" .. self._data.additional
end
return self:substitute_template_specs(desc)
end
else
if not self._lang and ( self._info.label == "all topics" or self._info.label == "all sets" ) then
return "This category applies to content and not to meta material about the Wiki."
end
local eninfo = mw.clone(self._info)
eninfo.code = "en"
local en = Category.new(eninfo)
local desc = self._data["umbrella_description"] or self._data["description"]
desc = replace_special_descriptions(desc)
if desc then
desc = desc:gsub("^{{{langname}}} ", "")
desc = desc:gsub("{{{langcode}}}:", "")
desc = desc:gsub("^{{{langcode}}} ", "")
desc = desc:gsub("^{{{langcat}}} ", "")
desc = desc:gsub("%.$", "")
desc = self:substitute_template_specs(desc)
else
desc = self._info.label
end
return
"This category concerns the topic: " .. desc .. ".\n\n" ..
"It contains no dictionary entries, only other categories. The subcategories are of two sorts:\n\n" ..
"* Subcategories named like “aa:" .. mw.getContentLanguage():ucfirst(self._info.label) .. "” (with a prefixed language code) are categories of terms in specific languages. " ..
"You may be interested especially in [[:Category:" .. en:getCategoryName() .. "]], for English terms.\n" ..
"* Subcategories of this one named without the prefixed language code are further categories just like this one, but devoted to finer topics."
end
end
function Category:getParents()
local parents = self._data["parents"]
if not self._lang and ( self._info.label == "all topics" or self._info.label == "all sets" ) then
return {{ name = "Grup:Kirapim", sort = self._info.label:gsub("all ", "") }}
end
if not parents or #parents == 0 then
return nil
end
local ret = {}
local is_set = false
if self._info.label == "all sets" then
is_set = true
end
for key, parent in ipairs(parents) do
parent = mw.clone(parent)
if type(parent) ~= "table" then
parent = {name = parent}
end
if not parent.sort then
parent.sort = self._info.label
end
if self._lang then
parent.sort = self:substitute_template_specs(parent.sort)
elseif parent.sort:find("{{{langname}}}") or parent.sort:find("{{{langcat}}}") or
parent.template == "langcatboiler" or parent.module then
return nil
end
if not self._lang then
parent.sort = " " .. parent.sort
end
if parent.name and parent.name:find("^Category:") then
if self._lang then
parent.name = self:substitute_template_specs(parent.name)
elseif parent.name:find("{{{langname}}}") or parent.name:find("{{{langcat}}}") or
parent.template == "langcatboiler" or parent.module then
return nil
end
else
if parent.name == "list of sets" then
is_set = true
end
local pinfo = mw.clone(self._info)
pinfo.label = parent.name
if parent.template then
parent.name = require("Module:category tree/" .. parent.template).new(pinfo)
elseif parent.module then
-- A reference to a category using another category tree module.
if not parent.args then
error("Missing .args in parent table with module=\"" .. parent.module .. "\" for '" ..
self._info.label .. "' topic entry in module '" .. (self._data.module or "unknown") .. "'")
end
parent.name = require("Module:category tree/" .. parent.module).new(self:substitute_template_specs_in_args(parent.args))
else
parent.name = Category.new(pinfo)
end
end
table.insert(ret, parent)
end
if not is_set and self._info.label ~= "list of topics" and self._info.label ~= "list of sets" then
local pinfo = mw.clone(self._info)
pinfo.label = "list of topics"
table.insert(ret, {name = Category.new(pinfo), sort = (not self._lang and " " or "") .. self._info.label})
end
return ret
end
function Category:getChildren()
return nil
end
function Category:getUmbrella()
if not self._lang then
return nil
end
local uinfo = mw.clone(self._info)
uinfo.code = nil
return Category.new(uinfo)
end
function Category:getTOCTemplateName()
local lang = self._lang
local code = lang and lang:getCode() or "en"
return "Templet:" .. code .. "-categoryTOC"
end
return export
jd8bhicdjkaozsbq0j40j10rxcnxzik
Module:category tree/topic cat/data/Body
828
5237
13245
2022-07-29T18:42:35Z
Asinis632
1829
Created page with "local labels = {} labels["body"] = { description = "{{{langname}}} terms related to the [[body]] and its parts.", parents = {"all topics"}, -- This should not go in "anatomy", which is for terms used in the *study* of the body } labels["abortion"] = { description = "{{{langname}}} terms related to [[abortion]] of a pregnancy.", parents = {"pregnancy"}, } labels["age"] = { description = "default", parents = {"body", "time"}, } labels["amoebozoal diseases"] = {..."
Scribunto
text/plain
local labels = {}
labels["body"] = {
description = "{{{langname}}} terms related to the [[body]] and its parts.",
parents = {"all topics"}, -- This should not go in "anatomy", which is for terms used in the *study* of the body
}
labels["abortion"] = {
description = "{{{langname}}} terms related to [[abortion]] of a pregnancy.",
parents = {"pregnancy"},
}
labels["age"] = {
description = "default",
parents = {"body", "time"},
}
labels["amoebozoal diseases"] = {
description = "default-set",
parents = {"diseases", "list of sets"},
}
labels["amputation"] = {
description = "default-set",
parents = {"disability", "surgery", "list of topics"},
}
labels["anger"] = {
description = "default",
parents = {"emotions"},
}
labels["animal body parts"] = {
description = "{{{langname}}} terms for [[body part]]s of [[animal]]s besides [[human]]s.",
parents = {"body parts", "animals"},
}
labels["animal tissues"] = {
description = "{{{langname}}} terms for [[tissue]]s (groups of similar cells that function together to do a specific job) in animals, including humans.",
parents = {"tissues"},
}
labels["bacterial diseases"] = {
description = "default-set",
parents = {"diseases", "list of sets"},
}
labels["bathing"] = {
description = "default",
parents = {"Hygiene", "cleaning"},
}
labels["beards"] = {
description = "{{{langname}}} terms for different types of [[beard]]s and relating to beards in general.",
parents = {"face", "fashion", "hair", "list of sets", "list of topics"},
}
labels["biomolecules"] = {
description = "{{{langname}}} terms for [[biomolecule]]s: organic compounds that are present in and used by organisms.",
parents = {"body parts", "organic compounds", "biochemistry", "list of sets"},
}
labels["bodily fluids"] = {
description = "{{{langname}}} terms for [[fluid]]s ([[liquid]]s) of the body.",
parents = {"body parts", "liquids"},
}
labels["bodily functions"] = {
description = "{{{langname}}} terms relating to functions and processes of the human or animal body.",
parents = {"body"},
}
labels["body parts"] = {
description = "{{{langname}}} terms for parts of the [[body]] of any [[lifeform]], both macroscopic and microscopic.",
parents = {"body", "list of sets"}, -- This should not go in "anatomy", which is for terms used in the *study* of the body
}
labels["bones"] = {
description = "{{{langname}}} terms for the [[bone]]s of the [[body]].",
parents = {"body parts", "skeleton", "list of sets"},
}
labels["brain"] = {
description = "default",
parents = {"body"},
}
labels["brain regions"] = {
description = "default-set",
parents = {"body parts", "brain", "list of sets"},
}
labels["buttocks"] = {
description = "default",
parents = {"body"},
}
labels["circumcision"] = {
description = "default",
parents = {"genitalia", "surgery"},
}
labels["coccidial diseases"] = {
description = "default-set",
parents = {"diseases", "list of sets"},
}
labels["coronavirus"] = {
description = "{{{langname}}} terms involving [[coronavirus]]es.",
parents = {"disease"},
}
labels["death"] = {
description = "default",
parents = {"body"},
}
labels["dental hygiene"] = {
description = "{{{langname}}} terms related to [[dental]] [[hygiene]].",
parents = {"hygiene", "teeth"},
}
labels["disability"] = {
description = "{{{langname}}} terms related to [[disability]] and its social implications.",
parents = {"body", "society"},
}
labels["disease"] = {
description = "{{{langname}}} related to [[disease]].",
parents = {"body", "pathology",},
}
labels["diseases"] = {
description = "{{{langname}}} terms for [[disease]]s, [[symptom]]s, or [[abnormality|abnormalities]] of human [[pathology]], [[physiology]] or [[psychology]].",
parents = {"disease", "list of sets"},
}
labels["emotions"] = {
description = "{{{langname}}} terms related to [[emotion]]s.",
parents = {"mind"},
}
labels["eye"] = {
description = "{{{langname}}} terms related to [[eye]]s.",
parents = {"face", "vision"},
}
labels["face"] = {
description = "default with the lower",
parents = {"body"},
}
labels["fear"] = {
description = "default",
parents = {"emotions"},
}
labels["feces"] = {
description = "default no singularize",
parents = {"body", "WC"},
}
labels["female"] = {
description = "{{{langname}}} terms involving the [[female]] sex or gender.",
parents = {"gender"},
}
labels["fingers"] = {
description = "{{{langname}}} terms related to [[finger]]s.",
parents = {"body"},
}
labels["fungal diseases"] = {
description = "default-set",
parents = {"diseases", "list of sets"},
}
labels["gaits"] = {
description = "default",
parents = {"body"},
}
labels["gender"] = {
description = "default",
parents = {"mind"},
}
labels["genetic disorders"] = {
description = "default-set",
parents = {"diseases", "medical genetics", "list of sets"},
}
labels["genitalia"] = {
description = "{{{langname}}} terms for [[sex organ]]s, both external and internal.",
parents = {"body parts", "list of sets", "sex"}, -- This should not go in "anatomy", which is for terms used in the *study* of the body
}
labels["hair"] = {
description = "default",
parents = {"body"},
}
labels["happiness"] = {
description = "default no singularize",
parents = {"emotions"},
}
labels["health"] = {
description = "default",
parents = {"body"},
}
labels["healthcare"] = {
description = "default",
parents = {"health", "medicine"},
}
labels["hearing"] = {
description = "default",
parents = {"senses"},
}
labels["helminthic diseases"] = {
description = "{{{langname}}} terms for diseases caused by various types of [[parasitic]] worms.",
parents = {"diseases", "list of sets"},
}
labels["hormones"] = {
description = "{{{langname}}} terms for various [[hormone]]s.",
parents = {"biomolecules", "list of sets"},
}
labels["horse gaits"] = {
description = "default",
parents = {"gaits"},
}
labels["hygiene"] = {
description = "default",
parents = {"health"},
}
labels["infestations"] = {
description = "{{{langname}}} terms for [[disease]]s where [[macroscopic]] [[organism]]s are living on or in the host.",
parents = {"diseases", "list of sets"},
}
labels["insect-borne diseases"] = {
description = "{{{langname}}} terms for [[diseases]] spread by [[insect]]s.",
parents = {"vector-borne diseases", "list of sets"},
}
labels["intersex"] = {
description = "{{{langname}}} terms related to ''[[intersex]]''.",
parents = {"gender", "LGBT"},
}
labels["injuries"] = {
description = "default-set",
parents = {"pathology", "list of sets"},
}
labels["leprosy"] = {
description = "{{{langname}}} terms involving [[leprosy]].",
parents = {"disease"},
}
labels["limbs"] = {
description = "{{{langname}}} terms involving the [[limb]]s.",
parents = {"body"},
}
labels["lipids"] = {
description = "{{{langname}}} terms for various [[lipid]]s.",
parents = {"biomolecules", "list of sets"},
}
labels["love"] = {
description = "default",
parents = {"emotions"},
}
labels["male"] = {
description = "{{{langname}}} terms involving the [[male]] sex or gender.",
parents = {"gender"},
}
labels["medical signs and symptoms"] = {
description = "default-set",
parents = {"body", "pathology"},
}
labels["memory"] = {
description = "default",
parents = {"mind"},
}
labels["menstruation"] = {
description = "default",
parents = {"body", "gynaecology"},
}
labels["metabolism"] = {
description = "default",
parents = {"body"},
}
labels["mind"] = {
description = "{{{langname}}} terms for and related to the [[mind]].",
parents = {"body"},
}
labels["mosquito-borne diseases"] = {
description = "{{{langname}}} terms for [[diseases]] spread by [[mosquito]]es.",
parents = {"vector-borne diseases", "mosquitoes","insect-borne diseases","list of sets"},
}
labels["motion sickness"] = {
description = "default no singularize",
parents = {"disease"},
}
labels["mouth"] = {
description = "default with the lower",
parents = {"face"},
}
labels["muscles"] = {
description = "default-set",
parents = {"body parts", "list of sets"},
}
labels["nerves"] = {
description = "{{{langname}}} names of [[nerve]]s found in the body.",
parents = {"body parts", "list of sets"},
}
labels["neurotransmitters"] = {
description = "{{{langname}}} names of known [[neurotransmitter]]s and terms relating to them.",
parents = {"biomolecules", "list of sets"},
}
labels["non-binary"] = {
description = "{{{langname}}} terms related to [[non-binary]] [[gender identity|gender identities]].",
parents = {"gender", "transgender"},
}
labels["nostalgia"] = {
description = "{{{langname}}} terms related to [[nostalgia]].",
parents = {"emotions", "history", "memory"},
}
labels["nutrition"] = {
description = "default",
parents = {"health"},
}
labels["obesity"] = {
description = "default",
parents = {"health"},
}
labels["organs"] = {
description = "{{{langname}}} terms for the [[organ]]s of the [[body]].",
parents = {"body parts", "list of sets"},
}
labels["organ systems"] = {
description = "{{{langname}}} terms for [[organ]] [[system]]s.",
parents = {"body parts", "list of sets"},
}
labels["pain"] = {
description = "default",
parents = {"senses"},
}
labels["personality"] = {
description = "{{{langname}}} terms related to personality.",
parents = {"mind"},
}
labels["philias"] = {
description = "default",
parents = {"love"},
}
labels["phobias"] = {
description = "{{{langname}}} terms for [[phobia]]s.",
parents = {"fear", "list of sets"},
}
labels["plant diseases"] = {
description = "default-set",
parents = {"diseases", "phytopathology", "list of sets"},
}
labels["plant tissues"] = {
description = "{{{langname}}} terms for plant [[tissue]]s (groups of similar cells that function together to do a specific job).",
parents = {"tissues", "list of sets"},
}
labels["pregnancy"] = {
description = "default",
parents = {"body", "gynaecology"},
}
labels["proteins"] = {
description = "{{{langname}}} terms for [[protein]]s.",
parents = {"biomolecules", "list of sets"},
}
labels["sauna"] = {
description = "default",
parents = {"bathing"},
}
labels["scents"] = {
description = "{{{langname}}} terms referring to specific [[scents]].",
parents = {"smell"},
}
labels["senses"] = {
description = "{{{langname}}} terms related to the [[physical]] [[senses]].",
parents = {"body"},
}
labels["sexually transmitted diseases"] = {
description = "default",
parents = {"diseases", "list of sets"},
}
labels["skeleton"] = {
description = "default with the lower",
parents = {"body"},
}
labels["skin"] = {
description = "default",
parents = {"body"},
}
labels["sleep"] = {
description = "default",
parents = {"body"},
}
labels["smell"] = {
description = "{{{langname}}} terms related to the [[sense]] of [[smell]].",
parents = {"senses"},
}
labels["suicide"] = {
description = "default",
parents = {"death"},
}
labels["syndromes"] = {
description = "default",
parents = {"health", "pathology"},
}
labels["taste"] = {
description = "default",
parents = {"senses", "food and drink"},
}
labels["teeth"] = {
description = "{{{langname}}} terms related to [[tooth|teeth]].",
parents = {"mouth"},
}
labels["thinking"] = {
description = "default",
parents = {"mind"},
}
labels["tick-borne diseases"] = {
description = "{{{langname}}} terms for [[diseases]] spread by [[tick]]s.",
parents = {"vector-borne diseases", "list of sets"},
}
labels["tissues"] = {
description = "{{{langname}}} terms for to [[tissue]]s (groups of similar cells that function together to do a specific job).",
parents = {"body parts"},
}
labels["toiletries"] = {
description = "{{{langname}}} terms for items used for [[grooming]] or [[personal hygiene]]. (For terms related to [[lavatory|lavatories]], use [[:Category:WC]].)",
parents = {"hygiene", "list of sets"},
}
labels["touch"] = {
description = "default",
parents = {"senses"},
}
labels["transgender"] = {
description = "{{{langname}}} terms related to the ''[[transgender]]'' community in the broad sense of that term, by which it includes the ''[[genderqueer]]'' community: terms relating to transgender and transsexual people and to [[transition]]ing from female to male or vice versa, as well as terms relating to [[agender]], [[androgynous]] or [[third gender]] people.",
parents = {"gender", "LGBT"},
}
labels["trypanosomal diseases"] = {
description = "default-set",
parents = {"diseases", "list of sets"},
}
labels["vector-borne diseases"] = {
description = "{{{langname}}} terms for [[diseases]] spread by other [[organism]]s.",
parents = {"diseases", "list of sets"},
}
labels["viral diseases"] = {
description = "default-set",
parents = {"diseases", "list of sets"},
}
labels["vision"] = {
description = "default",
parents = {"senses"},
}
labels["vitamins"] = {
description = "default-set",
parents = {"biomolecules", "list of sets"},
}
return labels
0svr2m3xy8g3bc10fw0s62xod3sd31g
Module:category tree/topic cat/data/Buildings and structures
828
5238
13246
2022-07-29T18:43:21Z
Asinis632
1829
Created page with "local labels = {} labels["buildings and structures"] = { description = "{{{langname}}} terms related to [[building]]s and [[structure]]s.", parents = {"architecture"}, } labels["animal dwellings"] = { description = "default", parents = {"buildings and structures", "zoology"}, } labels["bridges"] = { description = "default", parents = {"buildings and structures"}, } labels["buildings"] = { description = "default", parents = {"buildings and structures"}, } lab..."
Scribunto
text/plain
local labels = {}
labels["buildings and structures"] = {
description = "{{{langname}}} terms related to [[building]]s and [[structure]]s.",
parents = {"architecture"},
}
labels["animal dwellings"] = {
description = "default",
parents = {"buildings and structures", "zoology"},
}
labels["bridges"] = {
description = "default",
parents = {"buildings and structures"},
}
labels["buildings"] = {
description = "default",
parents = {"buildings and structures"},
}
labels["pyramids"] = {
description = "{{{langname}}} terms related to [[pyramid]]s.",
parents = {"buildings"},
}
labels["rooms"] = {
description = "default",
parents = {"buildings and structures"},
}
labels["kitchen"] = {
description = "default",
parents = {"rooms", "cooking"},
}
labels["shops"] = {
description = "default",
parents = {"buildings", "businesses"},
}
labels["walls and fences"] = {
description = "{{{langname}}} terms related to [[wall]]s and [[fence]]s.",
parents = {"buildings and structures"},
}
labels["WC"] = {
description = "{{{langname}}} terms related to [[water closet]]s ([[WC]]s), that is, [[flush toilet]]s or rooms containing flush toilets.",
parents = {"hygiene", "rooms"},
}
return labels
kmz5ehxxsiawwor9ndus71d2r4vauwv
Module:category tree/topic cat/data/Communication
828
5239
13247
2022-07-29T18:44:05Z
Asinis632
1829
Created page with "local labels = {} labels["Arabic"] = { description = "{{{langname}}} terms related to the Arabic language.", parents = {"languages"}, } labels["Chinese"] = { description = "{{{langname}}} terms related to the Chinese languages.", parents = {"languages"}, } labels["English"] = { description = "{{{langname}}} terms related to the English language.", parents = {"languages"}, } labels["German"] = { description = "{{{langname}}} terms related to the German language..."
Scribunto
text/plain
local labels = {}
labels["Arabic"] = {
description = "{{{langname}}} terms related to the Arabic language.",
parents = {"languages"},
}
labels["Chinese"] = {
description = "{{{langname}}} terms related to the Chinese languages.",
parents = {"languages"},
}
labels["English"] = {
description = "{{{langname}}} terms related to the English language.",
parents = {"languages"},
}
labels["German"] = {
description = "{{{langname}}} terms related to the German language.",
parents = {"languages"},
}
labels["Japanese"] = {
description = "{{{langname}}} terms related to the Japanese language.",
parents = {"languages"},
}
labels["Korean"] = {
description = "{{{langname}}} terms related to the Korean language.",
parents = {"languages"},
}
labels["Portuguese"] = {
description = "{{{langname}}} terms related to the Portuguese language.",
parents = {"languages"},
}
labels["Spanish"] = {
description = "{{{langname}}} terms related to the Spanish language.",
parents = {"languages"},
}
labels["Vietnamese"] = {
description = "{{{langname}}} terms related to the Vietnamese language.",
parents = {"languages"},
}
labels["communication"] = {
description = "default",
parents = {"all topics"},
}
labels["alphabets"] = {
description = "default",
parents = {"writing systems"},
}
labels["ambiguity"] = {
description = "default",
parents = {"communication"},
}
labels["artificial languages"] = { -- distinguish from "cat:constructed languages" family category
description = "{{{langname}}} names of [[w:constructed language]]s.",
parents = {"languages", "list of sets"},
}
labels["body language"] = {
description = "default",
parents = {"language", "nonverbal communication"},
}
labels["broadcasting"] = {
description = "default",
parents = {"media", "telecommunications"},
}
labels["Chinese character components"] = {
description = "{{{langname}}} names of [[Chinese character]] components.",
parents = {"letters, symbols, and punctuation", "list of sets"},
}
labels["day signs"] = {
description = "default",
parents = {"symbols", "calendar terms", "list of sets"},
}
labels["diacritical marks"] = {
description = "{{{langname}}} names of [[diacritical mark]]s.",
parents = {"letters, symbols, and punctuation", "list of sets"},
}
labels["dialects"] = {
description = "default",
parents = {"language", "list of sets"},
}
labels["dictation"] = {
description = "default",
parents = {"communication"},
}
labels["directives"] = {
description = "{{{langname}}} terms related to instructions, guidelines and other things (whether real or metaphysical) that indicate what to do or not do, including those self-imposed.",
parents = {"communication"},
}
labels["extinct languages"] = {
description = "{{{langname}}} names of [[extinct]] languages.",
parents = {"languages", "list of sets"},
}
labels["sign languages"] = {
description = "{{{langname}}} names of [[sign]] languages.",
parents = {"languages", "list of sets"},
}
labels["facial expressions"] = {
description = "{{{langname}}} terms related to [[facial expression]]s.",
parents = {"nonverbal communication", "face", "list of sets"},
}
labels["figures of speech"] = {
description = "default",
parents = {"rhetoric"},
}
labels["flags"] = {
description = "default",
parents = {"communication"},
}
labels["jargon"] = {
description = "default",
parents = {"language"},
}
labels["Han characters"] = {
description = "default",
parents = {"writing systems"},
}
labels["language"] = {
description = "default",
parents = {"communication"},
}
labels["language families"] = {
description = "{{{langname}}} names of various [[language family|language families]], both accepted and controversial.",
parents = {"language", "names", "list of sets"},
}
labels["languages"] = {
description = "{{{langname}}} names of various [[language]]s.",
parents = {"language", "names", "list of sets"},
}
labels["letters, symbols, and punctuation"] = {
description = "{{{langname}}} terms related to [[letter]]s, [[symbol]]s, and [[punctuation]].",
parents = {"orthography", "list of sets"},
}
labels["logical fallacies"] = {
description = "{{{langname}}} terms related to [[logical fallacy|logical fallacies]], clearly defined errors in reasoning used to support or refute an argument.",
parents = {"rhetoric", "logic", "list of sets"},
}
labels["media"] = {
description = "default",
parents = {"communication"},
}
labels["mobile phones"] = {
description = "default",
parents = {"telephony"},
}
labels["nonverbal communication"] = {
description = "default",
parents = {"communication"},
}
labels["orthography"] = {
description = "default",
parents = {"writing"},
}
labels["palaeography"] = {
description = "default",
parents = {"writing"},
}
labels["post"] = {
description = "{{{langname}}} terms related to [[post]] or [[mail]].",
parents = {"communication"},
}
labels["public relations"] = {
description = "default",
parents = {"communication"},
}
labels["punctuation marks"] = {
description = "{{{langname}}} names of [[punctuation mark]]s.",
parents = {"letters, symbols, and punctuation", "list of sets"},
}
labels["radio"] = {
description = "default",
parents = {"telecommunications"},
}
labels["rhetoric"] = {
description = "default",
parents = {"language"},
}
labels["sociolects"] = {
description = "{{{langname}}} names of various [[sociolect]]s.",
parents = {"language"},
}
labels["symbols"] = {
description = "{{{langname}}} terms that describe [[symbol]]s, especially [[mathematical]] and [[scientific]] symbols. Most symbols have equivalent meanings in many languages and can therefore be found in [[:Category:Translingual symbols]].",
parents = {"letters, symbols, and punctuation", "list of sets"},
}
labels["talking"] = {
description = "default",
parents = {"language", "human behaviour"},
}
labels["telecommunications"] = {
description = "default",
parents = {"communication", "technology"},
}
labels["telegraphy"] = {
description = "default",
parents = {"telecommunications", "electronics"},
}
labels["telephony"] = {
description = "default",
parents = {"telecommunications", "electronics"},
}
labels["texting"] = {
description = "default",
parents = {"telecommunications"},
}
labels["textual division"] = {
description = "default",
parents = {"writing"},
}
labels["typography"] = {
description = "default",
parents = {"writing", "printing"},
}
labels["writing"] = {
description = "default",
parents = {"language", "human behaviour"},
}
labels["writing systems"] = {
description = "default",
parents = {"writing", "list of sets"},
}
return labels
lao084wt1aknktpcelbnjup3km80va2
Module:category tree/topic cat/data/Culture
828
5240
13248
2022-07-29T18:44:45Z
Asinis632
1829
Created page with "local labels = {} labels["culture"] = { description = "default", parents = {"society"}, } labels["A Christmas Carol"] = { description = "{{{langname}}} terms that are used in the context of the tale ''[[w:A Christmas Carol|A Christmas Carol]]'', by [[w:Charles Dickens|Charles Dickens]], such as the names of its characters or author.", parents = {"British fiction", "Charles Dickens"}, } labels["A Song of Ice and Fire"] = { description = "{{{langname}}} terms used..."
Scribunto
text/plain
local labels = {}
labels["culture"] = {
description = "default",
parents = {"society"},
}
labels["A Christmas Carol"] = {
description = "{{{langname}}} terms that are used in the context of the tale ''[[w:A Christmas Carol|A Christmas Carol]]'', by [[w:Charles Dickens|Charles Dickens]], such as the names of its characters or author.",
parents = {"British fiction", "Charles Dickens"},
}
labels["A Song of Ice and Fire"] = {
description = "{{{langname}}} terms used in context of the ''[[w:Song of Ice and Fire|Song of Ice and Fire]]'' novel series and its television adaptation ''[[w:Game of Thrones|Game of Thrones]]''.",
parents = {"American fiction", "fantasy", "literature"},
}
labels["Abrahamism"] = {
description = "default with capital",
parents = {"Religion"},
}
labels["acting"] = {
description = "default",
parents = {"art"},
}
labels["Ahmadiyya"] = {
description = "default",
parents = {"Islam"},
}
labels["American fiction"] = {
description = "{{{langname}}} terms related to works of American fiction.",
parents = {"fiction", "United States"},
}
labels["Anglicanism"] = {
description = "default with capital",
parents = {"Protestantism"},
}
labels["animation"] = {
description = "default",
parents = {"mass media"},
}
labels["Arabic fiction"] = {
description = "{{{langname}}} terms related to works of [[fiction]] of [[Arabic]] origin.",
parents = {"fiction"},
}
labels["Arabian deities"] = {
description = "{{{langname}}} terms related to the [[Arabian]] [[deity|deities]].",
parents = {"gods", "Arabian mythology"},
}
labels["Arabian mythology"] = {
description = "{{{langname}}} terms related to [[Arabian]] [[mythology]].",
parents = {"mythology"},
}
labels["Armenian mythology"] = {
description = "{{{langname}}} terms related to [[Armenian]] [[mythology]].",
parents = {"mythology", "Armenia"},
}
labels["art"] = {
description = "default",
parents = {"culture"},
}
labels["Arthurian mythology"] = {
description = "default with capital",
parents = {"mythology", "United Kingdom"},
}
labels["artistic works"] = {
description = "{{{langname}}} names of and terms related to [[artistic]] [[work]]s.",
parents = {"art"},
}
labels["astrology"] = {
description = "default",
parents = {"divination", "pseudoscience"},
}
labels["Asturian mythology"] = {
description = "{{{langname}}} terms related to [[Asturian]] [[mythology]].",
parents = {"mythology", "Spain"},
}
labels["Avatar: The Last Airbender"] = {
description = "{{{langname}}} terms derived from and/or related to the animated television series ''[[w:Avatar: The Last Airbender|Avatar: The Last Airbender]]'' and its spin-off ''[[w:The Legend of Korra|The Legend of Korra]]''.",
parents = {"American fiction", "animation"},
}
labels["Australian Aboriginal mythology"] = {
description = "default with capital",
parents = {"mythology", "Australia"},
}
labels["Baháʼí Faith"] = {
description = "{{{langname}}} terms related to the [[Baháʼí]] [[faith]].",
parents = {"religion", "Abrahamism"},
}
labels["ballet"] = {
description = "default",
parents = {"dance"},
}
labels["Batman"] = {
description = "{{{langname}}} terms related to the fictional [[superhero]] [[Batman]].",
parents = {"DC Comics", "Fictional characters"},
}
labels["Bhagavata Purana"] = {
description = "{{{langname}}} terms related to the [[Bhagavata]] [[Purana]].",
parents = {"books", "Hinduism"},
}
labels["Bible"] = {
description = "default with the",
parents = {"books", "Christianity", "Judaism"},
}
labels["biblical characters"] = {
description = "{{{langname}}} names of characters in the [[Bible]].",
parents = {"Bible"},
}
labels["bibliography"] = {
description = "default",
parents = {"books"},
}
labels["bilibili"] = {
description = "{{{langname}}} terms related to the video-sharing website [[w:bilibili|bilibili]].",
parents = {"social media", "World Wide Web"},
}
labels["blogging"] = {
description = "default",
parents = {"social media"},
}
labels["blues music"] = {
description = "{{{langname}}} terms related to [[blues]] music.",
parents = {"music"},
}
labels["bodhisattvas"] = {
description = "{{{langname}}} terms related to [[bodhisattvas]].",
parents = {"Buddhism"},
}
labels["body art"] = {
description = "{{{langname}}} terms related to [[body art]].",
parents = {"art", "fashion"},
}
labels["books"] = {
description = "{{{langname}}} terms related to [[book]]s.",
parents = {"mass media", "literature"},
}
labels["books of the Bible"] = {
description = "{{{langname}}} terms related to books of the [[Bible]].",
parents = {"Bible"},
}
labels["books of the Poetic Edda"] = {
description = "{{{langname}}} names of [[book]]s of the [[Poetic Edda]].",
parents = {"books"},
}
labels["Brazilian folklore"] = {
description = "{{{langname}}} terms related to [[Brazilian]] [[folklore]].",
parents = {"folklore", "Brazil"},
}
labels["British fiction"] = {
description = "{{{langname}}} terms related to works of [[fiction]] of [[British]] origin.",
parents = {"fiction"},
}
labels["Buddhas"] = {
description = "{{{langname}}} terms related to Buddhas.",
parents = {"Buddhism"},
}
labels["Buddhism"] = {
description = "default with capital",
parents = {"religion"},
}
labels["Buddhist deities"] = {
description = "{{{langname}}} terms related to the [[Buddhist]] [[deity|deities]].",
parents = {"gods", "Buddhism"},
}
labels["Buffy the Vampire Slayer"] = {
description = "{{{langname}}} terms related to the television series ''[[w:Buffy the Vampire Slayer|Buffy the Vampire Slayer]]'' (1997–2003).",
parents = {"American fiction", "television"},
}
labels["Canadian fiction"] = {
description = "{{{langname}}} terms related to works of [[fiction]] of [[Canada|Canadian]] origin.",
parents = {"Canada", "fiction"},
}
labels["calligraphy"] = {
description = "default",
parents = {"art", "writing"},
}
labels["cartomancy"] = {
description = "default",
parents = {"divination"},
}
labels["castells"] = {
description = "{{{langname}}} terms related to [[castells]], the Catalan tradition of human tower building. See [[w:castells|castells]].",
parents = {"culture", "sports"},
}
labels["Catholicism"] = {
description = "default with capital",
parents = {"Christianity"},
}
labels["celestial inhabitants"] = {
description = "{{{langname}}} terms for the inhabitants of known [[celestial body|celestial bodies]].",
parents = {"fictional characters", "science fiction"},
}
labels["Celtic mythology"] = {
description = "default",
parents = {"mythology"},
}
labels["characters from folklore"] = {
description = "default",
parents = {"fictional characters"},
}
labels["cheerleading"] = {
description = "default",
parents = {"dance", "gymnastics", "sports"},
}
labels["Church of England"] = {
description = "default with the",
parents = {"Anglicanism", "England"},
}
labels["Chinese mythology"] = {
description = "default with capital",
parents = {"mythology", "China"},
}
labels["Chinese zodiac"] = {
description = "{{{langname}}} terms related to [[w:Chinese zodiac|Chinese zodiac]].",
parents = {"astrology", "calendar terms", "Chinese mythology"},
}
labels["Christianity"] = {
description = "default with capital",
parents = {"religion", "Abrahamism"},
}
labels["Church of the East"] = {
description = "{{{langname}}} terms related to the [[Church of the East]].",
parents = {"Christianity"},
}
labels["cinematography"] = {
description = "default",
parents = {"film"},
}
labels["circus"] = {
description = "default no singularize",
parents = {"entertainment", "theater"},
}
labels["comedy"] = {
description = "default",
parents = {"drama"},
}
labels["comics"] = {
description = "default",
parents = {"literature"},
}
-- Confucianism: see Module:category tree/topic cat/data/Philosophy
labels["conlanging"] = {
description = "{{{langname}}} terms related to [[conlanging]] (the making of [[constructed language]]s).",
parents = {"language", "culture"},
}
labels["conspiracy theories"] = {
description = "{{{langname}}} terms related to [[conspiracy theory|conspiracy theories]] and theorists.",
parents = {"culture"},
}
labels["Coptic Church"] = {
description = "default with capital",
parents = {"Orthodoxy", "Egypt"},
}
labels["cosmetics"] = {
description = "default-set",
parents = {"toiletries", "fashion", "list of sets"},
}
labels["cosplay"] = {
description = "default",
parents = {"fandom"},
}
labels["creationism"] = {
description = "{{{langname}}} terms related to [[creationism]].",
parents = {"Christianity", "Judaism", "Islam", "pseudoscience"},
}
labels["crosses"] = {
description = "{{{langname}}} terms for [[cross]]es.",
parents = {"Christianity"},
}
labels["dance"] = {
description = "{{{langname}}} terms related to [[dancing]].",
parents = {"art", "human activity"},
}
labels["dances"] = {
description = "{{{langname}}} terms related to individual [[dances]].",
parents = {"dance"},
}
labels["demoscene"] = {
description = "default",
parents = {"culture", "computing"},
}
labels["design"] = {
description = "default",
parents = {"art"},
}
labels["dharma"] = {
description = "default",
parents = {"Hinduism", "Buddhism", "Sikhism", "Jainism"},
}
labels["dictionaries"] = {
description = "{{{langname}}} terms related to [[dictionary|dictionaries]].",
parents = {"reference works", "lexicography"},
}
labels["Disney"] = {
description = "{{{langname}}} terms related to the properties of [[w:The Walt Disney Company|The Walt Disney Company]], including properties acquired jointly with or from other companies.",
parents = {"American fiction", "comics", "film", "television"},
}
labels["Discordianism"] = {
description = "default",
parents = {"religion"},
}
labels["divination"] = {
description = "default",
parents = {"occult"},
}
labels["divine epithets"] = {
description = "{{{langname}}} terms used as conventional [[epithet]]s for [[deity|deities]].",
parents = {"gods", "titles"},
}
labels["Doctor Who"] = {
description = "{{{langname}}} terms related to the ''[[w:Doctor Who|Doctor Who]]'' franchise.",
parents = {"British fiction", "science fiction", "television"},
}
labels["dragons"] = {
description = "default",
parents = {"mythological creatures"},
}
labels["Dragon Age"] = {
description = "{{{langname}}} terms related to the ''[[w:Dragon Age|Dragon Age]]'' video game franchise.",
parents = {"Canadian fiction", "fantasy", "video games"},
}
labels["drama"] = {
description = "default",
parents = {"theater"},
}
labels["Eastern Catholicism"] = {
description = "default with capital",
parents = {"Catholicism"},
}
labels["Eastern Orthodoxy"] = {
description = "default",
parents = {"Orthodoxy"},
}
labels["Egyptian deities"] = {
description = "{{{langname}}} terms related to the [[Egyptian]] [[deity|deities]].",
parents = {"gods", "Egyptian mythology"},
}
labels["Egyptian mythology"] = {
description = "{{{langname}}} terms related to [[Egyptian]] [[mythology]].",
parents = {"mythology", "Ancient Egypt"},
}
labels["entertainment"] = {
description = "default",
parents = {"culture"},
}
labels["erotic literature"] = {
description = "default",
parents = {"fiction", "literary genres", "sex"},
}
labels["Etruscan mythology"] = {
description = "default",
parents = {"mythology"},
}
labels["European folklore"] = {
description = "{{{langname}}} terms related to [[European]] [[folklore]].",
parents = {"folklore", "Europe"},
}
labels["fairy tale"] = {
description = "{{{langname}}} terms related to [[fairy tale]]s.",
parents = {"fiction"},
}
labels["fairy tale characters"] = {
description = "{{{langname}}} [[character]]s of [[fairy tale]]s.",
parents = {"fictional characters", "fairy tale"},
}
labels["fairy tales"] = {
description = "{{{langname}}} titles of [[fairy tale]]s.",
parents = {"fairy tale"},
}
labels["fan fiction"] = {
description = "default",
parents = {"fiction", "fandom", "literature"},
}
labels["fandom"] = {
description = "{{{langname}}} terms arising from [[fandom]] culture.",
parents = {"culture"},
}
labels["fantasy"] = {
description = "{{{langname}}} terms related to the [[genre]] of [[fantasy]].",
parents = {"fiction"},
}
labels["fashion"] = {
description = "default",
parents = {"culture", "clothing"},
}
labels["faster-than-light travel"] = {
description = "default",
parents = {"travel", "science fiction", "astrophysics", "relativity"},
}
labels["fiction"] = {
description = "{{{langname}}} terms related to specific works of [[fiction]].",
parents = {"artistic works"},
}
labels["fictional abilities"] = {
description = "{{{langname}}} terms related to fictional [[ability|abilities]] and [[superpower]]s.",
parents = {"fiction"},
}
labels["fictional characters"] = {
description = "{{{langname}}} fictional characters.",
parents = {"fiction"},
}
labels["fictional locations"] = {
description = "{{{langname}}} terms related to [[fictional]] [[location]]s.",
parents = {"fiction"},
}
labels["fictional planets"] = {
description = "default",
parents = {"fictional locations"},
}
labels["fictional universes"] = {
description = "default",
parents = {"fictional locations"},
}
labels["film"] = {
description = "default",
parents = {"mass media", "entertainment"},
}
labels["film genres"] = {
description = "{{{langname}}} terms related to [[film]] [[genre]]s.",
parents = {"film", "genres"},
}
labels["film industries"] = {
description = "default",
parents = {"film"},
}
labels["Finnish mythology"] = {
description = "default with capital",
parents = {"mythology", "Finland"},
}
labels["flamenco"] = {
description = "default",
parents = {"dance"},
}
labels["folklore"] = {
description = "default",
parents = {"culture"},
}
labels["furry fandom"] = {
description = "default",
parents = {"fandom"},
}
labels["Futurama"] = {
description = "{{{langname}}} terms derived from and/or related to the animated television series ''[[w:Futurama|Futurama]]''.",
parents = {"American fiction", "animation", "science fiction"},
}
labels["genres"] = {
description = "{{{langname}}} terms related to [[genre]]s & genre classifications.",
parents = {"entertainment"},
}
labels["Germanic paganism"] = {
description = "default with capital",
parents = {"paganism"},
}
labels["Glee (TV series)"] = {
description = "{{{langname}}} terms related to the television series ''[[w:Glee (TV series)|Glee]]'' (2009-2015).",
parents = {"American fiction", "television"},
}
labels["Gnosticism"] = {
description = "default with capital",
parents = {"Christianity", "Judaism", "religion", "mysticism"},
}
labels["God"] = {
description = "{{{langname}}} terms related to [[God]] as an entity or an idea.",
parents = {"gods", "Judaism", "Christianity", "Islam"},
}
labels["gods"] = {
description = "{{{langname}}} terms related to [[god]]s.",
parents = {"religion"},
}
labels["graphic design"] = {
description = "default",
parents = {"design"},
}
labels["Greek deities"] = {
description = "{{{langname}}} terms related to the [[Greek]] [[deity|deities]].",
parents = {"gods", "Greek mythology"},
}
labels["Greek mythology"] = {
description = "{{{langname}}} terms related to the [[mythology]] of [[Ancient Greece]].",
parents = {"mythology", "Ancient Greece"},
}
labels["Gulliver's Travels"] = {
description = "{{{langname}}} terms related to ''[[w:Gulliver's Travels|Gulliver’s Travels]]''.",
parents = {"literature"},
}
labels["Harry Potter"] = {
description = "{{{langname}}} terms used in context of the ''[[w:Harry Potter|Harry Potter]]'' franchise.",
parents = {"British fiction", "fantasy", "literature"},
}
labels["Hawaiian mythology"] = {
description = "default",
parents = {"mythology", "Hawaii, USA"},
}
labels["Hindu deities"] = {
description = "{{{langname}}} terms related to the deities of [[Hinduism]].",
parents = {"gods", "Hindu mythology"},
}
labels["Hindu mythology"] = {
description = "{{{langname}}} terms related to [[Hindu]] [[mythology]].",
parents = {"mythology", "Hinduism"},
}
labels["Hinduism"] = {
description = "default with capital",
parents = {"religion", "India"},
}
labels["Hopi culture"] = {
description = "default with capital",
parents = {"United States"},
}
labels["horror"] = {
description = "{{{langname}}} terms related to the [[horror]] [[genre]].",
parents = {"literature"},
}
labels["horse given names"] = {
description = "{{{langname}}} given names used for [[horse]]s.",
parents = {"horses"},
}
labels["humanities"] = {
description = "default",
parents = {"culture"},
}
labels["idol fandom"] = {
description = "default",
parents = {"fandom"},
}
labels["Igbo religion"] = {
description = "{{{langname}}} terms related to [[w:Odinani|Odinani, or Igbo religion]].",
parents = {"religion"},
}
labels["Instagram"] = {
description = "{{{langname}}} terms related to the photo sharing and social networking service [[Instagram]].",
parents = {"photography", "social media", "World Wide Web"},
}
labels["Iranian mythology"] = {
description = "default",
parents = {"mythology", "Iran"},
}
labels["Irish mythology"] = {
description = "{{{langname}}} terms related to [[Irish]] [[mythology]].",
parents = {"Celtic mythology", "Ireland"},
}
labels["Islam"] = {
description = "{{{langname}}} terms related to [[Islam]]ic religion or culture, or to [[Muslim]]s.",
parents = {"religion", "Abrahamism"},
}
labels["Islamic prophets"] = {
description = "{{{langname}}} terms for [[Islam]]ic [[prophet]]s.",
parents = {"Islam"},
}
labels["Igala religion"] = {
description = "{{{langname}}} terms related to the {{w|Igala kingdom|Igala religion}}.",
parents = {"religion"},
}
labels["Jainism"] = {
description = "default with capital",
parents = {"religion"},
}
labels["James Bond"] = {
description = "{{{langname}}} terms related to the ''[[James Bond]]'' franchise.",
parents = {"British fiction", "film"},
}
labels["Japanese deities"] = {
description = "{{{langname}}} terms related to the [[Japanese]] [[deity|deities]].",
parents = {"gods", "Japanese mythology"},
}
labels["Japanese fiction"] = {
description = "{{{langname}}} terms related to works of [[fiction]], including [[anime]]s, [[manga]]s, [[novel]]s, [[series]] and [[video game]]s, whose origin is of [[Japan]].",
parents = {"fiction", "Japan"},
}
labels["Japanese mythology"] = {
description = "default",
parents = {"mythology", "Japan"},
}
labels["jazz"] = {
description = "default",
parents = {"music"},
}
labels["Jewish law"] = {
description = "default with capital",
parents = {"Judaism", "law"},
}
labels["job titles in Romance of the Three Kingdoms"] = {
description = "{{{langname}}} terms related to job titles in ''Romance of the Three Kingdoms''.",
parents = {"Romance of the Three Kingdoms", "titles"},
}
labels["journalism"] = {
description = "default",
parents = {"writing"},
}
labels["Judaism"] = {
description = "default with capital",
parents = {"religion", "Abrahamism"},
}
labels["Kachinas"] = {
description = "default",
parents = {"Hopi culture"},
}
labels["Komi mythology"] = {
description = "default with capital",
parents = {"mythology", "Komi Republic" },
}
labels["literary genres"] = {
description = "default",
parents = {"fiction", "literature", "genres"},
}
labels["literature"] = {
description = "default",
parents = {"culture", "entertainment", "writing"},
}
labels["Looney Tunes and Merrie Melodies"] = {
description = "{{{langname}}} terms related to ''[[w:Looney Tunes|Looney Tunes]]'' and/or ''[[w:Merrie Melodies|Merrie Melodies]]'', by [[w:Warner Bros. Animation|Warner Bros. Animation]].",
parents = {"American fiction"},
}
labels["Lost (TV series)"] = {
description = "{{{langname}}} terms related to the television series ''[[w:Lost (TV series)|Lost]]'' (2014-2010).",
parents = {"American fiction", "science fiction", "television"},
}
labels["Lovecraftian horror"] = {
description = "{{{langname}}} terms related to the [[literature|literary]] works of [[w:H. P. Lovecraft|H. P. Lovecraft]].",
parents = {"horror", "literature", "fiction"},
}
labels["lutherie"] = {
description = "default",
parents = {"music", "crafts"},
}
labels["magic words"] = {
description = "{{{langname}}} magic words; terms that serve the purpose of effectively or apparently triggering a [[magical]] or [[illusionist]] event.",
parents = {"fiction", "plot devices"},
}
labels["Mahabharata"] = {
description = "{{{langname}}} terms related to the [[Mahabharata]], a Hindu epic.",
parents = {"Hinduism"},
}
labels["manga genres"] = {
description = "default",
parents = {"literary genres"},
}
labels["Manichaeism"] = {
description = "default",
parents = {"religion"},
}
labels["marriage"] = {
description = "default",
parents = {"culture", "family"},
}
labels["Mass Effect (franchise)"] = {
description = "{{{langname}}} terms related to the ''[[w:Mass Effect|Mass Effect]]'' video game franchise.",
parents = {"Canadian fiction", "science fiction", "video games"},
}
labels["mass media"] = {
description = "default",
parents = {"culture", "media"},
}
labels["merpeople"] = {
description = "default",
parents = {"mythological creatures"},
}
labels["Mesopotamian deities"] = {
description = "default",
parents = {"gods", "Ancient Near East","Mesopotamian mythology"},
}
labels["Mesopotamian mythology"] = {
description = "{{{langname}}} terms related to the [[mythology]] of ancient [[Mesopotamia]].",
parents = {"mythology", "Ancient Near East"},
}
labels["Minecraft"] = {
description = "{{{langname}}} terms used in context of the ''[[w:Minecraft|Minecraft]]'' video game franchise.",
parents = {"video games", "Microsoft"},
}
labels["Mithraism"] = {
description = "default",
parents = {"religion", "Ancient Rome"},
}
labels["modern art"] = {
description = "default",
parents = {"art"},
}
labels["monasticism"] = {
description = "default",
parents = {"religion"},
}
labels["Mormonism"] = {
description = "default",
parents = {"Christianity"},
}
labels["moustaches"] = {
description = "default",
parents = {"face", "fashion", "hair"},
}
labels["music"] = {
description = "default",
parents = {"art", "sound"},
}
labels["musical genres"] = {
description = "{{{langname}}} terms related to [[musical]] [[genre]]s.",
parents = {"music", "genres"},
}
labels["musical voices and registers"] = {
description = "default",
parents = {"music", "singing"},
}
labels["My Little Pony"] = {
description = "{{{langname}}} terms related to the [[w:My Little Pony|My Little Pony]] franchise (which includes toys and animated series) and its fandom.",
parents = {"American fiction", "animation", "toys"},
}
labels["mysticism"] = {
description = "default",
parents = {"religion"},
}
labels["mythological creatures"] = {
description = "{{{langname}}} terms related to [[mythological]] [[creature]]s.",
parents = {"mythology", "fantasy"},
}
labels["mythological figures"] = {
description = "default",
parents = {"mythology"},
}
labels["mythological locations"] = {
description = "{{{langname}}} terms related to [[mythological]] [[location]]s.",
parents = {"mythology"},
}
labels["mythological plants"] = {
description = "{{{langname}}} terms related to [[mythological]] [[plant]]s.",
parents = {"mythology", "plants"},
}
labels["mythology"] = {
description = "default",
parents = {"culture"},
}
labels["narratology"] = {
description = "default",
parents = {"literature", "drama"},
}
labels["national anthems"] = {
description = "{{{langname}}} names of [[national anthem]]s.",
parents = {"artistic works", "music"},
}
labels["newspapers"] = {
description = "default",
parents = {"periodicals"},
}
labels["Niconico"] = {
description = "{{{langname}}} terms related to the video-sharing website [[w:Niconico|Niconico]].",
parents = {"social media", "World Wide Web"},
}
labels["Norse mythology"] = {
description = "{{{langname}}} terms related to the [[Norse]] [[mythology]].",
parents = {"mythology"},
}
labels["occult"] = {
description = "default with the lower",
parents = {"culture", "forteana"},
}
labels["omegaverse"] = {
description = "{{{langname}}} terms related to the [[omegaverse]] genre.",
parents = {"erotic literature", "fan fiction"},
}
labels["Once Upon a Time"] = {
description = "{{{langname}}} terms related to the television series ''[[w:Once Upon a Time (TV series)|Once Upon a Time]]'' (2011-2018).",
parents = {"American fiction", "Disney", "television"},
}
labels["opera"] = {
description = "default",
parents = {"music", "theater"},
}
labels["Orthodoxy"] = {
description = "default with capital",
parents = {"Christianity"},
}
labels["paganism"] = {
description = "default",
parents = {"religion", "occult"},
}
labels["painting"] = {
description = "default",
parents = {"art"},
}
labels["palmistry"] = {
description = "default",
parents = {"divination"},
}
labels["parties"] = {
description = "default",
parents = {"culture", "entertainment"},
}
labels["people in Romance of the Three Kingdoms"] = {
description = "{{{langname}}} terms related to people in ''Romance of the Three Kingdoms''.",
parents = {"Romance of the Three Kingdoms"},
}
labels["perfumes"] = {
description = "default",
parents = {"fashion"},
}
labels["periodicals"] = {
description = "{{{langname}}} terms related to [[periodical]]s.",
parents = {"mass media", "literature"},
}
labels["personifications"] = {
description = "{{{langname}}} names of [[personification]]s.",
parents = {"narratology"},
}
labels["places in Romance of the Three Kingdoms"] = {
description = "{{{langname}}} terms related to places in ''Romance of the Three Kingdoms''.",
parents = {"Romance of the Three Kingdoms", "China"},
}
labels["places of worship"] = {
description = "default",
parents = {"religion", "buildings"},
}
labels["plot devices"] = {
description = "{{{langname}}} terms for [[plot device]]s.",
parents = {"narratology", "fiction"},
}
labels["poetry"] = {
description = "default",
parents = {"literature", "art"},
}
labels["prayer"] = {
description = "default",
parents = {"religion"},
}
labels["Private Eye"] = {
description = "{{{langname}}} terms related to the ''[[w:Private Eye|Private Eye]]'' franchise.",
parents = {"British fiction"},
}
labels["Protestantism"] = {
description = "default with capital",
parents = {"Christianity"},
}
labels["Quakerism"] = {
description = "default with capital",
parents = {"Protestantism"},
}
labels["Qur'an"] = {
description = "default with the",
parents = {"books", "Islam"},
}
labels["Ramayana"] = {
description = "default with capital",
parents = {"books", "Hinduism"},
}
labels["Rastafari"] = {
description = "default with capital",
parents = {"religion", "Abrahamism"},
}
labels["Raëlism"] = {
description = "default with capital",
parents = {"religion", "Abrahamism"},
}
labels["reference works"] = {
description = "{{{langname}}} terms related to [[reference work]]s.",
parents = {"books"},
}
labels["religion"] = {
description = "default",
parents = {"culture"},
}
labels["Roman Catholicism"] = {
description = "default with capital",
parents = {"Catholicism"},
}
labels["Roman deities"] = {
description = "{{{langname}}} terms related to [[Roman]] deities.",
parents = {"gods", "Roman mythology"},
}
labels["Roman mythology"] = {
description = "{{{langname}}} terms related to [[Roman]] [[mythology]].",
parents = {"mythology", "Ancient Rome"},
}
labels["romance fiction"] = {
description = "{{{langname}}} terms related to [[romance]] [[fiction]].",
parents = {"Literary genres"},
}
labels["Romance of the Three Kingdoms"] = {
description = "{{{langname}}} terms related to ''Romance of the Three Kingdoms''.",
parents = {"fiction", "literature"},
}
labels["science fiction"] = {
description = "default",
parents = {"fiction"},
}
labels["Scientology"] = {
description = "default with capital",
parents = {"religion"},
}
labels["sculpture"] = {
description = "default",
parents = {"art"},
}
labels["Shahnameh"] = {
description = "''Shahnameh''",
parents = {"fiction", "poetry", "literature"},
}
labels["Shahnameh characters"] = {
description = "{{{langname}}} names of characters in the [[Shahnameh]].",
parents = {"Shahnameh"},
}
labels["Shaivism"] = {
description = "default with capital",
parents = {"Hinduism"}
}
labels["Shamanism"] = {
description = "default",
parents = {"paganism"}
}
labels["Sherlock Holmes"] = {
description = "{{{langname}}} terms related to the [[Sherlock Holmes]] stories by [[w:Arthur Conan Doyle|Arthur Conan Doyle]] and adaptations of them.",
parents = {"British fiction", "literature"},
}
labels["Sherlock (TV series)"] = {
description = "{{{langname}}} terms related to the television series ''[[w:Sherlock (TV series)|Sherlock]]'' (2010-2017).",
parents = {"Sherlock Holmes", "television"},
}
labels["Shi'ism"] = {
description = "{{{langname}}} terms related to [[Shi'ism]].",
parents = {"Islam"},
}
labels["Shinto"] = {
description = "{{{langname}}} terms related to [[Shintō]].",
parents = {"religion", "Japan"},
}
labels["ships (fandom)"] = {
description = "{{{langname}}} names used in [[fandom]] for specific [[ship#English-slash|ships]] i.e., a fictional relationship between two fictional characters or real people).",
parents = {"fandom"},
}
labels["shippers (fandom)"] = {
description = "{{{langname}}} words used in [[fandom]] to refer to [[shipper]]s (i.e., a person who supports a romantic or sexual relationship between characters or real people).",
parents = {"ships (fandom)"},
}
labels["Sikhism"] = {
description = "default with capital",
parents = {"religion"},
}
labels["singing"] = {
description = "default",
parents = {"music", "talking"},
}
labels["Slavic deities"] = {
description = "{{{langname}}} terms related to the [[Slavic]] [[deity|deities]].",
parents = {"gods", "Slavic mythology"},
}
labels["Slavic mythology"] = {
description = "{{{langname}}} terms related to the [[mythology]] of the [[Slav]]s.",
parents = {"mythology"},
}
labels["Smallville (TV series)"] = {
description = "{{{langname}}} terms related to the television series ''[[w:Smallville|Smallville]]'' (2001-2011).",
parents = {"American fiction", "Superman", "television"},
}
labels["social media"] = {
description = "default",
parents = {"mass media", "Internet"},
}
labels["South Korean idol fandom"] = {
description = "{{{langname}}} terms related to South Korean idol fandom",
parents = {"Idol fandom", "South Korea"},
}
labels["South Park"] = {
description = "{{{langname}}} terms derived from and/or related to the animated television series ''[[w:South Park|South Park]]''.",
parents = {"American fiction", "animation"},
}
labels["Star Trek"] = {
description = "{{{langname}}} terms related to the ''[[w:Star Trek|Star Trek]]'' franchise.",
parents = {"American fiction", "film", "science fiction", "television"},
}
labels["Star Wars"] = {
description = "{{{langname}}} terms related to the ''[[w:Star Wars|Star Wars]]'' franchise.",
parents = {"American fiction", "film", "science fiction", "Disney"},
}
labels["stock characters"] = {
description = "{{{langname}}} terms related to [[stock character]]s.",
parents = {"fictional characters"},
}
labels["speedrunning"] = {
description = "{{{langname}}} terms related to [[speedrunning]].",
parents = {"video games"},
}
labels["spider fighting"] = {
description = "{{{langname}}} terms related to [[w:spider fighting|spider fighting]].",
parents = {"spiders", "human activity"},
}
labels["spiritualism"] = {
description = "default",
parents = {"occult", "religion", "forteana"},
}
labels["Sufism"] = {
description = "default",
parents = {"Islam", "mysticism"},
}
labels["Sunnism"] = {
description = "default",
parents = {"Islam"},
}
labels["superheroes"] = {
description = "{{{langname}}} terms related to [[superhero]]es.",
parents = {"fictional characters"},
}
labels["Superman"] = {
description = "{{{langname}}} terms related to the fictional [[superhero]] [[Superman]].",
parents = {"DC Comics", "Fictional characters"},
}
labels["Supernatural (TV series)"] = {
description = "{{{langname}}} terms related to the television series ''[[w:Supernatural (American TV series)|Supernatural]]'' (2005-).",
parents = {"American fiction", "television"},
}
labels["Taoism"] = {
description = "default with capital",
parents = {"religion", "China"},
}
labels["television"] = {
description = "default",
parents = {"mass media", "broadcasting"},
}
labels["Tetris"] = {
description = "{{{langname}}} terms related to the video game ''[[Tetris]]''.",
parents = {"video games"},
}
labels["Tengrism"] = {
description = "default with capital",
parents = {"religion"},
}
labels["The Handmaid's Tale"] = {
description = "{{{langname}}} terms related to the 1985 novel ''[[w:The Handmaid's Tale|The Handmaid's Tale]]'' by [[w:Margaret Atwood|Margaret Atwood]] and its [[w:The Handmaid's Tale (TV series)|television adaptation]] (2017-).",
parents = {"Canadian fiction", "science fiction", "literature"},
}
labels["The Matrix"] = {
description = "{{{langname}}} terms related to ''[[w:The Matrix|The Matrix]]''.",
parents = {"American fiction", "science fiction"},
}
labels["The Simpsons"] = {
description = "{{{langname}}} terms derived from and/or related to the animated television series ''[[w:The Simpsons|The Simpsons]]''.",
parents = {"American fiction", "animation", "Disney"},
}
labels["The Walking Dead"] = {
description = "{{{langname}}} terms related to the television series ''[[w:The Walking Dead (TV series)|The Walking Dead]]'' (2010-) and the comic series from which it was adapted.",
parents = {"American fiction", "television"},
}
labels["The Wizard of Oz"] = {
description = "{{{langname}}} terms and phrases which have entered the vernacular as a result of the cultural impact of ''[[w:The Wonderful Wizard of Oz|The Wonderful Wizard of Oz]]'' and ''[[w:The Wizard of Oz (1939 film)|The Wizard of Oz]]''.",
parents = {"American fiction", "literature"},
}
labels["The X-Files"] = {
description = "{{{langname}}} terms related to the ''[[w:The X-Files|The X-Files]]'' franchise.",
parents = {"American fiction", "science fiction", "television"},
}
labels["theater"] = {
description = "default",
parents = {"art", "entertainment"},
}
labels["TikTok"] = {
description = "{{{langname}}} terms related to the video-sharing and social-networking service [[w:TikTok|TikTok]].",
parents = {"social media", "World Wide Web"},
}
labels["Tupi mythology"] = {
description = "default with capital",
parents = {"mythology"},
}
labels["Twilight (novel series)"] = {
description = "{{{langname}}} terms related to the ''[[w:Twilight (series)|Twilight]]'' franchise.",
parents = {"American fiction", "fantasy", "literature"},
}
labels["Twitter"] = {
description = "{{{langname}}} terms related to the social networking and microblogging service [[w:Twitter|Twitter]].",
parents = {"social media", "World Wide Web"},
}
labels["Tumblr"] = {
description = "{{{langname}}} terms related to the microblogging and social networking service [[w:Tumblr|Tumblr]].",
parents = {"social media", "World Wide Web"},
}
labels["Vaishnavism"] = {
description = "default with capital",
parents = {"Hinduism"}
}
labels["Valentinianism"] = {
description = "default with capital",
parents = {"Gnosticism"},
}
labels["Vedic religion"] = {
description = "{{{langname}}} terms related to the [[w:Historical Vedic religion|historical Vedic religion]].",
parents = {"Hinduism"},
}
labels["video game genres"] = {
description = "default",
parents = {"video games", "genres"},
}
labels["video games"] = {
description = "{{{langname}}} terms related to [[video game]]s.",
parents = {"mass media", "games", "software"},
}
labels["voodoo"] = {
description = "{{{langname}}} terms related to Louisiana Voodoo, Haitian Vodoun, or other forms of [[voodoo]] spirituality and belief.",
parents = {"religion"}
}
labels["web design"] = {
description = "default",
parents = {"design", "World Wide Web"},
}
labels["Wicca"] = {
description = "default with capital",
parents = {"religion", "paganism"},
}
labels["Xena: Warrior Princess"] = {
description = "{{{langname}}} terms related to the television series ''[[w:Xena: Warrior Princess|Xena: Warrior Princess]]'' (1995–2001).",
parents = {"American fiction", "television"},
}
labels["Yazidism"] = {
description = "default with capital",
parents = {"religion"},
}
labels["Yoruba religion"] = {
description = "{{{langname}}} terms related to [[w:Yoruba religion|Yoruba religion]].",
parents = {"religion"},
}
labels["YouTube"] = {
description = "{{{langname}}} terms related to the video-sharing website [[w:YouTube|YouTube]].",
parents = {"social media", "World Wide Web", "Google"},
}
labels["Zoroastrianism"] = {
description = "default with capital",
parents = {"religion", "Ancient Near East"},
}
labels["DC Comics"] = {
description = "{{{langname}}} terms related to [[w:DC Comics|DC Comics]].",
parents = {"American fiction", "comics"},
}
labels["Marvel Comics"] = {
description = "{{{langname}}} terms related to [[Marvel Comics|Marvel Comics]].",
parents = {"American fiction", "comics"},
}
return labels
qz8jhw22gmysano4xq5mutmy9zmly0o
Module:category tree/topic cat/data/Earth
828
5241
13249
2022-07-29T18:45:25Z
Asinis632
1829
Created page with "local labels = {} -- FIXME: Almost everything formerly here has been moved into [[Module:category tree/topic cat/data/Places]]. -- The remainder should be consolidated. labels["Earth"] = { description = "{{{langname}}} terms related to the planet [[Earth]] and the features found on it.", parents = {"nature"}, } labels["Africa"] = { description = "{{{langname}}} terms related to [[Africa]].", parents = {"Earth"}, } labels["America"] = { description = "{{{langname..."
Scribunto
text/plain
local labels = {}
-- FIXME: Almost everything formerly here has been moved into [[Module:category tree/topic cat/data/Places]].
-- The remainder should be consolidated.
labels["Earth"] = {
description = "{{{langname}}} terms related to the planet [[Earth]] and the features found on it.",
parents = {"nature"},
}
labels["Africa"] = {
description = "{{{langname}}} terms related to [[Africa]].",
parents = {"Earth"},
}
labels["America"] = {
description = "{{{langname}}} terms related to [[America]], in the sense of [[North America]] and [[South America]] combined.",
parents = {"Earth"},
}
labels["Antarctica"] = {
description = "{{{langname}}} terms related to the territory of [[Antarctica]].",
parents = {"Earth"},
}
labels["Asia"] = {
description = "{{{langname}}} terms related to [[Asia]].",
parents = {"Earth", "Eurasia"},
}
labels["Atlantic Ocean"] = {
description = "{{{langname}}} terms related to the [[Atlantic Ocean]].",
parents = {"Earth"},
}
labels["Barisal Division"] = {
description = "{{{langname}}} names of places in the [[Barisal Division]] of [[Bangladesh]].",
parents = {"Bangladesh"},
}
labels["British Isles"] = {
description = "{{{langname}}} terms related to the people, culture, or territory of [[Great Britain]], [[Ireland]], and other nearby islands.",
parents = {"Europe", "Islands"},
}
labels["Central America"] = {
description = "default with capital",
parents = {"Earth", "America"},
}
labels["Chittagong Division"] = {
description = "{{{langname}}} names of places in the [[Chittagong Division]] of [[Bangladesh]].",
parents = {"Bangladesh"},
}
labels["Dhaka Division"] = {
description = "{{{langname}}} names of places in the [[Dhaka Division]] of [[Bangladesh]].",
parents = {"Bangladesh"},
}
labels["Punjab, India"] = {
description = "{{{langname}}} names of places in [[w:Punjab, India|Punjab, India]]",
parents = {"India", "Punjab"},
}
labels["Punjab, Pakistan"] = {
description = "{{{langname}}} names of places in [[w:Punjab, Pakistan|Punjab, Pakistan]]",
parents = {"Pakistan", "Punjab"},
}
labels["Eurasia"] = {
description = "{{{langname}}} terms related to [[Eurasia]], that is, [[Europe]] and [[Asia]] together.",
parents = {"Earth"},
}
labels["Europe"] = {
description = "{{{langname}}} terms related to [[Europe]].",
parents = {"Earth", "Eurasia"},
}
labels["European Union"] = {
description = "{{{langname}}} terms related to the [[European Union]].",
parents = {"Europe"},
}
labels["Gascony"] = {
description = "{{{langname}}} terms related to [[Gascony]].",
parents = {"France", "Occitania"},
}
labels["Indian subcontinent"] = {
description = "{{{langname}}} terms related to the [[Indian subcontinent]].",
parents = {"South Asia"},
}
labels["Khulna Division"] = {
description = "{{{langname}}} names of places in the [[Khulna Division]] of [[Bangladesh]].",
parents = {"Bangladesh"},
}
labels["Korea"] = {
description = "{{{langname}}} terms related to the people, culture, or territory of [[Korea]].",
parents = {"Asia"},
}
labels["Lapland"] = {
description = "{{{langname}}} terms related to [[Lapland]], a region in northernmost Europe.",
parents = {"Europe", "Finland", "Norway", "Russia", "Sweden"},
}
labels["Melanesia"] = {
description = "{{{langname}}} terms related to the people, culture, or territory of [[Melanesia]].",
parents = {"Oceania"},
}
labels["Micronesia"] = {
description = "{{{langname}}} terms related to the people, culture, or territory of [[Micronesia]].",
parents = {"Oceania"},
}
labels["Middle East"] = {
description = "{{{langname}}} terms related to the [[Middle East]].",
parents = {"Regions in Asia"},
}
labels["Mymensingh Division"] = {
description = "{{{langname}}} names of places in the [[Mymensingh Division]] of [[Bangladesh]].",
parents = {"Bangladesh"},
}
labels["Netherlands Antilles"] = {
description = "{{{langname}}} terms related to the people, culture, or territory of the [[Netherlands Antilles]].",
parents = {"Netherlands", "North America"},
}
labels["North America"] = {
description = "{{{langname}}} terms related to [[North America]].",
parents = {"America"},
}
labels["Oceania"] = {
description = "{{{langname}}} terms related to [[Oceania]].",
parents = {"Earth"},
}
labels["Occitania"] = {
description = "{{{langname}}} terms related to [[Occitania]].",
parents = {"Europe", "France"},
}
labels["Olomouc"] = {
description = "{{{langname}}} terms related to the people, culture, or territory of [[Olomouc]], a city of the [[Czech Republic]].",
parents = {"Czech Republic"},
}
labels["Polynesia"] = {
description = "{{{langname}}} terms related to the people, culture, or territory of [[Polynesia]].",
parents = {"Oceania"},
}
labels["Rajshahi Division"] = {
description = "{{{langname}}} names of places in the [[Rajshahi Division]] of [[Bangladesh]].",
parents = {"Bangladesh"},
}
labels["Rangpur Division"] = {
description = "{{{langname}}} names of places in the [[Rangpur Division]] of [[Bangladesh]].",
parents = {"Bangladesh"},
}
labels["Rivers State"] = {
description = "{{{langname}}} terms related to [[Rivers State]], a state of [[Nigeria]].",
parents = {"Nigeria"},
}
labels["Seoul"] = {
description = "{{{langname}}} terms related to the people, culture, or territory of [[Seoul]].",
parents = {"South Korea"},
}
labels["South America"] = {
description = "{{{langname}}} terms related to [[South America]].",
parents = {"America"},
}
labels["South Asia"] = {
description = "{{{langname}}} terms related to [[South Asia]].",
parents = {"Eurasia", "Asia"},
}
labels["States of Nigeria"] = {
description = "{{{langname}}} terms related to states of [[Nigeria]].",
parents = {"political subdivisions", "Nigeria"},
}
labels["Sylhet Division"] = {
description = "{{{langname}}} names of places in the [[Sylhet Division]] of [[Bangladesh]].",
parents = {"Bangladesh"},
}
labels["Puerto Rico, USA"] = {
description = "{{{langname}}} terms that are related to the people, culture, or territory of [[Puerto Rico]], a territory of the [[United States of America]].",
parents = {"United States"},
}
labels["Venice"] = {
description = "default with capital",
parents = {"Italy"},
}
labels["Yerevan"] = {
description = "default",
parents = {"Armenia"},
}
return labels
q4g2clca5v6671c5nh603vlb4z0vm9z
Module:category tree/topic cat/data/Food and drink
828
5242
13250
2022-07-29T18:46:21Z
Asinis632
1829
Created page with "local labels = {} labels["food and drink"] = { description = "{{{langname}}} terms about [[food]] and [[drink]]. Entries about specific foods or beverages should go in an appropriate subcategory.", parents = {"all topics"}, } labels["alcoholic beverages"] = { description = "{{{langname}}} terms for various [[alcoholic]] [[beverage]]s.", parents = {"beverages", "recreational drugs", "drinking", "list of sets"}, } labels["animal foods"] = { description = "{{{langna..."
Scribunto
text/plain
local labels = {}
labels["food and drink"] = {
description = "{{{langname}}} terms about [[food]] and [[drink]]. Entries about specific foods or beverages should go in an appropriate subcategory.",
parents = {"all topics"},
}
labels["alcoholic beverages"] = {
description = "{{{langname}}} terms for various [[alcoholic]] [[beverage]]s.",
parents = {"beverages", "recreational drugs", "drinking", "list of sets"},
}
labels["animal foods"] = {
description = "{{{langname}}} terms for various [[food]]s for [[animal]]s.",
parents = {"food and drink", "list of sets"},
}
labels["apple cultivars"] = {
description = "{{{langname}}} terms for [[apple]] [[cultivar]]s.",
parents = {"fruits", "pome fruits"},
}
labels["baking"] = {
description = "{{{langname}}} terms relating to [[baking#Noun|baking]].",
parents = {"cooking"},
}
labels["banana cultivars"] = {
description = "{{{langname}}} terms for [[banana]] [[cultivar]]s.",
parents = {"fruits","Zingiberales order plants"},
}
labels["beer"] = {
description = "default",
parents = {"alcoholic beverages"},
}
labels["berries"] = {
description = "{{{langname}}} terms for various [[berry|berries]].",
parents = {"fruits", "list of sets"},
}
labels["beverages"] = {
description = "{{{langname}}} terms for various [[beverage]]s.",
parents = {"food and drink", "liquids", "list of sets"},
}
labels["breads"] = {
description = "{{{langname}}} terms for various [[bread]]s.",
parents = {"foods", "list of sets"},
}
labels["breakfast cereals"] = {
description = "default-set",
parents = {"foods", "list of sets"},
}
labels["brewing"] = {
description = "default",
parents = {"food and drink"},
}
labels["cakes and pastries"] = {
description = "{{{langname}}} terms for various [[cake]]s and [[pastry|pastries]].",
parents = {"foods", "desserts", "list of sets"},
}
labels["cheeses"] = {
description = "{{{langname}}} terms for various [[cheese]]s.",
parents = {"foods", "dairy products", "list of sets"},
}
labels["cherry cultivars"] = {
description = "{{{langname}}} terms for [[cherry]] [[cultivars]].",
parents = {"Prunus genus plants","fruits"},
}
labels["cocktails"] = {
description = "default-set",
parents = {"alcoholic beverages", "list of sets"},
}
labels["coffee"] = {
description = "default",
parents = {"beverages"},
}
labels["condiments"] = {
description = "{{{langname}}} terms for various [[condiment]]s.",
parents = {"foods", "list of sets"},
}
labels["cooking"] = {
description = "default",
parents = {"food and drink"},
}
labels["cuts of meat"] = {
description = "{{{langname}}} terms for various [[cut]]s of [[meat]].",
parents = {"meats"},
}
labels["dairy products"] = {
description = "{{{langname}}} terms for various [[dairy product]]s.",
parents = {"food and drink", "list of sets"},
}
labels["desserts"] = {
description = "{{{langname}}} terms for various [[dessert]]s.",
parents = {"foods", "list of sets"},
}
labels["dim sum"] = {
description = "default",
parents = {"food and drink", "China"},
}
labels["diets"] = {
description = "{{{langname}}} terms related to different diets, including ones intended for weight loss and ones based on religious, cultural, or philosophical traditions and principles.",
parents = {"food and drink"},
}
labels["distilled beverages"] = {
description = "{{{langname}}} terms for various [[distilled]] [[beverage]]s.",
parents = {"alcoholic beverages", "list of sets"},
}
labels["eggs"] = {
description = "{{{langname}}} terms for various [[egg]]s.",
parents = {"foods", "list of sets"},
}
labels["fats and oils"] = {
description = "{{{langname}}} terms for various [[fat]]s and [[oil]]s.",
parents = {"foods", "list of sets"},
}
labels["foods"] = {
description = "{{{langname}}} terms for various [[food]]s.",
parents = {"food and drink", "list of sets"},
}
labels["fruits"] = {
description = "{{{langname}}} terms for various [[fruit]]s.",
parents = {"foods", "plants","list of sets"},
}
labels["grains"] = {
description = "{{{langname}}} terms for various [[grain]]s.",
parents = {"foods", "grasses", "list of sets"},
}
labels["honey"] = {
description = "{{{langname}}} terms for various [[honey]]s or [[preparation]]s consisting mainly of honey, or [[honey]] [[product]]s, anything that does not go without honey.",
parents = {"beekeeping", "condiments", "list of sets"},
}
labels["ice cream"] = {
description = "{{{langname}}} terms related to [[ice cream]].",
parents = {"foods"},
}
labels["liqueurs"] = {
description = "default-set",
parents = {"alcoholic beverages", "list of sets"},
}
labels["maize (food)"] = {
description = "{{{langname}}} terms related to [[maize]] (called [[corn]] in North America) as a [[food]]. ''For terms related to maize as a crop, see [[:Category:Maize (crop)]] and for maize as a plant, see [[:Category:Maize (plant)]].''",
parents = {"foods","grains"},
}
labels["mate"] = {
description = "default",
parents = {"beverages"},
}
labels["meals"] = {
description = "{{{langname}}} terms for various [[meal]]s.",
parents = {"food and drink", "list of sets"},
}
labels["meats"] = {
description = "{{{langname}}} terms for various [[meat]]s.",
parents = {"foods", "list of sets"},
}
labels["milk"] = {
description = "default",
parents = {"beverages", "dairy products", "bodily fluids"},
}
labels["nuts"] = {
description = "{{{langname}}} terms for various [[nut]]s.",
parents = {"foods","plants", "list of sets"},
}
labels["pasta"] = {
description = "default",
parents = {"foods"},
}
labels["pear cultivars"] = {
description = "{{{langname}}} terms for [[pear]] [[cultivar]]s.",
parents = {"fruits", "pome fruits"},
}
labels["pies"] = {
description = "default-set",
parents = {"foods", "desserts", "list of sets"},
}
labels["pizza"] = {
description = "default",
parents = {"foods"},
}
labels["potatoes"] = {
description = "{{{langname}}} terms for various [[potato]]es.",
parents = {"nightshades", "solanums","root vegetables", "list of sets"},
}
labels["root vegetables"] = {
description = "{{{langname}}} term for both true roots, such as [[carrot]]s, [[turnip]]es, and [[sweet potato]]es, and non-roots, such as [[potato]]es, [[ginseng]], and [[arrowhead]]s.",
parents = {"vegetables", "list of sets"},
}
labels["salads"] = {
description = "default-set",
parents = {"foods", "list of sets"},
}
labels["salad dressings"] = {
description = "default-set",
parents = {"sauces", "list of sets"},
}
labels["sandwiches"] = {
description = "default-set",
parents = {"foods", "list of sets"},
}
labels["sauces"] = {
description = "{{{langname}}} terms for various [[sauce]]s.",
parents = {"foods", "list of sets"},
}
labels["sausages"] = {
description = "{{{langname}}} terms for various [[sausage]]s.",
parents = {"meats", "list of sets"},
}
labels["seafood"] = {
description = "{{{langname}}} terms for various kinds of [[seafood]].",
parents = {"foods", "list of sets"},
}
labels["seasonings"] = {
description = "{{{langname}}} terms for various [[seasoning]]s.",
parents = {"foods", "list of sets"},
}
labels["seeds"] = {
description = "{{{langname}}} terms for various [[seed]]s.",
parents = {"foods","plants", "agriculture", "list of sets"},
}
labels["snacks"] = {
description = "{{{langname}}} terms for various [[snack]]s.",
parents = {"foods", "list of sets"},
}
labels["soups"] = {
description = "{{{langname}}} terms for various [[soup]]s.",
parents = {"foods", "list of sets"},
}
labels["spices"] = {
description = "{{{langname}}} terms for various [[spice]]s.",
parents = {"spices and herbs", "list of sets"},
}
labels["spices and herbs"] = {
description = "{{{langname}}} terms for various [[spice]]s and [[herb]]s.",
parents = {"foods", "list of sets"},
}
labels["sushi"] = {
description = "default",
parents = {"foods", "Japan"},
}
labels["sweets"] = {
description = "{{{langname}}} terms for various [[sweet]]s.",
parents = {"foods", "list of sets"},
}
labels["tea"] = {
description = "default",
parents = {"beverages"},
}
labels["vegetables"] = {
description = "{{{langname}}} terms for various [[vegetable]]s: the edible parts of plants that are not considered in a culinary sense to be [[fruit]]s, [[grain]]s, or [[spice]]s.",
parents = {"foods","plants", "list of sets"},
}
labels["wine"] = {
description = "default",
parents = {"alcoholic beverages"},
}
labels["wines"] = {
description = "{{{langname}}} terms for various [[wine]]s.",
parents = {"wine", "list of sets"},
}
labels["wine bottles"] = {
description = "{{{langname}}} terms for various types of bottles of [[wine]].",
parents = {"wine", "list of sets"}
}
return labels
jymblu5o98m64pqohz7ghjzdakhozuq
Module:category tree/topic cat/data/History
828
5243
13251
2022-07-29T18:47:15Z
Asinis632
1829
Created page with "local labels = {} labels["history"] = { description = "default", parents = {"all topics"}, } labels["Akkad"] = { description = "default with capital", parents = {"Ancient Near East"}, } labels["American Civil War"] = { description = "{{{langname}}} terms related to the [[American Civil War]].", parents = {"historical events", "history of the United States", "war", "slavery"}, } labels["Ancient Africa"] = { description = "default with capital", parents = {"anc..."
Scribunto
text/plain
local labels = {}
labels["history"] = {
description = "default",
parents = {"all topics"},
}
labels["Akkad"] = {
description = "default with capital",
parents = {"Ancient Near East"},
}
labels["American Civil War"] = {
description = "{{{langname}}} terms related to the [[American Civil War]].",
parents = {"historical events", "history of the United States", "war", "slavery"},
}
labels["Ancient Africa"] = {
description = "default with capital",
parents = {"ancient history", "history of Africa"},
}
labels["Ancient Asia"] = {
description = "default with capital",
parents = {"ancient history", "history of Asia"},
}
labels["Ancient Egypt"] = {
description = "{{{langname}}} terms related to [[ancient]] [[Egypt]].",
parents = {"Ancient Africa", "Ancient Near East", "history of Egypt"},
}
labels["ancient history"] = {
description = "{{{langname}}} terms related to [[ancient]] [[history]].",
parents = {"history"},
}
labels["Ancient Europe"] = {
description = "default with capital",
parents = {"ancient history", "history of Europe"},
}
labels["Ancient Greece"] = {
description = "default with capital",
parents = {"Ancient Near East", "Ancient Europe", "history of Greece"},
}
labels["Ancient Near East"] = {
description = "default with the",
parents = {"ancient history", "Ancient Asia"},
}
labels["Ancient Rome"] = {
description = "{{{langname}}} terms related to [[Ancient Rome]].",
parents = {"Ancient Africa", "Ancient Europe", "ancient history", "Ancient Near East", "history of Italy"},
}
labels["Assyria"] = {
description = "default with capital",
parents = {"Ancient Near East"},
}
labels["Babylonia"] = {
description = "default with capital",
parents = {"Ancient Near East"},
}
labels["Byzantine Empire"] = {
description = "{{{langname}}} terms related to the [[Byzantine Empire]].",
parents = {"Ancient Europe", "Ancient Near East", "history of Asia", "history of Europe", "history of Greece", "history of Turkey"},
}
labels["Chinese Civil War"] = {
description = "{{{langname}}} terms related to the [[w:Chinese Civil War|Chinese Civil War]].",
parents = {"historical events", "history of China", "war"},
}
labels["Chinese dynasties"] = {
description = "default",
parents = {"Historical periods", "History of China", "Dynasties"},
}
labels["Chinese era names"] = {
description = "default",
parents = {"Historical periods", "History of China"},
}
labels["Cultural Revolution"] = {
description = "{{{langname}}} terms related to the [[Cultural Revolution]].",
parents = {"historical events", "history of China"},
}
labels["genealogy"] = {
description = "default",
parents = {"history", "genetics"},
}
labels["heraldic charges"] = {
description = "{{{langname}}} terms for [[heraldic]] [[charge]]s.",
parents = {"heraldry"},
}
labels["heraldic tinctures"] = {
description = "{{{langname}}} terms for [[heraldic]] [[tincture]]s.",
parents = {"heraldry", "colors", "list of sets"},
}
labels["heraldry"] = {
description = "default",
parents = {"history"},
}
labels["historical events"] = {
description = "{{{langname}}} terms related to [[historical]] [[event]]s.",
parents = {"history"},
}
labels["historical periods"] = {
description = "{{{langname}}} terms related to [[historical]] [[period]]s.",
parents = {{name = "history", sort = "periods"}, "timekeeping"},
}
labels["historiography"] = {
description = "default",
parents = {"history"},
}
labels["history of Africa"] = {
description = "default with the lower",
parents = {"history", "Africa"},
}
labels["history of Algeria"] = {
description = "default with the lower",
parents = {"history of Africa", "Algeria"},
}
labels["history of Asia"] = {
description = "default with the lower",
parents = {"history", "Asia"},
}
labels["history of China"] = {
description = "default with the lower",
parents = {"history of Asia", "China"},
}
labels["history of Egypt"] = {
description = "default with the lower",
parents = {"history of Asia", "history of Africa", "Egypt"},
}
labels["history of Europe"] = {
description = "default with the lower",
parents = {"history", "Europe"},
}
labels["history of France"] = {
description = "default with the lower",
parents = {"history of Europe", "France"},
}
labels["history of Germany"] = {
description = "default with the lower",
parents = {"history of Europe", "Germany"},
}
labels["history of Greece"] = {
description = "default with the lower",
parents = {"history of Asia", "history of Europe", "Greece"},
}
labels["history of Hong Kong"] = {
description = "default with the lower",
parents = {"history of China", "Hong Kong"},
}
labels["history of India"] = {
description = "default with the lower",
parents = {"history of Asia", "India"},
}
labels["history of Italy"] = {
description = "default with the lower",
parents = {"history of Europe", "Italy"},
}
labels["history of Japan"] = {
description = "default with the lower",
parents = {"history of Asia", "Japan"},
}
labels["history of Spain"] = {
description = "default with the lower",
parents = {"history of Europe", "Spain"},
}
labels["history of the Netherlands"] = {
description = "default with the lower no singularize",
parents = {"history of Europe", "Netherlands"},
}
labels["history of the United Kingdom"] = {
description = "default with the lower no singularize",
parents = {"history of Europe", "United Kingdom"},
}
labels["history of the United States"] = {
description = "default with the lower no singularize",
parents = {"history", "United States"},
}
labels["history of Tunisia"] = {
description = "default with the lower",
parents = {"history of Africa", "Tunisia"},
}
labels["history of Turkey"] = {
description = "default with the lower",
parents = {"history of Asia", "history of Europe", "Turkey"},
}
labels["Ottoman Empire"] = {
description = "{{{langname}}} terms related to the [[Ottoman Empire]].",
parents = {"Near East", "history of Africa", "history of Asia", "history of Europe", "history of Turkey"},
}
labels["Phoenicia"] = {
description = "default with capital",
parents = {"Ancient Near East"},
}
labels["Second Sino-Japanese War"] = {
description = "{{{langname}}} terms related to the [[w:Second Sino-Japanese War|Second Sino-Japanese War]].",
parents = {"history of China", "History of Japan", "World War II"},
}
labels["Sumer"] = {
description = "default with capital",
parents = {"Ancient Near East"},
}
labels["World War II"] = {
description = "{{{langname}}} terms related to the [[World War II]].",
parents = {"historical events", "history of Europe", "war"},
}
return labels
oi32v4wy5fly8avn4483cj8abcvhb9p
Module:category tree/topic cat/data/Human
828
5244
13252
2022-07-29T18:48:19Z
Asinis632
1829
Created page with "local labels = {} labels["human"] = { description = "{{{langname}}} terms related to [[human being]]s.", parents = {"all topics"}, } labels["alcoholism"] = { description = "default", parents = {"drinking"}, } labels["amateur radio"] = { description = "default", parents = {"hobbies", "radio"}, } labels["ASMR"] = { description = "{{{langname}}} terms related to [[w:autonomous sensory meridian response|autonomous sensory meridian response]].", parents = {"psycho..."
Scribunto
text/plain
local labels = {}
labels["human"] = {
description = "{{{langname}}} terms related to [[human being]]s.",
parents = {"all topics"},
}
labels["alcoholism"] = {
description = "default",
parents = {"drinking"},
}
labels["amateur radio"] = {
description = "default",
parents = {"hobbies", "radio"},
}
labels["ASMR"] = {
description = "{{{langname}}} terms related to [[w:autonomous sensory meridian response|autonomous sensory meridian response]].",
parents = {"psychology", "sound", "talking"},
}
labels["autism"] = {
description = "default",
parents = {"disability", "psychology"},
}
labels["backgammon"] = {
description = "default",
parents = {"board games"},
}
labels["beekeeping"] = {
description = "default",
parents = {"agriculture"},
}
labels["betting"] = {
description = "default",
parents = {"gambling"},
}
labels["billiards"] = {
description = "default no singularize",
parents = {"games"},
}
labels["bingo"] = {
description = "default",
parents = {"games"},
}
labels["birdwatching"] = {
description = "{{{langname}}} jargon used by [[birdwatcher]]s to describe [[bird]]s, normally for the purpose of abbreviation.",
parents = {"hobbies"},
}
labels["birthstones"] = {
description = "default",
parents = {"gems"},
}
labels["board games"] = {
description = "{{{langname}}} terms related to [[board game]]s.",
parents = {"games"},
}
labels["bowling"] = {
description = "default",
parents = {"games"},
}
labels["bowls (game)"] = {
description = "default",
parents = {"games"},
}
labels["breastfeeding"] = {
description = "default",
parents = {"babies", "body", "female", "human behaviour"},
}
labels["bricks"] = {
description = "default",
parents = {"building materials"},
}
labels["bridge"] = {
description = "{{{langname}}} terms related to the [[game]] of [[bridge]].",
parents = {"card games"},
}
labels["building materials"] = {
description = "{{{langname}}} terms related to [[building material]]s.",
parents = {"materials", "construction"},
}
labels["card games"] = {
description = "{{{langname}}} terms related to [[card game]]s.",
parents = {"games"},
}
labels["ceramics"] = {
description = "default no singularize",
parents = {"materials"},
}
labels["chess"] = {
description = "default",
parents = {"board games"},
}
labels["chess openings"] = {
description = "default",
parents = {"chess"},
}
labels["checkmate patterns"] = {
description = "default",
parents = {"chess"},
}
labels["clerical vestments"] = {
description = "default",
parents = {"clothing", "Christianity"},
}
labels["clothing"] = {
description = "default",
parents = {"human"},
}
labels["collectible card games"] = {
description = "{{{langname}}} terms related to collectible card games (also known as trading card games), such as Magic: The Gathering.",
parents = {"card games"},
}
labels["cribbage"] = {
description = "default",
parents = {"card games"},
}
labels["crossdressing"] = {
description = "{{{langname}}} terms related to [[crossdressing]].",
parents = {"clothing", "gender"},
}
labels["darts"] = {
description = "default no singularize",
parents = {"games"},
}
labels["deltiology"] = {
description = "default",
parents = {"hobbies"},
}
labels["dominoes"] = {
description = "{{{langname}}} terms related to the game of [[domino]]es.",
parents = {"games"},
}
labels["dou dizhu"] = {
description = "{{{langname}}} terms related to ''[[w:Dou dizhu|dou dizhu]]''.",
parents = {"card games", "gambling"},
}
labels["dice games"] = {
description = "default",
parents = {"games"},
}
labels["drinking"] = {
description = "default",
parents = {"human behaviour"},
}
labels["eyewear"] = {
description = "default",
parents = {"clothing", "eye", "vision"},
}
labels["fabrics"] = {
description = "default",
parents = {"materials"},
}
labels["fibers"] = {
description = "default",
parents = {"materials"},
}
labels["fishing"] = {
description = "default",
parents = {"human activity"},
}
labels["footwear"] = {
description = "default",
parents = {"clothing"},
}
labels["gambling"] = {
description = "default",
parents = {"games"},
}
labels["games"] = {
description = "default",
parents = {"recreation"},
}
labels["gaming"] = {
description = "{{{langname}}} terms related to [[gaming]] terminology.",
parents = {"games"},
}
labels["gems"] = {
description = "default",
parents = {"jewelry", "mineralogy"},
}
labels["go"] = {
description = "default",
parents = {"board games"},
}
labels["Go-Stop"] = {
description = "default",
parents = {"card games", "gambling"},
}
labels["gums and resins"] = {
description = "{{{langname}}} terms related to [[gum]]s and [[resin]]s.",
parents = {"materials", "botany"},
}
labels["headwear"] = {
description = "default-set",
parents = {"clothing", "list of sets"},
}
labels["hides"] = {
description = "{{{langname}}} terms related to the skins of animals, used as materials.",
parents = {"materials", "leatherworking"},
}
labels["hobbies"] = {
description = "default",
parents = {"recreation"},
}
labels["human activity"] = {
description = "{{{langname}}} terms related to activities performed by [[human]]s.",
parents = {"human behaviour"},
}
labels["human behaviour"] = {
description = "{{{langname}}} terms related to behaviours and activities of [[human]]s.",
parents = {"human"},
}
labels["human migration"] = {
description = "default",
parents = {"human behaviour"},
}
labels["hunting"] = {
description = "default",
parents = {"human activity"},
}
labels["jewelry"] = {
description = "default",
parents = {"clothing"},
}
labels["juggling"] = {
description = "default",
parents = {"games"},
}
labels["kilts"] = {
description = "default",
parents = {"clothing"},
}
labels["kite flying"] = {
description = "{{{langname}}} terms related to flying [[kite]]s.",
parents = {"hobbies"},
}
labels["laughter"] = {
description = "default",
parents = {"human behaviour"},
}
labels["machining"] = {
description = "default",
parents = {"manufacturing"},
}
labels["Magic: The Gathering"] = {
description = "{{{langname}}} terms related to the trading card game [[:w:Magic: The Gathering|Magic: The Gathering]].",
parents = {"collectible card games"},
}
labels["mahjong"] = {
description = "default",
parents = {"games"},
}
labels["manias"] = {
description = "default",
parents = {"human behaviour"},
}
labels["manufacturing"] = {
description = "default",
parents = {"human activity"},
}
labels["massage"] = {
description = "default",
parents = {"recreation"},
}
labels["materials"] = {
description = "{{{langname}}} terms related to [[material]]s.",
parents = {"manufacturing"},
}
labels["Monopoly"] = {
description = "{{{langname}}} terms related to the game [[w:Monopoly|Monopoly]].",
parents = {"board games"},
}
labels["multiplicity (psychology)"] = {
description = "{{{langname}}} terms related to the psychological condition of [[w:Multiplicity (psychology)|multiplicity]].",
parents = {"psychology"},
}
labels["murder"] = {
description = "default",
parents = {"violence", "death", "crime"},
}
labels["neckwear"] = {
description = "default",
parents = {"clothing"},
}
labels["natural materials"] = {
description = "{{{langname}}} terms related to [[natural]] [[material]]s.",
parents = {"materials", "nature"},
}
labels["paper"] = {
description = "default",
parents = {"materials"},
}
labels["paper sizes"] = {
description = "default",
parents = {"paper"},
}
labels["philately"] = {
description = "default",
parents = {"hobbies"},
}
labels["photography"] = {
description = "default",
parents = {"human activity", "media", "art"},
}
labels["physical fitness"] = {
description = "default no singularize",
parents = {"exercise", "health"},
}
labels["pinball"] = {
description = "default",
parents = {"games"},
}
labels["poker"] = {
description = "default",
parents = {"card games", "gambling"},
}
labels["puppets"] = {
description = "default",
parents = {"toys"},
}
labels["quiz competitions"] = {
description = "default",
parents = {"games"},
}
labels["recreation"] = {
description = "{{{langname}}} terms related to activities other than the traditional arts and entertainment that people use for [[recreation]].",
parents = {"human activity"},
}
labels["rocks"] = {
description = "default",
parents = {"natural materials", "geology"},
}
labels["rock paper scissors"] = {
description = "default",
parents = {"games"},
}
labels["role-playing games"] = {
description = "{{{langname}}} terms related to role-playing game mechanics, whether tabletop or [[:Category:en:Video games|video game]]. These games also employ many terms from [[:Category:en:Fantasy]].",
parents = {"games"},
}
labels["Rubik's Cube"] = {
description = "{{{langname}}} terms related to the [[w:Rubik's Cube|Rubik's Cube]].",
parents = {"games", "toys"},
}
labels["scrapbooks"] = {
description = "default",
parents = {"hobbies", "books"},
}
labels["shogi"] = {
description = "default",
parents = {"board games"},
}
labels["skating"] = {
description = "default",
parents = {"human activity"},
}
labels["skirts"] = {
description = "default",
parents = {"clothing"},
}
labels["smoking"] = {
description = "default",
parents = {"human behaviour"},
}
labels["snooker"] = {
description = "default",
parents = {"games"},
}
labels["stýrivolt"] = {
description = "default",
parents = {"card games"},
}
labels["swimwear"] = {
description = "default",
parents = {"clothing", "swimming"},
}
labels["tapes"] = {
description = "default",
parents = {"materials"},
}
labels["textiles"] = {
description = "default",
parents = {"materials"},
}
labels["tiddlywinks"] = {
description = "{{{langname}}} terms related to the game of [[tiddlywinks]].",
parents = {"games"},
}
labels["torture"] = {
description = "default",
parents = {"violence"},
}
labels["tourism"] = {
description = "default",
parents = {"travel"},
}
labels["toys"] = {
description = "default",
parents = {"recreation"},
}
labels["trading cards"] = {
description = "default",
parents = {"hobbies"},
}
labels["travel"] = {
description = "default",
parents = {"human activity", "transport"},
}
labels["two-up"] = {
description = "default",
parents = {"gambling"},
}
labels["underwear"] = {
description = "default",
parents = {"clothing"},
}
labels["vegetarianism"] = {
description = "default",
parents = {"diets", "human behaviour"},
}
labels["violence"] = {
description = "default",
parents = {"human behaviour"},
}
labels["women"] = {
description = "default",
parents = {"female", "female people", "feminism"},
}
labels["weightlifting"] = {
description = "default",
parents = {"exercise", "sports"},
}
labels["winter activities"] = {
description = "default",
parents = {"human activity", "winter"},
}
labels["witchcraft"] = {
description = "default",
parents = {"religion"},
}
labels["woods"] = {
description = "default",
parents = {"natural materials", "trees"},
}
labels["xiangqi"] = {
description = "default",
parents = {"board games"}
}
labels["yoga"] = {
description = "default",
parents = {"exercise"},
}
labels["yoga poses"] = {
description = "{{{langname}}} terms for ''[[asana]]s'' or [[Yoga]] [[pose]]s.",
parents = {"yoga"},
}
return labels
7uukz32pqi8xpd6ks2ks9bxsczhp1mv
Module:category tree/topic cat/data/Lifeforms
828
5245
13253
2022-07-29T18:49:20Z
Asinis632
1829
Created page with "local labels = {} labels["lifeforms"] = { description = "{{{langname}}} terms for various forms of [[life]].", parents = {"all sets", "nature", "list of sets"}, } labels["algae"] = { description = "{{{langname}}} terms for [[alga|algae]].", parents = {"lifeforms", "list of sets"}, } labels["alveolates"] = { description = "{{{langname}}} terms for [[unicellular]] [[eukaryote]]s in the [[superphylum]] [[Alveolata]].", parents = {"lifeforms", "list of sets"}, } la..."
Scribunto
text/plain
local labels = {}
labels["lifeforms"] = {
description = "{{{langname}}} terms for various forms of [[life]].",
parents = {"all sets", "nature", "list of sets"},
}
labels["algae"] = {
description = "{{{langname}}} terms for [[alga|algae]].",
parents = {"lifeforms", "list of sets"},
}
labels["alveolates"] = {
description = "{{{langname}}} terms for [[unicellular]] [[eukaryote]]s in the [[superphylum]] [[Alveolata]].",
parents = {"lifeforms", "list of sets"},
}
labels["bacteria"] = {
description = "{{{langname}}} terms for [[bacterium|bacteria]].",
parents = {"lifeforms", "list of sets"},
}
labels["blue-green algae"] = {
description = "{{{langname}}} terms for [[photosynthetic]] [[bacteria]], also known as [[cyanobacteria]], which were formerly classified as [[algae]].",
parents = {"bacteria", "algae", "list of sets"},
}
labels["brown algae"] = {
description = "{{{langname}}} terms for [[badderlocks]], [[gulfweed]], [[kelp]], [[wakame]], and other algae in the [[class]] [[Phaeophyceae]].",
parents = {"algae", "list of sets"},
}
labels["euagarics"] = {
description = "{{{langname}}} terms for [[amanita]]s, [[armillaria]]s, [[bird's nest fungus]], [[blewit]]s, [[button mushroom]]s, [[cortinar]]s, [[enoki]], [[field mushroom]]s, [[inkcap]]s, [[matsutake]], [[nameko]], [[oyster mushroom]]s, [[psilocybe]]s, [[puffball]]s, [[shiitake]], [[shimeji]], [[straw mushroom]]s, [[sulfur tuft]]s, [[waxy cap]]s and other [[gill]]ed [[mushroom]]s in the [[order]] [[Agaricales]].",
parents = {"mushrooms", "list of sets"},
}
labels["foraminifera"] = {
description = "{{{langname}}} terms for single-celled [[organism]]s in the [[phylum]] or [[subphylum]] [[Foraminifera]].",
parents = {"lifeforms", "list of sets"},
}
labels["fungi"] = {
description = "default-set",
parents = {"lifeforms", "list of sets"},
}
labels["green algae"] = {
description = "{{{langname}}} terms for algae in the [[division]]s [[Charophyta]] and [[Chlorophyta]].",
parents = {"algae", "list of sets"},
}
labels["lichens"] = {
description = "{{{langname}}} terms for [[lichen]]s, composite organisms consisting of fungi and algae living together symbiotically.",
parents = {"lifeforms", "algae", "fungi", "list of sets"},
}
labels["livestock"] = {
description = "default",
parents = {"animals", "agriculture"},
}
labels["mushrooms"] = {
description = "{{{langname}}} terms for [[mushroom]]s.",
parents = {"fungi", "list of sets"},
}
labels["oomycetes"] = {
description = "{{{langname}}} terms for [[fungus]]-like organisms in the class [[Oomycota]].",
parents = {"lifeforms", "list of sets"},
}
labels["parasites"] = {
description = "default-set",
parents = {"lifeforms", "list of sets"},
}
labels["Pezizales order fungi"] = {
description = "{{{langname}}} terms for [[brain mushroom]]s, [[elfin saddle]]s, [[common brown cup]]s, [[false morel]]s, [[hare's ear]]s, [[lorchel]]s, [[morel]]s, [[truffle]]s, [[turban-top]]s, and other [[ascomycete]] [[fungi]] in the [[order]] [[Pezizales]].",
parents = {"fungi","mushrooms", "list of sets"},
}
labels["poultry"] = {
description = "default",
parents = {"birds", "livestock"},
}
labels["protists"] = {
description = "default-set",
parents = {"lifeforms", "list of sets"},
}
labels["red algae"] = {
description = "{{{langname}}} terms for [[dulse]], [[laver]], [[Irish moss]], and other algae in the [[division]] [[Rhodophyta]].",
parents = {"algae", "list of sets"},
}
labels["viruses"] = {
description = "{{{langname}}} terms for [[virus]]es.",
parents = {"lifeforms", "list of sets"},
}
labels["yeasts"] = {
description = "{{{langname}}} terms for [[yeast]]s.",
parents = {"fungi", "list of sets"},
}
return labels
7j7iglhlgk1rinyj4l9ovvloodioc61
Module:category tree/topic cat/data/Animals
828
5246
13254
2022-07-29T18:50:10Z
Asinis632
1829
Created page with "local labels = {} labels["animals"] = { description = "{{{langname}}} terms for [[animal]]s.", parents = {"lifeforms", "list of sets"}, } labels["acanthuroid fish"] = { description = "{{{langname}}} terms for [[surgeonfish]], [[light-horseman]], [[louvar]]s, [[scat]]s, [[rabbitfish]], [[Moorish idol]]s and other fish in the [[perciform]] [[suborder]] [[Acanthuroidei]].", parents = {"fish", "list of sets"}, } labels["accentors"] = { description = "{{{langname}}}..."
Scribunto
text/plain
local labels = {}
labels["animals"] = {
description = "{{{langname}}} terms for [[animal]]s.",
parents = {"lifeforms", "list of sets"},
}
labels["acanthuroid fish"] = {
description = "{{{langname}}} terms for [[surgeonfish]], [[light-horseman]], [[louvar]]s, [[scat]]s, [[rabbitfish]], [[Moorish idol]]s and other fish in the [[perciform]] [[suborder]] [[Acanthuroidei]].",
parents = {"fish", "list of sets"},
}
labels["accentors"] = {
description = "{{{langname}}} terms for birds in the [[family]] [[Prunellidae]].",
parents = {"perching birds", "list of sets"},
}
labels["accipiters"] = {
description = "{{{langname}}} terms relating to [[besra]]s, [[Cooper's hawk]]s, [[goshawk]]s, [[sharp-shinned hawk]]s, [[shikra]]s, [[sparrowhawk]]s, and other [[hawk]]s in the [[genus]] ''[[Accipiter]]''.",
parents = {"birds of prey", "list of sets"},
}
labels["Acipenseriform fish"] = {
description = "{{{langname}}} terms for [[paddlefish]], [[sturgeon]]s and other fish in the [[order]] [[Acipenseriformes]].",
parents = {"fish", "list of sets"},
}
labels["adephagan beetles"] = {
description = "{{{langname}}} terms for [[diving beetle]]s, [[ground beetle]]s (including [[bombardier beetle]]s and [[tiger beetle]]s), [[whirligig beetle]]s and other [[beetle]]s in the [[suborder]] [[Adephaga]].",
parents = {"beetles", "list of sets"},
}
labels["African insectivores"] = {
description = "{{{langname}}} terms for [[aardvark]]s, [[elephant shrew]]s, [[golden mole]]s, [[otter shrew]]s, [[tenrec]]s, and other [[mammal]]s in the [[clade]] [[Afroinsectiphilia]].",
parents = {"mammals", "list of sets"},
}
labels["agamid lizards"] = {
description = "{{{langname}}} terms for [[agama]]s, [[bearded dragon]]s, [[flying dragon]]s, [[frilled lizard]]s, [[moloch]]s, [[spiny-tailed lizard]]s, [[stellion]]s and other [[lizard]]s in the [[family]] [[Agamidae]].",
parents = {"lizards", "list of sets"},
}
labels["alcelaphine antelopes"] = {
description = "{{{langname}}} terms for [[blesbuck]]s, [[bontebok]]s, [[bubal]]s, [[gnu]]s or [[wildebeest]], [[hartebeest]]s, [[hirola]], [[sassaby]]s, [[topi]]s, [[tetel]]s, and other [[antelopes]] in the [[subfamily]] [[Alcelaphinae]].",
parents = {"antelopes", "list of sets"},
}
labels["ammonites"] = {
description = "{{{langname}}} terms for [[extinct]] [[cephalopod]]s in the [[subclass]] [[Ammonoidea]]",
parents = {"cephalopods", "list of sets"},
}
labels["amphibians"] = {
description = "default-set",
parents = {"vertebrates", "list of sets"},
}
labels["amphipods"] = {
description = "{{{langname}}} terms for [[beach flea]]s, [[lawn shrimp]], [[scud]]s, [[side swimmer]]s, [[skeleton shrimp]], [[whale louse|whale lice]], and other [[crustacean]]s in the [[order]] [[Amphipoda]].",
parents = {"crustaceans", "list of sets"},
}
labels["anatids"] = {
description = "{{{langname}}} terms for [[anatid]]s: ([[duck]]s, [[goose|geese]] and [[swan]]s).",
parents = {"freshwater birds", "list of sets"},
}
labels["annelids"] = {
description = "{{{langname}}} terms for [[earthworm]]s, [[leech]]es, [[ragworm]]s and many other [[segment]]ed [[worm]]s in the [[phylum]] [[Annelida]].",
parents = {"worms", "list of sets"},
}
labels["anglerfish"] = {
description = "{{{langname}}} terms for fish in the [[order]] [[Lophiiformes]].",
parents = {"fish", "list of sets"},
}
labels["anguimorph lizards"] = {
description = "{{{langname}}} terms for [[alligator lizard]]s, [[beaded lizard]]s, [[blindworm]]s, [[crocodile monitor]]s, [[galliwasp]]s, [[Gila monster]]s, [[glass lizard]]s, [[goanna]]s, [[Komodo dragon]]s, [[legless lizard]]s, [[nile monitor]]s, [[perentie]]s, [[sheltopusik]]s, [[water monitor]]s, and other [[lizards]] in the [[suborder]] [[Anguimorpha]].",
parents = {"lizards", "list of sets"},
}
labels["anomurans"] = {
description = "{{{langname}}} terms for crablike [[crustacean]]s in the [[decapod]] [[infraorder]] [[Anomura]], which are closely related to the true [[crab]]s in the infraorder [[Brachyura]].",
parents = {"crustaceans", "decapods", "list of sets"},
}
labels["anteaters and sloths"] = {
description = "{{{langname}}} terms for [[mammal]]s in the [[order]] [[Pilosa]].",
parents = {"mammals", "list of sets"},
}
labels["antelopes"] = {
description = "{{{langname}}} terms for [[antelope]]s.",
parents = {"even-toed ungulates", "list of sets"},
}
labels["antilopine antelopes"] = {
description = "{{{langname}}} terms for [[blackbuck]]s, [[chinkara]]s, [[dibatag]]s, [[dik-dik]]s, [[gazelle]]s, [[gerenuk]]s, [[grysbok]]s, [[klipspringer]]s, [[oribi]]s, [[royal antelope]]s, [[saiga]]s, [[springbok]]s, [[steenbok]]s, [[zeren]], and other [[antelope]]s in the [[bovid]] [[subfamily]] [[Antilopinae]].",
parents = {"antelopes", "list of sets"},
}
labels["ants"] = {
description = "default-set",
parents = {"hymenopterans", "list of sets"},
}
labels["antshrikes"] = {
description = "default-set",
parents = {"suboscines", "perching birds", "list of sets"},
}
labels["aphids"] = {
description = "{{{langname}}} terms for [[insect]]s in the [[superfamily]] [[Aphidoidea]].",
parents = {"hemipterans", "list of sets"},
}
labels["apodiforms"] = {
description = "{{{langname}}} terms for [[hummingbird]]s, [[needletail]]s, [[spinetail]]s, [[swift]]s, [[swiftlet]]s, [[treeswift]]s, and other [[bird]]s in the [[order]] [[Apodiformes]].",
parents = {"birds", "list of sets"},
}
labels["arachnids"] = {
description = "{{{langname}}} terms for [[arachnid]]s.",
parents = {"arthropods", "list of sets"},
}
labels["araneoid spiders"] = {
description = "{{{langname}}} terms for [[bird dropping spider]]s, [[cobweb spiders]] (including [[black widow]]s and [[redback]]s), [[orbweaver]]s (including [[cross spider]]s and [[writing spider]]s), [[long-jawed spider]]s, [[money spider]]s, [[nesticid]]s, [[pimoid]], [[pirate spider]]s, [[tetragnathid]]s and other [[spider]]s in the [[superfamily]] [[Araneoidea]].",
parents = {"spiders", "list of sets"},
}
labels["argentiniform fish"] = {
description = "{{{langname}}} terms for [[argentine]]s, [[barreleye]]s, [[blacksmelt]]s, [[smoothtongue]]s and other fish in the [[order]] [[Argentiniformes]].",
parents = {"fish", "list of sets"},
}
labels["armadillos"] = {
description = "{{{langname}}} terms for [[armadillo]]s.",
parents = {"mammals", "list of sets"},
}
labels["arthropods"] = {
description = "{{{langname}}} terms for [[arthropod]]s.",
parents = {"animals", "list of sets"},
}
labels["aschizan flies"] = {
description = "{{{langname}}} terms for [[fly|flies]] in the [[dipteran]] [[section]] [[Aschiza]].",
parents = {"dipterans", "list of sets"},
}
labels["asilomorph flies"] = {
description = "{{{langname}}} terms for [[bee fly|bee flies]], [[dance fly|dance flies]], [[Mydas fly|Mydas flies]], [[robber fly|robber flies]], [[stiletto fly|stiletto flies]], [[window fly|window flies]] and other [[fly|flies]] in the [[dipteran]] [[infraorder]] [[Asilomorpha]].",
parents = {"dipterans", "list of sets"},
}
labels["asilomorph flies"] = {
description = "{{{langname}}} terms for [[bee fly|bee flies]], [[dance fly|dance flies]], [[Mydas fly|Mydas flies]], [[robber fly|robber flies]], [[stiletto fly|stiletto flies]], [[window fly|window flies]] and other [[fly|flies]] in the [[dipteran]] [[infraorder]] [[Asilomorpha]].",
parents = {"dipterans", "list of sets"},
}
labels["assassin bugs"] = {
description = "{{{langname}}} terms for [[ambush bug]]s, [[assassin bug]]s, [[corsair]]s, [[feather-legged bug]]s, [[kissing bug]]s or [[conenose bug]]s, [[masked hunter]]s, [[wheel bug]]s, and other [[true bug]]s in the [[family]] [[Reduviidae]].",
parents = {"true bugs", "list of sets"},
}
labels["astacideans"] = {
description = "{{{langname}}} terms for [[crustacean]]s in the [[decapod]] [[infraorder]] [[Astacidea]], including the original [[species]] known as [[crayfish]] and [[lobster]]s, and their relatives.",
parents = {"crustaceans", "decapods", "list of sets"},
}
labels["atheriniform fish"] = {
description = "{{{langname}}} terms for [[blue-eye]]s, [[hardyhead]]s, [[grunion]], [[jacksmelt]], [[rainbowfish]], [[silverside]]s, [[zona]], and other fish in the [[order]] [[Atheriniformes]].",
parents = {"fish", "list of sets"},
}
labels["auks"] = {
description = "{{{langname}}} terms for [[auk]]s, [[guillemot]]s, [[murre]]s, [[puffin]]s, [[razorbill]]s, and other [[seabird]]s in the family [[Alcidae]].",
parents = {"seabirds", "list of sets"},
}
labels["aulopiform fish"] = {
description = "{{{langname}}} terms for [[daggertooth]]s, [[lancetfish]], [[sergeant baker]]s, [[greeneye]]s, [[telescopefish]], [[lizardfish]] and other fish in the [[order]] [[Aulopiformes]].",
parents = {"fish", "list of sets"},
}
labels["baby animals"] = {
description = "{{{langname}}} terms for [[baby]] [[animal]]s.",
parents = {"animals", "list of sets"},
}
labels["barklice"] = {
description = "{{{langname}}} terms for non-[[parasitic]] [[insect]]s in the [[order]] [[Psocodea]].",
parents = {"insects", "list of sets"},
}
labels["barnacles"] = {
description = "{{{langname}}} terms for [[crustacean]]s in the [[infraclass]] [[Cirripedia]], including the parasitic [[rhizocephalan]]s.",
parents = {"crustaceans", "list of sets"},
}
labels["bats"] = {
description = "{{{langname}}} terms for [[bat]]s.",
parents = {"mammals", "list of sets"},
}
labels["bees"] = {
description = "{{{langname}}} terms for [[bee]]s.",
parents = {"insects", "hymenopterans", "beekeeping", "list of sets"},
}
labels["beetles"] = {
description = "{{{langname}}} terms for [[beetle]]s.",
parents = {"insects", "list of sets"},
}
labels["beloniform fish"] = {
description = "{{{langname}}} terms for [[ballyhoo]], [[flying fish]], [[garfish]], [[halfbeak]]s, [[houndfish]], [[mackerel pike]]s, [[medaka]]s, [[needlefish]], [[ricefish]], [[saury|sauries]], [[silver gar]], and other fish in the [[order]] [[Beloniformes]].",
parents = {"fish", "list of sets"},
}
labels["bibionomorphs"] = {
description = "{{{langname}}} terms for [[March fly|March flies]], [[cecidomyiid]] [[gall midge]]s, [[keroplatid]] [[fungus gnat]]s, [[mycetophilid]]s, [[sciarid]]s and other [[fly|flies]], [[gnat]]s and [[midge]]s in the [[dipteran]] [[infraorder]] [[Bibionomorpha]].",
parents = {"dipterans", "list of sets"},
}
labels["birds"] = {
description = "{{{langname}}} terms for [[bird]]s.",
parents = {"vertebrates", "list of sets"},
}
labels["birds of prey"] = {
description = "{{{langname}}} terms relating to birds that live by [[predatory]] hunting, and from [[carrion]].",
parents = {"birds", "list of sets"},
}
labels["bivalves"] = {
description = "{{{langname}}} terms relating to [[clam]]s, [[cockle]]s, [[mussel]]s, [[oyster]]s, [[scallop]]s and other [[mollusk]]s in the [[class]] [[Bivalvia]].",
parents = {"mollusks", "list of sets"},
}
labels["blennies"] = {
description = "{{{langname}}} terms for [[blenny|blennies]], [[chaenopsid]]s, [[clinid]]s, [[dactyloscopid]]s, [[klipfish]], [[labrisomid]]s, [[triplefin]]s, [[weedfish]] and other fish in the [[perciform]] [[suborder]] [[Blennioidei]].",
parents = {"fish", "list of sets"},
}
labels["boas"] = {
description = "{{{langname}}} terms for [[snake]]s in the family [[Boidae]].",
parents = {"snakes", "list of sets"},
}
labels["bostrichiform beetles"] = {
description = "{{{langname}}} terms for [[carpet beetle]]s, [[deathwatch beetle]]s, [[drugstore beetle]]s, [[museum beetle]]s, [[powder-post beetle]]s, and other [[anobiid]]s/[[ptinid]]s, [[bostrichid]]s, [[dermestid]]s, [[derodontid]]s, [[jacobsoniid]]s and [[nosodendrid]]s in the [[coleopteran]] [[infraorder]] [[Bostrichiformia]].",
parents = {"beetles", "list of sets"},
}
labels["bovines"] = {
description = "default-set",
parents = {"even-toed ungulates", "list of sets"},
}
labels["brachiopods"] = {
description = "{{{langname}}} terms for [[animal]]s in the [[phylum]] [[Brachiopoda]]. <u>Note</u>: not to be confused with [[branchiopod]]s, which are [[crustacean]]s.",
parents = {"animals", "list of sets"},
}
labels["branchiopods"] = {
description = "{{{langname}}} terms for [[[brine shrimp]], [[clam shrimp]], [[fairy shrimp]], [[tadpole shrimp]], [[water flea]]s, and other [[crustacean]]s in the [[class]] [[Branchiopoda]]. <u>Note</u>: not to be confused with [[brachiopod]]s, which are a separate [[phylum]].",
parents = {"crustaceans", "list of sets"},
}
labels["bryozoans"] = {
description = "{{{langname}}} terms for [[animal]]s in the [[phylum]] [[Bryozoa]], also known as [[Ectoprocta]].",
parents = {"animals", "list of sets"},
}
labels["bulbuls"] = {
description = "{{{langname}}} terms for [[bulbul]]s, [[greenbul]]s, [[brownbul]]s, [[leaflove]]s, [[bristlebill]]s, and other birds in the [[passerine]] [[family]] [[Pycnonotidae]].",
parents = {"perching birds", "list of sets"},
}
labels["buteos"] = {
description = "{{{langname}}} terms relating to [[hawk]]s in the [[genus]] ''[[Buteo]]'', known as [[buzzard]]s in Europe.",
parents = {"birds of prey", "list of sets"},
}
labels["butterflies"] = {
description = "{{{langname}}} terms for [[butterfly|butterflies]].",
parents = {"insects", "list of sets"},
}
labels["caddis flies"] = {
description = "{{{langname}}} terms for insects in the order [[Trichoptera]], which are closely related to the [[butterfly|butterflies]] and [[moth]]s but with hairs on their wings instead of scales, and which have [[aquatic]] [[larvae]] that live in cases that they build around themselves.",
parents = {"insects", "list of sets"},
}
labels["camelids"] = {
description = "{{{langname}}} terms for [[camelid]]s ([[camel]]s, [[llama]]s, [[alpaca]]s, etc.).",
parents = {"mammals", "even-toed ungulates", "list of sets"},
}
labels["canids"] = {
description = "{{{langname}}} terms for [[canid]]s.",
parents = {"carnivores", "list of sets"},
}
labels["caprines"] = {
description = "{{{langname}}} terms for [[sheep]], [[goat]]s, [[goat antelope]]s, [[chamois]], [[muskox]]en, [[bharal]], [[goral]], [[ibex]], [[mouflon]], [[serow]], [[tahr]], [[tur]], [[takin]] and other animals in the [[bovid]] [[subfamily]] [[Caprinae]], formerly known as the [[family]] [[Capridae]].",
parents = {"even-toed ungulates", "list of sets"},
}
labels["caprimulgiforms"] = {
description = "{{{langname}}} terms for [[caprimulgiform]]s: birds in the taxonomic order [[Caprimulgiformes]]- the [[nightjar]]s, [[oilbird]]s, [[frogmouth]]s, [[potoo]]s, etc.",
parents = {"birds", "list of sets"},
}
labels["carcharhiniform sharks"] = {
description = "{{{langname}}} terms for [[bull shark]]s, [[catshark]]s, [[gummy shark]]s, [[hammerhead]]s, [[leopard shark]]s, [[morgay]]s, [[requiem shark]]s, [[tiger shark]]s, [[tope]]s, [[whaler]]s, [[whitetip]]s and other sharks in the [[order]] [[Carcharhiniformes]].",
parents = {"sharks", "list of sets"},
}
labels["cardinalids"] = {
description = "{{{langname}}} terms for [[cardinal]]s, [[dickcissel]]s, [[indigo bunting]]s, [[pyrrhuloxia]]s, [[rose-breasted grosbeak]]s, [[scarlet tanager]]s, and other birds in the [[family]] [[Cardinalidae]].",
parents = {"perching birds", "list of sets"},
}
labels["caridean shrimp"] = {
description = "{{{langname}}} terms for [[crustacean]]s in the [[decapod]] [[infraorder]] [[Caridea]], mostly known as [[shrimp]] or [[prawn]]s.",
parents = {"crustaceans", "decapods", "list of sets"},
}
labels["carnivores"] = {
description = "{{{langname}}} terms for [[bear]]s, [[cat]]s, [[civet]]s, [[dog]]s, [[fossa]]s, [[hyaena]]s, [[mongoose]]s, [[panda]]s, [[raccoon]]s, [[seal]]s, [[skunk]]s, [[weasel]]s and various other [[mammal]]s in the [[order]] [[Carnivora]].",
parents = {"mammals", "list of sets"},
}
labels["carps"] = {
description = "{{{langname}}} terms for fish in the [[subfamily]] [[Cyprininae]], the [[carps]] and [[goldfish]].",
parents = {"cyprinids", "list of sets"},
}
labels["catfish"] = {
description = "default-set",
parents = {"fish", "otocephalan fish", "list of sets"},
}
labels["cats"] = {
description = "{{{langname}}} terms for [[cat]]s in the sense of members of the genus ''[[Felis]]''.",
parents = {"felids", "list of sets"},
}
labels["cattle"] = {
description = "default-set",
parents = {"bovines", "livestock", "list of sets"},
}
labels["caviomorphs"] = {
description = "{{{langname}}} terms for [[agouti]]s, [[capybara]]s, [[chinchilla]]s, [[guinea pig]]s, [[New World porcupine]]s, [[nutria]]s, [[tuco-tuco]]s and other [[rodent]]s in the parvorder [[Caviomorpha]].",
parents = {"rodents", "list of sets"},
}
labels["cephalopods"] = {
description = "default-set",
parents = {"mollusks", "list of sets"},
}
labels["cercopithecin monkeys"] = {
description = "{{{langname}}} terms for [[blue monkey]]s, [[Diana monkey]]s, [[guenon]]s, [[lesula]]s, [[malbrouck]]s,[[patas monkey]]s, [[talapoin]]s, [[vervet]]s, and other [[Old World monkey]]s in the [[cercopithecine]] [[tribe]] [[Cercopithecini]].",
parents = {"Old World monkeys", "list of sets"},
}
labels["certhioid birds"] = {
description = "{{{langname}}} terms for birds in the [[passerine]] [[superfamily]] [[Certhioidea]], the [[treecreeper]]s, [[nuthatch]]es, [[gnatcatcher]]s and [[wren]]s.",
parents = {"perching birds", "list of sets"},
}
labels["cervids"] = {
description = "{{{langname}}} terms for [[cervid]]s.",
parents = {"even-toed ungulates", "list of sets"},
}
labels["cetaceans"] = {
description = "{{{langname}}} terms for [[cetacean]]s ([[dolphin]]s, [[whale]]s and [[porpoise]]s).",
parents = {"even-toed ungulates", "list of sets"},
}
labels["chalcidoid wasps"] = {
description = "{{{langname}}} terms for [[chalcidid]]s, [[encyrtid]]s, [[fig wasp]]s, [[jointworm]]s, [[mymarid]] [[fairyfly|fairyflies]], [[perilampid]]s, [[torymid]]s, [[trichogramma]]s, and other [[wasp]]s in the [[superfamily]] [[Chalcidoidea]].",
parents = {"hymenopterans", "list of sets"},
}
labels["characins"] = {
description = "{{{langname}}} terms for fish in the order [[Characiformes]].",
parents = {"fish", "otocephalan fish", "list of sets"},
}
labels["chickens"] = {
description = "default-set",
parents = {"poultry", "fowls", "list of sets"},
}
labels["chimaeras (fish)"] = {
description = "{{{langname}}} terms for [[cartilaginous]] fish in the [[Chimaeriformes]], the only surviving [[order]] of the [[subclass]] [[Holocephali]], and separate from the [[shark]]s, [[ray]]s, [[skate]]s and [[sawfish]] of the subclass [[Elasmobranchii]].",
parents = {"fish", "list of sets"},
}
labels["chordates"] = {
description = "{{{langname}}} terms for animals in the [[phylum]] [[Chordata]].",
parents = {"animals", "list of sets"},
}
labels["chrysomeloid beetles"] = {
description = "{{{langname}}} terms for [[cerambycid]]s or [[longhorn beetle]]s such as [[apple borer]]s, [[huhu beetle]]s, [[locust borer]]s and [[thunderbolt beetle]]s, as well as [[chrysomelid]]s or [[leaf beetle]]s such as [[asparagus beetle]]s, [[bean weevil]]s, [[Colorado beetle]]s, [[cucumber beetle]]s, [[flea beetle]]s, [[potato beetle]]s, and other [[beetle]]s in the [[superfamily]] [[Chrysomeloidea]].",
parents = {"beetles", "list of sets"},
}
labels["cicadas"] = {
description = "{{{langname}}} terms for [[insect]]s in the [[superfamily]] [[Cicadoidea]].",
parents = {"hemipterans", "list of sets"},
}
labels["cichlids"] = {
description = "{{{langname}}} terms for fish in the family [[Cichlidae]].",
parents = {"labroid fish", "list of sets"},
}
labels["clinids"] = {
description = "{{{langname}}} terms for fish in the family [[Clinidae]].",
parents = {"fish", "list of sets"},
}
labels["cnidarians"] = {
description = "{{{langname}}} terms for [[coral]]s, [[gorgonian]]s, [[hydra]]s, [[myxozoan]]s, [[Portuguese man-of-war]], [[sea anemone]]s, [[sea fir]]s, [[sea wasp]]s, and other animals in the in the [[phylum]] [[Cnidaria]].",
parents = {"animals", "list of sets"},
}
labels["cockatoos"] = {
description = "{{{langname}}} terms for [[crested]] [[parrot]]s in the [[family]] [[Cacatuidae]].",
parents = {"parrots", "list of sets"},
}
labels["cockroaches"] = {
description = "default-set",
parents = {"insects", "list of sets"},
}
labels["colobine monkeys"] = {
description = "{{{langname}}} terms for [[colobus]]es, [[douc]]s, [[langur]]s, [[guereza]]s, [[hanuman]]s,[[leaf monkey]]s, [[lutung]]s, [[proboscis monkey]]s, and other [[Old World monkey]]s in the [[subfamily]] [[Colobinae]].",
parents = {"Old World monkeys", "list of sets"},
}
labels["colubrid snakes"] = {
description = "{{{langname}}} terms for [[snake]]s in the family [[Colubridae]].",
parents = {"snakes", "list of sets"},
}
labels["colugos"] = {
description = "{{{langname}}} terms for the [[primate]]-like [[gliding]] [[mammal]]s in the [[order]] [[Dermoptera]], also known as [[flying lemur]]s.",
parents = {"mammals", "list of sets"},
}
labels["columbids"] = {
description = "{{{langname}}} terms for [[columbid]]s, i.e. [[pigeon]]s and [[dove]]s.",
parents = {"birds", "list of sets"},
}
labels["copepods"] = {
description = "{{{langname}}} terms for [[crustacean]]s in the [[subclass]] [[Copepoda]].",
parents = {"crustaceans", "list of sets"},
}
labels["coraciiforms"] = {
description = "{{{langname}}} terms for [[bee-eater]]s, [[ground rollers]], [[kingfisher]]s, [[motmot]]s, [[roller]]s, [[tody|todies]] and other birds in the taxonomic order [[Coraciiformes]].",
parents = {"birds", "list of sets"},
}
labels["corvids"] = {
description = "{{{langname}}} terms for [[corvid]]s.",
parents = {"perching birds", "corvoid birds", "list of sets"},
}
labels["corvoid birds"] = {
description = "{{{langname}}} terms for [[apostlebird]]s, [[bird of paradise|birds of paradise]], [[crow]]s, [[drongo]]s, [[fantail]]s, [[grinder]]s, [[jackdaw]]s, [[jay]]s, [[magpie]]s, [[magpie-lark]]s, [[manucode]]s, [[monarchid]]s, [[nutcracker]]s, [[piwakawaka]]s, [[raven]]s, [[restless flycatcher]]s, [[riflebird]]s, [[shrike]]s, [[standard-wing]]s, and other birds in the [[superfamily]] [[Corvoidea]].",
parents = {"perching birds", "list of sets"},
}
labels["crabs"] = {
description = "{{{langname}}} terms for [[crab]]s, [[decapod]] [[crustacean]]s in the [[infraorder]] [[Brachyura]].",
parents = {"crustaceans", "decapods", "list of sets"},
}
labels["cranes (birds)"] = {
description = "{{{langname}}} terms for [[crane]]s.",
parents = {"gruiforms", "list of sets"},
}
labels["cricetids"] = {
description = "{{{langname}}} terms for [[cotton rat]]s, [[deer mouse|deer mice]], [[hamster]]s, [[harvest mouse|harvest mice]], [[lemming]]s, [[vole]]s, [[woodrat]]s, and other [[rodent]]s in the [[family]] [[Cricetidae]].",
parents = {"rodents", "list of sets"},
}
labels["crickets and grasshoppers"] = {
description = "{{{langname}}} terms for [[cricket]]s, [[grasshopper]]s, [[katydid]]s, [[weta]]s and other [[insect]]s in the order [[Orthoptera]].",
parents = {"insects", "list of sets"},
}
labels["croakers"] = {
description = "{{{langname}}} terms for [[croaker]]s, [[drum]]s, [[weakfish]]s and other fish in the family [[Sciaenidae]].",
parents = {"percoid fish", "list of sets"},
}
labels["crocodilians"] = {
description = "{{{langname}}} terms for [[crocodile]]s, [[alligator]]s, [[caymans]], and other [[reptile]]s in the order [[Crocodilia]].",
parents = {"reptiles", "list of sets"},
}
labels["crustaceans"] = {
description = "{{{langname}}} terms for [[crustacean]]s.",
parents = {"arthropods", "list of sets"},
}
labels["cuckoos"] = {
description = "{{{langname}}} terms for [[cuckoo]]s and other birds in the [[family]] [[Cuculidae]].",
parents = {"otidimorph birds", "list of sets"},
}
labels["cuckooshrikes and minivets"] = {
description = "{{{langname}}} terms for birds in the [[family]] [[Campephagidae]].",
parents = {"perching birds", "list of sets"},
}
labels["cucujoid beetles"] = {
description = "{{{langname}}} terms for [[flower beetle]]s, [[fungus beetle]]s, [[grain beetle]]s, [[lady beetle]]s, [[lizard beetle]]s, [[Mexican bean beetle]]s, and other [[beetle]]s in the [[superfamily]] [[Cucujoidea]].",
parents = {"beetles", "list of sets"},
}
labels["ctenophores"] = {
description = "{{{langname}}} terms for animals in the [[phylum]] [[Ctenophora]], the [[comb jelly|comb jellies]].",
parents = {"animals", "list of sets"},
}
labels["culicomorphs"] = {
description = "{{{langname}}} terms for [[biting midge]]s, [[blackfly|blackflies]], [[blood worm]]s, [[glassworm]]s, [[meniscus midge]]s, [[mosquito]]s, [[no-see-um]]s, [[non-biting midge]]s, [[phantom midge]]s and other [[insect]]s in the [[dipteran]] [[infraorder]] [[Culicomorpha]].",
parents = {"dipterans", "list of sets"},
}
labels["cyprinids"] = {
description = "{{{langname}}} terms for [[carp]], [[minnow]]s, [[chub]]s and other fish in the [[family]] [[Cyprinidae]]. In some classifications, this group is known as the [[superfamily]] [[Cyprinoidea]] or [[suborder]] [[Cyprinoidei]], with the [[cyprinid]] [[subfamily|subfamilies]] considered to be families.",
parents = {"fish", "otocephalan fish", "list of sets"},
}
labels["dabbling ducks"] = {
description = "{{{langname}}} terms for [[gadwall]]s [[garganey]]s, [[mallard]]s, [[mottled duck]]s, [[pintail]]s, [[shoveler]]s, [[teal]]s, [[wigeon]]s and other ducks in either the [[anatid]] [[tribe]] [[Anatini]] or [[subfamily]] [[Anatinae]], depending on the classification.",
parents = {"ducks", "list of sets"},
}
labels["damselflies"] = {
description = "{{{langname}}} terms for [[bluestreak]]s, [[bluetail]]s, [[demoiselle]]s, [[flatwing]]s, [[redtail]]s, [[riverdamsel]]s, [[rubyspot]]s, [[spreadwing]]s, [[threadtail]]s, [[whitetip]]s, and other insects in the [[odonate]] [[suborder]] [[Zygoptera]].",
parents = {"dragonflies and damselflies", "list of sets"},
}
labels["decapods"] = {
description = "{{{langname}}} terms for [[crabs]], [[crayfish]], [[lobster]]s, [[prawn]]s, ([[caridean]]) [[shrimp]], and many other [[crustacean]]s in the [[order]] [[Decapoda]].",
parents = {"crustaceans", "list of sets"},
}
labels["delphinids"] = {
description = "{{{langname}}} terms for (oceanic) [[dolphin]]s, [[grampus]]es, [[killer whale]]s/[[orca]]s, [[pilot whale]]s, and other [[cetacean]]s in the [[family]] [[Delphinidae]].",
additional = "Note: [[river dolphin]]s and [[porpoise]]s are in other families.",
parents = {"cetaceans", "list of sets"},
}
labels["designer dogs"] = {
description = "{{{langname}}} terms for [[designer dog]]s.",
parents = {"dogs", "list of sets"},
}
labels["dinosaurs"] = {
description = "{{{langname}}} terms for [[dinosaur]]s.",
parents = {"reptiles", "list of sets"},
}
labels["dionychan spiders"] = {
description = "{{{langname}}} terms for [[crab spider]]s, [[flattie]]s, [[ground spider]]s, [[huntsman spider]]s, [[jumping spider]], [[scorpion spider]]s, and other [[spiders]] in the [[entelegyne]] [[clade]] [[Dionycha]].",
parents = {"spiders", "list of sets"},
}
labels["dipterans"] = {
description = "{{{langname}}} terms for [[fly|flies]], [[gnat]]s, [[midge]]s, [[mosquito]]s and other [[insect]]s in the order [[Diptera]].",
parents = {"insects", "list of sets"},
}
labels["dogs"] = {
description = "{{{langname}}} terms for [[dog]]s.",
parents = {"canids", "list of sets"},
}
labels["domestic cats"] = {
description = "{{{langname}}} terms for [[domestic]] [[cat]]s.",
parents = {"cats", "list of sets"},
}
labels["doves"] = {
description = "default-set",
parents = {"columbids", "list of sets"},
}
labels["dragonflies and damselflies"] = {
description = "{{{langname}}} terms for insects in the order [[Odonata]].",
parents = {"insects", "list of sets"},
}
labels["ducks"] = {
description = "default-set",
parents = {"anatids", "poultry", "list of sets"},
}
labels["dugongs and manatees"] = {
description = "{{{langname}}} terms for [[mammal]]s in the order [[Sirenia]].",
parents = {"mammals", "list of sets"},
}
labels["eagles"] = {
description = "default-set",
parents = {"birds of prey", "list of sets"},
}
labels["eared seals"] = {
description = "{{{langname}}} terms for [[mammal]]s in the [[family]] [[Otariidae]], including the [[fur seal]]s and [[sea lion]]s.",
parents = {"pinnipeds", "list of sets"},
}
labels["earwigs"] = {
description = "{{{langname}}} terms for insects in the order [[Dermaptera]].",
parents = {"insects", "list of sets"},
}
labels["echinoderms"] = {
description = "{{{langname}}} terms for [[echinoderm]]s.",
parents = {"animals", "list of sets"},
}
labels["eels"] = {
description = "{{{langname}}} terms for [[eel]]s, elongated, snakelike fish in the order [[Anguilliformes]].",
parents = {"elopomorph fish", "list of sets"},
}
labels["elapid snakes"] = {
description = "{{{langname}}} terms for [[cobra]]s, [[coral snake]]s, [[krait]]s, [[mamba]]s, [[sea snake]]s, and other [[venomous]] snakes in the family [[Elapidae]].",
parents = {"snakes", "list of sets"},
}
labels["elateroid beetles"] = {
description = "{{{langname}}} terms for [[click beetle]]s/[[elaterid]]s, [[fire beetle]]s, [[firefly|fireflies]]/[[lampyrid]]s, [[glowworm]]s, [[net-winged beetle]]s/[[lycid]]s, [[railroad worm]]s/[[phengodid]]s, [[soldier beetle]]s/[[cantharid]]s, [[throscid]]s, [[wireworm]]s and other [[beetle]]s in the [[superfamily]] [[Elateroidea]].",
parents = {"beetles", "list of sets"},
}
labels["elephants"] = {
description = "{{{langname}}} terms for [[elephant]]s.",
parents = {"mammals", "list of sets"},
}
labels["elopomorph fish"] = {
description = "{{{langname}}} terms for [[bonefish]], [[eel]]s, [[gulper eel]]s, [[halosaur]]s, [[ladyfish]], [[tarpon]] and other fish in the [[superorder]] [[Elopomorpha]].",
parents = {"fish", "list of sets"},
}
labels["emberizids"] = {
description = "{{{langname}}} terms for [[bunting]]s, [[yellowhammer]]s and related birds in the [[passerine]] family [[Emberizidae]].",
additional = "<u>Note</u>: for New World species that were formerly classified in this family, see [[:Category:{{{langcode}}}:New World sparrows]].",
parents = {"perching birds", "list of sets"},
}
labels["emydid turtles"] = {
description = "{{{langname}}} terms for (North American) [[box turtle]]s, [[chicken turtle]]s, [[cooter]]s, [[ellachick]]s, [[pond turtle]]s, [[slider]]s, [[terrapin]]s, and other [[turtle]]s in the [[family]] [[Emydidae]].",
parents = {"turtles", "list of sets"},
}
labels["equids"] = {
description = "{{{langname}}} terms for [[equid]]s.",
parents = {"odd-toed ungulates", "list of sets"},
}
labels["erinaceids"] = {
description = "{{{langname}}} terms for [[erinaceid]]s-hedgehogs and relatives.",
parents = {"mammals", "list of sets"},
}
labels["euplerids"] = {
description = "{{{langname}}} terms for [[euplerid]]s — mongoose-like mammals found in Madagascar.",
parents = {"carnivores", "list of sets"},
}
labels["even-toed ungulates"] = {
description = "{{{langname}}} terms for [[mammal]]s in the [[order]] [[Artiodactyla]].",
parents = {"mammals", "list of sets"},
}
labels["falconids"] = {
description = "{{{langname}}} terms for [[caracara]]s, [[falcon]]s, [[hobby|hobbies]], [[kestrel]]s, [[lanner]]s, [[merlin]]s, [[saker]]s, and other birds in the [[family]] [[Falconidae]].",
parents = {"birds of prey", "list of sets"},
}
labels["felids"] = {
description = "{{{langname}}} terms for [[felid]]s.",
parents = {"carnivores", "list of sets"},
}
labels["female animals"] = {
description = "{{{langname}}} terms for [[female]] [[animal]]s.",
parents = {"animals", "female", "list of sets"},
}
labels["fish"] = {
description = "default-set",
parents = {"vertebrates", "list of sets"},
}
labels["flamingos"] = {
description = "default-set",
parents = {"freshwater birds", "list of sets"},
}
labels["flatfish"] = {
description = "{{{langname}}} terms for [[sole]]s, [[flounder]]s, [[halibut]]s and other fish in the order [[Pleuronectiformes]].",
parents = {"fish", "list of sets"},
}
labels["flatworms"] = {
description = "{{{langname}}} terms for [[fluke]]s, [[monogenean]]s, [[planarian]]s, [[polyclad]]s, [[tapeworm]]s, and other animals in the [[phylum]] [[Platyhelminthes]]. (For terms relating to the study of [[parasitic]] [[worm#Noun|worms]], see [[:Category:Helminthology]] and its subcategories.)",
parents = {"worms", "list of sets"},
}
labels["fleas"] = {
description = "default-set",
parents = {"insects", "list of sets"},
}
labels["fowls"] = {
description = "{{{langname}}} terms for [[fowl]]s: land birds in the [[order]] [[Galliformes]].",
parents = {"birds", "list of sets"},
}
labels["foxes"] = {
description = "default-set",
parents = {"canids", "list of sets"},
}
labels["freshwater birds"] = {
description = "{{{langname}}} terms for birds that live mainly in [[freshwater]] areas, including [[estuaries]].",
parents = {"birds", "list of sets"},
}
labels["freshwater whitefish"] = {
description = "{{{langname}}} terms for [[cisco]]s, [[houting]]s, [[inconnu]]s, [[lavaret]]s, [[marena]]s, [[omul]]s, [[Otsego bass]], [[peled]]s, [[pollan]]s, [[roundfish]], [[tullibee]]s, [[vendace]]s, [[whitefish]] and other fish in the [[salmonid]] [[subfamily]] [[Coregoninae]].",
parents = {"salmonids", "list of sets"},
}
labels["frogs"] = {
description = "default-set",
parents = {"amphibians", "list of sets"},
}
labels["gadiforms"] = {
description = "{{{langname}}} terms for [[cod]], [[haddock]], [[hake]] and other fish in the [[order]] [[Gadiformes]].",
parents = {"fish", "list of sets"},
}
labels["gasterosteiform fish"] = {
description = "{{{langname}}} terms for [[stickleback]]s, [[hypoptychid]] [[sand eel]]s, [[tubesnout]]s and other fish in the [[order]] [[Gasterosteiformes]].",
additional = "Note: See [[:Category:Syngnathiform fish]] for a group formerly included within this order.",
parents = {"fish", "list of sets"},
}
labels["gastropods"] = {
description = "default-set",
parents = {"mollusks", "list of sets"},
}
labels["geckos"] = {
description = "{{{langname}}} terms for [[lizard]]s in the [[infraorder]] [[Gekkota]], except for the [[legless lizards]] or [[pygopod]]s.",
parents = {"lizards", "list of sets"},
}
labels["geese"] = {
description = "default-set",
parents = {"anatids", "poultry", "list of sets"},
}
labels["geometrid moths"] = {
description = "{{{langname}}} terms for [[carpet]]s, [[engrailed]]s, [[heath]]s, [[pug]]s, [[peppered moth]]s, [[streak]]s, [[wave]]s and other [[moth]]s in the [[family]] [[Geometridae]], most of which have [[caterpillar]]s known as [[inchworm]]s, [[looper]]s, [[measuring worm]]s or [[spanworm]]s.",
parents = {"moths", "list of sets"},
}
labels["goats"] = {
description = "{{{langname}}} terms for [[goat]]s.",
parents = {"caprines", "livestock", "list of sets"},
}
labels["gobies"] = {
description = "{{{langname}}} terms for [[goby|gobies]], [[dartfish]], [[mudskipper]]s, [[sea gudgeon]]s, [[sleeper]]s, [[wormfish]], and other [[fish]] in the [[perciform]] [[suborder]] [[Gobioidei]].",
parents = {"fish", "list of sets"},
}
labels["gossamer-winged butterflies"] = {
description = "{{{langname}}} terms for [[blue]]s, [[copper]]s, [[elfin]]s, [[harvester]]s, [[hairstreak]]s, [[sunbeam]]s and other [[butterfly|butterflies]] in the [[family]] [[Lycaenidae]].",
parents = {"butterflies", "list of sets"},
}
labels["grebes"] = {
description = "{{{langname}}} terms for [[grebe]]s.",
parents = {"freshwater birds", "list of sets"},
}
labels["grouse"] = {
description = "{{{langname}}} terms for [[blackcock]]s, [[capercaillie]]s, [[grouse]], [[moorcock]]s, [[prairie chicken]]s, [[ptarmigan]]s, [[sagehen]]s, and other birds in the [[phasianid]] [[subfamily]] [[Tetraoninae]].",
parents = {"fowls", "list of sets"},
}
labels["gruiforms"] = {
description = "{{{langname}}} terms for [[coot]]s, [[crake]]s, [[crane]]s, [[finfoot]]s, [[flufftail]]s, [[gallinule]]s, [[limpkin]]s, [[rail]]s, [[sungrebe]]s, [[trumpeter]]s, and other birds in the [[order]] [[Gruiformes]].",
parents = {"freshwater birds", "list of sets"},
}
labels["gulls"] = {
description = "{{{langname}}} terms for [[gull]]s, [[seabird]]s in the [[family]] [[Laridae]].",
parents = {"seabirds", "list of sets"},
}
labels["gun dogs"] = {
description = "{{{langname}}} terms for [[gun]] [[dog]]s.",
parents = {"hunting dogs", "list of sets"},
}
labels["hares"] = {
description = "default-set",
parents = {"lagomorphs", "list of sets"},
}
labels["hemipterans"] = {
description = "{{{langname}}} terms for [[aphid]]s, [[leafhopper]]s, [[scale insect]]s, [[true bug]]s, [[whitefly|whiteflies]], and other [[insect]]s in the order [[Hemiptera]].",
parents = {"insects", "list of sets"},
}
labels["herding dogs"] = {
description = "{{{langname}}} terms for [[herding]] [[dog]]s.",
parents = {"pastoral dogs", "list of sets"},
}
labels["herons"] = {
description = "{{{langname}}} terms for [[heron]]s, [[bittern]]s and [[egret]]s.",
parents = {"freshwater birds", "list of sets"},
}
labels["herpestids"] = {
description = "{{{langname}}} terms for [[herpestid]]s- mongooses, meerkats, and relatives.",
parents = {"carnivores", "list of sets"},
}
labels["herrings"] = {
description = "{{{langname}}} terms for [[herring]]s, [[shad]]s, [[sardine]]s and other fish in the family [[Clupeidae]].",
parents = {"fish", "otocephalan fish", "list of sets"},
}
labels["holostean fish"] = {
description = "{{{langname}}} terms for [[gar]]s and [[bowfin]]s, primitive fish in the [[infraclass]] [[Holostei]].",
parents = {"fish", "list of sets"},
}
labels["hominids"] = {
description = "{{{langname}}} terms for [[hominid]]s.",
parents = {"primates", "list of sets"},
}
labels["honeyeaters"] = {
description = "{{{langname}}} terms for Australian [[chat]]s, [[bellbird]]s, [[friarbird]]s, [[gibberbird]]s, [[honeyeater]]s, [[miner]]s, [[spinebill]]s, [[wattlebird]]s, and other birds in the [[family]] [[Meliphagidae]].",
parents = {"meliphagoid birds", "list of sets"},
}
labels["horseflies"] = {
description = "{{{langname}}} terms for [[blind-fly|blind-flies]], [[breezefly|breezeflies]], [[cleg]]s, [[deerfly|deerflies]], [[forest fly|forest flies]], [[gadfly|gadflies]], [[horsefly|horseflies]], [[oxfly|oxflies]], [[zimb]]s, and other biting flies in the [[family]] [[Tabanidae]].",
parents = {"dipterans", "list of sets"},
}
labels["horses"] = {
description = "{{{langname}}} terms for [[horse]]s.",
parents = {"equids", "livestock", "list of sets"},
}
labels["hummingbirds"] = {
description = "{{{langname}}} terms for [[hummingbird]]s.",
parents = {"apodiforms", "list of sets"},
}
labels["hunting dogs"] = {
description = "{{{langname}}} terms for [[hunting]] [[dog]]s.",
parents = {"dogs", "list of sets"},
}
labels["hyaenids"] = {
description = "{{{langname}}} terms for [[hyaenid]]s.",
parents = {"carnivores", "list of sets"},
}
labels["hydrozoans"] = {
description = "{{{langname}}} terms for [[bluebottle]]s, [[calycophoran]]s, [[filiferan]]s, [[hydra]]s, [[hydractinian]]s, [[leptothecate]]s, [[narcomedusa]]s, [[pandeid]]s, [[physonect]]s, [[plumularian]]s, [[Portuguese man-of-war]]s, [[siphonophore]]s, [[stylaster]]s, [[sea fir]]s, [[sea ginger]], [[trachylid]]s, [[trachymedusa]]s, amd other animals in the [[cnidarian]] [[class]] [[Hydrozoa]].",
parents = {"cnidarians", "list of sets"},
}
labels["hymenopterans"] = {
description = "{{{langname}}} terms for [[ant]]s, [[bee]]s, [[ichneumon wasp]]s, [[sawfly|sawflies]], [[wasp]]s and other [[insect]]s in the order [[Hymenoptera]].",
parents = {"insects", "list of sets"},
}
labels["hyraxes"] = {
description = "{{{langname}}} terms for [[hyrax]]es.",
parents = {"mammals", "list of sets"},
}
labels["ibises and spoonbills"] = {
description = "{{{langname}}} terms for [[ibis]]es and [[spoonbill]]s.",
parents = {"freshwater birds", "list of sets"},
}
labels["icterids"] = {
description = "{{{langname}}} terms for birds in the [[New World]] [[passerine]] family [[Icteridae]].",
parents = {"perching birds", "list of sets"},
}
labels["iguanoid lizards"] = {
description = "{{{langname}}} terms for [[anole]]s, [[basilisk]]s, [[collared lizard]]s, [[chuckwalla]]s, [[fence lizard]]s, [[fringe-toed lizard]]s, [[horned lizard]]s, [[iguana]]s, [[leopard lizard]]s, [[side-blotched lizard]]s, [[zebra-tailed lizard]]s and other [[lizard]]s formerly included in the [[family]] [[Iguanidae]], and now mostly treated as comprising either the [[infraorder]] [[Pleurodonta]] or the [[superfamily]] [[Iguanoidea]].",
parents = {"lizards", "list of sets"},
}
labels["insects"] = {
description = "{{{langname}}} terms for [[insect]]s.",
parents = {"arthropods", "list of sets"},
}
labels["isopods"] = {
description = "{{{langname}}} terms for [[gribble]]s, [[pillbug]]s, [[salve bug]]s, [[slater]]s, [[sea slater]]s, [[sowbug]]s, [[woodlouse|woodlice]], and other [[crustacean]]s in the [[order]] [[Isopoda]].",
parents = {"crustaceans", "list of sets"},
}
labels["jackfish"] = {
description = "{{{langname}}} terms for [[jack]]s, [[pompano]]s, [[jack mackerel]]s, [[scad]]s and other fish in the family [[Carangidae]].",
parents = {"percoid fish", "list of sets"},
}
labels["jawless fish"] = {
description = "{{{langname}}} terms for [[lamprey]]s and [[hagfish]]: primitive eel-like fishes that have no jaws.",
parents = {"fish", "list of sets"},
}
labels["kingfishers"] = {
description = "{{{langname}}} terms for [[kingfisher]]s.",
parents = {"coraciiforms", "list of sets"},
}
labels["kites (birds)"] = {
description = "{{{langname}}} terms relating to [[hawk]]s in the [[accipitrid]] [[subfamily|subfamilies]] [[Milvinae]] and [[Elaninae]], as well as some in the subfamily [[Perninae]].",
parents = {"birds of prey", "list of sets"},
}
labels["kyphosid fish"] = {
description = "{{{langname}}} terms for [[blackfish]], [[drummer]]s, [[footballer]]s, [[greenfish]], [[halfmoon]]s, [[luderick]]s, [[mado]]s, [[moonlighter]]s, [[nibbler]]s, [[opaleye]]s, [[sea chub]]s, [[stripey]]s, [[sweep]]s and other fish in the [[percoid]] [[family]] [[Kyphosidae]].",
parents = {"Percoid fish", "list of sets"},
}
labels["labroid fish"] = {
description = "{{{langname}}} terms for [[anemonefish]], [[cale]]s, [[cichlid]]s, [[clownfish]], [[damselfish]], [[parrotfish]], [[surfperch]], [[wrasse]]s, and other fish in the [[perciform]] [[suborder]] [[Labroidei]].",
parents = {"fish", "list of sets"},
}
labels["labyrinth fish"] = {
description = "{{{langname}}} terms for [[climbing perch]], [[gourami]]s, [[paradisefish]], [[Siamese fighting fish]] and other fish in the [[suborder]] [[Anabantoidei]].",
parents = {"fish", "list of sets"},
}
labels["lacertoid lizards"] = {
description = "{{{langname}}} terms for [[amphisbaena]]s, [[caiman lizard]]s, [[green lizard]]s, [[ocellated lizard]]s, [[racerunner]]s, [[rock lizard]]s, [[tegu]]s, [[teiid]]s, [[thunderworm]]s, [[viviparous lizard]]s, [[wall lizard]]s, [[whiptail]]s, and other [[lizard]]s in the [[superfamily]] [[Lacertoidea]].",
parents = {"lizards", "list of sets"},
}
labels["lagomorphs"] = {
description = "default-set",
parents = {"mammals", "list of sets"},
}
labels["lamniform sharks"] = {
description = "{{{langname}}} terms for [[basking shark]]s, [[goblin shark]]s, [[great white shark]]s, [[mako shark]]s, [[megamouth shark]]s, [[porbeagle]]s, [[sand shark]]s, [[thresher shark]]s, and other [[shark]]s in the [[order]] [[Lamniformes]].",
parents = {"sharks", "list of sets"},
}
labels["lampriform fish"] = {
description = "{{{langname}}} terms for [[crestfish]], [[oarfish]], [[opah]]s, [[ribbonfish]], [[velifer]]s and other fish in the [[order]] [[Lampridiformes]] (not to be confused with the unrelated [[lamprey]]s).",
parents = {"fish", "list of sets"},
}
labels["larks"] = {
description = "{{{langname}}} terms for [[lark]]s.",
parents = {"perching birds", "list of sets"},
}
labels["laughingthrushes"] = {
description = "{{{langname}}} terms for birds in the [[family]] [[Leiothrichidae]].",
parents = {"perching birds", "list of sets"},
}
labels["leaf warblers"] = {
description = "{{{langname}}} terms for birds in the family [[Phylloscopidae]].",
parents = {"warblers", "list of sets"},
}
labels["lesser apes"] = {
description = "{{{langname}}} terms for [[gibbon]]s (including [[hoolock]]s, [[lar gibbon]]s [[wow-wow]]s, etc.) and [[siamang]]s, comprising the [[family]] [[Hylobatidae]], which is closely related to the [[hominid]]s.",
parents = {"primates", "list of sets"},
}
labels["leuciscine fish"] = {
description = "{{{langname}}} terms for [[bream]]s, [[chub]]s, [[dace]]s, [[ide]]s, many [[minnow]]s, [[nase]]s, [[roach]]es, [[shiner]]s, [[ziege]]s, and other fish in the [[cyprinid]] [[subfamily]] [[Leuciscinae]], sometimes treated as the [[family]] [[Leuciscidae]], or as the [[tribe]] [[Leuciscini]] within the subfamily]] [[Cyprininae]].",
parents = {"cyprinids", "list of sets"},
}
labels["libellulid dragonflies"] = {
description = "{{{langname}}} terms for [[amberwing]]s, [[basker]]s, [[darter]]s, [[dropwing]]s, [[duskhawk]]s, [[flutterer]]s, [[glider]]s, [[meadowhawk]]s, [[pennant]]s, [[percher]]s, [[skimmer]]s, [[slimwing]]s, [[swampdragon]]s, [[twister]]s, and other [[dragonfly|dragonflies]] in the [[family]] [[Libellulidae]].",
parents = {"dragonflies and damselflies", "list of sets"},
}
labels["lice"] = {
description = "{{{langname}}} terms for [[parasitic]] insects in the [[order]] [[Psocodea]].",
parents = {"insects", "list of sets"},
}
labels["limenitidine butterflies"] = {
description = "{{{langname}}} terms for [[admiral]]s, [[clipper]]s, [[count]]s, [[duke]]s, [[purple]]s, [[sister]]s, and other [[butterfly|butterflies]] in the [[nymphalid]] [[subfamily]] [[Limenitidinae]].",
parents = {"nymphalid butterflies", "list of sets"},
}
labels["littorinimorphs"] = {
description = "{{{langname}}} terms for [[boat shell]]s, [[carrier shell]]s, [[conch]]s, [[cowry|cowries]], [[flamingo tongue]]s, [[helmet shell]]s, [[moon snail]]s, [[pebblesnail]]s, [[trumpet shell]]s, [[velutinid]]s, [[winkle]]s, [[worm-shell]]s, and other [[gastropod]]s in the [[order]] [[Littorinimorpha]]",
parents = {"gastropods", "list of sets"},
}
labels["livestock guardian dogs"] = {
description = "{{{langname}}} terms for [[livestock]] [[guardian]] [[dog]]s.",
parents = {"pastoral dogs", "list of sets"},
}
labels["lizards"] = {
description = "{{{langname}}} terms for [[lizard]]s.",
parents = {"reptiles", "list of sets"},
}
labels["loaches"] = {
description = "{{{langname}}} terms for fish in the [[cypriniform]] [[superfamily]] [[Cobitoidea]].",
parents = {"fish", "otocephalan fish", "list of sets"},
}
labels["lobe-finned fishes"] = {
description = "{{{langname}}} terms for [[coelacanth]]s, [[lungfish]] and other fishes in the [[subclass]] [[Sarcopterygii]] of the [[bony fish]]es.",
additional = "<u>Please note</u>: although the [[tetrapod]]s (including all [[reptile]]s, [[amphibian]]s, [[bird]]s and [[mammal]]s) are descended from within this group, they are excluded from this category by not being fish.",
parents = {"fish", "list of sets"},
}
labels["loons"] = {
description = "{{{langname}}} terms for [[loon]]s, birds known as [[diver]]s outside the US.",
parents = {"freshwater birds", "list of sets"},
}
labels["macaques"] = {
description = "{{{langname}}} terms for [[Barbary ape]]s, [[bonnet monkey]]s, [[crab-eating macaque]]s, [[Japanese macaque]]s, [[moor macaque]]s, [[pigtail macaque]]s, [[rhesus monkey]]s, [[toque]]s, and other [[Old World monkey]]s in the [[genus]] [[Macaca]].",
parents = {"Old World monkeys", "list of sets"},
}
labels["macropods"] = {
description = "{{{langname}}} terms for [[bettong]]s, [[kangaroo]]s, [[pademelon]]s, [[potoroo]]s, [[quokka]]s, [[wallaby]]s, and other [[marsupial]]s in the [[diprotodont]] [[suborder]] [[Macropodiformes]].",
parents = {"marsupials", "list of sets"},
}
labels["malaconotoid birds"] = {
description = "{{{langname}}} terms for [[Australian magpie]]s, [[bushshrike]]s, [[butcherbird]]s, [[boubou]]s, [[brubru]]s, [[currawong]]s, [[gonolek]]s, [[squeaker]]s, [[vanga]]s, and other birds in the [[passerine]] [[superfamily]] [[Malaconotoidea]].",
parents = {"perching birds", "list of sets"},
}
labels["male animals"] = {
description = "{{{langname}}} terms for [[male]] [[animal]]s.",
parents = {"animals", "male", "list of sets"},
}
labels["mammals"] = {
description = "{{{langname}}} terms for [[mammal]]s.",
parents = {"vertebrates", "list of sets"},
}
labels["marsupials"] = {
description = "{{{langname}}} terms for [[marsupial]]s.",
parents = {"mammals", "list of sets"},
}
labels["mayflies"] = {
description = "{{{langname}}} terms for insects in the [[order]] [[Ephemeroptera]].",
parents = {"insects", "list of sets"},
}
labels["megalopterans"] = {
description = "{{{langname}}} terms for [[alderfly|alderflies]], [[dobsonfly|dobsonflies]], [[fishfly|fishflies]] and other insects in the [[order]] [[Megaloptera]].",
parents = {"insects", "list of sets"},
}
labels["meliphagoid birds"] = {
description = "{{{langname}}} terms for [[blue wren]]s, [[bristlebird]]s, [[emu-wren]]s, [[fairywren]]s, [[gerygone]]s, [[grasswren]]s, [[honeyeater]]s, [[pardalote]]s, [[pilotbird]]s, [[redthroat]]s, [[scrubwren]]s, [[thornbill]]s, [[weebill]]s, [[whiteface]]s, and other birds in the [[passerine]] [[superfamily]] [[Meliphagoidea]].",
parents = {"perching birds", "list of sets"},
}
labels["mephitids"] = {
description = "{{{langname}}} terms for [[mephitid]]s: skunks and stink badgers.",
parents = {"carnivores", "list of sets"},
}
labels["mergansers"] = {
description = "{{{langname}}} terms for [[diving]] [[duck]]s in the [[genus]] ''[[Mergus]]'' and a few similar species.",
parents = {"ducks", "list of sets"},
}
labels["mimids"] = {
description = "{{{langname}}} terms for [[catbird]]s, [[mockingbird]]s, [[thrasher]]s and other birds in the [[passerine]] family [[Mimidae]].",
parents = {"perching birds", "list of sets"},
}
labels["mites and ticks"] = {
description = "{{{langname}}} terms for [[arachnid]]s in the [[subclass]] [[Acari]].",
parents = {"arachnids", "list of sets"},
}
labels["mollusks"] = {
description = "{{{langname}}} terms for [[mollusk]]s.",
parents = {"animals", "list of sets"},
}
labels["monkeys"] = {
description = "{{{langname}}} terms for monkeys.",
parents = {"primates", "list of sets"},
}
labels["monotremes"] = {
description = "default-set",
parents = {"mammals", "list of sets"},
}
labels["mosquitoes"] = {
description = "{{{langname}}} terms for [[insect]]s in the [[dipteran]] [[family]] [[Culicidae]].",
parents = {"culicomorphs", "list of sets"},
}
labels["moths"] = {
description = "default-set",
parents = {"insects", "list of sets"},
}
labels["murids"] = {
description = "{{{langname}}} terms for a number of [[rats]], [[mice]], and other [[rodent]]s in the [[Old World]] [[family]] [[Muridae]].",
parents = {"rodents", "list of sets"},
}
labels["muscicapids"] = {
description = "{{{langname}}} terms for birds in the [[passerine]] family [[Muscicapidae]].",
parents = {"perching birds", "list of sets"},
}
labels["mustelids"] = {
description = "{{{langname}}} terms for [[mustelid]]s.",
parents = {"carnivores", "list of sets"},
}
labels["mygalomorph spiders"] = {
description = "{{{langname}}} terms for [[baboon spider]]s, [[barking spider]]s, [[bird spider]]s, [[purseweb spider]]s, [[tarantula]]s, [[trapdoor spider]]s, and other [[spider]]s in the [[infraorder]] [[Mygalomorphae]].",
parents = {"spiders", "list of sets"},
}
labels["myriapods"] = {
description = "{{{langname}}} terms for [[centipede]]s, [[millipede]]s, [[pauropod]]s, [[symphylan]]s, and other [[arthropod]]s in the [[subphylum]] [[Myriapoda]].",
parents = {"arthropods", "list of sets"},
}
labels["nematodes"] = {
description = "{{{langname}}} terms for [[filaria]], [[gapeworm]]s, [[lungworm]]s, [[pinworm]]s, [[threadworm]]s, [[wheatworm]]s, [[whipworm]]s and other [[worm]]s in the [[phylum]] [[Nematoda]].",
parents = {"worms", "list of sets"},
}
labels["neogastropods"] = {
description = "{{{langname}}} terms for [[admiral shell]]s, [[cone snail]]s, [[harp shell]]s, [[murex]]es, [[olive]]s, [[rhombus]]es, [[spindle]]s, [[tulip shell]]s, [[turnip shell]]s, [[volute]]s, [[whelk]]s, [[winkle]]s and other [[gastropod]]s in the [[clade]] [[Neogastropoda]] (treated as an [[order]] in some classifications).",
parents = {"gastropods", "list of sets"},
}
labels["New World monkeys"] = {
description = "{{{langname}}} terms for [[capuchin]]s, [[howler monkey]]s, [[marmoset]]s, [[night monkey]]s, [[saki]]s, [[spider monkey]]s, [[squirrel monkey]]s, [[tamarin]]s, [[titi]]s, [[uakari]]s, [[woolly monkey]]s, and other [[monkey]]s in the [[parvorder]] [[Platyrrhini]].",
parents = {"monkeys", "list of sets"},
}
labels["New World sparrows"] = {
description = "{{{langname}}} terms for [[sparrow]]- and [[finch]]-like birds in the [[passerine]] [[family]] [[Passerellidae]], until recently considered part of the family [[Emberizidae]].",
parents = {"perching birds", "list of sets"},
}
labels["New World warblers"] = {
description = "{{{langname}}} terms for birds in the family [[Parulidae]].",
parents = {"warblers", "list of sets"},
}
labels["newts"] = {
description = "{{{langname}}} terms for [[terrestrial]] [[salamander]]s in the [[subfamily]] [[Pleurodelinae]].",
parents = {"salamanders", "list of sets"},
}
labels["neuropterans"] = {
description = "{{{langname}}} terms for [[antlion]]s, [[lacewing]]s, [[mantisfly|mantisflies]], [[owlfly|owlflies]] and other insects in the [[order]] [[Neuroptera]].",
parents = {"insects", "list of sets"},
}
labels["noctuoid moths"] = {
description = "{{{langname}}} terms for [[armyworm]]s, [[cinnabar]]s, [[corn earworm]]s, [[cutworm]]s, [[gypsy moth]]s, [[owlet moth]]s, [[processionary|processionaries]], [[tiger moth]]s, [[underwing]]s, [[wainscot]]s, [[wooly bear]]s, and many other [[moth]]s (and [[caterpillar]]s) in the [[superfamily]] [[Noctuoidea]].",
parents = {"moths", "list of sets"},
}
labels["nudibranchs"] = {
description = "{{{langname}}} terms for [[sea slug]]s in the [[gastropod]] [[order]] [[Nudibranchia]].",
parents = {"gastropods", "list of sets"},
}
labels["nymphalid butterflies"] = {
description = "{{{langname}}} terms for [[admiral]]s, [[brown]]s, [[buckeye]]s, [[checkerspot]]s, [[emperor]]s, [[fritillary|fritillaries]], [[leafwing]]s, [[longwing]]s, [[monarch]]s, [[morpho]]s, [[painted lady|painted ladies]], [[ringlet]]s, [[satyr]]s, [[sister]]s, [[snout]]s, [[tortoiseshell]]s, and other butterflies in the [[family]] [[Nymphalidae]].",
parents = {"butterflies", "list of sets"},
}
labels["octopuses"] = {
description = "default-set",
parents = {"cephalopods", "list of sets"},
}
labels["odd-toed ungulates"] = {
description = "{{{langname}}} terms for [[mammal]]s in the [[order]] [[Perissodactyla]], including the [[equid]]s, [[tapir]]s and [[rhinoceros]]es.",
parents = {"mammals", "list of sets"},
}
labels["oestroid flies"] = {
description = "{{{langname}}} terms for [[blowfly|blowflies]], [[bluebottle]]s, [[botfly|botflies]], [[flesh fly|flesh fles]], [[greenbottle]]s, [[mango fly|mango flies]], [[screwworm]]s, [[tachinid]]s, [[torsalo]]s, [[tumbu fly|tumbu flies]], [[warble fly|warble flies]], and other flies in the [[superfamily]] [[Oestroidea]].",
parents = {"dipterans", "list of sets"},
}
labels["Old World monkeys"] = {
description = "{{{langname}}} terms for [[baboon]]s, [[colobus]], [[douc]]s, [[gelada]]s, [[green monkey]]s, [[grivet]]s, [[langur]]s, [[malbrouck]]s, [[mandrill]]s, [[mangabey]]s, [[patas monkey]]s, [[proboscis monkey]]s, [[talapoin]]s, [[vervet]]s, and other [[monkeys]] in the [[family]] [[Cercopithecidae]], the only [[members]] of the [[parvorder]] [[Catarrhini]] aside from the greater/lesser apes and humans.",
parents = {"monkeys", "list of sets"},
}
labels["ornithopods"] = {
description = "{{{langname}}} terms for [[camptosaurid]]s, [[hadrosaur]]s, [[iguanodontid]]s, [[lambeosaurid]]s, [[rhabdodontid]]s, [[saurolophid]]s, [[thescelosaurid]]s, [[trachodontid]]s, and other [[dinosaur]]s in the [[ornithischian]] [[clade]] [[Ornithopoda]].",
parents = {"dinosaurs", "list of sets"},
}
labels["osteoglossomorph fish"] = {
description = "{{{langname}}} terms for [[aba]]s, [[arapaima]]s, [[arowana]]s, [[butterfly fish]], [[elephantfish]], [[featherback]]s, [[mooneye]]s and other fish in the [[superorder]] [[Osteoglossomorpha]].",
parents = {"fish", "list of sets"},
}
labels["otidimorph birds"] = {
description = "{{{langname}}} terms for [[bustard]]s in the [[family]] [[Otididae]] and [[order]] [[Otidiformes]]; [[turaco]]s or [[lourie]]s, [[go-away bird]]s, [[plantain-eater]]s, etc., in the [[family]] [[Musophagidae]] and [[order]] [[Musophagiformes]]; and [[cuckoo]]s in the [[family]] [[Cuculidae]] and [[order]] [[Cuculiformes]]; all in the [[clade]] [[Otidimorphae]].",
parents = {"birds", "list of sets"},
}
labels["otocephalan fish"] = {
description = "{{{langname}}} terms for [[anchovy|anchovies]], [[beaked salmon]], [[carp]], [[catfish]], [[characin]]s, [[electric eel]]s, [[ghost knifefish]], [[herring]]s, [[loach]]es, [[milkfish]], [[minnow]]s, [[mousefish]], [[slickhead]]s, [[sucker]]s, [[tubeshoulder]]s, and other fish in the [[clade]] [[Otocephala]].",
parents = {"fish", "list of sets"},
}
labels["owls"] = {
description = "{{{langname}}} terms for [[owl]]s.",
parents = {"birds of prey", "list of sets"},
}
labels["pangolins"] = {
description = "{{{langname}}} terms for [[mammal]]s in the [[order]] [[Pholidota]].",
parents = {"mammals", "list of sets"},
}
labels["panthers"] = {
description = "{{{langname}}} terms for [[panther]]s in the sense of members of the genus ''[[Panthera]]''.",
parents = {"felids", "list of sets"},
}
labels["parrots"] = {
description = "{{{langname}}} terms for [[parrot]]s.",
parents = {"birds", "list of sets"},
}
labels["pastoral dogs"] = {
description = "{{{langname}}} terms for [[pastoral]] [[dog]]s.",
parents = {"dogs", "list of sets"},
}
labels["penguins"] = {
description = "{{{langname}}} terms for [[penguin]]s.",
parents = {"birds", "list of sets"},
}
labels["perch and darters"] = {
description = "{{{langname}}} terms for fish in the family [[Percidae]].",
parents = {"percoid fish", "list of sets"},
}
labels["perching birds"] = {
description = "{{{langname}}} terms for [[passerine]]s or perching birds: members of the order [[Passeriformes]].",
parents = {"birds", "list of sets"},
}
labels["percoid fish"] = {
description = "{{{langname}}} terms for [[archerfish]], [[bass]], [[bigeye]]s, [[bluefish]], [[butterflyfish]], [[cardinalfish]], [[cobia]], [[croaker]]s, [[flagtail]]s, [[goatfish]], [[grouper]]s, [[grunt]]s, [[horse mackerel]], [[jack]]s, [[jawfish]], [[leaffish]], [[mahi-mahi]], [[mojarra]], [[perch]], [[pomfret]]s, [[pompano]], [[ponyfish]], [[porgy|porgies]], [[remora]]s, [[roosterfish]], [[sea bass]], [[sea bream]], [[snapper]], [[sunfish]], [[sweeper]]s, [[threadfin]], [[tilefish]], [[wreckfish]], and other [[perciform]] fish in the [[superfamily]] [[Percoidea]].",
parents = {"fish", "list of sets"},
}
labels["piciforms"] = {
description = "{{{langname}}} terms for [[woodpecker]]s, [[aracari]]s, [[coppersmith]]s, [[honeyguide]]s, [[jacamar]]s, [[nunlet]]s, [[puffbird]]s, [[toucan]]s, and other birds in the [[order]] [[Piciformes]].",
parents = {"birds", "list of sets"},
}
labels["pierid butterflies"] = {
description = "{{{langname}}} terms for [[brimstone]]s, [[orange tip]]s, [[sulfur]]s, [[white]]s and other [[butterfly|butterflies]] in the [[family]] [[Pieridae]].",
parents = {"butterflies", "list of sets"},
}
labels["pigeons"] = {
description = "{{{langname}}} terms for [[pigeon]]s.",
parents = {"birds", "list of sets"},
}
labels["pigs"] = {
description = "{{{langname}}} terms for [[pig]]s.",
parents = {"even-toed ungulates", "livestock", "list of sets"},
}
labels["pikes (fish)"] = {
description = "{{{langname}}} terms for fish in the family [[Esocidae]].",
parents = {"fish", "list of sets"},
}
labels["pinnipeds"] = {
description = "default-set",
parents = {"carnivores", "list of sets"},
}
labels["pipits and wagtails"] = {
description = "{{{langname}}} terms for birds in the [[passerine]] family [[Motacillidae]].",
parents = {"perching birds", "list of sets"},
}
labels["placoderms"] = {
description = "{{{langname}}} terms for [[extinct]] armored fish of the [[class]] [[Placodermi]] from the [[Silurian]] and [[Devonian]] [[geologic]] [[period]]s.",
parents = {"fish", "list of sets"},
}
labels["plovers and lapwings"] = {
description = "{{{langname}}} terms for birds in the [[charadriiform]] [[family]] [[Charadriidae]].",
parents = {"shorebirds", "list of sets"},
}
labels["pomfrets"] = {
description = "{{{langname}}} terms for fish in the family [[Bramidae]].",
parents = {"percoid fish", "list of sets"},
}
labels["primates"] = {
description = "{{{langname}}} terms for [[primate]]s.",
parents = {"mammals", "list of sets"},
}
labels["procyonids"] = {
description = "{{{langname}}} terms for [[procyonid]]s: ([[raccoon]]s, [[coati]]s, [[kinkajou]]s, [[olingo]]s, [[ringtail]]s and [[cacomistle]]s).",
parents = {"carnivores", "list of sets"},
}
labels["prosimians"] = {
description = "default-set",
parents = {"primates", "list of sets"},
}
labels["pterosaurs"] = {
description = "{{{langname}}} terms for [[pterosaur]]s.",
parents = {"reptiles", "list of sets"},
}
labels["pyraloid moths"] = {
description = "{{{langname}}} terms for [[bee moth]]s, [[flour moth]]s, [[leaf crumpler]]s, [[magpie moth]]s, [[melonworm]]s, [[mint moth]]s, [[orangeworm]]s, [[pantry moth]]s, [[pickleworm]]s, [[snout moth]]s, [[veneer moth]]s, [[wax moth]]s and other [[crambid]] and [[pyralid]] [[moths]] in the [[superfamily]] [[Pyraloidea]].",
parents = {"moths", "list of sets"},
}
labels["rabbits"] = {
description = "default-set",
parents = {"lagomorphs", "list of sets"},
}
labels["rallids"] = {
description = "{{{langname}}} terms for [[rallid]]s: [[rail]]s and other birds in the family [[Rallidae]].",
parents = {"gruiforms", "list of sets"},
}
labels["ratites"] = {
description = "{{{langname}}} terms for [[ratite]]s: birds in the superorder [[Palaeognathae]], including large flightless birds such as [[ostrich]]es, and [[emu]]s, as well as the smaller [[kiwi]]s and [[flighted]] [[tinamous]].",
parents = {"birds", "list of sets"},
}
labels["rays and skates"] = {
description = "{{{langname}}} terms for [[fish]] in the superorder [[Batoidea]].",
parents = {"fish", "list of sets"},
}
labels["reindeers"] = {
description = "default-set",
parents = {"cervids"},
}
labels["reptiles"] = {
description = "{{{langname}}} terms for [[reptile]]s.",
parents = {"vertebrates", "list of sets"},
}
labels["retrievers"] = {
description = "default-set",
parents = {"gun dogs", "list of sets"},
}
labels["rhinoceroses"] = {
description = "{{{langname}}} terms for [[rhinoceros]]es, [[mammal]]s in the [[perissodactylic]] [[family]] [[Rhinocerotidae]].",
parents = {"odd-toed ungulates", "list of sets"},
}
labels["rodents"] = {
description = "{{{langname}}} terms for [[rodent]]s.",
parents = {"mammals", "list of sets"},
}
labels["salamanders"] = {
description = "{{{langname}}} terms for [[amphiuma]]s, [[axolotl]]s, [[hellbender]]s, [[mud puppy|mud puppies]], [[olm]]s, [[newt]]s, [[salamander]]s, [[siren]]s, and other [[amphibian]]s in the [[order]] [[Caudata]].",
parents = {"amphibians", "list of sets"},
}
labels["salmonids"] = {
description = "{{{langname}}} terms for [[salmon]]s, [[trout]], and other fish in the family [[Salmonidae]].",
parents = {"fish", "list of sets"},
}
labels["saturniid moths"] = {
description = "{{{langname}}} terms for [[Atlas moth]]s, [[cecropia]]s, [[hickory horned devil]]s, [[io moth]]s, [[luna moth]]s, [[polyphemus moth]]s, and other [[moth]]s (and [[caterpillar]]s) in the [[family]] [[Saturniidae]].",
parents = {"moths", "list of sets"},
}
labels["satyrine butterflies"] = {
description = "{{{langname}}} terms for [[brown]]s, [[forester]]s, [[grayling]]s, [[heath]]s, [[palmfly|palmflies]], [[ringlet]]s, [[satyr]]s, and other [[butterfly|butterflies]] in the [[nymphalid]] [[subfamily]] [[Satyrinae]].",
parents = {"nymphalid butterflies", "list of sets"},
}
labels["sauropods"] = {
description = "{{{langname}}} terms for [[apatosaur]]s, [[brachiosaur]]s, [[brontosaur]]s, [[camarasaur]]s, [[cetiosaur]]s, [[diplodocus]]es, [[saltasaurid]]s, [[titanosaurian]]s, [[turiasaur]]s, [[vulcanodontid]]s, and other [[dinosaurs]] in the [[saurischian]] [[infraorder]] [[Sauropoda]].",
parents = {"dinosaurs", "list of sets"},
}
labels["sawflies and wood wasps"] = {
description = "{{{langname}}} terms for [[horntail]]s, [[pigeon tremex]], [[rose slug]]s, [[sawfly|sawflies]], [[wood wasp]]s, and other primitive [[hymenopteran]]s in the [[suborder]] [[Symphyta]].",
parents = {"hymenopterans", "list of sets"},
}
labels["scale insects"] = {
description = "{{{langname}}} terms for [[insect]]s in the [[superfamily]] [[Coccoidea]].",
parents = {"hemipterans", "list of sets"},
}
labels["scarabaeoids"] = {
description = "{{{langname}}} terms for [[cockchafer]]s, [[dor]]s, [[dung beetle]]s, [[June beetle]]s, [[rain beetle]]s, [[rose chafer]]s, [[scarab]]s, [[stag beetle]]s, and other beetles in the [[superfamily]] [[Scarabaeoidea]].",
parents = {"beetles", "list of sets"},
}
labels["scenthounds"] = {
description = "default-set",
parents = {"hunting dogs", "list of sets"},
}
labels["scincomorph lizards"] = {
description = "{{{langname}}} terms for [[blue-tongue lizard]]s, [[night lizard]]s, [[sandfish]], [[skink]]s, [[sungazer]]s, and other [[lizard]]s in the [[infraorder]] [[Scincomorpha]].",
parents = {"lizards", "list of sets"},
}
labels["scolopacids"] = {
description = "{{{langname}}} terms for [[curlew]]s, [[dunlin]]s, [[godwit]]s, [[knot]]s, [[redshank]]s, [[ruff]]s, [[sandpiper]]s, [[snipe]]s, [[stint]]s, [[turnstone]]s, [[tattler]]s, [[whimbrel]]s, [[woodcock]]s, [[yellowleg]]s, and other birds in the [[charadriiform]] [[family]] [[Scolopacidae]].",
parents = {"shorebirds", "list of sets"},
}
labels["scombroids"] = {
description = "{{{langname}}} terms for [[mackerel]]s, [[tuna]]s, [[barracuda]]s, [[swordfish]], and other fish in the suborder [[Scombroidei]].",
parents = {"fish", "list of sets"},
}
labels["scorpaeniform fish"] = {
description = "{{{langname}}} terms for [[bullhead]]s, [[cabezon]], [[golomyanka]], [[greenling]]s, [[gurnard]]s, [[Irish lord]], [[lionfish]], [[lumpsucker]]s, [[pigfish]], [[poacher]]s, [[sablefish]], [[scorpionfish]], [[sculpin]]s, [[sea raven]]s, [[sea toad]]s, [[skilfish]], [[snailfish]], [[stonefish]], [[wingfish]], and other fish in the [[order]] [[Scorpaeniformes]].",
parents = {"fish", "list of sets"},
}
labels["scorpions"] = {
description = "{{{langname}}} terms for true [[scorpion]]s: [[arachnid]]s in the [[order]] [[Scorpiones]].",
parents = {"arachnids", "list of sets"},
}
labels["screamers"] = {
description = "{{{langname}}} terms for [[screamer]]s: birds in the family [[Anhimidae]], related to [[duck]]s and [[geese]].",
parents = {"birds", "list of sets"},
}
labels["seabirds"] = {
description = "default-set",
parents = {"birds", "list of sets"},
}
labels["sea anemones"] = {
description = "{{{langname}}} terms for [[cnidarian]]s in the [[order]] [[Actiniaria]].",
parents = {"cnidarians", "list of sets"},
}
labels["sea cucumbers"] = {
description = "{{{langname}}} terms for [[echinoderm]]s in the [[class]] [[Holothuroidea]].",
parents = {"echinoderms", "list of sets"},
}
labels["sea urchins"] = {
description = "{{{langname}}} terms for [[echinoderm]]s in the [[class]] [[Echinoidea]], including the [[sand dollar]]s.",
parents = {"echinoderms", "list of sets"},
}
labels["sea turtles"] = {
description = "{{{langname}}} terms for [[flatback]]s, [[green turtle]]s, [[hawksbill]]s, [[leatherback]]s, [[loggerhead]]s, [[ridley]]s, and other [[turtle]]s in the [[superfamily]] [[Chelonioidea]].",
parents = {"turtles", "list of sets"},
}
labels["seals"] = {
description = "default-set",
parents = {"pinnipeds", "list of sets"},
}
labels["sebastids"] = {
description = "{{{langname}}} terms for fish in the family [[Sebastidae]].",
parents = {"scorpaeniform fish", "list of sets"},
}
labels["serranids"] = {
description = "{{{langname}}} terms for [[sea bass]], [[grouper]]s, [[rockcod]]s, [[comber]]s and other fish in the family [[Serranidae]].",
parents = {"percoid fish", "list of sets"},
}
labels["sharks"] = {
description = "{{{langname}}} terms for [[shark]]s.",
parents = {"fish", "list of sets"},
}
labels["sheep"] = {
description = "default-set",
parents = {"caprines", "livestock", "list of sets"},
}
labels["shorebirds"] = {
description = "{{{langname}}} terms for [[shorebird]]s.",
parents = {"birds", "list of sets"},
}
labels["shrikes"] = {
description = "{{{langname}}} terms for [[shrike]]s.",
parents = {"perching birds", "corvoid birds", "list of sets"},
}
labels["sighthounds"] = {
description = "default-set",
parents = {"hunting dogs", "list of sets"},
}
labels["skippers"] = {
description = "{{{langname}}} terms for insects in the family [[Hesperiidae]].",
parents = {"butterflies", "list of sets"},
}
labels["smelts"] = {
description = "{{{langname}}} terms for fish in the [[order]] [[Osmeriformes]].",
parents = {"fish", "list of sets"},
}
labels["snails"] = {
description = "default-set",
parents = {"gastropods", "list of sets"},
}
labels["snakes"] = {
description = "{{{langname}}} terms for [[snake]]s.",
parents = {"reptiles", "list of sets"},
}
labels["snappers"] = {
description = "{{{langname}}} terms for fish in the [[family]] [[Lutjanidae]].",
parents = {"percoid fish", "list of sets"},
}
labels["soft corals"] = {
description = "{{{langname}}} terms for [[calcaxonian]]s, [[dead man's fingers]], [[fan coral]]s, [[gorgonian]]s, [[holaxonian]]s, [[scleraxonian]]s, [[sea feather]]s, [[sea willow]]s, [[stoloniferan]]s, [[whip coral]]s, and other marine animals in the [[cnidarian]] order [[Alcyonacea]].",
parents = {"cnidarians", "list of sets"},
}
labels["soricomorphs"] = {
description = "{{{langname}}} terms for [[shrew]]s, [[mole]]s, [[solenodon]]s, and other [[mammal]]s in the [[order]] [[Soricomorpha]].",
parents = {"mammals", "list of sets"},
}
labels["spaniels"] = {
description = "default-set",
parents = {"gun dogs", "list of sets"},
}
labels["sparids"] = {
description = "{{{langname}}} terms for [[sea breams]], [[porgie]]s, [[scup]]s and other fish in the family [[Sparidae]].",
parents = {"percoid fish", "list of sets"},
}
labels["sphinx moths"] = {
description = "{{{langname}}} terms for [[hawkmoth]]s, [[hornworm]]s, [[hummingbird moth]]s, [[sphinx moth]]s,[[tomato worm]]s, and other [[moth]]s (and [[caterpillar]]s) in the [[family]] [[Sphingidae]].",
parents = {"moths", "list of sets"},
}
labels["spiders"] = {
description = "{{{langname}}} terms for [[spider]]s.",
parents = {"arachnids", "list of sets"},
}
labels["sponges"] = {
description = "{{{langname}}} terms for [[aquatic]] [[animal]]s in the [[phylum]] [[Porifera]].",
parents = {"animals", "list of sets"},
}
labels["squid"] = {
description = "default-set",
parents = {"cephalopods", "list of sets"},
}
labels["squirrels"] = {
description = "{{{langname}}} terms for [[squirrel]]s, [[chipmunk]]s, [[marmot]]s, [[prairie dog]]s, [[woodchuck]]s and other [[rodent]]s in the family [[Sciuridae]].",
parents = {"rodents", "list of sets"},
}
labels["staphylinoid beetles"] = {
description = "{{{langname}}} terms for [[beetle]]s in the [[superfamily]] [[Staphylinoidea]].",
parents = {"beetles", "list of sets"},
}
labels["starlings"] = {
description = "{{{langname}}} terms for [[starling]]s, [[mynah]]s, and other birds in the [[passerine]] family [[Sturnidae]].",
parents = {"perching birds", "list of sets"},
}
labels["stick insects"] = {
description = "{{{langname}}} terms for [[insect]]s (including the [[leaf insect]]s) in the [[order]] known as either [[Phasmida]] or [[Phasmatodea]], which are noted for their extreme adaptations in form and color to look like parts of the plants they feed on.",
parents = {"insects", "list of sets"},
}
labels["stoneflies"] = {
description = "{{{langname}}} terms for [[freshwater]] [[aquatic]] [[insect]]s in the [[order]] [[Plecoptera]].",
parents = {"insects", "list of sets"},
}
labels["stony corals"] = {
description = "{{{langname}}} terms for marine animals in the [[cnidarian]] order [[Scleractinia]].",
parents = {"cnidarians", "list of sets"},
}
labels["storks"] = {
description = "default-set",
parents = {"freshwater birds", "list of sets"},
}
labels["stromateoid fish"] = {
description = "{{{langname}}} terms for [[barrelfish]], [[blue eye cod]], [[dollarfish]], [[driftfish]], [[lafayette]], [[medusafish]], [[rudderfish]], [[squaretail]], [[warehou]], and other fish in the [[perciform]] [[suborder]] [[Stromateoidei]].",
parents = {"fish", "list of sets"},
}
labels["sturgeons"] = {
description = "{{{langname}}} terms for fish in the family [[Acipenseridae]].",
parents = {"fish", "list of sets"},
}
labels["suboscines"] = {
description = "{{{langname}}} terms for [[antpitta]]s, [[antshrike]]s, [[antthrush]]es, [[asity|asities]], [[broadbill]]s, [[cotinga]]s, [[crescentchest]]s, [[gnateater]]s, [[manakin]]s, [[ovenbird]]s, [[pitta]]s, [[sharpbill]]s, [[spadebill]]s, [[tapaculo]]s, [[tityra]]s, [[tyrant flycatcher]]s, [[woodcreeper]]s, and other birds in the [[passerine]] [[suborder]] [[Tyranni]].",
parents = {"perching birds", "list of sets"},
}
labels["suckers (fish)"] = {
description = "{{{langname}}} terms for [[buffalo fish]], [[cuiui]], [[jumprock]]s, [[quillback]], [[redhorse]], [[sucker]]s, and other freshwater fish in the family [[Catostomidae]].",
parents = {"fish", "otocephalan fish", "list of sets"},
}
labels["suliform birds"] = {
description = "{{{langname}}} terms for [[anhinga]]s, [[booby|boobies]], [[cormorant]]s, [[frigatebird]]s, [[gannet]]s, and other [[seabirds]] in the [[order]] [[Suliformes]].",
parents = {"seabirds", "list of sets"},
}
labels["sunfish"] = {
description = "{{{langname}}} terms for freshwater fish in the family [[Centrarchidae]].",
parents = {"percoid fish", "list of sets"},
}
labels["swallows"] = {
description = "{{{langname}}} terms for [[swallow]]s.",
parents = {"perching birds", "list of sets"},
}
labels["swallowtails"] = {
description = "{{{langname}}} terms for [[apollo]]s, [[batwing]]s, [[birdwing]]s,, [[clubtail]]s, [[festoon]]s, [[flying handkerchief]]s, [[Helen]]s, [[jay]]s, [[mime]]s, [[parnassian]]s, [[rose]]s, [[swallowtail]]s, [[swordtail]]s, [[triangle]]s, [[turnus]]es, [[windmill]]s, [[zebra]]s, and other [[butterfly|butterflies]] in the [[family]] [[Papilionidae]], notable for (mostly) having tail-like extensions on their [[hindwing]]s.",
parents = {"butterflies", "list of sets"},
}
labels["swans"] = {
description = "default-set",
parents = {"anatids", "list of sets"},
}
labels["syngnathiform fish"] = {
description = "{{{langname}}} terms for [[bellowsfish]], [[cornetfish]], [[pipefish]], [[razorfish]], [[sea dragon]]s, [[sea horse]]s, [[snipefish]], [[trumpetfish]], and other fish in the [[order]] [[Syngnathiformes]].",
parents = {"fish", "list of sets"},
}
labels["tanagers"] = {
description = "{{{langname}}} terms for [[bananaquit]]s, [[conebill]]s, [[dacnis]]es, [[Darwin's finch]]es, [[grassquit]]s, [[ground finch]]es, [[honeycreeper]]s, [[pardusco]]s, [[tanager]]s, and other [[passerine]] birds in the family [[Thraupidae]].",
parents = {"perching birds", "list of sets"},
}
labels["tenebrionoid beetles"] = {
description = "{{{langname}}} terms for [[aderid]]s, [[anthicid]]s, [[blister beetle]]s, [[borid]]s, [[ciid]]s, [[flour beetle]]s, [[darkling beetle]]s, [[mealworm]]s, [[melandryid]]s, [[mordellid]]s, [[mycetophagid]]s, [[oedemerid]]s, [[pinacate beetle]]s, [[pyrochroid]]s, [[pythid]]s, [[ripiphorid]]s, [[salpingid]]s, [[toktokkie]]s, [[ulodid]]s, [[wharf borer]]s, [[zopherid]]s and other [[beetle]]s in the [[superfamily]] [[Tenebrionoidea]].",
parents = {"beetles", "list of sets"},
}
labels["tephritoid flies"] = {
description = "{{{langname}}} terms for [[cheese fly|cheese flies]], [[tephritid]] [[fruit fly|fruit flies]], [[picture-winged fly|picture-winged flies]] and other [[fly|flies]] in the [[dipteran]] [[superfamily]] [[Tephritoidea]].",
parents = {"dipterans", "list of sets"},
}
labels["termites"] = {
description = "{{{langname}}} terms for [[termite]]s, [[insect]]s in the former [[order]] [[Isoptera]], which is now considered a [[suborder]] or other group within the [[cockroach]]es in the order [[Blattodea]].",
parents = {"insects", "cockroaches", "list of sets"},
}
labels["terns"] = {
description = "{{{langname}}} terms for [[tern]]s, [[seabirds]] in the [[family]] [[Sternidae]].",
parents = {"seabirds", "list of sets"},
}
labels["tetraodontiforms"] = {
description = "{{{langname}}} terms for [[pufferfish]], [[triggerfish]], [[boxfish]], [[ocean sunfish]] and other fish in the order [[Tetraodontiformes]].",
parents = {"fish", "list of sets"},
}
labels["terriers"] = {
description = "default-set",
parents = {"hunting dogs", "list of sets"},
}
labels["theropods"] = {
description = "{{{langname}}} terms for [[dinosaur]]s in the [[clade]] [[Theropoda]].",
parents = {"dinosaurs", "list of sets"},
}
labels["thrushes"] = {
description = "{{{langname}}} terms for [[thrush]]es.",
parents = {"perching birds", "list of sets"},
}
labels["ticks"] = {
description = "{{{langname}}} terms for [[bloodsucking]] [[arachnids]] in the [[order]] [[Ixodida]] (also known as [[Metastigmata]]).",
parents = {"mites and ticks", "list of sets"},
}
labels["tinamous"] = {
description = "{{{langname}}} terms for [[tinamou]]s.",
parents = {"ratites", "list of sets"},
}
labels["tits"] = {
description = "{{{langname}}} terms for [[tit]]s, birds known as [[chickadee]]s in the US.",
parents = {"perching birds", "list of sets"},
}
labels["toothcarps"] = {
description = "{{{langname}}} terms for [[four-eyed fish]], [[guppy|guppies]], [[killifish]], [[molly|mollies]], [[mummichog]]s, [[platy|platies]], [[swordtail]]s, [[topminnow]]s and other fish in the [[order]] [[Cyprinodontiformes]].",
parents = {"fish", "list of sets"},
}
labels["tortricid moths"] = {
description = "{{{langname}}} terms for [[moth]]s (and [[caterpillar]]s) in the [[family]] [[Tortricidae]].",
parents = {"moths", "list of sets"},
}
labels["trachinoid fish"] = {
description = "{{{langname}}} terms for [[black swallower]]s, [[blue cod]], [[duckbill]]s, [[gaper]]s, [[sand eel]]s, [[torrentfish]], [[weeverfish]] and other fish in the [[perciform]] [[suborder]] [[Trachinoidei]].",
parents = {"fish", "list of sets"},
}
labels["toy dogs"] = {
description = "{{{langname}}} terms for [[toy]] [[dog]]s.",
parents = {"dogs", "list of sets"},
}
labels["trilobites"] = {
description = "{{{langname}}} terms for [[trilobite]]s.",
parents = {"arthropods", "list of sets"},
}
labels["true bugs"] = {
description = "{{{langname}}} terms for [[insect]]s in the [[hemipteran]] suborder [[Heteroptera]].",
parents = {"hemipterans", "list of sets"},
}
labels["true finches"] = {
description = "{{{langname}}} terms for [[finch]]es in the [[passerine]] family [[Fringillidae]].",
parents = {"perching birds", "list of sets"},
}
labels["true jellyfish"] = {
description = "{{{langname}}} terms for [[cnidarian]]s in the [[class]] [[Scyphozoa]].",
parents = {"cnidarians", "list of sets"},
}
labels["true sparrows"] = {
description = "{{{langname}}} terms for [[passerine]] birds in the family [[Passeridae]] (for other birds called sparrows, see the [[emberizid]]s).",
parents = {"perching birds", "list of sets"},
}
labels["tubenose birds"] = {
description = "{{{langname}}} terms for [[albatross]]es, [[fulmar]]s, [[petrel]]s, [[prion]]s, [[shearwater]]s, and other [[seabird]]s in the [[order]] [[Procellariiformes]].",
parents = {"seabirds", "list of sets"},
}
labels["tunicates"] = {
description = "default-set",
parents = {"animals", "list of sets"},
}
labels["turtles"] = {
description = "default-set",
parents = {"reptiles", "list of sets"},
}
labels["tyrant flycatchers"] = {
description = "{{{langname}}} terms for [[passerine]] birds in the family [[Tyrannidae]].",
parents = {"suboscines", "list of sets"},
}
labels["ursids"] = {
description = "{{{langname}}} terms for [[ursid]]s ([[bear]]s).",
parents = {"carnivores", "list of sets"},
}
labels["Venerida order mollusks"] = {
description = "[[basket clam]]s, [[bean clam]]s, [[boring clam]]s, [[cockle]]s, [[duck clam]]s, [[giant clam]]s, [[hard clam]]s, [[lentil shell]]s, [[pipi]]s, [[pooquaw]]s, [[quahog]]s, [[surf clam]]s, [[trough-shell]]s, [[ugari]]s, [[Venus clam]]s, [[zebra mussel]]s, and other [[bivalve]]s in the [[order]] [[Venerida]].",
parents = {"bivalves", "list of sets"},
}
labels["vertebrates"] = {
description = "{{{langname}}} terms for [[vertebrate]]s.",
parents = {"chordates", "list of sets"},
}
labels["vespids"] = {
description = "{{{langname}}} terms for [[hornet]]s, [[paper wasp]]s, [[pollen wasp]]s, [[potter wasp]]s, [[yellow jacket]]s, and other [[wasp]]s in the [[family]] [[Vespidae]].",
parents = {"hymenopterans", "list of sets"},
}
labels["vetigastropods"] = {
description = "{{{langname}}} terms for [[abalone]]s or [[ear shell]]s, [[duck's-bill limpet]]s, [[keyhole limpet]]s, [[rosary shell]]s, [[slit-shell]]s, [[topshell]]s, [[turban shell]]s, and other [[gastropod]]s in the [[clade]] [[Vetigastropoda]] (treated in some classifications as an [[order]], in others as [[subclass]]).",
parents = {"gastropods", "list of sets"},
}
labels["vipers"] = {
description = "{{{langname}}} terms for [[adder]]s, [[asp]]s, [[rattlesnake]]s, [[viper]]s, [[water moccasin]]s and other [[venomous]] snakes in the [[Viperidae]].",
parents = {"snakes", "list of sets"},
}
labels["viverrids"] = {
description = "{{{langname}}} terms for [[viverrid]]s ([[civet]]s, [[genet]]s and relatives).",
parents = {"carnivores", "list of sets"},
}
labels["vultures"] = {
description = "{{{langname}}} terms for [[vulture]]s (both Old World and New World).",
parents = {"birds of prey", "list of sets"},
}
labels["warblers"] = {
description = "{{{langname}}} terms for [[warbler]]s, various small [[passerine]] songbirds, especially of the families Sylviidae (Old World warblers) and Parulidae (New World warblers).",
parents = {"perching birds", "list of sets"},
}
labels["warren hounds"] = {
description = "{{{langname}}} terms for [[warren]] [[hound]]s.",
parents = {"hunting dogs", "list of sets"},
}
labels["water dogs"] = {
description = "{{{langname}}} terms for [[water]] [[dog]]s.",
parents = {"retrievers", "list of sets"},
}
labels["weaver finches"] = {
description = "{{{langname}}} terms for [[finch]]es in the family [[Estrildidae]].",
parents = {"perching birds", "list of sets"},
}
labels["weaverbirds"] = {
description = "{{{langname}}} terms for [[baya]]s, [[bishop]]s, [[fody|fodies]], [[malimbe]]s, [[quelea]]s, [[sakabula]]s, [[taha]]s, [[weaver]]s, and other birds in the [[family]] [[Ploceidae]].",
parents = {"perching birds", "list of sets"},
}
labels["weevils"] = {
description = "{{{langname}}} terms for [[bill-beetle]]s, [[curculio]]s, [[grugru worm]]s, [[snout beetle]]s, and other [[beetle]]s in the [[superfamily]] [[Curculionoidea]].",
parents = {"beetles", "list of sets"},
}
labels["whales"] = {
description = "{{{langname}}} terms for [[whale]]s.",
parents = {"cetaceans", "list of sets"},
}
labels["wolves"] = {
description = "{{{langname}}} terms for [[wolves]].",
parents = {"canids", "list of sets"},
}
labels["woodpeckers"] = {
description = "{{{langname}}} terms for [[flicker]]s, [[sapsucker]]s, [[wryneck]]s, and other birds in the [[family]] [[Picidae]].",
parents = {"piciforms", "list of sets"},
}
labels["working dogs"] = {
description = "{{{langname}}} terms for [[working]] [[dog]]s.",
parents = {"dogs", "list of sets"},
}
labels["worms"] = {
description = "{{{langname}}} terms for [[worm]]s.",
parents = {"animals", "list of sets"},
}
labels["wrasses"] = {
description = "{{{langname}}} terms for fish in the family [[Labridae]].",
parents = {"labroid fish", "list of sets"},
}
labels["wrens"] = {
description = "{{{langname}}} terms for [[wren]]s.",
parents = {"certhioid birds", "list of sets"},
}
labels["zoarcoid fish"] = {
description = "{{{langname}}} terms for [[butterfish]], [[eelpout]]s, [[guffer]]s, [[gunnel]]s, [[lumper]]s, [[prickleback]]s, [[prowfish]], [[wolf eel]]s and other fish in the [[perciform]] [[suborder]] [[Zoarcoidei]].",
parents = {"fish", "list of sets"},
}
labels["zygaenoid moths"] = {
description = "{{{langname}}} terms for [[burnet moth]]s, [[forester]]s, [[hag moth]]s, [[limacodid]]s, [[megalopygid]]s, [[monkey slug]]s, [[puss moth]]s, [[saddleback caterpillar]]s, [[zygaenid]]s, and other [[moth]]s in the [[superfamily]] [[Zygaenoidea]].",
parents = {"moths", "list of sets"},
}
return labels
40ffndboenbf33bv33x2u0ysvg6ypti
Module:category tree/topic cat/data/Plants
828
5247
13255
2022-07-29T18:51:18Z
Asinis632
1829
Created page with "local labels = {} labels["plants"] = { description = "{{{langname}}} terms for [[plant]]s.", parents = {"lifeforms", "list of sets"}, } labels["acacias"] = { description = "{{{langname}}} terms for plants of the [[genus]] ''[[Acacia]]'' in its former sense, including what are now related genera such as ''[[Acaciella]]'', [[Senegalia]] and ''[[Vachellia]]''- the [[tribe]] ''[[Acacieae]]'' in some classifications.", parents = {"mimosa subfamily plants", "list of sets..."
Scribunto
text/plain
local labels = {}
labels["plants"] = {
description = "{{{langname}}} terms for [[plant]]s.",
parents = {"lifeforms", "list of sets"},
}
labels["acacias"] = {
description = "{{{langname}}} terms for plants of the [[genus]] ''[[Acacia]]'' in its former sense, including what are now related genera such as ''[[Acaciella]]'', [[Senegalia]] and ''[[Vachellia]]''- the [[tribe]] ''[[Acacieae]]'' in some classifications.",
parents = {"mimosa subfamily plants", "list of sets"},
}
labels["acanthus family plants"] = {
description = "{{{langname}}} terms for [[acanthus]]es, [[aphelandra]]s, [[clock vine]], [[Malabar nut]], [[water willow]], and other plants in the [[family]] [[Acanthaceae]].",
parents = {"Lamiales order plants", "list of sets"},
}
labels["agavoideae subfamily plants"] = {
description = "{{{langname}}} terms for [[agave]]s, [[camas]]es, [[soap plant]]s, [[tuberose]]s, [[rush lily|rush lilies]], [[yucca]]s, and other plants in the [[subfamily]] [[Agavoideae]] of the [[family]] [[Asparagaceae]].",
parents = {"Asparagus family plants", "succulents", "list of sets"},
}
labels["Alismatales order plants"] = {
description = "{{{langname}}} terms for [[anacharis]], [[arrowgrass]]es, [[arrowhead]]s, [[arum]]s, [[burhead]]s, [[eelgrass]]es, [[flowering rush]], [[frogbit]], [[hydrilla]], [[Neptune grass]], [[philodendron]], [[pondweed]]s, [[seagrass]]es, [[taro]], [[velvetleaf]]s, [[water nymph]]s, [[water plantain]]s, [[waterpoppy]], and other plants in the [[order]] [[Alismatales]].",
parents = {"water plants", "list of sets"},
}
labels["alliums"] = {
description = "{{{langname}}} terms for [[chive]]s, [[garlic]], [[leek]]s, [[onion]]s, [[scallion]]s, [[shallot]]s, and other plants in the [[genus]] [[Allium]].",
parents = {"amaryllis family plants", "root vegetables", "spices and herbs", "list of sets"},
}
labels["amaranth subfamily plants"] = {
description = "[[achyranthe]], [[amaranth]], [[celosia]], [[goldenrod tree]], [[love-lies-bleeding]], [[marog]], [[prince's plume]], [[tampala]], [[waterhemp]], and other plants in the [[subfamily]] [[Amaranthoideae]] of the [[family]] [[Amaranthaceae]].",
parents = {"amaranths and goosefoots", "list of sets"},
}
labels["amaranths and goosefoots"] = {
description = "{{{langname}}} terms for [[amaranth]]s, [[beet]]s, [[blite]]s, [[glasswort]]s, [[lamb's quarters]], [[saltbush]]es, [[spinach]] and other plants in the [[family]] [[Amaranthaceae]], including the former family [[Chenopodiaceae]].",
parents = {"Caryophyllales order plants", "list of sets"},
}
labels["amaryllis family plants"] = {
description = "{{{langname}}} terms for [[amaryllis]]es, [[daffodil]]s, [[garlic]], [[lily of the Nile]], [[rain lily|rain lilies]], [[snowdrops]], [[spider lily|spider lilies]] and other plants in the [[family]] [[Amaryllidaceae]], including the former family [[Alliaceae]].",
parents = {"Asparagales order plants", "flowers", "list of sets"},
}
labels["Anemoneae tribe plants"] = {
description = "{{{langname}}} terms for [[anemone]]s or [[windflower]]s, [[clematis]]es ([[old man's beard]], [[traveller's joy]], [[virgin's bower]], etc.), [[hepatica]]s or [[liverwort]]s, [[pasque flower]]s and other plants in the [[tribe]] [[Anemoneae]] of the [[family]] [[Ranunculaceae]].",
parents = {"buttercup family plants", "list of sets"},
}
labels["Anthemideae tribe plants"] = {
description = "{{{langname}}} terms for [[camomile]]s, [[chrysanthemum]]s, [[dogfennel]], [[feverfew]], [[lavender cotton]], [[oxeye daisy]], [[marguerite]]s, [[pellitory of Spain]], [[pineapple weed]], [[pyrethrum]], [[sagebrush]]es, [[sneezeweed]], [[sweet maudlin]], [[tansy]], [[wormwood]]s, [[yarrow]]s, and other plants in the [[tribe]] [[Anthemideae]] of the [[family]] [[Asteraceae]].",
parents = {"composites", "list of sets"},
}
labels["Andropogoneae tribe grasses"] = {
description = "{{{langname}}} terms for [[bluestem]], [[broomsedge]], [[centipede grass]], [[cogon]], [[gama grass]], [[Job's tears]], [[Johnson grass]], [[lemongrass]], [[maize]], [[plume grass]], [[rosha grass]], [[sorghum]], [[sudangrass]], [[sugar cane]], [[susuki grass]], [[vetiver]], and other grasses in the tribe [[Andropogoneae]].",
parents = {"grasses", "list of sets"},
}
labels["Apiales order plants"] = {
description = "{{{langname}}} terms for [[anise]], [[apple-berry]], [[aralia]]s, [[carrot]]s, [[celery]], [[cumin]], [[ginseng]], [[hemlock]], [[ivy]], [[parsley]], [[pennywort]]s, [[pittosporum]]s, [[samphire]], [[sea holly]], [[sweet bursaria]], and other plants in the [[order]] [[Apiales]].",
parents = {"plants", "shrubs", "spices and herbs", "list of sets"},
}
labels["Apieae tribe plants"] = {
description = "{{{langname}}} terms for [[bishop's-weed]], [[celery]], [[dill]], [[fennel]], [[parsley]] and other plants in the [[tribe]] [[Apieae]] of the celery [[family]], [[Apiaceae]].",
parents = {"celery family plants", "list of sets"},
}
labels["aralia family plants"] = {
description = "{{{langname}}} terms for [[aralia]]s, [[ginseng]], [[eleuthero]], [[ivy]], [[umbrella tree]], [[parasol tree]], and other plants in the [[family]] [[Araliaceae]].",
parents = {"plants", "list of sets"},
}
labels["araucarians"] = {
description = "{{{langname}}} terms for primitive [[conifer]]s in the [[genus|genera]] [[Agathis]], [[Araucaria]] and [[Wollemia]] in the family [[Araucariaceae]].",
parents = {"conifers", "list of sets"},
}
labels["artemisias"] = {
description = "{{{langname}}} terms for [[mugwort]]s, [[sagebrush]]es, [[southernwood]], [[tarragon]], [[wormwood]], and other plants in the [[genus]] [[Artemisia]].",
parents = {"Anthemideae tribe plants", "herbs", "list of sets"},
}
labels["arum family plants"] = {
description = "{{{langname}}} terms for [[arum]]s, [[duckweed]]s, [[Jack-in-the-pulpit]], [[philodendron]]s, [[skunk cabbage]], [[taro]], and other plants in the family [[Araceae]].",
parents = {"Alismatales order plants", "list of sets"},
}
labels["Asparagales order plants"] = {
description = "{{{langname}}} terms for [[agave]]s. [[allium]]s, [[aloe]]s, [[amaryllis]]es, [[asparagus]], [[crocus]]es, [[day lily|day lilies]], [[iris]]es, [[orchid]]s and other plants in the [[order]] [[Asparagales]].",
parents = {"plants", "list of sets"},
}
labels["asparagus family plants"] = {
description = "{{{langname}}} terms for [[agave]]s, [[asparagus]], [[bluebell]]s, [[butcher's broom]], [[dracaena]]s, [[hosta]]s, [[hyacinth]]s, [[lily of the valley]], [[Solomon's seal]]s, [[ti]], [[tuberose]], and other plants in the [[family]] [[Asparagaceae]], including those formerly in families such as the [[Agavaceae]], [[Hyacinthaceae]] and [[Ruscaceae]].",
parents = {"Asparagales order plants", "succulents", "flowers", "list of sets"},
}
labels["Asterales order plants"] = {
description = "{{{langname}}} terms for [[artichoke]]s, [[aster]]s, [[buckbean]]s, [[chamomile]], [[bellflower]]s, [[daisy|daisies]], [[dandelion]]s, [[lobelia]]s, [[sunflower]]s, [[thistle]]s, [[wormwood]]s and many other plants in the [[order]] [[Asterales]].",
parents = {"plants", "list of sets"},
}
labels["Astereae tribe plants"] = {
description = "{{{langname}}} terms for [[aster]]s, [[daisy|daisies]], [[fleabane]]s, [[goldenrod]]s, [[grindelia]]s, [[horseweed]]s, [[Michaelmas daisy]], [[muskwood]], [[rabbitbrush]]es, [[sharewort]], [[stabwort]], and other plants in the [[tribe]] [[Astereae]] of the [[family]] [[Asteraceae]].",
parents = {"composites", "list of sets"},
}
labels["bamboos"] = {
description = "{{{langname}}} terms for grasses in the [[subfamily]] [[Bambusoideae]].",
parents = {"grasses", "list of sets"},
}
labels["barberry family plants"] = {
description = "{{{langname}}} terms for [[barberry|barberrie]]s, [[blue cohosh]], [[mayapple]], [[Oregon grape]]s, [[twinleaf]], and other plants in the [[family]] [[Berberidaceae]].",
parents = {"Ranunculales order plants", "shrubs", "list of sets"},
}
labels["beech family plants"] = {
description = "{{{langname}}} terms for [[beech]]es, [[chestnut]]s, [[oak]]s, and other plants in the family [[Fagaceae]].",
parents = {"Fagales order plants", "list of sets"},
}
labels["bignonia family plants"] = {
description = "{{{langname}}} terms for [[bignonia]]s, [[Cape honeysuckle]], [[catalpa]]s, [[jacaranda]]s, [[sausage tree]], [[trumpet vine]] and other plants in the family [[Bignoniaceae]].",
parents = {"Lamiales order plants", "shrubs", "flowers", "list of sets"},
}
labels["birch family plants"] = {
description = "{{{langname}}} terms for [[birch]]es, [[alder]]s, [[hazel]]s, [[hornbeam]]s and other plants in the family [[Betulaceae]].",
parents = {"Fagales order plants", "list of sets"},
}
labels["blueberry tribe plants"] = {
description = "{{{langname}}} terms for [[bilberry|bilberries]], [[blueberry|blueberries]], [[buckberry|buckberries]], [[cranberry|cranberries]], [[huckleberry|huckleberries]], [[lingonberry|lingonberries]], [[ohelo]], [[whortleberry|whortleberries]] and other plants in the [[heather]] [[family]] [[tribe]] [[Vaccinieae]].",
parents = {"heather family plants", "fruits", "list of sets"},
}
labels["borage family plants"] = {
description = "{{{langname}}} terms for [[alkanet]], [[borage]], [[comfrey]], [[fiddleneck]]s, [[forget-me-not]]s, [[heliotrope]]s, [[honeywort]]s, [[hound's tongue]], [[lungwort]], [[scorpionweed]], [[sebesten]], and other plants in the family [[Boraginaceae]].",
parents = {"plants", "list of sets"},
}
labels["brambles"] = {
description = "{{{langname}}} terms for [[blackberry|blackberries]], [[cloudberry|cloudberries]], [[dewberry|dewberries]], [[raspberry|raspberries]], [[thimbleberry|thimbleberries]], and other plants in the [[genus]] [[Rubus]].",
parents = {"rose family plants", "berries", "list of sets"},
}
labels["Brassicales order plants"] = {
description = "{{{langname}}} terms for [[beachwort]], [[bladderpod]], [[cabbage]]s, [[caper]]s, [[cress]]es, [[meadowfoam]]s, [[mustard]]s, [[nasturtium]]s, [[papaya]]s, [[radish]]es, [[wallflower]]s, [[weld]] and other plants in the [[order]] [[Brassicales]].",
parents = {"plants", "list of sets"},
}
labels["brassicas"] = {
description = "{{{langname}}} terms for cabbages, mustards, and other plants in the genus [[Brassica]].",
parents = {"crucifers", "list of sets"},
}
labels["bromeliads"] = {
description = "{{{langname}}} terms for plants in the family [[Bromeliaceae]].",
parents = {"Commelinids", "list of sets"},
}
labels["broomrape family plants"] = {
description = "{{{langname}}} terms for [[broomrape]]s,[[broom rape]]s, [[beechdrops]], [[cow-wheat]], [[eyebright]]s, [[Indian paintbrush]]es, [[lousewort]]s, [[rattle]]s, [[witchweed]]s, and other plants in the family [[Orobanchaceae]].",
parents = {"Lamiales order plants", "list of sets"},
}
labels["buckthorn family plants"] = {
description = "{{{langname}}} terms for [[buckthorn]], [[ceanothus]]es, [[chewstick]], [[jujube]], and other plants in the [[family]] [[Rhamnaceae]].",
parents = {"Rosales order plants", "shrubs", "trees", "list of sets"},
}
labels["buckwheat family plants"] = {
description = "{{{langname}}} terms for [[buckwheat]], [[coral vine]], [[dock]], [[knotweed]], [[rhubarb]], [[sea grape]], [[smartweed]], [[sorrel]] and other plants in the [[family]] [[Polygonaceae]].",
parents = {"Caryophyllales order plants", "list of sets"},
}
labels["buttercup family plants"] = {
description = "{{{langname}}} terms for plants in the family [[Ranunculaceae]].",
parents = {"Ranunculales order plants", "list of sets"},
}
labels["Buxales order plants"] = {
description = "{{{langname}}} terms for plants in the [[order]] [[Buxales]].",
parents = {"plants", "shrubs", "trees", "list of sets"},
}
labels["cacti"] = {
description = "default-set",
parents = {"Caryophyllales order plants", "succulents", "list of sets"},
}
labels["caesalpinia subfamily plants"] = {
description = "{{{langname}}} terms for [[brazilwood]], [[carob]], [[honey locust]]s, [[Kentucky coffeetree]], [[logwood]], [[paloverde]]s, [[poinciana]]s, [[redbud]]s, [[senna]]s, [[tamarind]]s, and other plants in the [[subfamily]] [[Caesalpinioideae]] of the [[family]] [[Fabaceae]].",
parents = {"legumes", "list of sets"},
}
labels["caltrop family plants"] = {
description = "{{{langname}}} terms for [[bean-caper]], [[caltrop]], [[creosote bush]], [[lignum vitae]], and other plants in the [[family]] [[Zygophyllaceae]].",
parents = {"plants", "shrubs", "trees", "list of sets"},
}
labels["cannabis family plants"] = {
description = "{{{langname}}} terms for plants in the family [[Cannabaceae]].",
parents = {"Rosales order plants", "list of sets"},
}
labels["Cardamineae tribe plants"] = {
description = "{{{langname}}} terms for [[bittercress]], [[dame's rocket]], [[horseradish]], [[lady's smock]], [[toothwort]], [[watercress]], [[wintercress]], and other plants in the [[brassicaceous]] [[tribe]] [[Cardamineae]].",
parents = {"crucifers", "list of sets"},
}
labels["carnation family plants"] = {
description = "{{{langname}}} terms for [[baby's breath]], [[campion]]s, [[carnation]]s, [[chickweed]], [[knawel]]s, [[sandwort]]s, [[pink]]s, [[rupturewort]]s, [[soapwort]] and other plants in the [[family]] [[Caryophyllaceae]].",
parents = {"Caryophyllales order plants", "list of sets"},
}
labels["carnivorous plants"] = {
description = "{{{langname}}} terms for [[bladderwort]]s, [[butterwort]]s, [[pitcher plant]]s, [[sundew]]s, [[Venus flytrap]]s, and other plants that trap and obtain nutrients from animals.",
parents = {"plants", "list of sets"},
}
labels["Caryophyllales order plants"] = {
description = "{{{langname}}} terms for [[amaranth]]s, [[buckwheat]], [[cacti]], [[carnation]]s, [[dock]], [[four-o'clock]]s, [[glasswort]], [[goosefoot]]s, [[greasewood]], [[ice plant]]s, [[jojoba]], [[knotweed]]s, [[Malabar spinach]], [[miner's lettuce]], [[plumbago]]s, [[pokeweed]], [[ragged robin]], [[rhubarb]], [[statice]], [[purslane]], [[saltbush]]es, [[spinach]], [[thrift]], [[tamarisk]], [[Venus flytrap]], and other plants in the [[order]] [[Caryophyllales]].",
parents = {"plants", "list of sets"},
}
labels["celery family plants"] = {
description = "{{{langname}}} terms for [[ajwain]], [[anise]], [[arracacha]], [[asafoetida]], [[carrot]]s, [[celery]], [[chuchupate]], [[coriander]], [[cumin]], [[dill]], [[galbanum]], [[hemlock]], [[hogweed]], [[lovage]], [[masterwort]], [[parsley]], [[parsnip]]s, [[samphire]], [[sanicle]]s, [[sea holly]], [[yampah]] and other plants in the [[family]] [[Apiaceae]], also known as the [[Umbelliferae]].",
parents = {"Apiales order plants", "spices and herbs", "list of sets"},
}
labels["Cichorieae tribe plants"] = {
description = "{{{langname}}} terms for [[chicory|chicories]], [[dandelion]]s, [[endive]], [[hawkweed]]s, [[lettuce]]s, [[murnong]], [[nipplewort]], [[oxtongue]], [[salsify]], [[sow thistle]]s, [[succory]], and other plants in the [[tribe]] [[Cichorieae]] of the [[family]] [[Asteraceae]].",
parents = {"composites", "list of sets"},
}
labels["citrus subfamily plants"] = {
description = "{{{langname}}} terms for [[citrus]] and other plants in the subfamily [[Aurantioideae]] of the Rue Family, [[Rutaceae]].",
parents = {"rue family plants", "trees", "shrubs", "list of sets"},
}
labels["club mosses"] = {
description = "{{{langname}}} terms for plants in the [[family]] [[Lycopodiaceae]].",
parents = {"spore plants", "list of sets"},
}
labels["combretum family plants"] = {
description = "{{{langname}}} terms for [[arjuna]], [[bushwillow]]s, [[leadwood]], [[myrobalan]]s, [[Rangoon creeper]], [[tropical almond]], [[white mangrove]], and other plants in the [[family]] [[Combretaceae]].",
parents = {"Myrtales order plants", "trees", "shrubs", "list of sets"},
}
labels["Commelinids"] = {
description = "{{{langname}}} terms for [[arrowroot]]s, [[bamboo]]s, [[banana]]s, [[bird of paradise|birds of paradise]], [[bloodwort]]s, [[bromeliad]]s, [[canna]]s, [[cattail]]s, [[ginger]]s, [[grass]]es, [[kangaroo paw]], [[palm]]s, [[reed]]s, [[rush]]es, [[sedge]]s, [[spiderwort]]s, [[tule]]s, [[water hyacinth]]s, and other plants in the [[commelinid]] [[clade]].",
parents = {"plants", "list of sets"},
}
labels["composites"] = {
description = "{{{langname}}} terms for [[artichoke]]s, [[aster]]s, [[chamomile]], [[chrysanthemum]]s, [[daisy|daisies]], [[dandelion]]s, [[marigold]]s, [[sunflower]]s, [[thistle]]s, [[wormwood]]s and many other plants in the [[family]] [[Asteraceae]], also known as the [[Compositae]].",
parents = {"Asterales order plants", "list of sets"},
}
labels["conifers"] = {
description = "{{{langname}}} terms for [[conifer]]s.",
parents = {"gymnosperms", "trees", "shrubs", "list of sets"},
}
labels["Coreopsideae tribe plants"] = {
description = "{{{langname}}} terms for [[beggar's ticks]] or [[bur marigold]]s, [[calliopsis]], [[coreopsis]], [[cosmos]], [[cota]], [[dahlia]]s, [[tickseed]]s and other plants in the [[tribe]] [[Coreopsideae]] of the daisy family, [[Asteraceae]].",
parents = {"composites", "list of sets"},
}
labels["Cornales order plants"] = {
description = "{{{langname}}} terms for [[assegai]], [[blazing star]], [[bunchberry]], [[cornel]], [[dogwood]]s, [[hydrangea]]s, [[tupelo]]s, and other plants in the [[order]] [[Cornales]].",
parents = {"plants", "trees", "shrubs", "list of sets"},
}
labels["crucifers"] = {
description = "{{{langname}}} terms for [[alyssum]], [[cabbage]]s, [[cress]]es, [[mustard]]s, [[radish]]es, [[rocket]]s, [[stock]]s, [[turnip]]s, [[wallflower]]s and other plants in the [[family]] [[Brassicaceae]] (formerly known as the [[Cruciferae]]).",
parents = {"Brassicales order plants", "list of sets"},
}
labels["Cucurbitales order plants"] = {
description = "{{{langname}}} terms for plants in the [[order]] [[Cucurbitales]].",
parents = {"plants", "list of sets"},
}
labels["Cucurbitas"] = {
description = "{{{langname}}} terms for [[marrow]]s, [[pumpkin]]s, [[squash]]es and other plants in the [[genus]] [[Cucurbita]].",
parents = {"gourd family plants", "list of sets"},
}
labels["custard apple family plants"] = {
description = "{{{langname}}} terms for trees and shrubs in the [[family]] [[Annonaceae]].",
parents = {"Magnoliids","trees", "shrubs", "list of sets"},
}
labels["cypress family plants"] = {
description = "{{{langname}}} terms for [[alerce]]s, [[arborvitae]]s, [[bald cypress]]es, [[cryptomeria]]s, [[cunninghamia]]s, [[cypress]]es, [[incense cedar]]s, [[juniper]]s, [[redwood]]s, [[sandarac]]s, and other trees and shrubs in the [[family]] [[Cupressaceae]].",
parents = {"conifers", "list of sets"},
}
labels["Cynodonteae tribe grasses"] = {
description = "{{{langname}}} terms for [[Bermuda grass]], [[deergrass]], [[goosegrass]], [[finger millet]], [[grama]], [[muhly]], [[saltgrass]], [[scratchgrass]], and other grasses in the [[tribe]] [[Cynodonteae]].",
parents = {"grasses", "list of sets"},
}
labels["Dalbergieae tribe plants"] = {
description = "{{{langname}}} terms for [[ambatch]], [[cocuswood]], [[deervetch]], [[padauk]], [[pallisander]], [[peanut]]s, [[pencil flower]]s, [[red sanders]], [[rosewood]]s, [[shola]], [[sissoo]], [[Tahitian chestnut]], [[tipu]], and other plants in the [[tribe]] [[Dalbergieae]] of the [[family]] [[Fabaceae]].",
parents = {"legumes", "list of sets"},
}
labels["Daturas"] = {
description = "{{{langname}}} terms for plants in the [[genus]] [[Datura]].",
parents = {"nightshades","recreational drugs", "list of sets"},
}
labels["Detarioideae subfamily plants"] = {
description = "{{{langname}}} terms for plants in the [[subfamily]] [[Detarioideae]] of the [[family]] [[Fabaceae]].",
parents = {"legumes", "list of sets"},
}
labels["Dioscoreales order plants"] = {
description = "{{{langname}}} terms for [[black bryony]], [[bog asphodel]]s, [[Polynesian arrowroot]], [[unicorn root]], [[yam]]s, and other plants in the [[order]] [[Dioscoreales]].",
parents = {"plants", "list of sets"},
}
labels["dogbane family plants"] = {
description = "{{{langname}}} terms for [[carrion flower]]s, [[desert rose]], [[dogbane]]s, [[hoodia]], [[hoya]]s, [[milkweed]]s, [[Natal plum]], [[oleander]]s, [[periwinkle]]s, [[plumeria]]s and other plants in the [[family]] [[Apocynaceae]] (including the former family [[Asclepiadaceae]]).",
parents = {"Gentianales order plants", "list of sets"},
}
labels["dillenia family plants"] = {
description = "{{{langname}}} terms for plants in the [[family]] [[Dilleniaceae]].",
parents = {"plants", "list of sets"},
}
labels["ephedras"] = {
description = "{{{langname}}} terms for plants in the [[genus]] ''[[Ephedra]]'', the only members of the [[gymnosperm]] [[family]] [[Ephedraceae]].",
parents = {"gymnosperms", "list of sets"},
}
labels["Ericales order plants"] = {
description = "{{{langname}}} terms for [[arbutus]], [[benjamin]], [[blueberry|blueberries]], [[brazil nut]]s, [[boojum]], [[camellia]]s, [[cobra lily]], [[cyclamen]]s, [[ebony]], [[jewelweed]], [[kiwi fruit]], [[manzanita]]s, [[ocotillo]], [[persimmon]]s, [[phlox]]es, [[pipsissewa]], [[pitcher plant]]s, [[primrose]]s, [[rhododendron]]s, [[sapote]], [[shea]] tree, [[snowbell]]s, [[summersweet]], [[tea]], and other plants in the [[order]] [[Ericales]].",
parents = {"plants", "trees", "shrubs", "list of sets"},
}
labels["eucalypts"] = {
description = "{{{langname}}} terms for [[eucalypt]]s – woody plants with capsule-fruiting bodies belonging to seven closely related genera found across Australasia: ''Eucalyptus'', ''Corymbia'', ''Angophora'', ''Stockwellia'', ''Allosyncarpia'', ''Eucalyptopsis'' and ''Arillastrum''.",
parents = {"Myrtle family plants", "trees", "list of sets"},
}
labels["Eupatorieae tribe plants"] = {
description = "{{{langname}}} terms for [[ageratum]]s, [[blazing star]]s, [[boneset]]s, [[deer's tongue]], [[hempvine]], [[joe-pye weed]], [[stevia]], [[thoroughwort]]s, [[trumpetweed]]s, and other plants in the [[composite]] tribe Eupatorieae.",
parents = {"composites", "list of sets"},
}
labels["evening primrose family plants"] = {
description = "{{{langname}}} terms for [[clarkia]]s, [[enchanter's nightshade]], [[evening primrose]]s, [[fuchsia]]s, [[suncup]]s, [[willowherb]]s and other plants in the [[family]] [[Onagraceae]] (not to be confused with the true [[primrose]]s in the family [[Primulaceae]]).",
parents = {"Myrtales order plants", "flowers", "list of sets"},
}
labels["Fabales order plants"] = {
description = "{{{langname}}} terms for plants in the [[order]] [[Fabales]].",
parents = {"plants", "list of sets"},
}
labels["Fabeae tribe plants"] = {
description = "{{{langname}}} terms for [[beach pea]]s, [[fava bean]]s, [[lentil]]s, [[pea]]s, [[sweet pea]]s, [[vetch]]es, and other plants in the [[tribe]] [[Fabeae]] of the [[family]] [[Fabaceae]].",
parents = {"legumes", "list of sets"},
}
labels["Fagales order plants"] = {
description = "{{{langname}}} terms for [[alder]]s, [[bayberry|bayberries]], [[beech]]es, [[birch]]es, [[butternut]]s, [[chestnut]]s, [[hazel]]s, [[hickory|hickories]], [[hornbeam]]s, [[oak]]s, [[pecan]]s, [[she-oak]]s, [[sweet gale]], [[walnut]]s, [[wingnut]]s, and other plants in the [[order]] [[Fagales]].",
parents = {"plants","trees", "shrubs", "list of sets"},
}
labels["ferns"] = {
description = "{{{langname}}} terms for [[fern]]s.",
parents = {"spore plants", "list of sets"},
}
labels["fig trees"] = {
description = "{{{langname}}} terms for [[fig tree]]s.",
parents = {"mulberry family plants", "trees", "list of sets"},
}
labels["figwort family plants"] = {
description = "{{{langname}}} terms for [[figwort]]s, [[butterfly bush]]es, [[emu bush]]es, [[mudwort]]s, [[mullein]]s, [[myoporum]]s, [[nemesia]]s, and many other plants in the [[family]] [[Scrophulariaceae]], but not including many such as [[foxglove]]s and [[snapdragon]]s that are now in the [[Plantaginaceae]] as well as [[Indian paintbrush]]es and [[lousewort]]s/[[wood betony|wood betonies]], now in the [[Orobanchaceae]].",
parents = {"Lamiales order plants", "list of sets"},
}
labels["flowers"] = {
description = "{{{langname}}} terms for [[flower]]s.",
parents = {"plants", "list of sets"},
}
labels["Genisteae tribe plants"] = {
description = "{{{langname}}} terms for [[broom]]s, [[furze]]/[[gorse]], [[laburnum]], [[lupine]]s, [[tagasaste]], [[whin]], [[woad-waxen]], and other plants in the [[tribe]] [[Genisteae]] of the [[family]] [[Fabaceae]].",
parents = {"legumes", "list of sets"},
}
labels["Gentianales order plants"] = {
description = "{{{langname}}} terms for plants in the order [[Gentianales]].",
parents = {"plants", "list of sets"},
}
labels["Geraniales order plants"] = {
description = "{{{langname}}} terms for [[cranesbill]]s, [[filaree]]s, [[francoa]]s, [[geranium]]s, [[herb Robert]], [[honeybush]], [[pelargonium]]s, [[storksbill]]s, and other plants in the [[order]] [[Geraniales]].",
parents = {"plants", "list of sets"},
}
labels["ginger family plants"] = {
description = "{{{langname}}} terms for [[cardamom]], [[galangal]], [[ginger]]s, [[grains of paradise]], [[turmeric]], [[zedoary]], and other plants in the family [[Zingiberaceae]].",
parents = {"Zingiberales order plants", "spices and herbs", "list of sets"},
}
labels["Gnaphalieae tribe plants"] = {
description = "{{{langname}}} terms for [[billy buttons]], [[cudweed]]s, [[everlasting]]s, [[curry plant]], [[pussytoes]], [[strawflower]]s, [[vegetable sheep]] and other plants in the [[composite]] [[tribe]] [[Gnaphalieae]].",
parents = {"composites", "list of sets"},
}
labels["goosefoot subfamily plants"] = {
description = "[[epazote]], [[hopsage]], [[lamb's quarters]], [[orach]], [[quinoa]], [[saltbush]], [[spinach]], [[winterfat]] and other plants in the [[subfamily]] [[Chenopodioideae]] of the [[family]] [[Amaranthaceae]].",
parents = {"amaranths and goosefoots", "list of sets"},
}
labels["gourd family plants"] = {
description = "{{{langname}}} terms for [[cucumber]]s, [[gourd]]s, [[melon]]s, [[squash]]es, and other plants in the family [[Cucurbitaceae]].",
parents = {"Cucurbitales order plants", "list of sets"},
}
labels["grape family plants"] = {
description = "{{{langname}}} terms for [[grapevine]]s, [[Boston ivy]], [[Virginia creeper]]. and other plants in the family [[Vitaceae]].",
parents = {"plants", "list of sets"},
}
labels["grapevines"] = {
description = "default-set",
parents = {"grape family plants", "wine", "list of sets"},
}
labels["grasses"] = {
description = "default-set",
parents = {"Commelinids", "list of sets"},
}
labels["gymnosperms"] = {
description = "{{{langname}}} terms for various unrelated groups of [[seed plant]]s other than the [[flowering plant]]s.",
parents = {"plants", "list of sets"},
}
labels["heather family plants"] = {
description = "{{{langname}}} terms for [[heather]]s, [[blueberry|blueberries]], [[rhododendron]]s, [[wintergreen]], and other plants in the family [[Ericaceae]].",
parents = {"Ericales order plants", "list of sets"},
}
labels["Heliantheae tribe plants"] = {
description = "{{{langname}}} terms for [[balsamroot]]s, [[brittlebush]], [[burrobrush]], [[cocklebur]]s, [[coneflower]]s, [[echinacea]], [[guayule]], [[Jerusalem artichoke]]s, [[mule's ears]], [[ox-eye daisy|ox-eye daisies]], [[pilotweed]]s, [[ragweed]]s,, [[rosinweed]]s, [[sunflower]]s, [[tithonia]]s, [[zinnia]]s and other [[plant]]s in the [[composite]] [[tribe]] [[Heliantheae]].",
parents = {"composites", "list of sets"},
}
labels["herbs"] = {
description = "{{{langname}}} terms for [[herb]]s.",
parents = {"plants", "spices and herbs", "list of sets"},
}
labels["hollies"] = {
description = "{{{langname}}} terms for [[holly|hollies]].",
parents = {"plants", "shrubs", "trees", "list of sets"},
}
labels["honeysuckle family plants"] = {
description = "{{{langname}}} terms for [[abelia]]s, [[cornsalad]], [[honeysuckle]]s, [[scabious]], [[snowberry|snowberries]], [[spikenard]], [[teasel]]s, [[twinflower]]s, [[valerian]]s, and other plants in the [[family]] [[Caprifoliaceae]], including those in the former families [[Dipsacaceae]], [[Linnaeaceae]], and [[Valerianaceae]].",
parents = {"plants", "shrubs", "list of sets"},
}
labels["Hordeeae tribe grasses"] = {
description = "{{{langname}}} terms for [[barley]], [[emmer]], [[foxtail barley]], [[goatgrass]], [[lyme grass]], [[medusahead]], [[quackgrass]], [[rye]], [[spelt]], [[squirreltail]], [[wheat]], [[wheatgrass]], [[wild rye]], and other grasses in the [[tribe]] [[Hordeeae]], also known as the [[Triticeae]].",
parents = {"grasses", "list of sets"},
}
labels["horsetails"] = {
description = "{{{langname}}} terms for [[horsetail]]s, [[calamite]]s, and other plants in the [[taxon]] known as the [[subclass]] [[Equisetidae]] or either the [[class]] [[Equisetopsida]] or the class [[Sphenopsida]], depending on the classification system used.",
parents = {"spore plants", "list of sets"},
}
labels["incense tree family plants"] = {
description = "{{{langname}}} terms for [[abilo]], [[Chinese olive]], [[elephant tree]], [[frankincense]], [[gumbo limbo]], [[myrrh]], [[pili nut]]s, and other plants in the family [[Burseraceae]].",
parents = {"plants", "shrubs", "trees", "list of sets"},
}
labels["iris family plants"] = {
description = "{{{langname}}} terms for [[crocus]]es, [[freesia]]s, [[gladiolus]]es, [[iris]]es, [[ixia]]s, [[sparaxis]], [[watsonia]]s, and other plants in the family [[Iridaceae]].",
parents = {"Asparagales order plants", "flowers", "list of sets"},
}
labels["Lamiales order plants"] = {
description = "{{{langname}}} terms for [[acanthus]]es, [[African violet]]s, [[ash]]es, [[betony]], [[brooklime]], [[butterfly bush]], [[catalpa]]s, [[chaste tree]], [[devil's claw]], [[eyebright]], [[foxglove]]s, [[hyssop]]s, [[jasmine]]s, [[lavender]]s, [[lilac]]s, [[lousewort]]s, [[mare's tail]], [[mint]]s, [[monkeyflower]]s, [[mullein]], [[olive]]s, [[oregano]]s, [[plantain]]s, [[privet]]s, [[sage]]s, [[sesame]], [[skullcap]]s, [[snapdragon]]s, [[teak]], [[thyme]]s, [[verbena]]s and other plants in the [[order]] [[Lamiales]].",
parents = {"plants", "shrubs", "trees", "list of sets"},
}
labels["Lamioideae subfamily plants"] = {
description = "{{{langname}}} terms for [[bells of Ireland]], [[betony]], [[crosne]], [[deadnettle]], [[hemp-nettle]], [[henbit]], [[horehound]], [[ironwort]], [[Jerusalem sage]], [[lamb's ears]], [[lion's ear]], [[motherwort]], [[mountain tea]], [[obedient plant]], [[patchouli]], and other plants in the [[subfamily]] [[Lamioideae]] of the mint family, [[Lamiaceae]].",
parents = {"mint family plants", "list of sets"},
}
labels["laurel family plants"] = {
description = "{{{langname}}} terms for plants in the family [[Lauraceae]].",
parents = {"Magnoliids", "trees", "shrubs", "list of sets"},
}
labels["legumes"] = {
description = "{{{langname}}} terms for plants in the family [[Fabaceae]], also known as the [[Leguminosae]].",
parents = {"Fabales order plants", "shrubs", "trees", "list of sets"},
}
labels["Liliales order plants"] = {
description = "{{{langname}}} terms for [[beargrass]], [[death camas]], [[false hellebore]], [[greenbrier]], [[herb Paris]], [[lily|lilies]], [[meadow saffron]], [[supplejack]], [[sarsparilla]], [[trillium]]s, [[tulip]]s, [[turkey's beard]], and other plants, in the [[order]] [[Liliales]].",
parents = {"plants", "list of sets"},
}
labels["lily family plants"] = {
description = "{{{langname}}} terms for plants in the family [[Liliaceae]].",
parents = {"Liliales order plants", "flowers", "list of sets"},
}
labels["madder family plants"] = {
description = "{{{langname}}} terms for [[bedstraw]], [[cinchona]], [[coffee]], [[gardenia]]s, [[ipecacuanha]], [[madder]], [[noni]], [[woodruff]], and other plants in the [[family]] [[Rubiaceae]].",
parents = {"Gentianales order plants", "shrubs", "list of sets"},
}
labels["Magnoliids"] = {
description = "{{{langname}}} terms for [[allspice]], [[avocado]]s, [[black pepper]], [[champac]], [[cinnamon]], [[custard apple]]s, [[kava]], [[laurel]]s, [[magnolia]]s, [[nutmeg]], [[pipevine]]s, [[sassafras]]es, [[sweetshrub]]s, [[star anise]], [[tulip tree]], [[Winter's bark]], [[yerba mansa]], [[ylang-ylang]], and other plants in the [[Magnoliids]] [[clade]].",
parents = {"plants", "list of sets"},
}
labels["mahogany family plants"] = {
description = "{{{langname}}} terms for [[chinaberry]], [[langsat]], [[mahogany]], [[neem]], [[Spanish cedar]]s, [[toon]], [[santol]], and other plants in the [[family]] [[Meliaceae]].",
parents = {"trees", "shrubs", "list of sets"},
}
labels["maize (plant)"] = {
description = "{{{langname}}} terms for [[maize]] (''[[Zea mays]]'') as a plant, and for its various types. ''For maize as a crop, see [[:Category:Maize (crop)]] and for maize as a food, see [[:Category:Maize (food)]].''",
parents = {"Andropogoneae tribe grasses", "grains", "list of sets"},
}
labels["mallows"] = {
description = "{{{langname}}} terms for [[abelmosk]], [[cotton]], [[hibiscus]]es, [[hollyhock]]s, [[mallow]]s, [[okra]], and other plants in the traditional [[family]] [[Malvaceae]], which is now considered to be the [[subfamily]] [[Malvoideae]] with the current [[Malvaceae]].",
parents = {"mallow family plants", "list of sets"},
}
labels["mallow family plants"] = {
description = "{{{langname}}} terms for [[balsa]], [[cacao]], [[cotton]], [[durian]]s, [[jute]], [[kola]]s, [[kurrajong]]s, [[hibiscus]]es, [[linden]]s, [[mallow]]s, [[peanut tree]]s, [[phalsa]], [[silk-cotton tree]]s, and other plants in the current [[family]] [[Malvaceae]], including a number of former families such as the [[Bombacaceae]], [[Sterculiaceae]], and the [[Tiliaceae]].",
parents = {"Malvales order plants", "shrubs", "list of sets"},
}
labels["mallow subfamily plants"] = {
description = "{{{langname}}} terms for [[abelmosk]], [[cotton]], [[hibiscus]]es, [[hollyhock]]s, [[mallow]]s, [[okra]], and other plants in the traditional [[family]] [[Malvaceae]], which is now considered to be the [[subfamily]] [[Malvoideae]] within the current [[Malvaceae]].",
parents = {"mallow family plants", "list of sets"},
}
labels["Malpighiales order plants"] = {
description = "{{{langname}}} terms for plants in the order [[Malpighiales]].",
parents = {"plants", "list of sets"},
}
labels["Malvales order plants"] = {
description = "{{{langname}}} terms for [[agalloch]], [[annatto]], [[balsa]], [[cacao]], [[cotton]], [[daphne]]s, [[durian]]s, [[jute]], [[hibiscus]]es, [[linden]]s, [[mallow]]s, [[rockrose]]s, [[sal]], [[silk-cotton tree]]s, [[tie bush]], and other plants in the [[order]] [[Malvales]].",
parents = {"plants", "shrubs", "trees", "list of sets"},
}
labels["maples"] = {
description = "{{{langname}}} terms for [[maple]]s.",
parents = {"soapberry family plants", "trees", "list of sets"},
}
labels["Menthinae subtribe plants"] = {
description = "{{{langname}}} terms for [[American pennyroyal]], [[basil thyme]], [[bee balm]], [[calamint]], [[horsemint]], [[mint]]s, [[marjoram]], [[mountain mint]], [[oregano]], [[savory|savories]], [[thyme]]s and other plants in the [[subtribe]] [[Menthinae]] of the mint family, [[Lamiaceae]].",
parents = {"mint family plants", "spices and herbs", "list of sets"},
}
labels["mimosa subfamily plants"] = {
description = "{{{langname}}} terms for [[acacia]]s, [[ice-cream bean]]s, [[mesquite]]s, [[mimosa]]s, [[rain tree]]s, and other plants in the [[subfamily]] [[Mimosoideae]] of the [[family]] [[Fabaceae]], which has been reclassified as a [[clade]] within the [[subfamily]] [[Caesalpinioideae]].",
parents = {"legumes","caesalpinia subfamily plants", "list of sets"},
}
labels["mint family plants"] = {
description = "{{{langname}}} terms for [[balms]], [[basil]]s, [[betony]], [[coleus]]es, [[deadnettle]]s, [[ground ivy]], [[hyssop]]s, [[lavender]]s, [[mint]]s, [[oregano]]s, [[patchouli]], [[perilla]], [[sage]]s, [[savory|savories]], [[selfheal]], [[skullcap]]s, [[thyme]]s, and other plants in the [[family]] [[Lamiaceae]], also known as the [[Labiatae]].",
parents = {"Lamiales order plants", "spices and herbs", "list of sets"},
}
labels["mints"] = {
description = "{{{langname}}} terms for the true [[mint]]s, plants in the [[genus]] [[Mentha]].",
parents = {"mint family plants", "Menthinae subtribe plants", "list of sets"},
}
labels["morning glory family plants"] = {
description = "{{{langname}}} terms for [[bindweed]]s, [[dichondra]], [[dodder]], [[morning glory|morning glories]], [[sweet potato|sweet potatoes]], [[wood rose]]s and other plants in the [[family]] [[Convolvulaceae]].",
parents = {"plants", "list of sets"},
}
labels["moschatel family plants"] = {
description = "{{{langname}}} terms for [[elderberry|elderberries]], [[moschatel]], [[viburnum]]s, and other plants in the [[family]] [[Adoxaceae]].",
parents = {"plants", "shrubs", "trees", "list of sets"},
}
labels["mosses"] = {
description = "{{{langname}}} terms for true [[moss]]es, plants in the [[division]] [[Bryophyta]] (excluding [[hornwort]]s and [[liverwort]]s), which doesn't include [[lichen]]s, [[club moss]]es, [[spike moss]]es, [[algae]], or mossy [[flowering plant]]s such as [[Irish moss]], or [[Spanish moss]].",
parents = {"spore plants", "bryology", "list of sets"},
}
labels["mulberry family plants"] = {
description = "{{{langname}}} terms for [[mulberry|mulberries]], [[breadfruit]], [[fig]]s and other trees in the family [[Moraceae]].",
parents = {"Rosales order plants", "trees", "list of sets"},
}
labels["Myrtales order plants"] = {
description = "{{{langname}}} terms for [[allspice]], [[arjuna]], [[bottlebrush]], [[clove]]s, [[eucalyptus]]es, [[evening primrose]]s, [[guava]]s, [[henna]], [[leadwood]], [[lilly-pilly]], [[loosestrife]]s, [[myrobalan]]s, [[myrtle]]s, [[pomegranate]]s, [[quaruba]], [[Rangoon creeper]], [[rose apple]]s, [[tea tree]], [[tropical almond]]s, [[water caltrop]]s, [[white mangrove]]s, [[willowherb]]s, and other plants, shrubs and trees in the [[order]] [[Myrtales]].",
parents = {"plants", "shrubs", "trees", "list of sets"},
}
labels["myrtle family plants"] = {
description = "{{{langname}}} terms for plants in the [[family]] [[Myrtaceae]].",
parents = {"Myrtales order plants", "trees", "shrubs", "list of sets"},
}
labels["Nepetinae subtribe plants"] = {
description = "{{{langname}}} terms for [[anise hyssop]], [[catnip]], [[dragonhead]], [[ground-ivy]], [[hyssop]], [[Korean mint]], [[licorice mint]], and other plants in the [[subtribe]] [[Nepetinae]] of the mint family, [[Lamiaceae]].",
parents = {"mint family plants", "list of sets"},
}
labels["nettle family plants"] = {
description = "{{{langname}}} terms for [[baby's tears]], [[clearweed]], [[nettle]]s, [[ramie]], and other plants in the [[family]] [[Urticaceae]].",
parents = {"Rosales order plants", "list of sets"},
}
labels["nightshades"] = {
description = "{{{langname}}} terms for [[ashwagandha]], [[black nightshade]], [[boxthorn]]s, [[datura]]s, [[deadly nightshade]], [[eggplant]]s, [[goji]], [[henbane]], [[mandrake]], [[matrimony vine]], [[pepper]]s, [[petunia]]s, [[potato]]es, [[tobacco]], [[tomatillo]]s, [[tomato]]es and other plants in the family [[Solanaceae]].",
parents = {"plants", "list of sets"},
}
labels["Nymphaeales order plants"] = {
description = "{{{langname}}} terms for [[fanwort]]s, [[foxnut]]s, [[spatterdock]]s, [[water lily|water lilies]], [[water-shield]]s, and other plants in the [[order]] [[Nymphaeales]].",
parents = {"water plants", "list of sets"},
}
labels["oaks"] = {
description = "{{{langname}}} terms for [[oak]]s.\n\nMany languages recognize two main types: those with flat, [[deciduous]] leaves, and those with curled, often prickly, [[evergreen]] leaves (live oaks).",
parents = {"beech family plants", "trees", "list of sets"},
}
labels["olive family plants"] = {
description = "{{{langname}}} terms for [[olive]]s, [[ash]]es, [[jasmine]]s, [[lilac]]s, [[privet]]s and other plants in the family [[Oleaceae]].",
parents = {"Lamiales order plants", "list of sets"},
}
labels["orchids"] = {
description = "{{{langname}}} terms for plants in the [[family]] [[Orchidaceae]].",
parents = {"Asparagales order plants", "flowers", "list of sets"},
}
labels["Oryzeae tribe grasses"] = {
description = "{{{langname}}} terms for [[cutgrass]], [[rice]], [[wild rice]], and other grasses in the tribe [[Oryzeae]].",
parents = {"grasses", "list of sets"},
}
labels["Oxalidales order plants"] = {
description = "{{{langname}}} terms for [[bilimbi]], [[coachwood]], [[cudgerie]], [[makomako]], [[quandong]], [[rudraksha]], [[star fruit]], [[wood sorrel]]s, and other plants in the [[order]] [[Oxalidales]].",
parents = {"plants", "trees", "list of sets"},
}
labels["palm trees"] = {
description = "{{{langname}}} terms for [[palm]]s.",
parents = {"Commelinids", "trees", "list of sets"},
}
labels["Pandanales order plants"] = {
description = "{{{langname}}} terms for [[kiekie]], [[Panama hat palm]], [[pandanus]], [[stemona]], and other plants in the [[order]] [[Pandanales]].",
parents = {"plants", "trees", "list of sets"},
}
labels["Paniceae tribe grasses"] = {
description = "{{{langname}}} terms for [[burgrass]], [[basketgrass]], [[bristlegrass]]es, [[buffelgrass]], [[common millet]], [[crabgrass]], [[elephant grass]], [[foxtail millet]], [[fountaingrass]], [[Kikuyu grass]], [[Napier grass]], [[panicgrass]], [[Pará grass]], [[pigeongrass]], [[sandbur]], [[spinifex]], [[switchgrass]], [[watergrass]], and other grasses in the tribe [[Paniceae]].",
parents = {"grasses", "list of sets"},
}
labels["passion vine family plants"] = {
description = "{{{langname}}} terms for [[barbadine]]s, [[damiana]], [[granadilla]]s, [[maracock]]s, [[maypop]]s, [[passionflower]]s, [[water lemon]]s, and other plants in the [[family]] [[Passifloraceae]].",
parents = {"Malpighiales order plants", "list of sets"},
}
labels["peppers"] = {
description = "{{{langname}}} terms for [[aji]]s, [[chile]]s, [[pimiento]]s, [[sweet pepper]]s, and other plants in the [[genus]] [[Capsicum]].",
parents = {"nightshades", "vegetables", "spices and herbs", "list of sets"},
}
labels["Phaseoleae tribe plants"] = {
description = "{{{langname}}} terms for [[azuki bean]]s, [[catjang]]s, [[Bambara groundnut]]s, [[Calabar bean]]s, [[coral tree]]s, [[green bean]]s, [[groundnut]]s, [[hyacinth bean]]s, [[jicama]], [[kidney bean]]s, [[kudzu]], [[mung bean]]s, [[pigeon pea]]s, [[runner bean]]s, [[snailflower]], [[soybean]]s, [[tepary]], [[winged bean]]s, [[yardlong bean]]s and other plants in the [[tribe]] [[Phaseoleae]] of the [[family]] [[Fabaceae]].",
parents = {"legumes", "list of sets"},
}
labels["Phaseolus beans"] = {
description = "{{{langname}}} terms for plants in the [[New World]] [[legume]] [[genus]] [[Phaseolus]].",
parents = {"Phaseoleae tribe plants", "vegetables", "list of sets"},
}
labels["pines"] = {
description = "{{{langname}}} terms for [[pine]]s.",
parents = {"conifers", "list of sets"},
}
labels["Piperales order plants"] = {
description = "{{{langname}}} terms for [[betel pepper]], [[black pepper]], [[cubeb]], [[hoja santa]], [[kava]], [[lizard tail]], [[long pepper]], [[pipevine]], [[radiator plant]], [[wild ginger]], [[yerba mansa]], and other plants in the [[order]] [[Piperales]].",
parents = {"Magnoliids", "list of sets"},
}
labels["plantain family plants"] = {
description = "{{{langname}}} terms for [[bacopa]]s, [[brooklime]], [[foxglove]]s, [[mare's tail]], [[penstemon]]s, [[plantain]]s, [[snapdragon]]s, and many other plants in the [[family]] [[Plantaginaceae]], including many formerly included in the [[Scrophulariaceae]] and the [[Hippuridaceae]].",
parents = {"Lamiales order plants", "flowers", "list of sets"},
}
labels["podocarpus family plants"] = {
description = "{{{langname}}} terms for conifers in the family [[Podocarpaceae]].",
parents = {"conifers", "list of sets"},
}
labels["Poeae tribe grasses"] = {
description = "{{{langname}}} terms for [[beachgrass]], [[bentgrass]], [[bluegrass]], [[canary grass]], [[darnel]], [[fescue]], [[goldseed]], [[hair grass]], [[marram]], [[muttongrass]], [[nitgrass]], [[oat]]s, [[ribbongrass]], [[sweetgrass]], [[timothy]], and other grasses in the [[tribe]] [[Poeae]], including the former tribe [[Aveneae]].",
parents = {"grasses", "list of sets"},
}
labels["polynesian canoe plants"] = {
description = "{{{langname}}} terms for [[Polynesian]] [[canoe plant]]s, plants which the Polynesians are believed to have spread between islands before European contact.",
parents = {"plants", "list of sets"},
}
labels["pome fruits"] = {
description = "{{{langname}}} terms for [[apple]]s, [[hawthorn]]s, [[pear]]s, [[quince]]s, [[serviceberry|serviceberries]] and other plants in [[subtribe]] [[Malinae]] of the family [[Rosaceae]].",
parents = {"rose family plants", "trees", "shrubs", "list of sets"},
}
labels["poppies"] = {
description = "{{{langname}}} terms for [[bleeding heart]], [[bloodroot]], [[celandine]], [[fumitory]], [[poppy|poppies]], and other plants in the family [[Papaveraceae]].",
parents = {"Ranunculales order plants", "list of sets"},
}
labels["primrose family plants"] = {
description = "{{{langname}}} terms for [[brookweed]], [[cyclamen]]s, [[marlberry]], [[pimpernel]]s, [[primrose]]s, [[shooting star]]s, [[snowbell]]s, [[starflower]]s and other plants in the family [[Primulaceae]], including the former [[family]] [[Myrsinaceae]].",
parents = {"Ericales order plants", "flowers", "list of sets"},
}
labels["proteales order plants"] = {
description = "{{{langname}}} terms for [[banksia]]s, [[grevillea]]s, [[hakea]]s, [[lotus]]es, [[macadamia]]s, [[plane]] trees, [[protea]]s, [[silk oak]]s, [[waratah]], and other plants in the [[order]] [[Proteales]].",
parents = {"plants", "trees", "shrubs", "list of sets"},
}
labels["Prunus genus plants"] = {
description = "{{{langname}}} terms for [[almond]]s, [[apricot]]s, [[cherry|cherries]], [[peach]]es, [[plum]]s and other plants in the genus [[Prunus]].",
parents = {"Rose family plants", "stone fruits", "list of sets"},
}
labels["radishes"] = {
description = "{{{langname}}} terms for [[radish]]es.",
parents = {"crucifers", "vegetables", "list of sets"},
}
labels["Ranunculales order plants"] = {
description = "{{{langname}}} terms for [[akebia]], [[barberry|barberries]], [[buttercup]]s, [[calumba]], [[moonseed]]s, [[poppy|poppies]], [[serendipity berry]], and other plants in the [[order]] [[Ranunculales]].",
parents = {"plants", "list of sets"},
}
labels["Rosales order plants"] = {
description = "{{{langname}}} terms for [[agrimony]], [[almond]]s, [[apple]]s, [[baby's tears]], [[blackberry|blackberries]], [[breadfruit]], [[buffaloberry|buffaloberries]], [[buckthorn]]s, [[cherry|cherries]], [[elm]]s, [[fig]]s, [[hackberries]], [[hemp]], [[hop]]s, [[jujube]]s, [[mulberry|mulberries]], [[nettle]]s, [[oleaster]]s, [[Osage orange]], [[pilea]]s, [[plum]]s, [[rose]]s, [[spirea]]s, [[strawberry|strawberries]], [[zelkova]]s, and many other plants, trees and shrubs in the [[order]] [[Rosales]].",
parents = {"plants", "list of sets"},
}
labels["rose family plants"] = {
description = "{{{langname}}} terms for [[agrimony]], [[almond]]s, [[apple]]s, [[blackberry|blackberries]], [[cherry|cherries]], [[cinquefoil]]s, [[hawthorn]]s, [[meadowsweet]], [[rose]]s, [[strawberry|strawberries]], and many other plants, trees and shrubs in the family [[Rosaceae]].",
parents = {"Rosales order plants", "list of sets"},
}
labels["roses"] = {
description = "{{{langname}}} terms for [[rose]]s.",
parents = {"rose family plants", "flowers", "list of sets"},
}
labels["rue family plants"] = {
description = "{{{langname}}} terms for [[Amur cork tree]], [[boronia]]s, [[breath of heaven]], [[buchu]], [[citrus]]es, [[hoptree]], [[jaborandi]], [[prickly ash]]es, [[rue]], [[satinwood]]s, [[Sichuan pepper]], [[torchwood]]s, [[white sapote]]s and other plants in the [[family]] [[Rutaceae]].",
parents = {"Sapindales order plants", "trees", "shrubs", "list of sets"},
}
labels["rushes"] = {
description = "{{{langname}}} terms for plants in the family [[Juncaceae]].",
parents = {"Commelinids","water plants", "list of sets"},
}
labels["sages"] = {
description = "{{{langname}}} terms for plants in the [[genus]] [[Salvia]] (not to be confused with [[sagebrush]]).",
parents = {"Mint family plants", "herbs", "list of sets"},
}
labels["Santalales order plants"] = {
description = "{{{langname}}} terms for [[mistletoe]]s, [[quandong]], [[sandalwood]]s, and other plants in the [[order]] [[Santalales]].",
parents = {"plants", "list of sets"},
}
labels["Sapindales order plants"] = {
description = "{{{langname}}} terms for [[cashew]]s, [[Chinese olive]]s, [[chinaberry]], [[citrus]]es, [[frankincense]], [[jaborandi]], [[lychee]]s, [[mahogany]], [[mango]]s, [[maple]]s, [[myrrh]], [[neem]], [[pistachio]]s, [[poison ivy]], [[quassia]], [[rambutan]], [[rue]], [[Sichuan pepper]], [[soapberry]], [[sumac]]s, [[tamarind]], [[tree of heaven]], and many other plants, trees and shrubs in the [[order]] [[Sapindales]].",
parents = {"plants", "trees", "shrubs", "list of sets"},
}
labels["sapote family plants"] = {
description = "{{{langname}}} terms for trees and shrubs in the family [[Sapotaceae]].",
parents = {"Ericales order plants", "list of sets"},
}
labels["Saxifragales order plants"] = {
description = "{{{langname}}} terms for [[alumroot]]s, [[astilbe]]s, [[currant]]s, [[foamflower]]s, [[gooseberry|gooseberries]], [[Indian rhubarb]], [[katsura]], [[London pride]], [[miterwort]]s, [[peony|peonies]], [[rockfoil]]s, [[saxifrage]]s, [[stonecrop]]s, [[sweet gum]]s, [[watermilfoil]]s, [[witch hazel]]s, [[youth-on-age]], and other plants in the [[order]] [[Saxifragales]].",
parents = {"plants", "trees", "shrubs", "succulents", "list of sets"},
}
labels["Scandiceae tribe plants"] = {
description = "{{{langname}}} terms for [[asafoetida]], [[carrot]]s, [[chervil]], [[cicely]], [[cumin]], [[lady's comb]], [[laserwort]], and other plants in the [[tribe]] [[Scandiceae]] of the celery [[family]], [[Apiaceae]].",
parents = {"celery family plants", "list of sets"},
}
labels["sedges"] = {
description = "{{{langname}}} terms for plants in the family [[Cyperaceae]].",
parents = {"Commelinids", "list of sets"},
}
labels["Selineae tribe plants"] = {
description = "{{{langname}}} terms for [[angelica]], [[arracacha]], [[biscuitroot]], [[dog parsley]], [[dong quai]], [[hog fennel]], [[masterwort]], and other plants in the [[tribe]] [[Selineae]] of the celery [[family]], [[Apiaceae]].",
parents = {"celery family plants", "list of sets"},
}
labels["Senecioneae tribe plants"] = {
description = "{{{langname}}} terms for [[butterbur]]s, [[cineraria]]s, [[coltsfoot]]s, [[dusty miller]], [[groundsel]]s, [[leopardsbane]], [[ragwort]]s, [[string of pearls]], and other plants in the [[composite]] tribe [[Senecioneae]].",
parents = {"composites", "list of sets"},
}
labels["shrubs"] = {
description = "default-set",
parents = {"plants", "list of sets"},
}
labels["soapberry family plants"] = {
description = "{{{langname}}} terms for plants in the family [[Sapindaceae]].",
parents = {"Sapindales order plants", "trees", "shrubs", "list of sets"},
}
labels["solanums"] = {
description = "{{{langname}}} terms for [[bittersweet]], [[black nightshade]] [[buffalo bur]], [[eggplant]]s, [[Jerusalem cherry]], [[kangaroo apple]], [[pepino melon]], [[potato]]es, [[tamarillo]], [[tomato]]es, [[wonderberry]] and other plants in the [[genus]] ''[[Solanum]]''.",
parents = {"nightshades", "vegetables", "list of sets"},
}
labels["spore plants"] = {
description = "{{{langname}}} terms for a number of unrelated true plants that reproduce by [[spore]]s, such as [[moss]]es, [[liverwort]]s, [[horsetail]]s and [[fern]]s, formerly classified as [[cryptogam]]s.",
parents = {"plants", "list of sets"},
}
labels["spurges"] = {
description = "{{{langname}}} terms for [[candlenut]]s, [[cassava]], [[castor bean]]s, [[croton]]s, [[poinsettia]]s, [[rubber tree]]s, [[spurge]]s, [[tallow tree]]s, and other plants in the [[family]] [[Euphorbiaceae]].",
parents = {"Malpighiales order plants", "list of sets"},
}
labels["staff vine family plants"] = {
description = "{{{langname}}} terms for [[bittersweet]], [[burning bush]], [[candlewood]], [[grass of Parnassus]], [[khat]], [[mayten]], [[paxistima]]s, [[spindle tree]]s, [[staff vine]]s, [[thunder god vine]], [[wahoo]], and other plants in the family [[Celastraceae]].",
parents = {"plants", "shrubs", "list of sets"},
}
labels["stone fruits"] = {
description = "{{{langname}}} terms for [[fruit#Noun|fruit]] which are [[drupe]]s (having a [[fleshy]] portion surrounding a hard [[pit#Noun|pit]] or [[stone#Noun|stone]] containing a [[seed#Noun|seed]]). Plants that produce drupes include [[cashew]], [[coffee]], [[jujube]], [[mango]], [[olive]], most [[palm#Noun|palms]] (including [[açaí]], [[coconut]], [[date#Noun|date]], [[oil palm]]s, and [[sabal]]), [[pistachio]], and all members of the [[genus]] ''[[Prunus]]'' (including the [[almond]], [[apricot]], [[cherry]], [[damson]], [[nectarine]], [[peach]], and [[plum#Noun|plum]]).",
parents = {"fruits", "shrubs", "trees", "list of sets"},
}
labels["stonecrop family plants"] = {
description = "{{{langname}}} terms for [[succulent]]s in the family [[Crassulaceae]].",
parents = {"Saxifragales order plants", "succulents", "list of sets"},
}
labels["succulents"] = {
description = "{{{langname}}} terms for plants with thickened, fleshy leaves or stems for storing water.",
parents = {"plants", "list of sets"},
}
labels["sumac family plants"] = {
description = "{{{langname}}} terms for [[sumac]]s, [[cashew]]s, [[pistachio]]s, [[poison ivy]] and other plants in the family [[Anacardiaceae]].",
parents = {"Sapindales order plants", "trees", "shrubs", "list of sets"},
}
labels["thistles"] = {
description = "{{{langname}}} terms for [[artichoke]]s, [[burdock]]s, [[cardoon]]s, [[costus]], [[knapweed]]s, [[safflower]], [[sawwort]], [[thistle]]s and other plants in the [[tribe]] [[Cynareae]] (also known as the [[Cardueae]]) of the [[family]] [[Asteraceae]].",
parents = {"composites", "list of sets"},
}
labels["tomatoes"] = {
description = "{{{langname}}} terms for plants in the cultivated [[species]] ''[[Solanum lycopersicum]]'' and its wild relative, ''[[Solanum pimpinellifolium]]''.",
parents = {"nightshades", "solanums", "vegetables", "list of sets"},
}
labels["trees"] = {
description = "{{{langname}}} terms for [[tree]]s.",
parents = {"plants", "list of sets"},
}
labels["Trifolieae tribe plants"] = {
description = "{{{langname}}} terms for [[alfalfa]], [[alsike]], [[burclover]], [[clover]], [[fenugreek]], [[medick]], [[melilot]], [[restharrow]], and other plants in the [[tribe]] [[Trifolieae]] of the [[family]] [[Fabaceae]].",
parents = {"legumes", "list of sets"},
}
labels["Vigna beans"] = {
description = "{{{langname}}} terms for plants in the Asian [[legume]] [[genus]] [[Vigna]], including [[black-eyed pea]]s, [[Bambara groundnut]]s and what are variously called [[bean]]s, [[dal]]s or [[gram]]s.",
parents = {"Phaseoleae tribe plants", "vegetables", "list of sets"},
}
labels["violet family plants"] = {
description = "{{{langname}}} terms for [[Johnny-jump-up]]s, [[mahoe]], [[pansy|pansies]], [[viola]]s, [[violet]]s, [[whiteywood]] and other plants in the family [[Violaceae]].",
parents = {"Malpighiales order plants", "list of sets"},
}
labels["walnut family plants"] = {
description = "{{{langname}}} terms for [[walnut]]s, [[butternut]]s, [[hickory|hickories]], [[pecan]]s, and other trees in the family [[Juglandaceae]].",
parents = {"trees", "nuts", "list of sets"},
}
labels["water plants"] = {
description = "{{{langname}}} terms for water plants.",
parents = {"plants", "list of sets"},
}
labels["willows and poplars"] = {
description = "{{{langname}}} terms for plants in the family [[Salicaceae]].",
parents = {"Malpighiales order plants", "trees", "list of sets"},
}
labels["Zingiberales order plants"] = {
description = "{{{langname}}} terms for [[arrowroot]], [[banana]]s, [[bird of paradise|birds of paradise]], [[canna]]s, [[ginger]]s, [[prayer plant]], and other plants in the [[order]] [[Zingiberales]].",
parents = {"Commelinids", "list of sets"},
}
return labels
8cgsx2edptya4c9b9tvt0xro5rdknla
Module:category tree/topic cat/data/Mathematics
828
5248
13256
2022-07-29T18:52:26Z
Asinis632
1829
Created page with "local labels = {} labels["formal sciences"] = { description = "{{{langname}}} terms related to the [[formal science]]s, the study of non-physical systems and abstractions.", parents = {"sciences"}, } labels["mathematics"] = { description = "default no singularize", parents = {"formal sciences"}, } labels["algebra"] = { description = "default", parents = {"mathematics"}, } labels["algebraic geometry"] = { description = "default", parents = {"geometry", "algebr..."
Scribunto
text/plain
local labels = {}
labels["formal sciences"] = {
description = "{{{langname}}} terms related to the [[formal science]]s, the study of non-physical systems and abstractions.",
parents = {"sciences"},
}
labels["mathematics"] = {
description = "default no singularize",
parents = {"formal sciences"},
}
labels["algebra"] = {
description = "default",
parents = {"mathematics"},
}
labels["algebraic geometry"] = {
description = "default",
parents = {"geometry", "algebra"},
}
labels["algebraic topology"] = {
description = "default",
parents = {"topology", "algebra"},
}
labels["analysis"] = {
description = "default no singularize",
parents = {"mathematics"},
}
labels["applied mathematics"] = {
description = "default",
parents = {"mathematics"},
}
labels["arithmetic"] = {
description = "default",
parents = {"mathematics", "applied sciences"},
}
labels["calculus"] = {
description = "default no singularize",
parents = {"mathematical analysis"},
}
labels["category theory"] = {
description = "default",
parents = {"mathematics"},
}
labels["coding theory"] = {
description = "default",
parents = {"information theory"},
}
labels["combinatorics"] = {
description = "default no singularize",
parents = {"mathematics"},
}
labels["complex analysis"] = {
description = "default no singularize",
parents = {"mathematics"},
}
labels["differential geometry"] = {
description = "default",
parents = {"geometry", "mathematical analysis"},
}
labels["functional analysis"] = {
description = "default no singularize",
parents = {"mathematical analysis"},
}
labels["functions"] = {
description = "default",
parents = {"algebra", "calculus", "geometry", "mathematical analysis"},
}
labels["fuzzy logic"] = {
description = "default",
parents = {"logic"},
}
labels["game theory"] = {
description = "default",
parents = {"mathematics"},
}
labels["geometry"] = {
description = "default",
parents = {"mathematics"},
}
labels["graph theory"] = {
description = "default",
parents = {"mathematics", "visualization"},
}
labels["group theory"] = {
description = "default",
parents = {"algebra"},
}
labels["higher-dimensional geometry"] = {
description = "default",
parents = {"geometry"},
}
labels["information theory"] = {
description = "default",
parents = {"applied mathematics"},
}
labels["linear algebra"] = {
description = "default",
parents = {"algebra"},
}
labels["logic"] = {
description = "default",
parents = {"formal sciences", "philosophy"},
}
labels["mathematical analysis"] = {
description = "default no singularize",
parents = {"mathematics"},
}
labels["measure theory"] = {
description = "default",
parents = {"mathematics"},
}
labels["number theory"] = {
description = "default",
parents = {"mathematics"},
}
labels["numerical analysis"] = {
description = "default no singularize",
parents = {"mathematical analysis"},
}
labels["probability theory"] = {
description = "default",
parents = {"mathematical analysis"},
}
labels["ring theory"] = {
description = "default",
parents = {"algebra"},
}
labels["set theory"] = {
description = "default",
parents = {"mathematics"},
}
labels["shapes"] = {
description = "default",
parents = {"geometry"},
}
labels["topology"] = {
description = "default",
parents = {"mathematics"},
}
labels["trigonometry"] = {
description = "default",
parents = {"mathematics"},
}
return labels
oscp44npjt5qsaina5me6iqzymxwe61
Module:category tree/topic cat/data/Miscellaneous
828
5249
13257
2022-07-29T18:54:17Z
Asinis632
1829
Created page with "local labels = {} labels["miscellaneous"] = { description = "{{{langname}}} topics that do not currently fit elsewhere.", parents = {"all topics"}, } labels["appearance"] = { description = "default", parents = {"miscellaneous"}, } labels["collectives"] = { description = "{{{langname}}} terms for entities involving or consisting of a congregation or membership.", parents = {"miscellaneous"}, } labels["knots"] = { description = "default", parents = {"miscellane..."
Scribunto
text/plain
local labels = {}
labels["miscellaneous"] = {
description = "{{{langname}}} topics that do not currently fit elsewhere.",
parents = {"all topics"},
}
labels["appearance"] = {
description = "default",
parents = {"miscellaneous"},
}
labels["collectives"] = {
description = "{{{langname}}} terms for entities involving or consisting of a congregation or membership.",
parents = {"miscellaneous"},
}
labels["knots"] = {
description = "default",
parents = {"miscellaneous"},
}
return labels
s6170rwc6vnibtdw0kzqp9c5h50lh4e
Module:category tree/topic cat/data/Names
828
5251
13258
2022-07-29T18:55:06Z
Asinis632
1829
Created page with "local labels = {} labels["names"] = { description = "{{{langname}}} names for a variety of things. Given names and surnames can be found in [[:Category:Names by language]].", parents = {"all sets", "list of sets"}, } labels["Arabic letter names"] = { description = "{{{langname}}} terms that serve as names for letters and symbols directly based on letters, such as [[ligature]]s and letters with [[diacritic]]s, of the [[Appendix:Arabic script|Arabic script]].", paren..."
Scribunto
text/plain
local labels = {}
labels["names"] = {
description = "{{{langname}}} names for a variety of things. Given names and surnames can be found in [[:Category:Names by language]].",
parents = {"all sets", "list of sets"},
}
labels["Arabic letter names"] = {
description = "{{{langname}}} terms that serve as names for letters and symbols directly based on letters, such as [[ligature]]s and letters with [[diacritic]]s, of the [[Appendix:Arabic script|Arabic script]].",
parents = {"letter names", "list of sets"},
}
labels["Aramaic letter names"] = {
description = "default with capital",
parents = {"letter names", "list of sets"},
}
labels["Couple nicknames"] = {
description = "{{{langname}}} informal names for pairs of people, especially [[celebrity]] [[couple]]s.",
parents = {"names", "people", "list of sets"},
}
labels["Cyrillic letter names"] = {
description = "{{{langname}}} terms that serve as names for letters and symbols directly based on letters, such as [[ligature]]s and letters with [[diacritic]]s, of the [[Appendix:Cyrillic script|Cyrillic script]].",
parents = {"letter names", "list of sets"},
}
labels["Devanagari letter names"] = {
description = "{{{langname}}} terms that serve as names for letters and symbols directly based on letters, such as [[ligature]]s and letters with [[diacritic]]s, of the [[Appendix:Devanagari script|Devanagari script]].",
parents = {"letter names", "list of sets"},
}
labels["foreign personal names"] = {
description = "Transliterations, respellings or other renderings of personal names into {{{langname}}}.",
umbrella_description = "transliterations, respellings or other renderings of personal names",
parents = {"names"},
}
labels["Georgian letter names"] = {
description = "{{{langname}}} terms that serve as names for letters and symbols directly based on letters, such as [[ligature]]s and letters with [[diacritic]]s, of the [[Appendix:Georgian script|Georgian script]].",
parents = {"letter names", "list of sets"},
}
labels["Greek letter names"] = {
description = "{{{langname}}} terms that serve as names for letters and symbols directly based on letters, such as [[ligature]]s and letters with [[diacritic]]s, of the [[Appendix:Greek alphabet|Greek script]].",
parents = {"letter names", "list of sets"},
}
labels["Hebrew letter names"] = {
description = "{{{langname}}} terms that serve as names for letters and symbols directly based on letters, such as [[ligature]]s and letters with [[diacritic]]s, of the [[Appendix:Hebrew script|Hebrew script]].",
parents = {"letter names", "list of sets"},
}
labels["Korean letter names"] = {
description = "{{{langname}}} terms that serve as names for letters and symbols directly based on letters, such as [[ligature]]s and letters with [[diacritic]]s, of the [[Appendix:Korean script|Korean script]].",
parents = {"letter names", "list of sets"},
}
labels["Latin letter names"] = {
description = "{{{langname}}} terms that serve as names for letters and symbols directly based on letters, such as [[ligature]]s and letters with [[diacritic]]s, of the [[Appendix:Latin script|Latin script]].",
parents = {"letter names", "list of sets"},
}
labels["letter names"] = {
description = "{{{langname}}} terms that are the names of letters. Ideally entries should be in a subcategory for the names of letters in a particular script.",
parents = {"names", "letters, symbols, and punctuation", "list of sets"},
}
labels["named roads"] = {
description = "{{{langname}}} terms for roads that are individually named.",
parents = {"names", "roads", "list of sets"},
}
labels["Phoenician letter names"] = {
description = "default with capital",
parents = {"letter names", "list of sets"},
}
labels["Runic letter names"] = {
description = "default",
parents = {"letter names", "list of sets"},
}
labels["taxonomic names"] = {
description = "default",
parents = {"names", "taxonomy", "list of sets"},
}
labels["Thai letter names"] = {
description = "default with capital",
parents = {"letter names", "list of sets"},
}
return labels
afyz3qanlfuilp3fh3uaxtg2a9th8t6
Module:category tree/topic cat/data/Nature
828
5252
13259
2022-07-29T18:56:25Z
Asinis632
1829
Created page with "local labels = {} labels["nature"] = { description = "default", parents = {"all topics"}, } labels["acids"] = { description = "default-set", parents = {"matter", "list of sets"}, } labels["actinide series chemical elements"] = { description = "default-set", parents = {"chemical elements", "radioactivity", "list of sets"}, } labels["air"] = { description = "default", parents = {"atmosphere"}, } labels["alkali metals"] = { description = "{{{langname}}} terms..."
Scribunto
text/plain
local labels = {}
labels["nature"] = {
description = "default",
parents = {"all topics"},
}
labels["acids"] = {
description = "default-set",
parents = {"matter", "list of sets"},
}
labels["actinide series chemical elements"] = {
description = "default-set",
parents = {"chemical elements", "radioactivity", "list of sets"},
}
labels["air"] = {
description = "default",
parents = {"atmosphere"},
}
labels["alkali metals"] = {
description = "{{{langname}}} terms for [[alkali metal]]s.",
parents = {"chemical elements", "metals", "list of sets"},
}
labels["alkaline earth metals"] = {
description = "default-set",
parents = {"chemical elements", "metals", "list of sets"},
}
labels["alkaloids"] = {
description = "{{{langname}}} names of [[alkaloid]]s and related terms.",
parents = {"organic compounds", "list of sets"},
}
labels["alloys"] = {
description = "{{{langname}}} terms for [[alloy]]s.",
parents = {"metals", "list of sets"},
}
labels["amino acids"] = {
description = "default-set",
parents = {"carboxylic acids", "list of sets"},
}
labels["animal sounds"] = {
description = "{{{langname}}} terms for [[animal]] [[sound]]s.",
parents = {"sounds", "vocalizations", "list of sets"},
}
labels["animal welfare"] = {
description = "{{{langname}}} terms closely associated with [[animal welfare]].",
parents = {"ethics"},
}
labels["antimatter"] = {
description = "default",
parents = {"matter", "list of topics"},
}
labels["asteroids"] = {
description = "{{{langname}}} terms for [[asteroid]]s.",
parents = {"celestial bodies", "list of sets"},
}
labels["atmosphere"] = {
description = "default",
parents = {"nature"},
}
labels["atmospheric phenomena"] = {
description = "default-set",
parents = {"atmosphere", "list of sets"},
}
labels["autumn"] = {
description = "default",
parents = {"nature"},
}
labels["baryons"] = {
description = "default-set",
parents = {"hadrons", "list of sets"},
}
labels["blacks"] = {
description = "{{{langname}}} terms for various shades of the [[color]] [[black]].",
parents = {"colors", "list of sets"},
}
labels["blues"] = {
description = "{{{langname}}} terms for various shades of the [[color]] [[blue]].",
parents = {"colors", "list of sets"},
}
labels["bosons"] = {
description = "default-set",
parents = {"subatomic particles", "list of sets"},
}
labels["browns"] = {
description = "{{{langname}}} terms for various shades of the [[color]] [[brown]].",
parents = {"colors", "list of sets"},
}
labels["carbohydrates"] = {
description = "default-set",
parents = {"organic compounds", "list of sets"},
}
labels["carboxylic acids"] = {
description = "default-set",
parents = {"acids", "organic compounds", "list of sets"},
}
labels["celestial bodies"] = {
description = "{{{langname}}} terms for [[celestial body|celestial bodies]]; things found in outer space.",
parents = {"all sets", "space", "list of sets"},
}
labels["chalcogens"] = {
description = "{{{langname}}} names of [[chalcogen]]s.",
parents = {"chemical elements", "list of sets"},
}
labels["chemical elements"] = {
description = "{{{langname}}} names of [[chemical element]]s.",
parents = {"matter", "list of sets"},
}
labels["chemical processes"] = {
description = "{{{langname}}} terms for [[chemical]] [[process]]es.",
parents = {"nature", "list of sets"},
}
labels["classical planets"] = {
description = "{{{langname}}} names for the [[classical planet]]s of our Solar System.",
parents = {"celestial bodies"},
}
labels["climate change"] = {
description = "{{{langname}}} terms related to [[anthropogenic]] [[climate change]].",
parents = {"nature"},
}
labels["clouds"] = {
description = "default-set",
parents = {"atmospheric phenomena", "list of sets"},
}
labels["coenzymes"] = {
description = "default-set",
parents = {"enzymes", "list of sets"},
}
labels["colors"] = {
description = "default-set",
parents = {"light", "vision", "list of sets"},
}
labels["colors of the rainbow"] = {
description = "{{{langname}}} terms for [[color]]s of the [[rainbow]].",
parents = {"colors", "list of sets"},
}
labels["combustion"] = {
description = "default",
parents = {"chemical processes"},
}
labels["compass points"] = {
description = "{{{langname}}} terms for [[compass point]]s.",
parents = {"directions", "navigation", "list of sets"},
}
labels["directions"] = {
description = "{{{langname}}} terms for [[direction]]s.",
parents = {"nature", "list of sets"},
}
labels["drugs"] = {
description = "{{{langname}}} terms for [[drug]]s.",
parents = {"matter", "pharmacology", "list of sets"},
}
labels["dwarf planets of the Solar System"] = {
description = "{{{langname}}} names for the [[dwarf planet]]s of our Solar System.",
parents = {"celestial bodies", "list of sets"},
}
labels["dyes"] = {
description = "{{{langname}}} terms for [[dye]]s.",
parents = {"matter", "pigments", "list of sets"},
}
labels["energy"] = {
description = "default",
parents = {"nature"},
}
labels["enzymes"] = {
description = "{{{langname}}} terms for [[enzyme]]s.",
parents = {"proteins", "list of sets"},
}
labels["explosives"] = {
description = "{{{langname}}} terms for [[explosive]]s.",
parents = {"matter", "weapons", "list of sets"},
}
labels["fatty acids"] = {
description = "default-set",
parents = {"carboxylic acids", "list of sets"},
}
labels["fermions"] = {
description = "default-set",
parents = {"subatomic particles", "list of sets"},
}
labels["fire"] = {
description = "default",
parents = {"combustion", "light sources"},
}
labels["fog"] = {
description = "default",
parents = {"weather", "water"},
}
labels["galaxies"] = {
description = "default-set",
parents = {"celestial bodies", "list of sets"},
}
labels["gases"] = {
description = "{{{langname}}} terms for [[gas]]es.",
parents = {"matter", "list of sets"},
}
labels["gold"] = {
description = "{{{langname}}} terms related to [[gold]].",
parents = {"chemical elements", "metals", "list of sets"},
}
labels["greens"] = {
description = "{{{langname}}} terms for various shades of the [[color]] [[green]].",
parents = {"colors", "list of sets"},
}
labels["greys"] = {
description = "{{{langname}}} terms for various shades of the [[color]] [[grey]] ([[gray]]).",
parents = {"colors", "list of sets"},
}
labels["hadrons"] = {
description = "default-set",
parents = {"subatomic particles", "list of sets"},
}
labels["halogens"] = {
description = "{{{langname}}} terms for [[halogen]]s.",
parents = {"chemical elements", "list of sets"},
}
labels["heroin"] = {
description = "default",
parents = {"recreational drugs"},
}
labels["ice"] = {
description = "default",
parents = {"water", "list of sets"},
}
labels["inorganic compounds"] = {
description = "{{{langname}}} terms for [[inorganic compound]]s.",
parents = {"matter", "list of sets"},
}
labels["ions"] = {
description = "{{{langname}}} terms for [[ion]]s.",
parents = {"matter", "list of sets"},
}
labels["isotopes"] = {
description = "default-set",
parents = {"chemical elements", "list of sets"},
}
labels["lanthanide series chemical elements"] = {
description = "default-set",
parents = {"chemical elements", "radioactivity", "list of sets"},
}
labels["leptons"] = {
description = "{{{langname}}} terms for [[lepton]]s.",
parents = {"fermions", "list of sets"},
}
labels["light"] = {
description = "default",
parents = {"energy"},
}
labels["light sources"] = {
description = "{{{langname}}} terms for [[light source]]s.",
parents = {"light", "list of sets"},
}
labels["liquids"] = {
description = "{{{langname}}} terms for [[liquid]]s.", -- At what temperature?
parents = {"matter", "list of sets"},
}
labels["Mars (planet)"] = {
description = "{{{langname}}} terms related to the planet [[Mars]].",
parents = {"planets of the Solar System"},
}
labels["marijuana"] = {
description = "default",
parents = {"cannabis family plants", "recreational drugs"},
}
labels["matter"] = {
description = "{{{langname}}} terms related to physical [[matter]].",
parents = {"nature", "chemistry"},
}
labels["metalloids"] = {
description = "default-set",
parents = {"chemical elements", "list of sets"},
}
labels["metals"] = {
description = "{{{langname}}} terms for [[metal]]s.",
parents = {"matter", "metallurgy", "list of sets"},
}
labels["minerals"] = {
description = "{{{langname}}} terms for [[mineral]]s.",
parents = {"matter", "list of sets"},
}
labels["moons"] = {
description = "{{{langname}}} terms for [[moon]]s.",
parents = {"celestial bodies", "list of sets"},
}
labels["moons of Jupiter"] = {
description = "{{{langname}}} terms for the [[moon]]s that orbit [[Jupiter]].",
parents = {"moons", "list of sets"},
}
labels["moons of Mars"] = {
description = "{{{langname}}} terms for the [[moon]]s that orbit [[Mars]].",
parents = {"moons", "list of sets"},
}
labels["moons of Neptune"] = {
description = "{{{langname}}} terms for the [[moon]]s that orbit [[Neptune]].",
parents = {"moons", "list of sets"},
}
labels["moons of Pluto"] = {
description = "{{{langname}}} terms for the [[moon]]s that orbit [[Pluto]].",
parents = {"moons", "list of sets"},
}
labels["moons of Saturn"] = {
description = "{{{langname}}} terms for the [[moon]]s that orbit [[Saturn]].",
parents = {"moons", "list of sets"},
}
labels["moons of Uranus"] = {
description = "{{{langname}}} terms for the [[moon]]s that orbit [[Uranus]].",
parents = {"moons", "list of sets"},
}
labels["moons of Haumea"] = {
description = "{{{langname}}} terms for the [[moon]]s that orbit [[Haumea]].",
parents = {"moons", "list of sets"},
}
labels["natural products (Chemistry)"] = {
description = "{{{langname}}} terms for [[organic compound]]s produced by living [[organism]]s.",
parents = {"organic compounds", "list of sets"},
}
labels["natural resources"] = {
description = "default-set",
parents = {"matter", "list of sets"},
}
labels["neurotoxins"] = {
description = "default-set",
parents = {"poisons", "neuroscience", "list of sets"},
}
labels["noble gases"] = {
description = "default-set",
parents = {"chemical elements", "gases", "list of sets"},
}
labels["oranges"] = {
description = "{{{langname}}} terms for various shades of the [[color]] [[orange]].",
parents = {"colors", "list of sets"},
}
labels["organic compounds"] = {
description = "{{{langname}}} terms for [[organic compound]]s.",
parents = {"matter", "list of sets"},
}
labels["pharmaceutical drugs"] = {
description = "{{{langname}}} names for [[pharmaceutical]] [[drug]]s.",
parents = {"drugs", "pharmacology", "list of sets"},
}
labels["pigments"] = {
description = "{{{langname}}} terms for [[pigment]]s.",
parents = {"colors", "list of sets"},
}
labels["pinks"] = {
description = "{{{langname}}} terms for various shades of the [[color]] [[pink]].",
parents = {"colors", "list of sets"},
}
labels["planetoids"] = {
description = "default-set",
parents = {"celestial bodies", "list of sets"},
}
labels["planets"] = {
description = "{{{langname}}} terms for [[planet]]s.",
parents = {"celestial bodies", "list of sets"},
}
labels["planets of the Solar System"] = {
description = "{{{langname}}} names for the planets of our [[Solar System]].",
parents = {"planets", "list of sets"},
}
labels["alkali metals"] = {
description = "{{{langname}}} terms for [[alkali metal]]s.",
parents = {"chemical elements", "metals", "list of sets"},
}
labels["pnictogens"] = {
description = "{{{langname}}} names of [[pnictogen]]s.",
parents = {"chemical elements", "list of sets"},
}
labels["poisons"] = {
description = "{{{langname}}} names of [[poison]]s.",
parents = {"matter", "list of sets"},
}
labels["purples"] = {
description = "{{{langname}}} terms for various shades of the [[color]] [[purple]].",
parents = {"colors", "list of sets"},
}
labels["quarks"] = {
description = "default-set",
parents = {"fermions", "list of sets"},
}
labels["radiation"] = {
description = "default",
parents = {"energy"},
}
labels["radioactivity"] = {
description = "default",
parents = {"radiation", "nuclear physics"},
}
labels["rain"] = {
description = "default",
parents = {"weather", "water"},
}
labels["recreational drugs"] = {
description = "{{{langname}}} terms for [[recreational drug]]s.",
parents = {"drugs", "list of sets"},
}
labels["reds"] = {
description = "{{{langname}}} terms for various shades of the [[color]] [[red]].",
parents = {"colors", "list of sets"},
}
labels["silence"] = {
description = "default",
parents = {"sound"},
}
labels["size"] = {
description = "default",
parents = {"nature"},
}
labels["snow"] = {
description = "default",
parents = {"weather", "water"},
}
labels["sound"] = {
description = "default",
parents = {"energy"},
}
labels["sounds"] = {
description = "default",
parents = {"sound", "list of sets"},
}
labels["space"] = {
description = "default",
parents = {"nature"},
}
labels["spring"] = {
description = "default",
parents = {"nature"},
}
labels["squarks"] = {
description = "default-set",
parents = {"fermions", "list of sets"},
}
labels["stars"] = {
description = "{{{langname}}} names of individual [[star]]s, not including the [[Sun]].",
parents = {"celestial bodies", "list of sets"},
}
labels["steroids"] = {
description = "{{{langname}}} terms for [[steroid]]s.",
parents = {"organic compounds", "list of sets"},
}
labels["subatomic particles"] = {
description = "{{{langname}}} terms for [[subatomic]] [[particle]]s.",
parents = {"matter", "particle physics", "list of sets"},
}
labels["sugar acids"] = {
description = "default-set",
parents = {"carboxylic acids", "carbohydrates", "list of sets"},
}
labels["sugars"] = {
description = "{{{langname}}} terms for [[sugar]]s.",
parents = {"carbohydrates", "list of sets"},
}
labels["summer"] = {
description = "default",
parents = {"nature"},
}
labels["sun"] = {
description = "{{{langname}}} terms related to the [[Sun]].",
parents = {"nature", "light", "celestial bodies"},
}
labels["temperature"] = {
description = "default",
parents = {"nature", "weather"},
}
labels["teratogens"] = {
description = "{{{langname}}} names for [[teratogen]]s.",
parents = {"poisons", "list of sets"},
}
labels["tobacco"] = {
description = "default",
parents = {"nightshades", "recreational drugs", "smoking"},
}
labels["types of planets"] = {
description = "{{{langname}}} terms for various types of [[planet]]s.",
parents = {"planets", "list of sets"},
}
labels["Uranium"] = {
description = "default",
parents = {"Actinide series chemical elements", "list of topics"},
}
labels["vocalizations"] = {
description = "default",
parents = {"sounds", "communication", "list of sets"},
}
labels["water"] = {
description = "default",
parents = {"liquids"},
}
labels["weather"] = {
description = "default",
parents = {"atmosphere"},
}
labels["whites"] = {
description = "{{{langname}}} terms for various shades of the [[color]] [[white]].",
parents = {"colors", "list of sets"},
}
labels["wind"] = {
description = "default",
parents = {"weather"},
}
labels["winter"] = {
description = "default",
parents = {"nature"},
}
labels["yellows"] = {
description = "{{{langname}}} terms for various shades of the [[color]] [[yellow]].",
parents = {"colors", "list of sets"},
}
return labels
58apbrtxfdwo3vqeqr7us20x1eppbob
Module:category tree/topic cat/data/Numbers
828
5253
13260
2022-07-29T18:57:19Z
Asinis632
1829
Created page with "local labels = {} labels["numbers"] = { description = "{{{langname}}} terms related to [[number]]s.", parents = {"all topics"}, } labels["collective numbers"] = { description = "default-set", parents = {"numbers", "list of sets"}, } labels["distributive numbers"] = { description = "{{{langname}}} terms for [[distributive number]]s.", parents = {"numbers", "list of sets"}, } labels["multiplicative numbers"] = { description = "{{{langname}}} terms for [[multiplic..."
Scribunto
text/plain
local labels = {}
labels["numbers"] = {
description = "{{{langname}}} terms related to [[number]]s.",
parents = {"all topics"},
}
labels["collective numbers"] = {
description = "default-set",
parents = {"numbers", "list of sets"},
}
labels["distributive numbers"] = {
description = "{{{langname}}} terms for [[distributive number]]s.",
parents = {"numbers", "list of sets"},
}
labels["multiplicative numbers"] = {
description = "{{{langname}}} terms for [[multiplicative number]]s.",
parents = {"numbers", "list of sets"},
}
labels["eight"] = {
description = "{{{langname}}} terms related to the number [[eight]], be it [[etymologically]] or [[semantically]].",
parents = {"numbers"},
}
labels["eighteen"] = {
description = "{{{langname}}} terms related to the number [[eighteen]], be it [[etymologically]] or [[semantically]].",
parents = {"numbers"},
}
labels["eighty"] = {
description = "{{{langname}}} terms related to the number [[eighty]], be it [[etymologically]] or [[semantically]].",
parents = {"numbers"},
}
labels["eleven"] = {
description = "{{{langname}}} terms related to the number [[eleven]], be it [[etymologically]] or [[semantically]].",
parents = {"numbers"},
}
labels["fifteen"] = {
description = "{{{langname}}} terms related to the number [[fifteen]], be it [[etymologically]] or [[semantically]].",
parents = {"numbers"},
}
labels["fifty"] = {
description = "{{{langname}}} terms related to the number [[fifty]], be it [[etymologically]] or [[semantically]].",
parents = {"numbers"},
}
labels["five"] = {
description = "{{{langname}}} terms related to the number [[five]], be it [[etymologically]] or [[semantically]].",
parents = {"numbers"},
}
labels["forty"] = {
description = "{{{langname}}} terms related to the number [[forty]], be it [[etymologically]] or [[semantically]].",
parents = {"numbers"},
}
labels["four"] = {
description = "{{{langname}}} terms related to the number [[four]], be it [[etymologically]] or [[semantically]].",
parents = {"numbers"},
}
labels["fourteen"] = {
description = "{{{langname}}} terms related to the number [[fourteen]], be it [[etymologically]] or [[semantically]].",
parents = {"numbers"},
}
labels["historical numbers"] = {
description = "default-set",
parents = {"numbers", "list of sets"},
}
labels["hundred"] = {
description = "{{{langname}}} terms related to the number [[one hundred]], be it [[etymologically]] or [[semantically]].",
parents = {"numbers"},
}
labels["nine"] = {
description = "{{{langname}}} terms related to the number [[nine]], be it [[etymologically]] or [[semantically]].",
parents = {"numbers"},
}
labels["nineteen"] = {
description = "{{{langname}}} terms related to the number [[nineteen]], be it [[etymologically]] or [[semantically]].",
parents = {"numbers"},
}
labels["ninety"]={
description="{{{langname}}} terms related to the number [[ninety]], be it [[etymologically]] or [[semantically]].",
parents={"numbers"},
}
labels["one"] = {
description = "{{{langname}}} terms related to the number [[one]], be it [[etymologically]] or [[semantically]].",
parents = {"numbers"},
}
labels["seven"] = {
description = "{{{langname}}} terms related to the number [[seven]], be it [[etymologically]] or [[semantically]].",
parents = {"numbers"},
}
labels["seventeen"] = {
description = "{{{langname}}} terms related to the number [[seventeen]], be it [[etymologically]] or [[semantically]].",
parents = {"numbers"},
}
labels["seventy"] = {
description = "{{{langname}}} terms related to the number [[seventy]], be it [[etymologically]] or [[semantically]].",
parents = {"numbers"},
}
labels["six"] = {
description = "{{{langname}}} terms related to the number [[six]], be it [[etymologically]] or [[semantically]].",
parents = {"numbers"},
}
labels["sixteen"] = {
description = "{{{langname}}} terms related to the number [[sixteen]], be it [[etymologically]] or [[semantically]].",
parents = {"numbers"},
}
labels["sixty"] = {
description = "{{{langname}}} terms related to the number [[sixty]], be it [[etymologically]] or [[semantically]].",
parents = {"numbers"},
}
labels["ten"] = {
description = "{{{langname}}} terms related to the number [[ten]], be it [[etymologically]] or [[semantically]].",
parents = {"numbers"},
}
labels["thirteen"] = {
description = "{{{langname}}} terms related to the number [[thirteen]], be it [[etymologically]] or [[semantically]].",
parents = {"numbers"},
}
labels["thirty"] = {
description = "{{{langname}}} terms related to the number [[thirty]], be it [[etymologically]] or [[semantically]].",
parents = {"numbers"},
}
labels["thousand"] = {
description = "{{{langname}}} terms related to the number [[one thousand]], be it [[etymologically]] or [[semantically]].",
parents = {"numbers"},
}
labels["three"] = {
description = "{{{langname}}} terms related to the number [[three]], be it [[etymologically]] or [[semantically]].",
parents = {"numbers"},
}
labels["twelve"] = {
description = "{{{langname}}} terms related to the number [[twelve]], be it [[etymologically]] or [[semantically]].",
parents = {"numbers"},
}
labels["twenty"] = {
description = "{{{langname}}} terms related to the number [[twenty]], be it [[etymologically]] or [[semantically]].",
parents = {"numbers"},
}
labels["two"] = {
description = "{{{langname}}} terms related to the number [[two]], be it [[etymologically]] or [[semantically]].",
parents = {"numbers"},
}
labels["zero"] = {
description = "{{{langname}}} terms related to the number [[zero]], be it [[etymologically]] or [[semantically]].",
parents = {"numbers"},
}
return labels
ig94odiav2i9um9lvu0hf16j0ocmwjz
Module:category tree/topic cat/data/People
828
5254
13261
2022-07-29T18:58:09Z
Asinis632
1829
Created page with "local labels = {} labels["people"] = { description = "default", parents = {"human"}, } labels["female people"] = { description = "{{{langname}}} terms for [[female]] people, i.e. [[woman|women]] and [[girl]]s.", parents = {"people", "female"}, } labels["male people"] = { description = "{{{langname}}} terms for [[male]] people, i.e. [[man|men]] and [[boy]]s.", parents = {"people", "male"}, } labels["female occupations"] = { description = "{{{langname}}} [[femin..."
Scribunto
text/plain
local labels = {}
labels["people"] = {
description = "default",
parents = {"human"},
}
labels["female people"] = {
description = "{{{langname}}} terms for [[female]] people, i.e. [[woman|women]] and [[girl]]s.",
parents = {"people", "female"},
}
labels["male people"] = {
description = "{{{langname}}} terms for [[male]] people, i.e. [[man|men]] and [[boy]]s.",
parents = {"people", "male"},
}
labels["female occupations"] = {
description = "{{{langname}}} [[feminine]] forms of terms for various [[occupation]]s.",
parents = {"occupations", "female people"},
}
labels["craftsmen"] = {
description = "{{{langname}}} [[terms]] for craftsmen or artisans",
parents = {"occupations"},
}
labels["male occupations"] = {
description = "{{{langname}}} [[masculine]] forms of terms for various [[occupation]]s.",
parents = {"occupations", "male people"},
}
labels["Adolf Hitler"] = {
description = "{{{langname}}} terms related to [[w:Adolf Hitler|Adolf Hitler]], leader of [[Nazi Germany]] from 1933 to 1945.",
parents = {"Nazism"},
}
labels["Armenian demonyms"] = {
description = "{{{langname}}} terms related to Armenian [[demonym]]s, i.e., [[demonym]]s relating to places in [[Armenia]], as well as Armenian diaspora communities abroad.",
parents = {"demonyms", "Armenia"},
}
labels["artists"] = {
description = "{{{langname}}} terms for [[artist]]s.",
parents = {"occupations", "art", "list of sets"},
}
labels["female artists"] = {
description = "{{{langname}}} terms for [[female]] artists.",
parents = {"artists", "female occupations"},
}
labels["male artists"] = {
description = "{{{langname}}} terms for [[male]] artists.",
parents = {"artists", "male occupations"},
}
labels["athletes"] = {
description = "{{{langname}}} terms related to [[athlete]]s or [[sportspeople]].",
parents = {"occupations", "sports"},
}
labels["female athletes"] = {
description = "{{{langname}}} terms for female [[athlete]]s or [[sportswomen]].",
parents = {"athletes", "female occupations"},
}
labels["male athletes"] = {
description = "{{{langname}}} terms for male [[athlete]]s or [[sportsmen]].",
parents = {"athletes", "male occupations"},
}
labels["authors"] = {
description = "default",
parents = {"people", "literature"},
}
labels["Barack Obama"] = {
description = "{{{langname}}} terms related to [[w:Barack Obama|Barack Obama]], [[president]] of the [[United States]] from 2009 until 2017.",
parents = {"individuals", "US politics",},
}
labels["babies"] = {
description = "{{{langname}}} terms related to [[baby|babies]].",
parents = {"Children"},
}
labels["Benedict Cumberbatch"] = {
description = "{{{langname}}} terms related to English actor [[w:Benedict Cumberbatch|Benedict Cumberbatch]].",
parents = {"individuals"},
}
labels["Bernie Sanders"] = {
description = "{{{langname}}} terms related to American politician [[w:Bernie Sanders|Bernie Sanders]].",
parents = {"individuals", "US politics"},
}
labels["Bill and Hillary Clinton"] = {
description = "{{{langname}}} terms related to [[w:Bill Cinton|Bill Clinton]], [[president]] of the [[United States]] from 1993 until 2001, or [[w:Hillary Clinton|Hillary Clinton]], Democratic presidential candidate in 2016.",
parents = {"individuals", "US politics"},
}
labels["Charles Dickens"] = {
description = "{{{langname}}} terms related to the British author Charles Dickens or his works.",
parents = {"authors", "British fiction", "individuals", "literature"},
}
labels["children"] = {
description = "{{{langname}}} terms related to [[child]]ren.",
parents = {"people"},
}
labels["female children"] = {
description = "{{{langname}}} terms for [[female]] children.",
parents = {"children", "female people"},
}
labels["male children"] = {
description = "{{{langname}}} terms for [[male]] children.",
parents = {"children", "male people"},
}
labels["demonyms"] = {
description = "{{{langname}}} [[demonym]]s, names for an inhabitant of a specific place.",
parents = {"people", "names", "list of sets"},
}
labels["Elon Musk"] = {
description = "{{{langname}}} terms related to South African-born tech entrepreneur [[w:Elon Musk|Elon Musk]].",
parents = {"individuals"},
}
labels["female demonyms"] = {
description = "{{{langname}}} feminine forms of various [[demonyms]].",
parents = {"demonyms", "female people"},
}
labels["male demonyms"] = {
description = "{{{langname}}} masculine forms of various [[demonyms]].",
parents = {"demonyms", "male people"},
}
labels["Donald Trump"] = {
description = "{{{langname}}} terms related to [[w:Donald Trump|Donald Trump]], businessman and [[president]] of the [[United States]] from 2017 to 2021.",
parents = {"individuals", "US politics"},
}
labels["Joe Biden"] = {
description = "{{{langname}}} terms related to [[w:Joe Biden|Joe Biden]], [[president]] of the [[United States]].",
parents = {"individuals", "US politics"},
}
labels["ethnicity"] = {
description = "default",
parents = {"people"},
}
labels["ethnonyms"] = {
description = "{{{langname}}} [[ethnonym]]s, names for ethnic groups.",
parents = {"people", "names", "list of sets", "ethnicity"},
}
labels["family"] = {
description = "default",
parents = {"human"},
}
labels["family members"] = {
description = "{{{langname}}} terms for members of the [[family]], i.e. [[relative]]s, [[in-law]]s, [[stepfamily]] and so on.",
parents = {"people", "family", "list of sets"},
}
labels["female family members"] = {
description = "{{{langname}}} terms for [[female]] members of the [[family]], i. e. [[relative]]s, [[in-law]]s, [[stepfamily]] and so on.",
parents = {"family members", "female people"},
}
labels["male family members"] = {
description = "{{{langname}}} terms for [[male]] members of the [[family]], i. e. [[relative]]s, [[in-law]]s, [[stepfamily]] and so on.",
parents = {"family members", "male people"},
}
labels["fans (people)"] = {
description = "{{{langname}}} terms for [[fan]]s of specific things, such as books, television series, movies, musical artists, etc.",
parents = {"people", "fandom"},
}
labels["George W. Bush"] = {
description = "{{{langname}}} terms related to [[w:George W. Bush|George W. Bush]], [[president]] of the [[United States]] from 2001 to 2009.",
parents = {"individuals", "US politics"},
}
labels["Germanic tribes"] = {
description = "{{{langname}}} terms for [[Germanic]] [[tribe]]s.",
parents = {"tribes", "Ancient Europe"},
}
labels["heads of state"] = {
description = "{{{langname}}} terms for [[head of state|heads of state]].",
parents = {"occupations", "government", "leaders", "list of sets"},
}
labels["healthcare occupations"] = {
description = "{{{langname}}} terms for [[healthcare]] [[occupation]]s.",
parents = {"occupations", "healthcare", "list of sets"},
}
labels["female healthcare occupations"] = {
description = "{{{langname}}} feminine forms of various [[healthcare occupation]]s.",
parents = {"healthcare occupations", "female occupations"},
}
labels["male healthcare occupations"] = {
description = "{{{langname}}} masculine forms of various [[healthcare occupation]]s.",
parents = {"healthcare occupations", "male occupations"},
}
labels["Herbert Hoover"] = {
description = "{{{langname}}} terms related to [[w:Herbert Hoover|Herbert Hoover]], [[president]] of the [[United States]] from 1929 to 1933, during the start of the [[Great Depression]].",
parents = {"individuals", "US politics"},
}
labels["individuals"] = {
description = "{{{langname}}} names of [[individual]]s.",
parents = {"people", "list of sets"},
}
labels["J. R. R. Tolkien"] = {
description = "{{{langname}}} terms related to author [[w:J. R. R. Tolkien|J. R. R. Tolkien]] and his works.",
parents = {"authors", "British fiction", "fantasy", "individuals", "literature"},
}
labels["Justin Bieber"] = {
description = "{{{langname}}} terms related to author Canadian singer [[w:Justin Bieber|Justin Bieber]].",
parents = {"individuals", "music"},
}
labels["Latvian demonyms"] = {
description = "{{{langname}}} terms related to Latvian [[demonym]]s, i.e., [[demonym]]s relating to places in [[Latvia]].",
parents = {"demonyms", "Latvia"},
}
labels["leaders"] = {
description = "default",
parents = {"people"},
}
labels["legal occupations"] = {
description = "{{{langname}}} terms for [[occupation]]s performed by virtue of legal education.",
parents = {"occupations", "law", "list of sets"},
}
labels["Lewis Carroll"] = {
description = "{{{langname}}} terms and phrases coined by [[w:Lewis Carroll|Lewis Carroll]], or otherwise derived from his works.",
parents = {"authors", "British fiction", "fantasy", "individuals", "literature"},
}
labels["Margaret Thatcher"] = {
description = "{{{langname}}} terms related to [[w:Margaret Thatcher|Margaret Thatcher]], [[prime minister]] of the [[United Kingdom]] from 1979 to 1990.",
parents = {"individuals", "UK politics"},
}
labels["military ranks"] = {
description = "{{{langname}}} terms for [[rank]]s of the [[military]].",
parents = {"occupations", "military", "list of sets"},
}
labels["musicians"] = {
description = "{{{langname}}} terms for various kinds of [[musician]]s.",
parents = {"occupations", "music", "list of sets"},
}
labels["female musicians"] = {
description = "{{{langname}}} terms for female [[musician]]s.",
parents = {"musicians", "female occupations"},
}
labels["male musicians"] = {
description = "{{{langname}}} terms for male [[musician]]s.",
parents = {"musicians", "male occupations"},
}
labels["nationalities"] = {
description = "default-set",
parents = {"demonyms", "people", "list of sets"},
}
labels["female nationalities"] = {
description = "{{{langname}}} feminine forms of various [[nationality|nationalities]].",
parents = {"nationalities", "female demonyms"},
}
labels["male nationalities"] = {
description = "{{{langname}}} masculine forms of various [[nationality|nationalities]].",
parents = {"nationalities", "male demonyms"},
}
labels["Native Americans"] = {
description = "{{{langname}}} terms related to [[Native American]]s.",
parents = {"Canada", "United States"},
}
labels["Native American tribes"] = {
description = "{{{langname}}} terms related to [[Native American]] [[tribe]]s.",
parents = {"Native Americans", "tribes"},
}
labels["nautical occupations"] = {
description = "{{{langname}}} terms for [[occupation]]s performed on ships on sea, thus not comprising [[dockworker]]s.",
parents = {"occupations", "nautical", "list of sets"},
}
labels["nobility"] = {
description = "default",
parents = {"people"},
}
labels["occupations"] = {
description = "{{{langname}}} terms for [[occupation]]s, in the sense of \"a job\".",
parents = {"people", "list of sets"},
}
labels["parents"] = {
description = "{{{langname}}} terms for immediate biological parents, or other people who take on a parenting role.",
parents = {"family members"},
}
labels["Ronald Reagan"] = {
description = "{{{langname}}} terms related to [[w:Ronald Reagan|Ronald Reagan]], [[president]] of the [[United States]] from 1981 to 1989.",
parents = {"individuals", "US politics"},
}
labels["scientists"] = {
description = "{{{langname}}} terms for [[scientist]]s.",
parents = {"occupations", "sciences", "list of sets"},
}
labels["female scientists"] = {
description = "{{{langname}}} terms for female [[scientist]]s.",
parents = {"scientists", "female occupations"},
}
labels["male scientists"] = {
description = "{{{langname}}} terms for male [[scientist]]s.",
parents = {"scientists", "male occupations"},
}
labels["titles"] = {
description = "{{{langname}}} terms related to [[title]]s.",
parents = {"people"},
}
labels["tribes"] = {
description = "default",
parents = {"demonyms", "people"},
}
labels["William Shakespeare"] = {
description = "{{{langname}}} terms related to the British author William Shakespeare or his works.",
parents = {"authors", "individuals"},
}
return labels
c0f2izypaahbcnhyn8lhqumbgzgkvv6
Module:category tree/topic cat/data/Philosophy
828
5256
13262
2022-07-29T18:59:32Z
Asinis632
1829
Created page with "local labels = {} labels["philosophy"] = { description = "default", parents = {"all topics"}, } labels["aesthetics"] = { description = "default no singularize", parents = {"philosophy"}, } labels["Confucianism"] = { description = "default", parents = {"Chinese philosophy", "religion"}, } labels["epistemology"] = { description = "default", parents = {"philosophy"}, } labels["ethics"] = { description = "default no singularize", parents = {"philosophy"}, } l..."
Scribunto
text/plain
local labels = {}
labels["philosophy"] = {
description = "default",
parents = {"all topics"},
}
labels["aesthetics"] = {
description = "default no singularize",
parents = {"philosophy"},
}
labels["Confucianism"] = {
description = "default",
parents = {"Chinese philosophy", "religion"},
}
labels["epistemology"] = {
description = "default",
parents = {"philosophy"},
}
labels["ethics"] = {
description = "default no singularize",
parents = {"philosophy"},
}
labels["afterlife"] = {
description = "{{{langname}}} terms related to the [[afterlife]] (existence after death).",
parents = {"philosophy", "religion", "mythology", "death"},
}
labels["jurisprudence"] = {
description = "default",
parents = {"law", "philosophy", "humanities"},
}
labels["metaphysics"] = {
description = "default no singularize",
parents = {"philosophy"},
}
labels["memetics"] = {
description = "default no singularize",
parents = {"philosophy"},
}
labels["theology"] = {
description = "default",
parents = {"philosophy", "religion"},
}
labels["Chinese philosophy"] = {
description = "{{{langname}}} terms related to Chinese philosophy.",
parents = {"philosophy"},
}
return labels
a5kpn7kwg8qnraqpyidipfmvgd8chlw
Module:category tree/topic cat/data/Places
828
5258
13263
2022-07-29T19:00:18Z
Asinis632
1829
Created page with "local labels = {} local handlers = {} local m_shared = require("Module:place/shared-data") local m_strutils = require("Module:string utilities") --[=[ This module contains specifications that are used to create labels that allow {{auto cat}} and {{topic cat}} to create the appropriate definitions for topic categories for places (e.g.re 'en:Waterfalls', 'de:Hokkaido', 'es:Cities in France', 'pt:Municipalities of Tocantins, Brazil', etc.). Note that this module doesn't..."
Scribunto
text/plain
local labels = {}
local handlers = {}
local m_shared = require("Module:place/shared-data")
local m_strutils = require("Module:string utilities")
--[=[
This module contains specifications that are used to create labels that allow {{auto cat}} and
{{topic cat}} to create the appropriate definitions for topic categories for places (e.g.re
'en:Waterfalls', 'de:Hokkaido', 'es:Cities in France', 'pt:Municipalities of Tocantins, Brazil',
etc.). Note that this module doesn't actually create the categories; that must be done manually,
with the text "{{auto cat}}" as the definition of the category. (This process should automatically
happen periodically for non-empty categories, because they will appear in [[Special:WantedCategories]]
and a bot will periodically examine that list and create any needed category.)
There are two ways that such labels are created: (1) by manually adding an entry to the 'labels'
table, keyed by the label (minus the language code) with a value consisting of a Lua table
specifying the description text and the category's parents; (2) through handlers (pieces of
Lua code) added to the 'handlers' list, which recognize labels of a specific type (e.g.
'Cities in France') and generate the appropriate specification for that label on-the-fly.
]=]
local function lcfirst(label)
return mw.getContentLanguage():lcfirst(label)
end
labels["places"] = {
description = "{{{langname}}} names for geographical [[place]]s; [[toponym]]s.",
parents = {"names", "list of sets"},
}
-- Generate bare labels in 'label' for all political subdivisions.
-- Do this before handling 'general_labels' so the latter can override if necessary.
for subdiv, desc in pairs(m_shared.political_subdivisions) do
labels[subdiv] = {
description = "{{{langname}}} names of " .. desc .. ".",
parents = {"political subdivisions", "list of sets"},
}
end
-- General labels. These are intended for places of all sorts that are not qualified
-- by a holonym (e.g. it does not include 'regions in Africa'). These also do not need
-- to include any political subdivisions listed in 'political_subdivisions' in
-- [[Module:place-data/shared]]. Each entry is {LABEL, DESCRIPTION, PARENTS}.
-- PARENTS should not include "list of sets", which is added automatically.
local general_labels = {
{"airports", "[[airport]]s", {"places"}},
{"ancient settlements", "former [[city|cities]], [[town]]s and [[village]]s that existed in [[antiquity]]", {"historical settlements"}},
{"atolls", "[[atoll]]s", {"islands"}},
{"bays", "[[bay]]s", {"places", "water"}},
{"beaches", "[[beach]]es", {"places", "water"}},
{"boroughs", "[[borough]]s", {"polities"}},
{"capital cities", "[[capital]] [[city|cities]]: the [[seat of government|seats of government]] for a country or [[political]] [[subdivision]] of a country", {"cities"}},
{"census-designated places", "[[census-designated place]]s", {"places"}},
{"cities", "[[city|cities]]", {"polities"}},
{"city-states", "[[sovereign]] [[microstate]]s consisting of a single [[city]] and [[w:dependent territory|dependent territories]]", {"polities"}},
{"communities", "[[community|communities]] of all sizes", {"polities"}},
{"continents", "the [[continent]]s of the world", {"places"}},
{"countries", "[[country|countries]]", {"polities"}},
{"dependent territories", "[[w:dependent territory|dependent territories]]", {"polities"}},
{"deserts", "[[desert]]s", {"places"}},
{"forests", "[[forest]]s", {"places"}},
{"ghost towns", "[[ghost town]]s", {"historical settlements"}},
{"gulfs", "[[gulf]]s", {"places", "water"}},
{"headlands", "[[headland]]s", {"places"}},
{"historical and traditional regions", "regions that have no administrative significance", {"places"}},
{"historical capitals", "former [[capital]] [[city|cities]] and [[town]]s", {"historical settlements"}},
{"historical dependent territories", "[[w:dependent territory|dependent territories]] (colonies, dependencies, protectorates, etc.) that no longer exist", {"dependent territories"}},
{"historical political subdivisions", "[[political]] [[subdivision]]s (states, provinces, counties, etc.) that no longer exist", {"polities"}},
{"historical polities", "[[polity|polities]] (countries, kingdoms, empires, etc.) that no longer exist", {"polities"}},
{"historical settlements", "[[city|cities]], [[town]]s and [[village]]s that no longer exist or have been merged or reclassified", {"historical polities"}},
{"hills", "[[hill]]s", {"places"}},
{"islands", "[[island]]s", {"places"}},
{"kibbutzim", "[[kibbutz]]im", {"places"}},
{"lakes", "[[lake]]s", {"places", "water"}},
{"landforms", "[[landform]]s", {"Earth"}},
{"micronations", "[[micronation]]s", {"places"}},
{"mountain passes", "[[mountain pass]]es", {"places"}},
{"mountains", "[[mountain]]s", {"places"}},
{"moors", "[[moor]]s", {"places"}},
{"neighborhoods", "[[neighborhood]]s, [[district]]s and other subportions of a [[city]]", {"places"}},
-- FIXME, is the following parent correct?
{"oceans", "[[ocean]]s", {"Seas"}},
{"parks", "[[park]]s", {"places"}},
{"peninsulas", "[[peninsula]]s", {"places"}},
{"plateaus", "[[plateau]]s", {"places"}},
{"political subdivisions", "[[political]] [[subdivision]]s, such as [[province]]s, [[state]]s or [[region]]s", {"polities"}},
{"polities", "[[polity|polities]] or [[political]] [[division]]s", {"places"}},
{"rivers", "[[river]]s", {"places", "water"}},
{"seas", "[[sea]]s", {"places", "water"}},
{"straits", "[[strait]]s", {"places", "water"}},
{"subdistricts", "[[subdistrict]]s", {"polities"}},
{"suburbs", "[[suburb]]s of a [[city]]", {"places"}},
{"towns", "[[town]]s", {"polities"}},
{"townships", "[[township]]s", {"polities"}},
{"unincorporated communities", "[[unincorporated]] [[community|communities]]", {"places"}},
{"valleys", "[[valley]]s", {"places", "water"}},
{"villages", "[[village]]s", {"polities"}},
{"volcanoes", "[[volcano]]es", {"landforms"}},
{"waterfalls", "[[waterfall]]s", {"landforms", "water"}},
}
-- Generate bare labels in 'label' for all "general labels" (see above).
for _, label_spec in ipairs(general_labels) do
local label, desc, parents = unpack(label_spec)
table.insert(parents, "list of sets")
labels[label] = {
description = "{{{langname}}} names of " .. desc .. ".",
parents = parents,
}
end
labels["city nicknames"] = {
-- special-cased description
description = "{{{langname}}} informal alternative names for [[city|cities]] (e.g., [[Big Apple]] for [[New York City]]).",
parents = {"cities", "list of sets"},
}
labels["exonyms"] = {
-- special-cased description
description = "{{{langname}}} [[exonym]]s.",
parents = {"places", "list of sets"},
}
-- Generate bare labels in 'label' for all polities (countries, states, etc.).
for _, group in ipairs(m_shared.polities) do
for key, value in pairs(group.data) do
group.bare_label_setter(labels, group, key, value)
end
end
local function city_description(group, key, value)
-- The purpose of all the following code is to construct the description. It's written in
-- a general way to allow any number of containing polities, each larger than the previous one,
-- so that e.g. for Birmingham, the description will read "{{{langname}}} terms related to the city of
-- [[Birmingham]], in the county of the [[West Midlands]], in the [[constituent country]] of [[England]],
-- in the [[United Kingdom]]."
local bare_key, linked_key = m_shared.construct_bare_and_linked_version(key)
local descparts = {}
table.insert(descparts, "the city of " .. linked_key)
local city_containing_polities = m_shared.get_city_containing_polities(group, key, value)
local label_parent -- parent of the label, from the immediate containing polity
for n, polity in ipairs(city_containing_polities) do
local bare_polity, linked_polity = m_shared.construct_bare_and_linked_version(polity[1])
if n == 1 then
label_parent = bare_polity
end
table.insert(descparts, ", in ")
if n < #city_containing_polities then
local divtype = polity.divtype or group.default_divtype
local pl_divtype = m_strutils.pluralize(divtype)
local pl_linked_divtype = m_shared.political_subdivisions[pl_divtype]
if not pl_linked_divtype then
error("When creating city description for " .. key .. ", encountered divtype '" .. divtype .. "' not in m_shared.political_subdivisions")
end
local linked_divtype = m_strutils.singularize(pl_linked_divtype)
table.insert(descparts, "the " .. linked_divtype .. " of ")
end
table.insert(descparts, linked_polity)
end
return table.concat(descparts), label_parent
end
-- Generate bare labels in 'label' for all cities.
for _, group in ipairs(m_shared.cities) do
for key, value in pairs(group.data) do
if not value.alias_of then
local desc, label_parent = city_description(group, key, value)
desc = "{{{langname}}} terms related to " .. desc .. "."
local parents = value.parents or label_parent
if not parents then
error("When creating city bare label for " .. key .. ", at least one containing polity must be specified or an explicit parent must be given")
end
if type(parents) ~= "table" then
parents = {parents}
end
local key_parents = {}
for _, parent in ipairs(parents) do
local polity_group, key_parent = m_shared.city_containing_polity_to_group_and_key(parent)
if key_parent then
local bare_key_parent, linked_key_parent =
m_shared.construct_bare_and_linked_version(key_parent)
table.insert(key_parents, bare_key_parent)
else
error("Couldn't find entry for city '" .. key .."' parent '" .. parent .. "'")
end
end
labels[key] = {
description = desc,
parents = key_parents,
}
end
end
end
-- Handler for "cities in the Bahamas", "rivers in Western Australia", etc.
-- Places that begin with "the" are recognized and handled specially.
table.insert(handlers, function(label)
label = lcfirst(label)
local place_type, place = label:match("^([a-z%- ]-) in (.*)$")
if place_type and m_shared.generic_place_types[place_type] then
for _, group in ipairs(m_shared.polities) do
local placedata = group.data[place]
if placedata then
placedata = group.value_transformer(group, place, placedata)
local allow_cat = true
if place_type == "neighborhoods" and placedata.british_spelling or
place_type == "neighbourhoods" and not placedata.british_spelling then
allow_cat = false
end
if placedata.is_former_place and place_type ~= "places" then
allow_cat = false
end
if placedata.is_city and not m_shared.generic_place_types_for_cities[place_type] then
allow_cat = false
end
if allow_cat then
local parent
if placedata.containing_polity then
parent = place_type .. " in " .. placedata.containing_polity
elseif place_type == "neighbourhoods" then
parent = "neighborhoods"
else
parent = place_type
end
local bare_place, linked_place = m_shared.construct_bare_and_linked_version(place)
local keydesc = placedata.keydesc or linked_place
local parents
if place_type == "places" then
parents = {{name = parent, sort = bare_place}, bare_place, "list of sets"}
else
parents = {{name = parent, sort = bare_place}, bare_place, "list of sets", "places in " .. place}
end
return {
description = "{{{langname}}} names of " .. m_shared.generic_place_types[place_type] .. " in " .. keydesc .. ".",
parents = parents
}
end
end
end
end
end)
-- Handler for "places in Paris", "neighbourhoods of Paris", etc.
table.insert(handlers, function(label)
label = lcfirst(label)
local place_type, in_of, city = label:match("^(places) (in) (.*)$")
if not place_type then
place_type, in_of, city = label:match("^([a-z%- ]-) (of) (.*)$")
end
if place_type and m_shared.generic_place_types_for_cities[place_type] then
for _, group in ipairs(m_shared.cities) do
local city_data = group.data[city]
if city_data then
local spelling_matches = true
if place_type == "neighborhoods" or place_type == "neighbourhoods" then
local containing_polities = m_shared.get_city_containing_polities(group, city, city_data)
local polity_group, polity_key = m_shared.city_containing_polity_to_group_and_key(
containing_polities[1])
if not polity_key then
error("Can't find polity data for city '" .. place ..
"' containing polity '" .. containing_polities[1] .. "'")
end
local polity_value = polity_group.value_transformer(polity_group, polity_key, polity_group[polity_key])
if place_type == "neighborhoods" and polity_value.british_spelling or
place_type == "neighbourhoods" and not polity_value.british_spelling then
spelling_matches = false
end
end
if spelling_matches then
local parents
if place_type == "places" then
parents = {city, "list of sets"}
else
parents = {city, "list of sets", "places in " .. city}
end
local desc = city_description(group, city, city_data)
return {
description = "{{{langname}}} names of " .. m_shared.generic_place_types_for_cities[place_type] .. " " .. in_of .. " " .. desc .. ".",
parents = parents
}
end
end
end
end
end)
-- Handler for "political subdivisions of the Philippines" and other "political subdivisions of X" categories.
table.insert(handlers, function(label)
label = lcfirst(label)
local place = label:match("^political subdivisions of (.*)$")
if place then
for _, group in ipairs(m_shared.polities) do
local placedata = group.data[place]
if placedata then
placedata = group.value_transformer(group, place, placedata)
local bare_place, linked_place = m_shared.construct_bare_and_linked_version(place)
local keydesc = placedata.keydesc or linked_place
local desc = "{{{langname}}} names of [[political]] [[subdivision]]s of " .. keydesc .. "."
return {
description = desc,
breadcrumb = "political subdivisions",
parents = {bare_place, {name = "political subdivisions", sort = bare_place}, "list of sets"},
}
end
end
end
end)
-- Handler for "provinces of the Philippines", "counties of Wales", "municipalities of Tocantins, Brazil", etc.
-- Places that begin with "the" are recognized and handled specially.
table.insert(handlers, function(label)
label = lcfirst(label)
local place_type, place = label:match("^([a-z%- ]-) of (.*)$")
if place then
for _, group in ipairs(m_shared.polities) do
local placedata = group.data[place]
if placedata then
placedata = group.value_transformer(group, place, placedata)
local divcat = nil
local poldiv_parent = nil
if placedata.poldiv then
for _, div in ipairs(placedata.poldiv) do
if type(div) == "string" then
div = {div}
end
if place_type == div[1] then
divcat = "poldiv"
poldiv_parent = div.parent
break
end
end
end
if not divcat and placedata.miscdiv then
for _, div in ipairs(placedata.miscdiv) do
if type(div) == "string" then
div = {div}
end
if place_type == div[1] then
divcat = "miscdiv"
break
end
end
end
if divcat then
local linkdiv = m_shared.political_subdivisions[place_type]
if not linkdiv then
error("Saw unknown place type '" .. place_type .. "' in label '" .. label .. "'")
end
local bare_place, linked_place = m_shared.construct_bare_and_linked_version(place)
local keydesc = placedata.keydesc or linked_place
local desc = "{{{langname}}} names of " .. linkdiv .. " of " .. keydesc .. "."
if divcat == "poldiv" then
return {
description = desc,
breadcrumb = place_type,
parents = poldiv_parent and
{{name = poldiv_parent, sort = bare_place}, bare_place, "list of sets"} or
{"political subdivisions of " .. place, {name = place_type, sort = bare_place}, "list of sets"},
}
else
return {
description = desc,
breadcrumb = place_type,
parents = {bare_place, "list of sets"},
}
end
end
end
end
end
end)
-- Generate bare labels in 'label' for all types of capitals.
for capital_cat, placetype in pairs(m_shared.capital_cat_to_placetype) do
local pl_placetype = m_strutils.pluralize(placetype)
local linkdiv = m_shared.political_subdivisions[pl_placetype]
if not linkdiv then
error("Saw unknown place type '" .. pl_placetype .. "' in label '" .. label .. "'")
end
labels[capital_cat] = {
description = "{{{langname}}} names of [[capital]]s of " .. linkdiv .. ".",
parents = {"capital cities", "list of sets"},
}
end
-- Handler for "state capitals of the United States", "provincial capitals of Canada", etc.
-- Places that begin with "the" are recognized and handled specially.
table.insert(handlers, function(label)
label = lcfirst(label)
local capital_cat, place = label:match("^([a-z%- ]- capitals) of (.*)$")
-- Make sure we recognize the type of capital.
if place and m_shared.capital_cat_to_placetype[capital_cat] then
local placetype = m_shared.capital_cat_to_placetype[capital_cat]
local pl_placetype = m_strutils.pluralize(placetype)
-- Locate the containing polity, fetch its known political subdivisions, and make sure
-- the placetype corresponding to the type of capital is among the list.
for _, group in ipairs(m_shared.polities) do
local placedata = group.data[place]
if placedata then
placedata = group.value_transformer(group, place, placedata)
if placedata.poldiv then
local saw_match = false
local variant_matches = {}
for _, div in ipairs(placedata.poldiv) do
if type(div) == "string" then
div = {div}
end
-- HACK. Currently if we don't find a match for the placetype, we map e.g.
-- 'autonomous region' -> 'regional capitals' and 'union territory' -> 'territorial capitals'.
-- When encountering a political subdivision like 'autonomous region' or
-- 'union territory', chop off everything up through a space to make things match.
-- To make this clearer, we record all such "variant match" cases, and down below we
-- insert a note into the category text indicating that such "variant matches"
-- are included among the category.
if pl_placetype == div[1] or pl_placetype == div[1]:gsub("^.* ", "") then
saw_match = true
if pl_placetype ~= div[1] then
table.insert(variant_matches, div[1])
end
end
end
if saw_match then
-- Everything checks out, construct the category description.
local linkdiv = m_shared.political_subdivisions[pl_placetype]
if not linkdiv then
error("Saw unknown place type '" .. pl_placetype .. "' in label '" .. label .. "'")
end
local bare_place, linked_place = m_shared.construct_bare_and_linked_version(place)
local keydesc = placedata.keydesc or linked_place
local variant_match_text = ""
if #variant_matches > 0 then
for i, variant_match in ipairs(variant_matches) do
variant_matches[i] = m_shared.political_subdivisions[variant_match]
if not variant_matches[i] then
error("Saw unknown place type '" .. variant_match .. "' in label '" .. label .. "'")
end
end
variant_match_text = " (including " .. require("Module:table").serialCommaJoin(variant_matches) .. ")"
end
local desc = "{{{langname}}} names of [[capital]]s of " .. linkdiv .. variant_match_text .. " of " .. keydesc .. "."
return {
description = desc,
parents = {{name = capital_cat, sort = bare_place}, bare_place, "list of sets"},
}
end
end
end
end
end
end)
-- "regions in (continent)", esp. for regions that span multiple countries
labels["regions in the world"] = { -- for multinational regions which do not fit neatly within one continent
description = "{{{langname}}} names of [[region]]s in the world (which do not fit neatly within one country or continent).",
parents = {"places", "list of sets"},
}
labels["regions in Africa"] = {
description = "{{{langname}}} names of [[region]]s in Africa.",
parents = {"Africa", "list of sets"},
}
labels["regions in the Americas"] = {
description = "{{{langname}}} names of [[region]]s in the Americas.",
parents = {"America", "list of sets"},
}
labels["regions in Asia"] = {
description = "{{{langname}}} names of [[region]]s in Asia.",
parents = {"Asia", "list of sets"},
}
labels["regions in Europe"] = {
description = "{{{langname}}} names of [[region]]s in Europe.",
parents = {"Europe", "list of sets"},
}
-- "countries in (continent)", "rivers in (continent)"
for _, continent in ipairs({"Africa", "Asia", "Central America", "Europe", "North America", "Oceania", "South America"}) do
labels["countries in " .. continent] = {
description = "{{{langname}}} names of [[country|countries]] in [[" .. continent .. "]].",
parents = {{name = "countries", sort = " "}, continent, "list of sets"},
}
labels["rivers in " .. continent] = {
description = "{{{langname}}} names of [[river]]s in [[" .. continent .. "]].",
parents = {{name = "rivers", sort = " "}, continent, "list of sets"},
}
end
-- autonomous communities, oblasts, etc
labels["autonomous communities of Spain"] = {
-- special-cased description
description = "{{{langname}}} names of the [[w:Autonomous communities of Spain|autonomous communities of Spain]].",
parents = {{name = "political subdivisions", sort = "Spain"}, "Spain", "list of sets"},
}
labels["autonomous cities of Spain"] = {
-- special-cased description
description = "{{{langname}}} names of the [[w:Autonomous communities of Spain#Autonomous_cities|autonomous cities of Spain]].",
parents = {{name = "political subdivisions", sort = "Spain"}, "Spain", "list of sets"},
}
-- boroughs
labels["boroughs in England"] = {
description = "{{{langname}}} names of boroughs, local government districts and unitary authorities in [[England]].",
parents = {{name = "boroughs", sort = "England"}, "England", "list of sets"},
}
labels["boroughs in Pennsylvania, USA"] = {
description = "{{{langname}}} names of boroughs in [[Pennsylvania]], USA.",
parents = {{name = "boroughs in the United States", sort = "Pennsylvania"}, "Pennsylvania, USA", "list of sets"},
}
labels["boroughs in New Jersey, USA"] = {
description = "{{{langname}}} names of boroughs in [[New Jersey]], USA.",
parents = {{name = "boroughs in the United States", sort = "New Jersey"}, "New Jersey, USA", "list of sets"},
}
labels["boroughs in New York City"] = {
description = "{{{langname}}} names of boroughs in [[New York City]].",
parents = {{name = "boroughs in the United States", sort = "New York City"}, "New York City", "list of sets"},
}
labels["boroughs in the United States"] = {
description = "{{{langname}}} names of [[borough]]s in the [[United States]].",
-- parent is "boroughs" not "political subdivisions" and category says "in"
-- not "of", because boroughs aren't really political subdivisions in the US
-- (more like cities)
parents = {{name = "boroughs", sort = "United States"}, "United States", "list of sets"},
}
-- census-designated places
labels["census-designated places in the United States"] = {
description = "{{{langname}}} names of [[census-designated place]]s in the [[United States]].",
-- parent is just United States; census-designated places have no political
-- status and exist only in the US, so no need for a top-level
-- "census-designated places" category
parents = {"United States", "list of sets"},
}
-- counties
labels["counties of Northern Ireland"] = {
description = "{{{langname}}} names of the counties of [[Northern Ireland]].",
-- has two parents: "political subdivisions" and "counties of Ireland"
parents = {{name = "political subdivisions", sort = "Northern Ireland"}, {name = "counties of Ireland", sort = "Northern Ireland"}, "Northern Ireland", "list of sets"},
}
-- nomes
labels["nomes of Ancient Egypt"] = {
-- special-cased description
description = "{{{langname}}} names of the nomes of [[Ancient Egypt]].",
parents = {{name = "political subdivisions", sort = "Egypt"}, "Ancient Egypt", "list of sets"},
}
-- regions and "regional units"
labels["regions of Albania"] = {
-- special-cased description
description = "{{{langname}}} names of the regions (peripheries) of [[Albania]].",
parents = {{name = "political subdivisions", sort = "Albania"}, "Albania", "list of sets"},
}
labels["regions of Greece"] = {
-- special-cased description
description = "{{{langname}}} names of the regions (peripheries) of [[Greece]].",
parents = {{name = "political subdivisions", sort = "Greece"}, "Greece", "list of sets"},
}
labels["regions of North Macedonia"] = {
-- special-cased description
description = "{{{langname}}} names of the regions (peripheries) of [[North Macedonia]].",
parents = {{name = "political subdivisions", sort = "North Macedonia"}, "North Macedonia", "list of sets"},
}
-- subdistricts and subprefectures
labels["subdistricts of Jakarta"] = {
description = "default-set",
-- not listed in the normal place because no categories like "cities in Jakarta"
parents = {{name = "political subdivisions", sort = "Jakarta"}, "Indonesia", "list of sets"},
}
labels["subprefectures of Japan"] = {
-- special-cased description
description = "{{{langname}}} names of subprefectures of Japanese prefectures.",
parents = {{name = "political subdivisions", sort = "Japan"}, "Japan", "list of sets"},
}
-- towns and townships
labels["townships in Canada"] = {
description = "{{{langname}}} names of townships in [[Canada]].",
parents = {{name = "townships", sort = "Canada"}, "Canada", "list of sets"},
}
labels["townships in Ontario"] = {
description = "{{{langname}}} names of townships in [[Ontario]]. Municipalities in Ontario can be called as a city, a town, a township, or a village.",
parents = {{name = "townships in Canada", sort = "Ontario"}, "Ontario", "list of sets"},
}
labels["townships in Quebec"] = {
description = "{{{langname}}} names of townships in [[Quebec]].",
parents = {{name = "townships in Canada", sort = "Quebec"}, "Quebec", "list of sets"},
}
-- temporary while users adjust to recent changes, also kept in case of desire to use for its topical purpose, see description; can be removed later if unused
labels["place names"] = {
description = "{{{langname}}} terms like ''hydronym'', for names for geographical [[place]]s.",
parents = {"names", "list of sets"},
}
return {LABELS = labels, HANDLERS = handlers}
p4y75w2epllohqdxw46de5m02gct2te
Module:category tree/topic cat/data/Sciences
828
5259
13264
2022-07-29T19:01:25Z
Asinis632
1829
Created page with "local labels = {} labels["sciences"] = { description = "default with the lower", parents = {"all topics"}, } labels["acceleration"] = { description = "default", parents = {"physics"}, } labels["acoustics"] = { description = "default no singularize", parents = {"applied sciences", "physics", "sound"}, } labels["adjectives"] = { description = "default", parents = {"parts of speech"}, } labels["aeronautics"] = { description = "default no singularize", parents..."
Scribunto
text/plain
local labels = {}
labels["sciences"] = {
description = "default with the lower",
parents = {"all topics"},
}
labels["acceleration"] = {
description = "default",
parents = {"physics"},
}
labels["acoustics"] = {
description = "default no singularize",
parents = {"applied sciences", "physics", "sound"},
}
labels["adjectives"] = {
description = "default",
parents = {"parts of speech"},
}
labels["aeronautics"] = {
description = "default no singularize",
parents = {"sciences"},
}
labels["aerospace"] = {
description = "default",
parents = {"sciences", "space", "astronautics", "aeronautics"},
}
labels["agriculture"] = {
description = "default",
parents = {"applied sciences"},
}
labels["alchemy"] = {
description = "default",
parents = {"forteana", "pseudoscience"},
}
labels["alternative medicine"] = {
description = "default",
parents = {"medicine", "pseudoscience"},
}
labels["analytical chemistry"] = {
description = "{{{langname}}} terms related to [[analytical]] [[chemistry]].",
parents = {"chemistry"},
}
labels["anatomy"] = {
description = "{{{langname}}} terms used in [[anatomy]], the study of the [[body]] and its parts (see [[:Category:{{{langcode}}}:Body parts]]).",
parents = {"biology", "medicine"},
}
labels["andrology"] = {
description = "default",
parents = {"medicine", "male"},
}
labels["anthropology"] = {
description = "{{{langname}}} terms used in [[anthropology]], the study of [[human]]s (see [[:Category:{{{langcode}}}:Human]]).",
parents = {"zoology", "social sciences"},
}
labels["applied sciences"] = {
description = "default",
parents = {"sciences"},
}
labels["arachnology"] = {
description = "{{{langname}}} terms used in [[arachnology]], the study of [[spider]]s (see [[:Category:{{{langcode}}}:Spiders]]).",
parents = {"zoology", "arthropodology"},
}
labels["archaeology"] = {
description = "default",
parents = {"sciences"},
}
labels["architectural elements"] = {
description = "default",
parents = {"architecture"},
}
labels["architecture"] = {
description = "default",
parents = {"applied sciences", "art"},
}
labels["arthropodology"] = {
description = "{{{langname}}} terms used in [[arthropodology]], the study of [[arthropod]]s (see [[:Category:{{{langcode}}}:Arthropods]]).",
parents = {"zoology"},
}
labels["artificial intelligence"] = {
description = "default",
parents = {"computer science", "cybernetics"},
}
labels["asterisms"] = {
description = "default-set",
parents = {"astronomy"},
}
labels["astronautics"] = {
description = "default no singularize",
parents = {"applied sciences", "space"},
}
labels["astronomy"] = {
description = "{{{langname}}} terms used in [[astronomy]], the study of [[stars]] and other [[celestial bodies]] (see [[:Category:{{{langcode}}}:Celestial bodies]]).",
parents = {"sciences", "space"},
}
labels["astrophysics"] = {
description = "default no singularize",
parents = {"physics", "astronomy"},
}
labels["aviation"] = {
description = "default",
parents = {"aeronautics", "transport"},
}
labels["avionics"] = {
description = "default no singularize",
parents = {"aeronautics", "electronics"},
}
labels["Ayurveda"] = {
description = "default",
parents = {"alternative medicine", "India"},
}
labels["bacteriology"] = {
description = "{{{langname}}} terms used in [[bacteriology]], the study of [[bacteria]] (see [[:Category:{{{langcode}}}:Bacteria]]).",
parents = {"microbiology"},
}
labels["biochemistry"] = {
description = "default",
parents = {"chemistry", "biology"},
}
labels["biology"] = {
description = "{{{langname}}} terms used in [[biology]], the study of [[life]] (see [[:Category:{{{langcode}}}:Lifeforms]]).",
parents = {"sciences"},
}
labels["botany"] = {
description = "{{{langname}}} terms related to [[botany]], the study of [[plants]] (see [[:Category:{{{langcode}}}:Plants]]).",
parents = {"biology"},
}
labels["bryology"] = {
description = "{{{langname}}} terms used in [[bryology]], the study of [[moss]]es and other lower plants (see [[:Category:{{{langcode}}}:Mosses]]).",
parents = {"biology", "botany"},
}
labels["cardiology"] = {
description = "{{{langname}}} terms used in [[cardiology]], the study of the [[heart]].",
parents = {"medicine"},
}
labels["carpentry"] = {
description = "default",
parents = {"construction", "woodworking"},
}
labels["cartography"] = {
description = "default",
parents = {"geography"},
}
labels["chemical engineering"] = {
description = "default",
parents = {"engineering", "chemistry"},
}
labels["chemical formulae"] = {
description = "default-set",
parents = {"chemistry"},
}
labels["chemical reactions"] = {
description = "default",
parents = {"chemistry"},
}
labels["chemical reagents"] = {
description = "default",
parents = {"chemistry"},
}
labels["chemistry"] = {
description = "default",
parents = {"sciences"},
}
labels["Chinese astronomy"] = {
description = "default with capital",
parents = {"astronomy"},
}
labels["Chinese phonetics"] = {
description = "default with capital no singularize",
parents = {"phonetics", "Chinese"},
}
labels["classical mechanics"] = {
description = "default no singularize",
parents = {"mechanics"},
}
labels["classical studies"] = {
description = "default no singularize",
parents = {"linguistics", "literature", "history"},
}
labels["climatology"] = {
description = "{{{langname}}} terms used in [[climatology]], the study of [[climate]].",
parents = {"earth sciences"},
}
labels["clinical psychology"] = {
description = "default",
parents = {"psychology", "pathology"},
}
labels["computational linguistics"] = {
description = "default no singularize",
parents = {"linguistics", "computer science"},
}
labels["computer science"] = {
description = "default",
parents = {"sciences", "computing"},
}
labels["conchology"] = {
description = "{{{langname}}} terms used in [[conchology]], the study of mollusc [[shell]]s.",
parents = {"malacology"},
}
labels["constellations"] = {
description = "{{{langname}}} terms for various to [[constellation]]s.",
parents = {"astronomy"},
}
labels["constellations in the zodiac"] = {
description = "{{{langname}}} terms related to the ring of [[constellations]] that line the [[ecliptic]], the apparent path of the [[Sun]] across the [[celestial sphere]] over the course of a year.",
parents = {"constellations", "astrology"},
}
labels["construction"] = {
description = "default",
parents = {"engineering", "architecture"},
}
labels["cosmology"] = {
description = "{{{langname}}} terms used in [[cosmology]], the study of the [[universe]].",
parents = {"astronomy"},
}
labels["criminology"] = {
description = "{{{langname}}} terms used in [[criminology]], the study of [[crime]] (see [[:Category:{{{langcode}}}:Crime]]).",
parents = {"sociology", "crime"},
}
labels["cryptography"] = {
description = "default",
parents = {"formal sciences", "mathematics", "computer science"},
}
labels["cryptozoology"] = {
description = "{{{langname}}} terms used in [[cryptozoology]], the [[pseudoscientific]] study of mythological creatures (see [[:Category:{{{langcode}}}:Mythological creatures]]).",
parents = {"zoology", "forteana"},
}
labels["crystallography"] = {
description = "default",
parents = {"physics", "sciences"},
}
labels["cultural anthropology"] = {
description = "default",
parents = {"anthropology", "culture"},
}
labels["cybernetics"] = {
description = "default no singularize",
parents = {"applied mathematics", "systems theory"},
}
labels["cytology"] = {
description = "{{{langname}}} terms used in [[cytology]], the study of cell biology, cell structure, formation, classification and related topics.",
parents = {"biology"},
}
labels["data management"] = {
description = "default",
parents = {"information science", "computer science"},
}
labels["demography"] = {
description = "default",
parents = {"sciences", "statistics"},
}
labels["dentistry"] = {
description = "default",
parents = {"medicine", "teeth"},
}
labels["dermatology"] = {
description = "{{{langname}}} terms used in [[dermatology]], the study of the [[skin]] (see [[:Category:{{{langcode}}}:Skin]]).",
parents = {"medicine"},
}
labels["developmental biology"] = {
description = "{{{langname}}} terms used in [[developmental biology]], the study of the [[development]] of [[lifeform]]s.",
parents = {"biology"},
}
labels["earth sciences"] = {
description = "default",
parents = {"sciences"},
}
labels["earthquake engineering"] = {
description = "default",
parents = {"engineering"},
}
labels["ecology"] = {
description = "{{{langname}}} terms used in [[ecology]], the study of interaction between [[life]] and its environment.",
parents = {"biology"},
}
labels["economics"] = {
description = "{{{langname}}} terms used in [[economics]], the study of the [[economy]].",
parents = {"social sciences"},
}
labels["electrencephalography"] = {
description = "{{{langname}}} terms used in [[electrencephalography]], the electrical measurement of the [[brain]] (see [[:Category:{{{langcode}}}:Brain]]).",
parents = {"neuroscience"},
}
labels["electrical engineering"] = {
description = "default",
parents = {"engineering", "electricity"},
}
labels["electricity"] = {
description = "default",
parents = {"electromagnetism"},
}
labels["electrocardiography"] = {
description = "default",
parents = {"cardiology"},
}
labels["electrodynamics"] = {
description = "default no singularize",
parents = {"electromagnetism"},
}
labels["electromagnetism"] = {
description = "default",
parents = {"physics"},
}
labels["embryology"] = {
description = "{{{langname}}} terms used in [[embryology]], the study of the [[embryo]].",
parents = {"biology", "developmental biology", "medicine"},
}
labels["emergency medicine"] = {
description = "default",
parents = {"medicine"},
}
labels["endocrinology"] = {
description = "{{{langname}}} terms used in [[endocrinology]], the study of [[hormones]] and the [[endocrine system]] (see [[:Category:{{{langcode}}}:Hormones]]).",
parents = {"medicine"},
}
labels["engineering"] = {
description = "default",
parents = {"applied sciences", "technology"},
}
labels["enterprise engineering"] = {
description = "default",
parents = {"engineering"},
}
labels["entomology"] = {
description = "{{{langname}}} terms used in [[entomology]], the study of [[insect]]s (see [[:Category:{{{langcode}}}:Insects]]).",
parents = {"zoology", "arthropodology"},
}
labels["epidemiology"] = {
description = "{{{langname}}} terms used in [[epidemiology]].",
parents = {"medicine"},
}
labels["ethnography"] = {
description = "default",
parents = {"anthropology"},
}
labels["ethnology"] = {
description = "{{{langname}}} terms used in [[ethnology]], the study of [[people]]s.",
parents = {"anthropology"},
}
labels["ethology"] = {
description = "{{{langname}}} terms used in [[ethology]], the study of [[animal]] [[behaviour]].",
parents = {"zoology"},
}
labels["evolutionary theory"] = {
description = "default",
parents = {"biology"},
}
labels["flat earth"] = {
description = "{{{langname}}} terms used by believers in a flat earth or relating to the concept.",
parents = {"pseudoscience"},
}
labels["flax"] = {
description = "{{{langname}}} terms related to flax.",
parents = {"agriculture", "Malpighiales order plants"},
}
labels["fluid dynamics"] = {
description = "default no singularize",
parents = {"physics"},
}
labels["forestry"] = {
description = "default",
parents = {"applied sciences"},
}
labels["forteana"] = {
description = "{{{langname}}} terms that have a [[Fortean]] element.",
parents = {"pseudoscience"},
}
labels["functional group prefixes"] = {
description = "default",
parents = {"organic chemistry"},
}
labels["functional group suffixes"] = {
description = "default",
parents = {"organic chemistry"},
}
labels["gastroenterology"] = {
description = "{{{langname}}} terms used in [[gastroenterology]], the study of the [[digestive system]].",
parents = {"medicine"},
}
labels["genetics"] = {
description = "{{{langname}}} terms used in [[genetics]], the study of [[gene]]s.",
parents = {"biology"},
}
labels["geography"] = {
description = "{{{langname}}} terms used in [[geography]], the study of various phenomena found on [[Earth]]'s surface (see [[:Category:{{{langcode}}}:Landforms]] and [[:Category:{{{langcode}}}:Polities]]).",
parents = {"earth sciences"},
}
labels["geological periods"] = {
description = "default",
parents = {"geology"},
}
labels["geology"] = {
description = "{{{langname}}} terms used in [[geology]], the study of the solid parts of [[Earth]].",
parents = {"earth sciences"},
}
labels["geomorphology"] = {
description = "{{{langname}}} terms used in [[geomorphology]].",
parents = {"geology"},
}
labels["geopolitics"] = {
description = "default no singularize",
parents = {"geography", "politics"},
}
labels["geospatial science"] = {
description = "default",
parents = {"earth sciences"},
}
labels["gerontology"] = {
description = "{{{langname}}} terms used in [[gerontology]], the study of [[aging]] (see [[:Category:{{{langcode}}}:Age]]).",
parents = {"medicine"},
}
labels["grammar"] = {
description = "default",
parents = {"linguistics"},
}
labels["grammatical cases"] = {
description = "{{{langname}}} terms related to [[grammatical case]]s.",
parents = {"grammar"},
}
labels["grammatical moods"] = {
description = "default",
parents = {"grammar"},
}
labels["gynaecology"] = {
description = "default",
parents = {"medicine", "female"},
}
labels["helminthology"] = {
description = "{{{langname}}} terms used in [[helminthology]], the study of [[helminth]]s ([[parasitic]] [[worm#Noun|worms]]; see [[:Category:{{{langcode}}}:Flatworms]]).",
parents = {"zoology"},
}
labels["hematology"] = {
description = "{{{langname}}} terms used in [[hematology]], the study of [[blood]].",
parents = {"medicine"},
}
labels["hepatology"] = {
description = "{{{langname}}} terms used in [[hepatology]], the study of the [[liver]].",
parents = {"medicine"},
}
labels["herpetology"] = {
description = "{{{langname}}} terms used in [[herpetology]], the study of [[reptile]]s and amphibians (see [[:Category:{{{langcode}}}:Reptiles]] and [[:Category:{{{langcode}}}:Amphibians]]).",
parents = {"zoology"},
}
labels["homeopathy"] = {
description = "default",
parents = {"alternative medicine"},
}
labels["horticulture"] = {
description = "default",
parents = {"agriculture", "botany"},
}
labels["hydroacoustics"] = {
description = "default no singularize",
parents = {"acoustics", "hydrology"},
}
labels["hydrocarbon chain prefixes"] = {
description = "default",
parents = {"organic chemistry"},
}
labels["hydrocarbon chain suffixes"] = {
description = "default",
parents = {"organic chemistry"},
}
labels["hydrology"] = {
description = "{{{langname}}} terms used in [[hydrology]], the study of [[water]], its movement and distribution (see [[:Category:{{{langcode}}}:Water]]).",
parents = {"earth sciences", "water"},
}
labels["ichthyology"] = {
description = "{{{langname}}} terms used in [[ichthyology]], the study of [[fish]] (see [[:Category:{{{langcode}}}:Fish]]).",
parents = {"zoology"},
}
labels["immunochemistry"] = {
description = "default",
parents = {"biochemistry", "immunology"},
}
labels["immunology"] = {
description = "{{{langname}}} terms used in [[immunology]], the study of the [[immune system]].",
parents = {"medicine"},
}
labels["Indo-European studies"] = {
description = "{{{langname}}} terms related to [[Indo-European]] [[studies]].",
parents = {"linguistics"},
}
labels["information science"] = {
description = "default",
parents = {"applied sciences"},
}
labels["inorganic chemistry"] = {
description = "default",
parents = {"chemistry"},
}
labels["interdisciplinary fields"] = {
description = "{{{langname}}} terms related to [[interdisciplinary]] fields.",
parents = {"sciences"},
}
labels["isolines"] = {
description = "default",
parents = {"cartography", "meteorology"},
}
labels["lexicography"] = {
description = "default",
parents = {"linguistics"},
}
labels["library science"] = {
description = "default",
parents = {"sciences", "education", "information science"},
}
labels["lichenology"] = {
description = "{{{langname}}} terms used in [[lichenology]], the study of [[lichen]]s (see [[:Category:{{{langcode}}}:Lichens]]).",
parents = {"mycology", "phycology"},
}
labels["linguistic morphology"] = {
description = "default",
parents = {"linguistics"},
}
labels["linguistics"] = {
description = "{{{langname}}} terms used in [[linguistics]], the study and analysis of [[language]] (see [[:Category:{{{langcode}}}:Language]]).",
parents = {"language", "social sciences"},
}
labels["maize (crop)"] = {
description = "{{{langname}}} terms related to [[maize]] (called [[corn]] in North America) as a crop. ''For terms related to maize as a food, see [[:Category:Maize (food)]] and for maize as a plant, see [[:Category:Maize (plant)]].''",
parents = {"agriculture", "grains"},
}
labels["malacology"] = {
description = "{{{langname}}} terms used in [[malacology]], the study of [[mollusk]]s (see [[:Category:{{{langcode}}}:Mollusks]]).",
parents = {"zoology"},
}
labels["mammalogy"] = {
description = "{{{langname}}} terms used in [[mammalogy]], the study of [[mammal]]s (see [[:Category:{{{langcode}}}:Mammals]]).",
parents = {"zoology"},
}
labels["marine biology"] = {
description = "{{{langname}}} terms used in [[marine biology]], the study of [[life]] in the [[sea]].",
parents = {"biology"},
}
labels["masonry"] = {
description = "default",
parents = {"construction"},
}
labels["materials science"] = {
description = "default",
parents = {"sciences", "engineering"},
}
labels["mechanical engineering"] = {
description = "default",
parents = {"engineering"},
}
labels["mechanics"] = {
description = "default no singularize",
parents = {"physics"},
}
labels["medical genetics"] = {
description = "{{{langname}}} terms that pertain to the [[medical]] [[genetics]].",
parents = {"medicine", "genetics"},
}
labels["medicine"] = {
description = "{{{langname}}} terms that pertain to the the science and practice of [[medicine]].",
parents = {"sciences", "biology"},
}
labels["metallurgy"] = {
description = "default",
parents = {"sciences"},
}
labels["metamaterials"] = {
description = "default",
parents = {"physics"},
}
labels["meteorology"] = {
description = "{{{langname}}} terms used in [[meteorology]], the study of [[weather]] (see [[:Category:{{{langcode}}}:Weather]]).",
parents = {"earth sciences", "atmosphere"},
}
labels["metrology"] = {
description = "{{{langname}}} terms used in [[metrology]], the science of [[measure|measuring]].",
parents = {"applied sciences"},
}
labels["microbiology"] = {
description = "{{{langname}}} terms used in [[microbiology]], the study of [[life]] at [[microscopic]] scales, too small for the [[human]] [[eye]].",
parents = {"biology"},
}
labels["microscopy"] = {
description = "{{{langname}}} terms used in [[microscopy]], the field of using [[microscopes]] for study.",
parents = {"optics", "microbiology"},
}
labels["mineralogy"] = {
description = "{{{langname}}} terms used in [[mineralogy]], the study of [[mineral]]s (see [[:Category:{{{langcode}}}:Minerals]]).",
parents = {"geology"},
}
labels["molecular biology"] = {
description = "{{{langname}}} terms used in [[molecular biology]], the study of the [[molecules]] found in [[life]], their functions and effects.",
parents = {"biochemistry", "biology", "genetics"},
}
labels["mycology"] = {
description = "{{{langname}}} terms used in [[mycology]], the study of [[fungi]] (see [[:Category:{{{langcode}}}:Fungi]]).",
parents = {"biology"},
}
labels["nephrology"] = {
description = "{{{langname}}} terms used in [[nephrology]], the study of the [[kidney]]s.",
parents = {"medicine"},
}
labels["neuroanatomy"] = {
description = "{{{langname}}} terms used in [[neuroanatomy]], the study of the structure and organization of the [[nervous system]].",
parents = {"anatomy", "neurology", "neuroscience"},
}
labels["neurology"] = {
description = "{{{langname}}} terms used in [[neurology]], the study of [[nerves]] and [[neurons]].",
parents = {"medicine", "neuroscience"},
}
labels["neuroscience"] = {
description = "{{{langname}}} terms used in [[neuroscience]], the study of the [[nervous system]].",
parents = {"biology"},
}
labels["neurosurgery"] = {
description = "default",
parents = {"surgery", "neurology"},
}
labels["nouns"] = {
description = "default",
parents = {"parts of speech"},
}
labels["nuclear physics"] = {
description = "default no singularize",
parents = {"physics", "quantum mechanics"},
}
labels["obstetrics"] = {
description = "default no singularize",
parents = {"developmental biology", "medicine", "pregnancy"},
}
labels["oceanography"] = {
description = "default",
parents = {"sciences"},
}
labels["oenology"] = {
description = "{{{langname}}} terms used in [[oenology]], the study of [[wine]] and [[winemaking]] (see [[:Category:{{{langcode}}}:Wine]]).",
parents = {"sciences"},
}
labels["oncology"] = {
description = "{{{langname}}} terms used in [[oncology]], the study of [[cancer]].",
parents = {"biology", "medicine", "pathology"},
}
labels["onomastics"] = {
description = "{{{langname}}} terms used in [[onomastics]], the study of [[name]]s (see [[:Category:{{{langcode}}}:Names]] and [[:Category:{{{langname}}} names]]).",
parents = {"linguistics", "names"},
}
labels["ophthalmology"] = {
description = "{{{langname}}} terms used in [[ophthalmology]], the study of the [[eye]] (see [[:Category:{{{langcode}}}:Eye]]).",
parents = {"medicine", "vision"},
}
labels["optics"] = {
description = "{{{langname}}} terms used in [[optics]], the study of the behaviour of [[light]] (see [[:Category:{{{langcode}}}:Light]]).",
parents = {"physics"},
}
labels["organic chemistry"] = {
description = "default",
parents = {"chemistry"},
}
labels["orgonomy"] = {
description = "{{{langname}}} terms related to the [[orgone]] theory proposed by [[w:William Reich|William Reich]].",
parents = {"alternative medicine", "pseudoscience"},
}
labels["ornithology"] = {
description = "{{{langname}}} terms used in [[ornithology]], the study of [[birds]] (see [[:Category:{{{langcode}}}:Birds]]).",
parents = {"zoology"},
}
labels["paleontology"] = {
description = "default",
parents = {"sciences", "geology"},
}
labels["palynology"] = {
description = "{{{langname}}} terms used in [[palynology]], the study of [[particle]]s and particulate matter.",
parents = {"geology"},
}
labels["parapsychology"] = {
description = "default",
parents = {"forteana", "pseudoscience"},
}
labels["particle physics"] = {
description = "{{{langname}}} terms used in [[particle physics]], the study of [[subatomic]] [[particle]]s (see [[:Category:{{{langcode}}}:Subatomic particles]]).",
parents = {"physics"},
}
labels["parts of speech"] = {
description = "{{{langname}}} terms related to [[part of speech|parts of speech]].",
parents = {"grammar"},
}
labels["pathology"] = {
description = "{{{langname}}} terms used in [[pathology]], the study of [[disease]] (see [[:Category:{{{langcode}}}:Disease]]).",
parents = {"medicine"},
}
labels["petrochemistry"] = {
description = "default",
parents = {"chemistry", "chemical engineering", "oil industry"},
}
labels["petrology"] = {
description = "{{{langname}}} terms used in [[petrology]], the study of [[rock]] (see [[:Category:{{{langcode}}}:Rocks]]).",
parents = {"geology"},
}
labels["pharmacology"] = {
description = "default",
parents = {"biochemistry", "medicine"},
}
labels["pharmacy"] = {
description = "default",
parents = {"medicine", "pharmacology"},
}
labels["phonemes"] = {
description = "{{{langname}}} terms for contrastive sounds within a language.",
parents = {"phonology"},
}
labels["phonetics"] = {
description = "default no singularize",
parents = {"linguistics"},
}
labels["phonology"] = {
description = "{{{langname}}} terms used in [[phonology]], the organisation of [[speech]] sounds within a [[language]].",
parents = {"linguistics"},
}
labels["phrenology"] = {
description = "default",
parents = {"psychology", "pseudoscience"},
}
labels["phycology"] = {
description = "{{{langname}}} terms used in [[phycology]], the study of [[algae]] (see [[:Category:{{{langcode}}}:Algae]]).",
parents = {"botany", "microbiology"},
}
labels["physical chemistry"] = {
description = "default",
parents = {"chemistry", "physics"},
}
labels["physics"] = {
description = "default no singularize",
parents = {"sciences"},
}
labels["physiology"] = {
description = "{{{langname}}} terms used in [[physiology]].",
parents = {"biology", "medicine"},
}
labels["phytopathology"] = {
description = "{{{langname}}} terms used in [[phytopathology]], the study of [[disease]] in [[plant]]s (see [[:Category:{{{langcode}}}:Plant diseases]]).",
parents = {"pathology", "botany"},
}
labels["planetary nomenclature"] = {
description = "default",
parents = {"planetology"},
}
labels["planetology"] = {
description = "{{{langname}}} terms used in [[planetology]], the study of [[planet]]s (see [[:Category:{{{langcode}}}:Planets]]).",
parents = {"astronomy", "geology"},
}
labels["plastic surgery"] = {
description = "default",
parents = {"surgery"},
}
labels["political science"] = {
description = "default",
parents = {"social sciences", "politics"},
}
labels["pragmatics"] = {
description = "default no singularize",
parents = {"linguistics"},
}
labels["prosody"] = {
description = "{{{langname}}} terms used in [[prosody]], the study of the [[suprasegmental]] aspects of [[speech]].",
parents = {"linguistics"},
}
labels["pseudoscience"] = {
description = "default",
parents = {"sciences"},
}
labels["psychiatry"] = {
description = "default",
parents = {"medicine"},
}
labels["psychoanalysis"] = {
description = "default no singularize",
parents = {"psychology"},
}
labels["psychology"] = {
description = "{{{langname}}} terms used in [[psychology]], the study of the [[mind]] (see [[:Category:{{{langcode}}}:Mind]]).",
parents = {"social sciences"},
}
labels["psychotherapy"] = {
description = "default",
parents = {"psychology"},
}
labels["pulmonology"] = {
description = "{{{langname}}} terms used in [[pulmonology]], the study of the [[respiratory system]], including the [[lung]]s.",
parents = {"medicine"},
}
labels["pyrotechnics"] = {
description = "default no singularize",
parents = {"sciences"},
}
labels["quantum mechanics"] = {
description = "default no singularize",
parents = {"physics"},
}
labels["relativity"] = {
description = "default",
parents = {"physics"},
}
labels["rheumatology"] = {
description = "default",
parents = {"medicine"},
}
labels["robotics"] = {
description = "default no singularize",
parents = {"engineering"},
}
labels["roofing"] = {
description = "default",
parents = {"construction"},
}
labels["rosiculture"] = {
description = "default",
parents = {"horticulture"},
}
labels["seismology"] = {
description = "{{{langname}}} terms used in [[seismology]], the study of [[earthquake]]s.",
parents = {"geology"},
}
labels["semantics"] = {
description = "default no singularize",
parents = {"linguistics"},
}
labels["Semitic linguistics"] = {
description = "{{{langname}}} terms used in the study and analysis of [[Semitic]] [[language]].",
parents = {"linguistics"},
}
labels["semiotics"] = {
description = "default no singularize",
parents = {"social sciences", "linguistics"},
}
labels["sexology"] = {
description = "{{{langname}}} terms used in [[sexology]], the study of [[human]] [[sexuality]] (see [[:Category:{{{langcode}}}:Sex]]).",
parents = {"sociology", "psychology"},
}
labels["SI units"] = {
description = "{{{langname}}} terms related to [[International System of Units|SI]] [[unit of measure|units of measure]].",
parents = {"units of measure"},
}
labels["signal processing"] = {
description = "{{{langname}}} terms related to [[signal]] [[processing]].",
parents = {"applied mathematics", "telecommunications"},
}
labels["social sciences"] = {
description = "default with the lower",
parents = {"sciences", "society"},
}
labels["sociolinguistics"] = {
description = "default no singularize",
parents = {"linguistics", "sociology"},
}
labels["sociology"] = {
description = "{{{langname}}} terms used in [[sociology]], the study of [[society]] (see [[:Category:{{{langcode}}}:Society]]).",
parents = {"social sciences"},
}
labels["software engineering"] = {
description = "default",
parents = {"engineering", "computer science", "software"},
}
labels["soil science"] = {
description = "default",
parents = {"earth sciences"},
}
labels["sound engineering"] = {
description = "default",
parents = {"engineering", "sound"},
}
labels["space sciences"] = {
description = "default",
parents = {"sciences", "space"},
}
labels["spectroscopy"] = {
description = "default",
parents = {"analytical chemistry", "optics", "physics"},
}
labels["statistical mechanics"] = {
description = "default no singularize",
parents = {"mechanics"},
}
labels["statistics"] = {
description = "default no singularize",
parents = {"formal sciences", "mathematics"}
}
labels["surgery"] = {
description = "default",
parents = {"medicine"},
}
labels["surveying"] = {
description = "default",
parents = {"geography"},
}
labels["systematics"] = {
description = "default no singularize",
parents = {"biology", "evolutionary theory"},
}
labels["systems"] = {
description = "default",
parents = {"interdisciplinary fields", "sciences", "society"},
}
labels["systems engineering"] = {
description = "default",
parents = {"engineering"},
}
labels["systems theory"] = {
description = "default",
parents = {"sciences", "systems"},
}
labels["taxonomy"] = {
description = "{{{langname}}} terms related to [[taxonomy]]. For individual [[taxa]], please see [[:Category:Taxonomic names]].",
parents = {"systematics"},
}
labels["tenses"] = {
description = "default",
parents = {"grammar"},
}
labels["teratology"] = {
description = "{{{langname}}} terms used in [[teratology]], the study of abnormalities in the [[development]] of the [[body]].",
parents = {"developmental biology", "medicine", "pathology", "toxicology"},
}
labels["theory of computing"] = {
description = "{{{langname}}} terms used in theoretical discussion of [[computer science]] or [[computing]].",
parents = {"computer science"},
}
labels["thermodynamics"] = {
description = "default no singularize",
parents = {"physics"},
}
labels["toxicology"] = {
description = "{{{langname}}} terms used in [[toxicology]], the study of [[poisons]], [[toxins]] and other substances with negative effects on the [[body]] (see [[:Category:{{{langcode}}}:Poisons]]).",
parents = {"medicine", "pharmacology"},
}
labels["traditional Chinese medicine"] = {
description = "default",
parents = {"alternative medicine"},
}
labels["traffic engineering"] = {
description = "default",
parents = {"engineering", "road transport"},
}
labels["translation studies"] = {
description = "default no singularize",
parents = {"linguistics"},
}
labels["traumatology"] = {
description = "{{{langname}}} terms used in traumatology, the study of wounds and injuries caused by accidents or violence to a person.",
parents = {"medicine", "pathology"},
}
labels["ufology"] = {
description = "default",
parents = {"forteana"},
}
labels["units of measure"] = {
description = "{{{langname}}} terms that are [[unit of measure|units of measure]].",
parents = {"sciences", "metrology"},
}
labels["urban studies"] = {
description = "default",
parents = {"applied sciences", "social sciences"},
}
labels["urology"] = {
description = "default",
parents = {"medicine"},
}
labels["verbs"] = {
description = "default",
parents = {"parts of speech"},
}
labels["veterinary medicine"] = {
description = "default",
parents = {"medicine"},
}
labels["virology"] = {
description = "{{{langname}}} terms used in [[virology]], the study of [[virus]]es (see [[:Category:{{{langcode}}}:Viruses]]).",
parents = {"medicine", "microbiology", "pathology"},
}
labels["volcanology"] = {
description = "{{{langname}}} terms used in [[volcanology]], the study of [[volcano]]es.",
parents = {"geology"},
}
labels["zoology"] = {
description = "{{{langname}}} terms used in [[zoology]], the study of [[animal]]s (see [[:Category:{{{langcode}}}:Animals]]).",
parents = {"biology"},
}
labels["zymurgy"] = {
description = "default",
parents = {"biochemistry", "brewing"},
}
return labels
i8hgcg51lue1q9mypatdfjg3e3yd04k
Module:category tree/topic cat/data/Sex
828
5261
13265
2022-07-29T19:02:14Z
Asinis632
1829
Created page with "local labels = {} labels["sex"] = { description = "{{{langname}}} terms related to [[sexual intercourse]] or [[sexuality]]. (For terms relating to sex and gender, see [[:Category:Gender]].)", parents = {"all topics"}, } labels["BDSM"] = { description = "default with capital", parents = {"sexuality"}, } labels["birth control"] = { description = "default", parents = {"sex", "pregnancy"}, } labels["LGBT"] = { description = "{{{langname}}} terms related to [[LGBT]..."
Scribunto
text/plain
local labels = {}
labels["sex"] = {
description = "{{{langname}}} terms related to [[sexual intercourse]] or [[sexuality]]. (For terms relating to sex and gender, see [[:Category:Gender]].)",
parents = {"all topics"},
}
labels["BDSM"] = {
description = "default with capital",
parents = {"sexuality"},
}
labels["birth control"] = {
description = "default",
parents = {"sex", "pregnancy"},
}
labels["LGBT"] = {
description = "{{{langname}}} terms related to [[LGBT]] ([[lesbian]], [[gay]], [[bisexual]], [[transgender]]).",
parents = {"sexuality"}, -- for the T 'gender' should perhaps be a parent, but then nesting gets circularish
}
labels["pedophilia"] = {
description = "default",
parents = {"paraphilias"},
}
labels["paraphilias"] = {
description = "default",
parents = {"sexuality", "sexology", "philias"},
}
labels["polyamory"] = {
description = "default",
parents = {"love", "romantic orientations", "sexual orientations"},
}
labels["pornography"] = {
description = "default",
parents = {"sex"},
}
labels["prostitution"] = {
description = "default",
parents = {"sexuality"},
}
labels["seduction community"] = {
description = "{{{langname}}} terms related to the [[w:Seduction community|seduction community]].",
parents = {"masculism", "sex"},
}
labels["sex positions"] = {
description = "default",
parents = {"sex"},
}
labels["sexuality"] = {
description = "default",
parents = {"sex", "human behaviour"},
}
labels["sexual orientations"] = {
description = "default",
parents = {"sexuality", "LGBT", "love"},
}
labels["romantic orientations"] = {
description = "default",
parents = {"sexuality", "LGBT", "love"},
}
return labels
h4cfr1c3gr4xban3g0635hrcbsz4ffe
Module:category tree/topic cat/data/Social acts
828
5262
13266
2022-07-29T19:03:06Z
Asinis632
1829
Created page with "local labels = {} labels["social acts"] = { description = "{{{langname}}} terms related to [[social]] [[act]]s.", parents = {"all topics"}, } labels["farewells"] = { description = "default", parents = {"social acts"}, } labels["greetings"] = { description = "{{{langname}}} terms for common {{{langname}}} [[greeting]]s.", parents = {"social acts"}, } labels["responses to sneezing"] = { description = "{{{langname}}} terms for [[response]]s to [[sneezing]].", pa..."
Scribunto
text/plain
local labels = {}
labels["social acts"] = {
description = "{{{langname}}} terms related to [[social]] [[act]]s.",
parents = {"all topics"},
}
labels["farewells"] = {
description = "default",
parents = {"social acts"},
}
labels["greetings"] = {
description = "{{{langname}}} terms for common {{{langname}}} [[greeting]]s.",
parents = {"social acts"},
}
labels["responses to sneezing"] = {
description = "{{{langname}}} terms for [[response]]s to [[sneezing]].",
parents = {"social acts"},
}
labels["toasts"] = {
description = "default",
parents = {"social acts"},
}
return labels
654a1lv2qfhgrsxfgs4w8ymgvw4wgik
Module:category tree/topic cat/data/Society
828
5263
13267
2022-07-29T19:04:27Z
Asinis632
1829
Created page with "local labels = {} labels["society"] = { description = "default", parents = {"all topics"}, } labels["academic degrees"] = { description = "{{{langname}}} terms related to [[academic]] [[degree]]s.", parents = {"education"}, } labels["academic grades"] = { description = "{{{langname}}} terms related to [[academic]] [[grade]]s.", parents = {"education", "list of sets"}, } labels["accounting"] = { description = "default", parents = {"finance"}, } labels["admini..."
Scribunto
text/plain
local labels = {}
labels["society"] = {
description = "default",
parents = {"all topics"},
}
labels["academic degrees"] = {
description = "{{{langname}}} terms related to [[academic]] [[degree]]s.",
parents = {"education"},
}
labels["academic grades"] = {
description = "{{{langname}}} terms related to [[academic]] [[grade]]s.",
parents = {"education", "list of sets"},
}
labels["accounting"] = {
description = "default",
parents = {"finance"},
}
labels["administration"] = {
description = "default",
parents = {"business"},
}
labels["administrative divisions"] = {
description = "default",
parents = {"government"},
}
labels["advertising"] = {
description = "default",
parents = {"business", "marketing"},
}
labels["alt-right"] = {
description = "{{{langname}}} terms related to the [[alt-right]], a loosely connected [[far-right]], [[white nationalist]] movement.",
parents = {"conservatism", "fascism", "ideologies", "white supremacist ideology"},
}
labels["anarchism"] = {
description = "default",
parents = {"ideologies", "leftism"},
}
labels["awards"] = {
description = "default",
parents = {"society"},
}
labels["banking"] = {
description = "default",
parents = {"finance", "industries"},
}
labels["bars"] = {
description = "default",
parents = {"businesses", "drinking"},
}
labels["Basque nationalism"] = {
description = "default with capital",
parents = {"Basque Country", "nationalism"},
}
labels["bedding"] = {
description = "default",
parents = {"home"},
}
labels["bond market"] = {
description = "default with the lower",
parents = {"finance"},
}
labels["book sizes"] = {
description = "default",
parents = {"publishing"},
}
labels["Brexit"] = {
description = "{{{langname}}} terms related to [[w:Brexit|Brexit]], i.e. the withdrawal of the [[w:United Kingdom|United Kingdom]] from the [[w:European Union|European Union]].",
parents = {"nationalism", "European politics", "UK politics"},
}
labels["burial"] = {
description = "default",
parents = {"society", "death"},
}
labels["business"] = {
description = "default no singularize",
parents = {"economics", "society"},
}
labels["businesses"] = {
description = "{{{langname}}} terms related to [[business]]es (specific commercial enterprises or establishments).",
parents = {"business"},
}
labels["capitalism"] = {
description = "default",
parents = {"economics", "ideologies"},
}
labels["chairs"] = {
description = "{{{langname}}} terms related to [[chair]]s.",
parents = {"furniture"},
}
labels["Chinese restaurants"] = {
description = "default",
parents = {"restaurants", "China"},
}
labels["cleaning"] = {
description = "default",
parents = {"home"},
}
labels["coins"] = {
description = "default",
parents = {"money"},
}
labels["conservatism"] = {
description = "{{{langname}}} terms related to [[conservatism]] or [[traditionalist]] beliefs.",
parents = {"ideologies"},
}
labels["competition law"] = {
description = "{{{langname}}} terms related to the [[competition law]].",
parents = {"law"},
}
labels["antitrust law"] = {
description = "{{{langname}}} terms related to the [[antitrust law]].",
parents = {"competition law"},
}
labels["law of unfair competition"] = {
description = "{{{langname}}} terms related to the [[law of unfair competition]].",
parents = {"competition law"},
}
labels["communism"] = {
description = "default with capital",
parents = {"ideologies", "socialism", "leftism"},
}
labels["constitutional law"] = {
description = "{{{langname}}} terms related to [[constitutional]] [[law]].",
parents = {"law"},
}
labels["copyright"] = {
description = "{{{langname}}} terms related to [[copyright]] [[law]].",
parents = {"intellectual property"},
}
labels["copyright licenses"] = {
description = "{{{langname}}} names of [[license]]s of [[copyright]].",
parents = {"copyright"},
}
labels["corporate law"] = {
description = "default",
parents = {"law"},
}
labels["corruption"] = {
description = "default",
parents = {"crime", "politics", "list of topics"},
}
labels["crafts"] = {
description = "{{{langname}}} terms related to [[craft]]s.",
parents = {"society"},
}
labels["crime"] = {
description = "default",
parents = {"society", "criminal law"},
}
labels["crime prevention"] = {
description = "{{{langname}}} terms related to [[crime]] [[prevention]].",
parents = {"public safety", "crime"},
}
labels["criminal law"] = {
description = "default",
parents = {"law"},
}
labels["cryptocurrency"] = {
description = "default",
parents = {"currency", "cryptography", "technology"},
}
labels["currencies"] = {
description = "default-set",
parents = {"money", "list of sets"},
}
labels["currency"] = {
description = "default",
parents = {"money"},
}
labels["dairy farming"] = {
description = "default",
parents = {"agriculture", "industries"},
}
labels["democracy"] = {
description = "default",
parents = {"forms of government"},
}
labels["diplomacy"] = {
description = "default",
parents = {"society"},
}
labels["discrimination"] = {
description = "default",
parents = {"society"},
}
labels["drug trafficking"] = {
description = "default",
parents = {"crime", "drugs"},
}
labels["education"] = {
description = "default",
parents = {"society"},
}
labels["emergency services"] = {
description = "{{{langname}}} terms related to [[emergency service]]s.",
parents = {"public safety"},
}
labels["espionage"] = {
description = "default",
parents = {"security"},
}
labels["fascism"] = {
description = "default",
parents = {"ideologies"},
}
labels["feminism"] = {
description = "{{{langname}}} terms related to [[feminism]].",
parents = {"gender", "female", "ideologies", "society", "sociology"},
}
labels["feudalism"] = {
description = "default",
parents = {"forms of government"},
}
labels["finance"] = {
description = "default",
parents = {"business"},
}
labels["firefighting"] = {
description = "default",
parents = {"emergency services", "fire"},
}
labels["forms of discrimination"] = {
description = "forms of [[discrimination]]",
parents = {"discrimination"},
}
labels["forms of government"] = {
description = "{{{langname}}} terms related to [[form]]s of [[government]].",
parents = {"government"},
}
labels["freedom of speech"] = {
description = "default",
parents = {"law"},
}
labels["freemasonry"] = {
description = "{{{langname}}} terms related to [[freemasonry]].",
parents = {"organizations"},
}
labels["funeral"] = {
description = "default",
parents = {"society", "death", "industries"},
}
labels["furniture"] = {
description = "default",
parents = {"home"},
}
labels["gender-critical feminism"] = {
description = "{{{langname}}} terms related to [[gender-critical feminism]].",
parents = {"feminism", "gender"},
}
labels["glassblowing"] = {
description = "default",
parents = {"crafts"},
}
labels["government"] = {
description = "default",
parents = {"society", "politics"},
}
labels["Hindutva"] = {
description = "{{{langname}}} terms related to Hindutva or Hindu nationalism.",
parents = {"conservatism", "Hinduism", "ideologies", "Indian politics", "nationalism", "theocracy"},
}
labels["home"] = {
description = "default with the lower",
parents = {"society"},
}
labels["hospitality"] = {
description = "default",
parents = {"business"},
}
labels["host industry"] = {
description = "default",
parents = {"hospitality", "businesses"},
}
labels["hotels"] = {
description = "default",
parents = {"businesses", "tourism", "hospitality"},
}
labels["household"] = {
description = "default",
parents = {"home"},
}
labels["housing"] = {
description = "default",
parents = {"home", "buildings"},
}
labels["human resources"] = {
description = "default no singularize",
parents = {"business", "sociology"},
}
labels["ideologies"] = {
description = "{{{langname}}} terms related to [[ideology|ideologies]].",
parents = {"society", "politics"},
}
labels["import/export"] = {
description = "{{{langname}}} terms related to [[import]]s and [[export]]s.",
parents = {"trading", "transport"},
}
labels["incel community"] = {
description = "{{{langname}}} terms related to the [[incel]] community.",
parents = {"masculism", "sex"},
}
labels["incoterms"] = {
description = "{{{langname}}} terms related to [[Incoterm]]s.",
parents = {"business", "import/export"},
}
labels["industries"] = {
description = "{{{langname}}} terms related to [[industry|industries]].",
parents = {"business"},
}
labels["insurance"] = {
description = "default",
parents = {"finance", "industries"},
}
labels["intellectual property"] = {
description = "{{{langname}}} terms related to [[intellectual property]] [[law]].",
parents = {"law"},
}
labels["international law"] = {
description = "default",
parents = {"law"},
}
labels["Islamic finance"] = {
description = "{{{langname}}} terms related to {{w|Islamic finance}}.",
parents = {"finance", "banking", "Islam"},
}
labels["Islamism"] = {
description = "{{{langname}}} terms related to [[Islamism]].",
parents = {"ideologies", "conservatism", "Islam", "theocracy"},
}
labels["knitting"] = {
description = "default",
parents = {"crafts"},
}
labels["Ku Klux Klan"] = {
description = "default with the",
parents = {"organizations", "racism", "white supremacist ideology"},
}
labels["kyabakura industry"] = {
description = "default",
parents = {"hospitality", "businesses"},
}
labels["laundry"] = {
description = "default",
parents = {"cleaning"},
}
labels["law"] = {
description = "{{{langname}}} terms related to the science and practice of [[law]].",
parents = {"society"},
}
labels["law of obligations"] = {
description = "default with the lower no singularize",
parents = {"law"},
}
labels["family law"] = {
description = "default",
parents = {"law"},
}
labels["inheritance law"] = {
description = "default",
parents = {"law"},
}
labels["law enforcement"] = {
description = "default",
parents = {"crime prevention", "emergency services", "law"},
}
labels["leatherworking"] = {
description = "default",
parents = {"crafts"}
}
labels["leftism"] = {
description = "default",
parents = {"ideologies"},
}
labels["libertarianism"] = {
description = "{{{langname}}} terms related to [[libertarianism]].",
parents = {"ideologies"},
}
labels["management"] = {
description = "default",
parents = {"business"},
}
labels["Maoism"] = {
description = "default with capital",
parents = {"ideologies", "communism", "Marxism"},
}
labels["marketing"] = {
description = "default",
parents = {"business"},
}
labels["Marxism"] = {
description = "default with capital",
parents = {"ideologies", "socialism"},
}
labels["masculism"] = {
description = "default",
parents = {"ideologies", "male"},
}
labels["micronationalism"] = {
description = "default",
parents = {"forms of government", "ideologies"},
}
labels["military"] = {
description = "default with the lower",
parents = {"society"},
}
labels["military units"] = {
description = "default",
parents = {"military", "occupations"},
}
labels["mining"] = {
description = "default",
parents = {"industries"},
}
labels["monarchy"] = {
description = "default",
parents = {"forms of government"},
}
labels["money"] = {
description = "default",
parents = {"business"},
}
labels["museums"] = {
description = "default",
parents = {"businesses", "tourism", "art"},
}
labels["nationalism"] = {
description = "{{{langname}}} terms related to [[nationalism]].",
parents = {"ideologies"},
}
labels["Nazism"] = {
description = "default with capital",
parents = {"fascism", "white supremacist ideology", "ideologies"},
}
labels["neo-Nazism"] = { -- Adjacent to Nazism, but not quite the same thing.
description = "{{{langname}}} terms related to [[neo-Nazism]].",
parents = {"Nazism", "fascism", "white supremacist ideology", "ideologies"},
}
labels["Nobel Prize"] = {
description = "{{{langname}}} terms related to the [[Nobel Prize]].",
parents = {"awards"},
}
labels["nuclear warfare"] = {
description = "default with capital",
parents = {"war", "weapons"},
}
labels["Objectivism"] = {
description = "{{{langname}}} terms related to the political philosophy of [[w:Objectivism|Objectivism]] developed by [[w:Ayn Rand|Ayn Rand]].",
parents = {"ideologies", "libertarianism"},
}
labels["offices"] = {
description = "{{{langname}}} offices, in the sense \"position of responsibility of some authority within an organisation\".",
parents = {"government"},
}
labels["oil industry"] = {
description = "{{{langname}}} terms related to the [[oil]] [[industry]].",
parents = {"industries"},
}
labels["operations"] = {
description = "{{{langname}}} terms covering all operational matters in [[production]], [[logistics]], or [[services]].",
parents = {"management", "systems theory"},
}
labels["organizations"] = {
description = "default",
parents = {"society"},
}
labels["patent law"] = {
description = "default",
parents = {"law"},
}
labels["pensions"] = {
description = "default",
parents = {"finance"},
}
labels["philanthropy"] = {
description = "{{{langname}}} terms related to [[philanthropy]].",
parents = {"society"},
}
labels["Philmont Scout Ranch"] = {
description = "{{{langname}}} terms related to [[w:Philmont Scout Ranch|Philmont Scout Ranch]], a Scouting ranch in the United States.",
parents = {"Scouting"},
}
labels["politics"] = {
description = "default no singularize",
parents = {"society"},
}
labels["Australian politics"] = {
description = "{{{langname}}} terms related to [[w:Politics of Australia|politics of Australia]].",
parents = {"politics", "Australia"},
}
labels["Bangladeshi politics"] = {
description = "{{{langname}}} terms related to [[w:Politics of Bangladesh|politics of Bangladesh]].",
parents = {"politics", "Bangladesh"},
}
labels["Canadian politics"] = {
description = "{{{langname}}} terms related to [[w:Politics of Canada|politics of Canada]].",
parents = {"politics", "Canada"},
}
labels["Chinese politics"] = {
description = "{{{langname}}} terms related to [[w:Politics of China|politics of China]].",
parents = {"politics", "China"},
}
labels["European politics"] = {
description = "{{{langname}}} terms related to [[w:Politics of the European Union|politics of the European Union]].",
parents = {"politics", "Europe"},
}
labels["French politics"] = {
description = "{{{langname}}} terms related to [[w:Politics of France|politics of France]].",
parents = {"European politics", "France"},
}
labels["German politics"] = {
description = "{{{langname}}} terms related to [[w:Politics of Germany|politics of Germany]].",
parents = {"European politics", "Germany"},
}
labels["HK politics"] = {
description = "{{{langname}}} terms related to [[w:Politics of Hong Kong|politics of Hong Kong]].",
parents = {"politics", "Hong Kong"},
}
labels["Hungarian politics"] = {
description = "{{{langname}}} terms related to [[w:Politics of Hungary|politics of Hungary]].",
parents = {"European politics", "Hungary"},
}
labels["Indian politics"] = {
description = "{{{langname}}} terms related to [[w:Politics of India|politics of India]].",
parents = {"politics", "India"},
}
labels["international politics"] = {
description = "{{{langname}}} terms related to [[w:International relations|international politics]].",
parents = {"politics", "Earth"},
}
labels["Irish politics"] = {
description = "{{{langname}}} terms related to [[w:Politics of Ireland|politics of Ireland]].",
parents = {"European politics", "Ireland"},
}
labels["New Zealand politics"] = {
description = "{{{langname}}} terms related to [[w:Politics of New Zealand|politics of New Zealand]].",
parents = {"politics", "New Zealand"},
}
labels["Pakistani politics"] = {
description = "{{{langname}}} terms related to [[w:Politics of Pakistan|politics of Pakistan]].",
parents = {"politics", "Pakistan"},
}
labels["South Korean politics"] = {
description = "{{{langname}}} terms related to [[w:Politics of South Korea|politics of South Korea]].",
parents = {"politics", "South Korea"},
}
labels["Swiss politics"] = {
description = "{{{langname}}} terms related to [[w:Politics of Switzerland|politics of Switzerland]].",
parents = {"European politics", "Switzerland"},
}
labels["UK politics"] = {
description = "{{{langname}}} terms related to [[w:Politics of the United Kingdom|politics of the United Kingdom]].",
parents = {"politics", "United Kingdom"},
}
labels["US politics"] = {
description = "{{{langname}}} terms related to [[w:Politics of the United States|politics of the United States]].",
parents = {"politics", "United States"},
}
labels["printing"] = {
description = "default",
parents = {"industries"},
}
labels["prison"] = {
description = "default",
parents = {"law enforcement", "buildings"},
}
labels["procedural law"] = {
description = "default",
parents = {"law"},
}
labels["property law"] = {
description = "default",
parents = {"law"},
}
labels["public administration"] = {
description = "{{{langname}}} terms related to the field of [[public]] [[administration]].",
parents = {"administration", "government"},
}
labels["public safety"] = {
description = "{{{langname}}} terms related to the field of [[public]] [[safety]].",
parents = {"public administration", "security"},
}
labels["publishing"] = {
description = "default",
parents = {"industries", "mass media"},
}
labels["racism"] = {
description = "default",
parents = {"forms of discrimination"},
}
labels["real estate"] = {
description = "default",
parents = {"industries", "housing"},
}
labels["restaurants"] = {
description = "{{{langname}}} terms related to [[restaurant]]s (including [[pub]]s, [[café]]s etc.).",
parents = {"businesses", "food and drink"},
}
labels["royal residences"] = {
description = "default",
parents = {"housing", "monarchy"},
}
labels["schools"] = {
description = "default",
parents = {"education"},
}
labels["Scouting"] = {
description = "default",
parents = {"society"},
}
labels["security"] = {
description = "default",
parents = {"society"},
}
labels["sexism"] = {
description = "default",
parents = {"forms of discrimination", "gender"},
}
labels["sewing"] = {
description = "{{{langname}}} terms related to [[sewing]], sewing tools, sewing [[technique]]s and so on.",
parents = {"crafts"},
}
labels["shoemaking"] = {
description = "default",
parents = {"crafts"}
}
labels["slavery"] = {
description = "default",
parents = {"society"},
}
labels["socialism"] = {
description = "default",
parents = {"economics", "ideologies", "leftism"},
}
labels["social justice"] = {
description = "default",
parents = {"politics", "society", "sociology", "leftism"},
}
labels["spinning"] = {
description = "{{{langname}}} terms related to [[spinning]], the process of making [[yarn]] or [[string]] from raw [[fiber]].",
parents = {"crafts"},
}
labels["standards of identity"] = {
description = "default",
parents = {"law", "food and drink"},
}
labels["stock market"] = {
description = "default with the lower",
parents = {"finance"},
}
labels["taxation"] = {
description = "default",
parents = {"government", "law", "money"},
}
labels["theocracy"] = {
description = "{{{langname}}} terms related to [[theocracy]].",
parents = {"ideologies", "religion"},
}
labels["timber industry"] = {
description = "default with the lower",
parents = {"industries"},
}
labels["trademark"] = {
description = "{{{langname}}} terms related to [[trademark]] [[law]].",
parents = {"intellectual property"},
}
labels["trading"] = {
description = "default",
parents = {"business"},
}
labels["universities"] = {
description = "default",
parents = {"schools"},
}
labels["voting systems"] = {
description = "default",
parents = {"democracy", "systems"},
}
labels["war"] = {
description = "default",
parents = {"military", "violence"},
}
labels["weaving"] = {
description = "default",
parents = {"crafts"},
}
labels["white supremacist ideology"] = {
description = "default with capital",
parents = {"racism", "ideologies"},
}
labels["woodworking"] = {
description = "default",
parents = {"crafts"},
}
return labels
o4r4hsyf6opo3uucdwm5s4ux609ngl0
Module:category tree/topic cat/data/Sports
828
5264
13268
2022-07-29T19:05:08Z
Asinis632
1829
Created page with "local labels = {} labels["sports"] = { description = "default", parents = {"Human activity"}, } labels["archery"] = { description = "default", parents = {"sports"}, } labels["athletics"] = { description = "default no singularize", parents = {"sports"}, } labels["Australian rules football"] = { description = "{{{langname}}} terms relating to [[Australian rules football]], often known as [[Aussie rules]].", parents = {"football"}, } labels["auto racing"] = {..."
Scribunto
text/plain
local labels = {}
labels["sports"] = {
description = "default",
parents = {"Human activity"},
}
labels["archery"] = {
description = "default",
parents = {"sports"},
}
labels["athletics"] = {
description = "default no singularize",
parents = {"sports"},
}
labels["Australian rules football"] = {
description = "{{{langname}}} terms relating to [[Australian rules football]], often known as [[Aussie rules]].",
parents = {"football"},
}
labels["auto racing"] = {
description = "default",
parents = {"motor racing", "automotive"},
}
labels["badminton"] = {
description = "default",
parents = {"racquet sports"},
}
labels["ball games"] = {
description = "{{{langname}}} terms related to [[ball game]]s.",
parents = {"sports"},
}
labels["baseball"] = {
description = "default",
parents = {"ball games"},
}
labels["basketball"] = {
description = "default",
parents = {"ball games"},
}
labels["board sports"] = {
description = "default",
parents = {"sports"},
}
labels["bodybuilding"] = {
description = "default",
parents = {"sports"},
}
labels["boxing"] = {
description = "default",
parents = {"sports"},
}
labels["bullfighting"] = {
description = "default",
parents = {"sports"},
}
labels["Canadian football"] = {
description = "{{{langname}}} terms relating to [[Canadian football]].",
parents = {"football"},
}
labels["caving"] = {
description = "default",
parents = {"sports"},
}
labels["climbing"] = {
description = "default",
parents = {"sports"},
}
labels["cockfighting"] = {
description = "default",
parents = {"sports"},
}
labels["college sports"] = {
description = "default",
parents = {"sports", "Universities"}
}
labels["cricket"] = {
description = "default",
parents = {"ball games"},
}
labels["curling"] = {
description = "default",
parents = {"winter sports"},
}
labels["cycle racing"] = {
description = "default",
parents = {"sports", "cycling"},
}
labels["diving"] = {
description = "{{{langname}}} terms related to [[diving]] (the [[sport#Noun|sport]] of [[jump#Verb|jumping]] or [[fall#Verb|falling]] into [[water#Noun|water]] from a [[platform]] or [[springboard#Noun|springboard]]). For terms relating to [[underwater]] diving, use a suitable subcategory of [[:Category:Underwater diving]].",
parents = {"water sports"},
}
labels["dressage"] = {
description = "default",
parents = {"equestrianism"},
}
labels["equestrianism"] = {
description = "default",
parents = {"sports"},
}
labels["exercise"] = {
description = "default",
parents = {"sports"},
}
labels["exercise equipment"] = {
description = "{{{langname}}} terms for devices designed for pursuing fitness goals by performing sporting activities on them.",
parents = {"exercise", "list of sets"},
}
labels["falconry"] = {
description = "default",
parents = {"sports"},
}
labels["fencing"] = {
description = "default",
parents = {"sports"},
}
labels["field hockey"] = {
description = "default",
parents = {"hockey"},
}
labels["figure skating"] = {
description = "default",
parents = {"winter sports"},
}
labels["football"] = {
description = "default",
parents = {"ball games"},
}
labels["football (American)"] = {
description = "default",
parents = {"football"},
}
labels["football (soccer)"] = {
description = "{{{langname}}} terms related to [[soccer]].",
parents = {"football"},
}
labels["Gaelic football"] = {
description = "default",
parents = {"football"},
}
labels["golf"] = {
description = "default",
parents = {"ball games"},
}
labels["gun sports"] = {
description = "default",
parents = {"sports","firearms"},
}
labels["gymnastics"] = {
description = "default no singularize",
parents = {"sports"},
}
labels["handball"] = {
description = "default",
parents = {"ball games"},
}
labels["hockey"] = {
description = "{{{langname}}} terms related to [[hockey]].",
parents = {"sports"},
}
labels["horse racing"] = {
description = "default",
parents = {"equestrianism"},
}
labels["hurling"] = {
description = "default",
parents = {"ball games"},
}
labels["ice hockey"] = {
description = "default",
parents = {"hockey", "winter sports"},
}
labels["judo"] = {
description = "default",
parents = {"martial arts"},
}
labels["karate"] = {
description = "default",
parents = {"martial arts"},
}
labels["kendo"] = {
description = "default",
parents = {"martial arts"},
}
labels["lacrosse"] = {
description = "default",
parents = {"ball games", "racquet sports"},
}
labels["luge"] = {
description = "default",
parents = {"winter sports"},
}
labels["martial arts"] = {
description = "default",
parents = {"sports"},
}
labels["motor racing"] = {
description = "default",
parents = {"sports", "automotive"},
}
labels["netball"] = {
description = "default",
parents = {"ball games"},
}
labels["paintball"] = {
description = "default",
parents = {"sports"},
}
labels["pesäpallo"] = {
description = "default",
parents = {"ball games", "Finland"},
}
labels["professional wrestling"] = {
description = "default",
parents = {"sports", "entertainment"},
}
labels["racquet sports"] = {
description = "{{{langname}}} terms related to [[racquet]] sports.",
parents = {"sports"},
}
labels["roller derby"] = {
description = "default",
parents = {"sports"},
}
labels["rowing"] = {
description = "default",
parents = {"water sports"},
}
labels["rugby"] = {
description = "default",
parents = {"ball games"},
}
labels["rugby league"] = {
description = "default",
parents = {"rugby"},
}
labels["rugby union"] = {
description = "default",
parents = {"rugby"},
}
labels["skateboarding"] = {
description = "default",
parents = {"board sports"},
}
labels["skiing"] = {
description = "{{{langname}}} terms related to [[snow]] [[skiing]].",
parents = {"winter sports"},
}
labels["snowboarding"] = {
description = "default",
parents = {"winter sports"},
}
labels["softball"] = {
description = "default",
parents = {"ball games"},
}
labels["sports areas"] = {
description = "{{{langname}}} terms describing designated areas where [[sports]] are played.",
parents = {"sports"},
}
labels["squash"] = {
description = "default",
parents = {"ball games", "racquet sports"},
}
labels["sumo"] = {
description = "default",
parents = {"sports"},
}
labels["surfing"] = {
description = "default",
parents = {"water sports"},
}
labels["swimming"] = {
description = "default",
parents = {"water sports"},
}
labels["table tennis"] = {
description = "default no singularize",
parents = {"ball games", "racquet sports"},
}
labels["tennis"] = {
description = "default no singularize",
parents = {"ball games", "racquet sports"},
}
labels["ultimate"] = {
description = "{{{langname}}} terms related to the sport of [[ultimate]].",
parents = {"sports"},
}
labels["underwater diving"] = {
description = "{{{langname}}} terms related to [[w:underwater diving|underwater diving]].",
parents = {"water sports"},
}
labels["disc golf"] = {
description = "{{{langname}}} terms related to [[disc golf]].",
parents = {"sports"},
}
labels["volleyball"] = {
description = "default",
parents = {"ball games"},
}
labels["water sports"] = {
description = "default",
parents = {"sports"},
}
labels["winter sports"] = {
description = "default",
parents = {"sports", "winter activities"},
}
labels["wrestling"] = {
description = "default",
parents = {"sports"},
}
return labels
rjgovjb9eowfbidvjgb2n9qehgntax0
Module:category tree/topic cat/data/Technology
828
5265
13269
2022-07-29T19:13:03Z
Asinis632
1829
Created page with "local labels = {} labels["technology"] = { description = "default", parents = {"all topics"}, } labels["aircraft"] = { description = "default", parents = {"technology", "aviation"}, } labels["amusement rides"] = { description = "default", parents = {"machines", "list of sets"}, } labels["Apple Inc."] = { description = "{{{langname}}} terms related to [[w:Apple Inc.|Apple Inc.]] or its products.", parents = {"technology", "computing"}, } labels["armor"] = {..."
Scribunto
text/plain
local labels = {}
labels["technology"] = {
description = "default",
parents = {"all topics"},
}
labels["aircraft"] = {
description = "default",
parents = {"technology", "aviation"},
}
labels["amusement rides"] = {
description = "default",
parents = {"machines", "list of sets"},
}
labels["Apple Inc."] = {
description = "{{{langname}}} terms related to [[w:Apple Inc.|Apple Inc.]] or its products.",
parents = {"technology", "computing"},
}
labels["armor"] = {
description = "default",
parents = {"technology"},
}
labels["artillery"] = {
description = "default",
parents = {"weapons"},
}
labels["auto parts"] = {
description = "{{{langname}}} terms for [[automobile]] parts.",
parents = {"automobiles", "automotive", "list of sets"},
}
labels["automobiles"] = {
description = "default",
parents = {"vehicles", "automotive"},
}
labels["bags"] = {
description = "default",
parents = {"containers", "list of sets"},
}
labels["bicycle parts"] = {
description = "{{{langname}}} terms for the parts of a [[bicycle]].",
parents = {"cycling", "list of sets"},
}
labels["bicycle types"] = {
description = "{{{langname}}} terms for different types of [[bicycle]]s.",
parents = {"cycling", "vehicles", "list of sets"},
}
labels["biotechnology"] = {
description = "default",
parents = {"technology", "biology"},
}
labels["brass instruments"] = {
description = "{{{langname}}} names of [[brass instrument]]s.",
parents = {"wind instruments", "list of sets"},
}
labels["buttons"] = {
description = "{{{langname}}} names of [[button]]s of electronic [[device]]s.",
parents = {"mechanisms", "list of sets"},
}
labels["canals"] = {
description = "default-set",
parents = {"technology", "transport", "list of sets"},
}
labels["carriages"] = {
description = "default-set",
parents = {"vehicles"},
}
labels["clocks"] = {
description = "default-set",
parents = {"machines", "timekeeping", "list of sets"},
}
labels["compilation"] = {
description = "{{{langname}}} terms related to the [[compilation]] of source code.",
parents = {"computing"},
}
labels["computer graphics"] = {
description = "{{{langname}}} terms related to [[computer]] [[graphics]].",
parents = {"computing"},
}
labels["computer hardware"] = {
description = "{{{langname}}} terms related to [[computer]] [[hardware]].",
parents = {"electronics", "computing"},
}
labels["computer languages"] = {
description = "{{{langname}}} names of [[computer language]]s and computer [[programming language]]s.",
parents = {"programming"},
}
labels["computer security"] = {
description = "{{{langname}}} terms related to [[computer]] [[security]].",
parents = {"computing"},
}
labels["computing"] = {
description = "default",
parents = {"technology"},
}
labels["consumer electronics"] = {
description = "default",
parents = {"electronics"},
}
labels["connectors"] = {
description = "default-set",
parents = {"electronics", "list of sets"},
}
labels["construction vehicles"] = {
description = "{{{langname}}} terms for vehicles designed to be employed in building settlements.",
parents = {"vehicles", "construction", "list of sets"},
}
labels["containers"] = {
description = "default",
parents = {"tools", "list of sets"},
}
labels["vessels"] = {
description = "{{{langname}}} terms for [[vessel]]s for holding food or liquids.",
parents = {"containers", "list of sets"},
}
labels["cookware and bakeware"] = {
description = "{{{langname}}} terms for containers used to prepare food.",
parents = {"kitchenware", "list of sets"},
}
labels["cutlery"] = {
description = "default-set",
parents = {"kitchenware", "list of sets"},
}
labels["data modeling"] = {
description = "{{{langname}}} terms related to [[data]] [[modeling]].",
parents = {"computing"},
}
labels["databases"] = {
description = "default",
parents = {"computing"},
}
labels["e-mail"] = {
description = "default",
parents = {"Internet", "communication"},
}
labels["electron tubes"] = {
description = "{{{langname}}} terms related to [[electron tube|electron tubes]] such as [[vacuum tube]]s/[[thermionic valve]]s.",
parents = {"electronics"},
}
labels["electronics"] = {
description = "default no singularize",
parents = {"technology"},
}
labels["fans"] = {
description = "default-set",
parents = {"tools", "list of sets"},
}
labels["fasteners"] = {
description = "default-set",
parents = {"tools"},
}
labels["firearms"] = {
description = "default",
parents = {"weapons"},
}
labels["glasses"] = {
description = "{{{langname}}} terms related to [[glasses]].",
parents = {"eyewear"},
}
labels["graphical user interface"] = {
description = "default",
parents = {"computing"},
}
labels["Google"] = {
description = "{{{langname}}} terms related to [[w:Google|Google]] or its products.",
parents = {"World Wide Web"},
}
labels["gun mechanisms"] = {
description = "{{{langname}}} terms for [[firearm]] [[mechanism]]s or their parts.",
parents = {"firearms", "mechanisms", "list of sets"},
}
labels["home appliances"] = {
description = "{{{langname}}} terms for [[home]] [[appliance]]s.",
parents = {"machines", "home", "list of sets"},
}
labels["horse tack"] = {
description = "{{{langname}}} terms related to [[horse]] [[tack]]s.",
parents = {"tools", "horses"},
}
labels["HTML"] = {
description = "{{{langname}}} terms related to [[HTML]], [[XHTML]], and related [[technology|technologies]].",
parents = {"computer languages", "World Wide Web"},
}
labels["IBM"] = {
description = "{{{langname}}} terms related to the [[American]] [[technology]] and [[consulting]] [[firm]] [[w:IBM|IBM]].",
parents = {"technology", "computing"},
}
labels["Internet"] = {
description = "default with the",
parents = {"computing", "networking"},
}
labels["Internet memes"] = {
description = "{{{langname}}} terms related to Internet [[meme]]s.",
parents = {"comedy", "Internet", "memetics"},
}
labels["Java programming language"] = {
description = "{{{langname}}} terms related to the [[w:Java (programming language)|Java programming language]] and related [[technology|technologies]].",
parents = {"computer languages"},
}
labels["JavaScript"] = {
description = "{{{langname}}} terms related to [[w:JavaScript|JavaScript]] and related [[technology|technologies]].",
parents = {"computer languages", "World Wide Web"},
}
labels["kitchenware"] = {
description = "{{{langname}}} terms for various kinds of [[kitchenware]].",
parents = {"tools", "kitchen", "cooking", "list of sets"},
}
labels["knives"] = {
description = "default-set",
parents = {"tools", "list of sets"},
}
labels["locks"] = {
description = "default-set",
parents = {"mechanisms", "security", "list of sets"},
}
labels["machines"] = {
description = "default-set",
parents = {"technology", "list of sets"},
}
labels["measuring instruments"] = {
description = "{{{langname}}} terms for [[measuring]] [[instrument]]s.",
parents = {"tools", "list of sets"},
}
labels["mechanisms"] = {
description = "default-set",
parents = {"machines", "list of sets"},
}
labels["medical equipment"] = {
description = "{{{langname}}} terms for [[medical]] [[equipment]].",
parents = {"tools", "medicine", "list of sets"},
}
labels["Microsoft"] = {
description = "{{{langname}}} terms related to Microsoft Corporation.",
parents = {"computing"},
}
labels["military vehicles"] = {
description = "{{{langname}}} terms for [[military]] [[vehicles]].",
parents = {"vehicles", "military", "list of sets"},
}
labels["motorcycles"] = {
description = "default",
parents = {"vehicles"},
}
labels["musical instruments"] = {
description = "{{{langname}}} names of [[musical instrument]]s.",
parents = {"tools", "music", "list of sets"},
}
labels["nanotechnology"] = {
description = "default",
parents = {"technology"},
}
labels["networking"] = {
description = "default",
parents = {"computing"},
}
labels["newsgroups"] = {
description = "{{{langname}}} terms related to specific [[Usenet]] [[newsgroup]]s.",
parents = {"Usenet"},
}
labels["Nintendo"] = {
description = "{{{langname}}} terms related to [[w:Nintendo|Nintendo]] or its products.",
parents = {"Video games"},
}
labels["Object-oriented programming"] = {
description = "{{{langname}}} terms related to the [[w:Object-oriented programming|object-oriented programming]].",
parents = {"programming"},
}
labels["percussion instruments"] = {
description = "{{{langname}}} names of [[percussion instrument]]s.",
parents = {"musical instruments", "list of sets"},
}
labels["polearms"] = {
description = "{{{langname}}} terms for various kinds of [[polearm]]s.",
parents = {"weapons", "list of sets"},
}
labels["Pokémon"] = {
description = "{{{langname}}} terms related to ''[[w:Pokémon|Pokémon]]''.",
parents = {"Nintendo", "Japanese fiction"},
}
labels["programming"] = {
description = "{{{langname}}} terms related to [[computer programming]].",
parents = {"computing", "software engineering"},
}
labels["pumps"] = {
description = "default-set",
parents = {"mechanisms", "list of sets"},
}
labels["regular expressions"] = {
description = "{{{langname}}} terms used in [[regular expression]]s.",
parents = {"computing", "programming"},
}
labels["saws"] = {
description = "default-set",
parents = {"tools", "list of sets"},
}
labels["semiconductors"] = {
description = "default",
parents = {"electronics"},
}
labels["simple machines"] = {
description = "default-set",
parents = {"machines", "list of sets"},
}
labels["software"] = {
description = "default",
parents = {"computing", "media"},
}
labels["spears"] = {
description = "default-set",
parents = {"weapons", "list of sets"},
}
labels["stationery"] = {
description = "default",
parents = {"tools"},
}
labels["string instruments"] = {
description = "{{{langname}}} names of [[string instrument]]s.",
parents = {"musical instruments", "list of sets"},
}
labels["swords"] = {
description = "{{{langname}}} terms for various kinds of [[sword]]s.",
parents = {"weapons", "list of sets"},
}
labels["tools"] = {
description = "default-set",
parents = {"technology", "list of sets"},
}
labels["trapping"] = {
description = "{{{langname}}} terms related to the business of [[trapper]]s.",
parents = {"hunting"},
}
labels["typing keyboards"] = {
description = "{{{langname}}} terms for [[keyboards]] used as [[writing]] [[instrument]]s.",
parents = {"writing instruments"},
}
labels["Usenet"] = {
description = "{{{langname}}} terms related to [[Usenet]].",
parents = {"Internet"},
}
labels["vehicles"] = {
description = "default",
parents = {"machines"},
}
labels["video compression"] = {
description = "{{{langname}}} terms related to video compression.",
parents = {"computing"},
}
labels["visualization"] = {
description = "default",
parents = {"computing", "interdisciplinary fields"},
}
labels["singing voice synthesis"] = {
description = "default",
parents = {"musical instruments", "singing"},
}
labels["warships"] = {
description = "default-set",
parents = {"watercraft", "military", "list of sets"},
}
labels["watercraft"] = {
description = "{{{langname}}} terms for various kinds of [[watercraft]]: [[ship]]s, [[boat]]s, or any other vehicle that moves on or through the water.",
parents = {"vehicles", "nautical", "list of sets"},
}
labels["weapons"] = {
description = "default",
parents = {"tools", "hunting", "military"},
}
labels["websites"] = {
description = "{{{langname}}} terms for various [[website]]s.",
parents = {"World Wide Web", "list of sets"},
}
labels["wiki"] = {
description = "default",
parents = {"World Wide Web"},
}
labels["wind instruments"] = {
description = "{{{langname}}} names of [[wind instrument]]s.",
parents = {"musical instruments", "list of sets"},
}
labels["woodwind instruments"] = {
description = "{{{langname}}} names of [[woodwind instrument]]s.",
parents = {"wind instruments", "list of sets"},
}
labels["World Wide Web"] = {
description = "default with capital",
parents = {"Internet"},
}
labels["writing instruments"] = {
description = "{{{langname}}} terms for [[writing]] [[instrument]]s.",
parents = {"tools", "writing", "stationery", "list of sets"},
}
labels["quantum computing"] = {
description = "default",
parents = {"computing", "quantum mechanics"},
}
return labels
ckijynbevi6wcit3w3miv860hac1kkv
Module:category tree/topic cat/data/Time
828
5266
13270
2022-07-29T19:13:53Z
Asinis632
1829
Created page with "local labels = {} labels["time"] = { description = "default", parents = {"all topics"}, } labels["Armenian calendar months"] = { description = "{{{langname}}} names for the months of the [[w:Armenian calendar]].", parents = {"months", "list of sets"}, } labels["calendar terms"] = { description = "{{{langname}}} [[calendar]] terms.", parents = {"timekeeping"}, } labels["centuries"] = { description = "{{{langname}}} names of [[century|centuries]].", parents = {..."
Scribunto
text/plain
local labels = {}
labels["time"] = {
description = "default",
parents = {"all topics"},
}
labels["Armenian calendar months"] = {
description = "{{{langname}}} names for the months of the [[w:Armenian calendar]].",
parents = {"months", "list of sets"},
}
labels["calendar terms"] = {
description = "{{{langname}}} [[calendar]] terms.",
parents = {"timekeeping"},
}
labels["centuries"] = {
description = "{{{langname}}} names of [[century|centuries]].",
parents = {"calendar terms", "list of sets"},
}
labels["Chinese months"] = {
description = "{{{langname}}} terms related to [[Chinese]] [[month]]s.",
parents = {"months"},
}
labels["Christmas"] = {
description = "default with capital no singularize",
parents = {"holidays", "Christianity"},
}
labels["days of the Hindu calendar"] = {
description = "{{{langname}}} terms for [[day]]s of the [[Hindu]] [[calendar]].",
parents = {"periodic occurrences", "Hinduism", "list of sets"},
}
labels["days of the week"] = {
description = "{{{langname}}} terms for the [[Appendix:Days of the week|days of the week]].",
parents = {"periodic occurrences", "list of sets"},
}
labels["decades"] = {
description = "{{{langname}}} names of [[decade]]s.",
parents = {"calendar terms", "list of sets"},
}
labels["earthly branches"] = {
description = "{{{langname}}} names of the [[earthly branch]]es.",
parents = {"sexagenary cycle", "list of sets"},
}
labels["Easter"] = {
description = "default with capital",
parents = {"holidays", "Christianity"},
}
labels["Egyptian calendar months"] = {
description = "{{{langname}}} names for the months of the ancient Egyptian calendar.",
parents = {"Ancient Egypt", "months", "list of sets"},
}
labels["festivals"] = {
description = "default-set",
parents = {"calendar terms", "list of sets"},
}
labels["Gregorian calendar months"] = {
description = "{{{langname}}} terms for [[Gregorian]] [[calendar]] [[month]]s.",
parents = {"months", "list of sets"},
}
labels["Halloween"] = {
description = "default with capital no singularize",
parents = {"holidays"},
}
labels["Heavenly Stems"] = {
description = "{{{langname}}} names of the [[Heavenly Stem]]s.",
parents = {"sexagenary cycle", "list of sets"},
}
labels["Hebrew calendar months"] = {
description = "{{{langname}}} names for the months of the Hebrew calendar.",
parents = {"months", "list of sets"},
}
labels["Hindu lunar calendar months"] = {
description = "{{{langname}}} names for the months of the Hindu lunar calendar.",
parents = {"months", "list of sets", "Hinduism"},
}
labels["Hindu solar calendar months"] = {
description = "{{{langname}}} names for the months of the Hindu solar calendar.",
parents = {"months", "list of sets", "Hinduism"},
}
labels["holidays"] = {
description = "{{{langname}}} terms for [[holiday]]s.",
parents = {"calendar terms", "list of sets"},
}
labels["Islamic months"] = {
description = "{{{langname}}} terms for [[Islamic]] [[month]]s.",
parents = {"months", "Islam", "list of sets"},
}
labels["Japanese calendar months"] = {
description = "{{{langname}}} names for the months of the [[w:Japanese calendar|Japanese calendar]].",
parents = {"months", "list of sets"},
}
labels["Jovian years"] = {
description = "{{{langname}}} names for years in the cycle of [[Jovian year]]s in traditional calendars of [[Hinduism]], based on the movement of the planet Jupiter rather than that of the sun.",
parents = {"calendar terms", "Hinduism"},
}
labels["Kojoda months"] = {
description = "{{{langname}}} names for the months of the [[w:Yoruba calendar]].",
parents = {"months", "list of sets"},
}
labels["lunar months"] = {
description = "{{{langname}}} terms for [[lunar]] [[month]]s.",
parents = {"months", "list of sets"},
}
labels["months"] = {
description = "{{{langname}}} names of the [[month]]s of the [[year]].",
parents = {"periodic occurrences", "list of sets"},
}
labels["Norse calendar months"] = {
description = "{{{langname}}} terms for [[Norse]] [[calendar]] [[month]]s.",
parents = {"months", "list of sets"},
}
labels["observances"] = {
description = "{{{langname}}} terms for [[observance]]s.",
parents = {"calendar terms", "list of sets"},
}
labels["periodic occurrences"] = {
description = "{{{langname}}} terms for occurrences that repeat at certain intervals of time.",
parents = {"all sets", "list of sets", "time"},
}
labels["Persian months"] = {
description = "{{{langname}}} terms for [[Persian]] [[month]]s.",
parents = {"months", "list of sets"},
}
labels["seasons"] = {
description = "{{{langname}}} terms for [[season]]s.",
parents = {"periodic occurrences", "nature", "list of sets"},
}
labels["sexagenary cycle"] = {
description = "{{{langname}}} terms related to the [[sexagenary]] [[cycle]].",
parents = {"calendar terms"},
}
labels["Sinterklaas"] = {
description = "default with capital no singularize",
parents = {"holidays"},
}
labels["solar terms"] = {
description = "default",
parents = {"calendar terms", "Sun"},
}
labels["New Year"] = {
description = "{{{langname}}} terms for the [[Gregorian]] [[New Year]]",
parents = {"holidays"},
}
labels["Syrian Christian months"] = {
description = "{{{langname}}} terms for [[Syrian]] [[Christian]] [[month]]s.",
parents = {"months", "list of sets"},
}
labels["time zones"] = {
description = "default",
parents = {"timekeeping", "list of sets"},
}
labels["timekeeping"] = {
description = "{{{langname}}} terms related to [[timekeeping]].",
parents = {"time"},
}
labels["times of day"] = {
description = "{{{langname}}} terms for [[time]]s of the [[day]].",
parents = {"periodic occurrences", "timekeeping", "list of sets"},
}
labels["day"] = {
description = "{{{langname}}} terms related to the [[day]], be it [[etymologically]] or [[semantically]].",
additional = "NOTE: Do NOT include days of the week within this category.",
parents = {"time"},
}
labels["night"] = {
description = "{{{langname}}} terms related to the [[night]], be it [[etymologically]] or [[semantically]].",
parents = {"time"},
}
labels["years"] = {
description = "{{{langname}}} names of [[year]]s.",
parents = {"periodic occurrences"},
}
labels["past"] = {
description = "{{{langname}}} terms for the [[past]], or for events in the [[past]].",
additional = "NOTE: Do NOT include words that are exclusively verbs, or words related to the field of history or historiography, within this category.",
parents = {"time"},
}
labels["present"] = {
description = "{{{langname}}} terms for the [[present]], or for events in the [[present]].",
additional = "NOTE: Do NOT include words that are exclusively verbs, or words related to the field of history or historiography, within this category.",
parents = {"time"},
}
labels["future"] = {
description = "{{{langname}}} terms for the [[future]], or for events in the [[future]].",
additional = "NOTE: Do NOT include words that are exclusively verbs, or words related to the field of history or historiography, within this category.",
parents = {"time"},
}
labels["time travel"] = {
description = "default",
parents = {"time", "science fiction", "travel", "relativity"},
}
return labels
2w7ukrwv4ykodpsm3b8l69dem65ru0m
Module:category tree/topic cat/data/Transport
828
5267
13271
2022-07-29T19:14:34Z
Asinis632
1829
Created page with "local labels = {} labels["transport"] = { description = "default", parents = {"all topics"}, } labels["automotive"] = { description = "default with topic", parents = {"transport"}, } labels["cycling"] = { description = "default", parents = {"transport"}, } labels["nautical"] = { description = "default with topic", parents = {"transport"}, } labels["navigation"] = { description = "default", parents = {"transport"}, } labels["rail transportation"] = { desc..."
Scribunto
text/plain
local labels = {}
labels["transport"] = {
description = "default",
parents = {"all topics"},
}
labels["automotive"] = {
description = "default with topic",
parents = {"transport"},
}
labels["cycling"] = {
description = "default",
parents = {"transport"},
}
labels["nautical"] = {
description = "default with topic",
parents = {"transport"},
}
labels["navigation"] = {
description = "default",
parents = {"transport"},
}
labels["rail transportation"] = {
description = "{{{langname}}} terms related to [[rail]] [[transportation]].",
parents = {"transport"},
}
labels["road transport"] = {
description = "{{{langname}}} terms related to [[road]] [[transport]].",
parents = {"transport"},
}
labels["roads"] = {
description = "{{{langname}}} terms related to [[road]]s.",
parents = {"road transport"},
}
labels["sailing"] = {
description = "default",
parents = {"nautical"},
}
labels["ship parts"] = {
description = "default",
parents = {"nautical", "list of sets"},
}
labels["ship prefixes"] = {
description = "default",
parents = {"nautical"},
}
labels["shipping"] = {
description = "default",
parents = {"transport", "nautical"},
}
return labels
jcnz17uu9s2qjn3j1iaf3b9m1ey0rq8
Templet:maintenance box
10
5268
13272
2022-07-29T19:15:37Z
Asinis632
1829
Created page with "<div class="noprint maintenance-box maintenance-box-{{{1|blue}}}" style="background:#{{#switch:{{{1|blue}}}||blue=EEEEFF|red=FFE7DD|yellow=FFFFDD|grey=F0F0F0|orange=FFDD44}}; width:90%; margin: 0.75em auto; border:1px dashed #{{#switch:{{{1|blue}}}||blue=4444AA|red=884444|yellow=888822|grey=444444|orange=DDAA00}}; padding: 0.25em; "> {| | rowspan="2" | {{{image}}} ! style="text-align: left;" | {{{title}}} |- | {{{text}}} |}</div><noinclude>{{documentation}}</noinclude>"
wikitext
text/x-wiki
<div class="noprint maintenance-box maintenance-box-{{{1|blue}}}" style="background:#{{#switch:{{{1|blue}}}||blue=EEEEFF|red=FFE7DD|yellow=FFFFDD|grey=F0F0F0|orange=FFDD44}}; width:90%; margin: 0.75em auto; border:1px dashed #{{#switch:{{{1|blue}}}||blue=4444AA|red=884444|yellow=888822|grey=444444|orange=DDAA00}}; padding: 0.25em; ">
{|
| rowspan="2" | {{{image}}}
! style="text-align: left;" | {{{title}}}
|-
| {{{text}}}
|}</div><noinclude>{{documentation}}</noinclude>
n8lldvtjper0ph2s663yda8kyuifv9z
Appendix:Chinese radical/一
0
5269
13274
2022-07-29T19:36:58Z
Asinis632
1829
Created page with "{{tocright}} {{commonsrad|1}} == 一 (Radical 1) == === +0 strokes === {{charlist|sc=Hani|一𪛙}} === +1 stroke === {{charlist|sc=Hani|丁丂七丄丅丆𠀀𠀁𠀂𬺰𰀀}} === +2 strokes === {{charlist|sc=Hani|万丈三上下丌亐卄𠀃𠀄𠀅𠀆𪛚𪜀𪜁𫝀𬺱𬺲𬺳𬺴𰀁𰀂𰀃𰀄}} === +3 strokes === {{charlist|sc=Hani|不与丏丐丑丒专丗𠀇𠀈𠀉𠀊𠀋𠀌𪜂𫠡𬺵𬺶𬺷𬺸𬺹𰀅𰀆𰀇}} === +4 strokes === {{charlist|sc=H..."
wikitext
text/x-wiki
{{tocright}}
{{commonsrad|1}}
== 一 (Radical 1) ==
=== +0 strokes ===
{{charlist|sc=Hani|一𪛙}}
=== +1 stroke ===
{{charlist|sc=Hani|丁丂七丄丅丆𠀀𠀁𠀂𬺰𰀀}}
=== +2 strokes ===
{{charlist|sc=Hani|万丈三上下丌亐卄𠀃𠀄𠀅𠀆𪛚𪜀𪜁𫝀𬺱𬺲𬺳𬺴𰀁𰀂𰀃𰀄}}
=== +3 strokes ===
{{charlist|sc=Hani|不与丏丐丑丒专丗𠀇𠀈𠀉𠀊𠀋𠀌𪜂𫠡𬺵𬺶𬺷𬺸𬺹𰀅𰀆𰀇}}
=== +4 strokes ===
{{charlist|sc=Hani|且丕世丘丙业丛东丝㐀𠀍𠀎𠀏𠀐𠀑𠀒𠀓𠀔𠀕𠀖𠀗𫠢𫠣𬺺𬺻𬺼𬺽𬺾𰀈𰀉𰀊}}
=== +5 strokes ===
{{charlist|sc=Hani|丞丟丠両丢㐁㐂𠀘𠀙𠀚𠀜𠀞𠀟𠀠𫝁𫠤𫠥𬺿𬻀𬻁𬻂𬻃𬻄𬻅𬻆𬻇𬻈𬻉𰀋}}
=== +6 strokes ===
{{charlist|sc=Hani|丣两严丽鿖𠀡𠀢𠀣𠀤𠀦𠀧𠀨𠀪𠀫𫝂𫠦𫠧𫠨𫠩𬻊𬻋𬻌𬻍𬻎𬻏𬻐𬻑𬻒𰀌}}
=== +7 strokes ===
{{charlist|sc=Hani|並丧𠀬𠀭𠀮𠀰𠀱𠀲𠀳𠀴𪜃𫠪𫠫𫠬𫠭𬻓𬻔𬻕𬻖𬻗𬻘𰀍}}
=== +8 strokes ===
{{charlist|sc=Hani|鿗𠀵𠀶𠀸𠀺𠀻𪜄𫠮𬻙𬻚𬻛𬻜𬻝𰀎𰀏𰀐𰀑}}
=== +9 strokes ===
{{charlist|sc=Hani|𠀽𠀾𠀿𠁀𠤢𪜅𫠯𫠰𫠱𫠲𬻞𬻟𬻠𰀒𰀓𰀔𰀕}}
=== +10 strokes ===
{{charlist|sc=Hani|𠁁𠁂𠁃𠁄𠁅𪜆𫠳𫠴𫠵𬻡𬻢𬻣𬻤𬻥}}
=== +11 strokes ===
{{charlist|sc=Hani|𠁆𠁇𠁈𠁊𠁋𫠶𬻦𬻧𬻨𰀖𰀗𰀘}}
=== +12 strokes ===
{{charlist|sc=Hani|𠁌𠁍𫠷𫠸𫠹𫠺𫠻𫠼𬻩𬻪𬻫𬻬𬻭𬻮𰀙𰀚}}
=== +13 strokes ===
{{charlist|sc=Hani|𠁎𠁏𠁐𠁑𠁒𫝃𫠽𬻯𰀛𰀜}}
=== +14 strokes ===
{{charlist|sc=Hani|䶶𠁓𠁔𫠾𫠿𬻰𰀝}}
=== +15 strokes ===
{{charlist|sc=Hani|𠁕𠁗𠁘𠁙𠁚𠁛𠁝𤳏𪜇𫡀}}
=== +16 strokes ===
{{charlist|sc=Hani|𠁖𰀞}}
=== +17 strokes ===
{{charlist|sc=Hani|𠁟𫡁𫡂}}
=== +19 strokes ===
{{charlist|sc=Hani|𠁠𰀟}}
=== +21 strokes ===
{{charlist|sc=Hani|𬻱}}
fcu2lt27nna8whawrw9cb2m6g33l15z
Module:category tree/poscatboiler/data
828
5270
13277
2022-07-30T06:14:21Z
Asinis632
1829
Created page with "local labels = {} local raw_categories = {} local handlers = {} local raw_handlers = {} local subpages = { "characters", "entry maintenance", "families", "figures of speech", "lang-specific", "languages", "lemmas", "miscellaneous", "modules", "names", "non-lemma forms", "phrases", "rhymes", "scripts", "shortenings", "symbols", "templates", "terms by etymology", "terms by grammatical category", "terms by lexical property", "terms by semantic function..."
Scribunto
text/plain
local labels = {}
local raw_categories = {}
local handlers = {}
local raw_handlers = {}
local subpages = {
"characters",
"entry maintenance",
"families",
"figures of speech",
"lang-specific",
"languages",
"lemmas",
"miscellaneous",
"modules",
"names",
"non-lemma forms",
"phrases",
"rhymes",
"scripts",
"shortenings",
"symbols",
"templates",
"terms by etymology",
"terms by grammatical category",
"terms by lexical property",
"terms by semantic function",
"terms by script",
"terms by usage",
"transliterations",
"unicode",
"word of the day",
"words by number of syllables",
}
-- Import subpages
for _, subpage in ipairs(subpages) do
local datamodule = "Module:category tree/poscatboiler/data/" .. subpage
local retval = require(datamodule)
if retval["LABELS"] then
for label, data in pairs(retval["LABELS"]) do
if labels[label] and not retval["IGNOREDUP"] then
error("Label " .. label .. " defined in both [["
.. datamodule .. "]] and [[" .. labels[label].module .. "]].")
end
data.module = datamodule
labels[label] = data
end
end
if retval["RAW_CATEGORIES"] then
for category, data in pairs(retval["RAW_CATEGORIES"]) do
if raw_categories[category] and not retval["IGNOREDUP"] then
error("Raw category " .. category .. " defined in both [["
.. datamodule .. "]] and [[" .. raw_categories[category].module .. "]].")
end
data.module = datamodule
raw_categories[category] = data
end
end
if retval["HANDLERS"] then
for _, handler in ipairs(retval["HANDLERS"]) do
table.insert(handlers, { module = datamodule, handler = handler })
end
end
if retval["RAW_HANDLERS"] then
for _, handler in ipairs(retval["RAW_HANDLERS"]) do
table.insert(raw_handlers, { module = datamodule, handler = handler })
end
end
end
-- Add child categories to their parents
local function add_children_to_parents(hierarchy, raw)
for key, data in pairs(hierarchy) do
local parents = data.parents
if parents then
if type(parents) ~= "table" then
parents = {parents}
end
if parents.name or parents.module then
parents = {parents}
end
for _, parent in ipairs(parents) do
if type(parent) ~= "table" or not parent.name and not parent.module then
parent = {name = parent}
end
if parent.name and not parent.module and type(parent.name) == "string" and not parent.name:find("^Category:") then
local parent_is_raw
if raw then
parent_is_raw = not parent.is_label
else
parent_is_raw = parent.raw
end
-- Don't do anything if the child is raw and the parent is lang-specific,
-- otherwise e.g. "Lemmas subcategories by language" will be listed as a
-- child of every "LANG lemmas" category.
-- FIXME: We need to rethink this mechanism.
if not raw or parent_is_raw then
local child_hierarchy = parent_is_raw and raw_categories or labels
if child_hierarchy[parent.name] then
local child = {name = key, sort = parent.sort, raw = raw}
if child_hierarchy[parent.name].children then
table.insert(child_hierarchy[parent.name].children, child)
else
child_hierarchy[parent.name].children = {child}
end
end
end
end
end
end
end
end
add_children_to_parents(labels)
add_children_to_parents(raw_categories, true)
return {
LABELS = labels, RAW_CATEGORIES = raw_categories,
HANDLERS = handlers, RAW_HANDLERS = raw_handlers
}
7wbq8z1ua6awydxjml5ogj7q2rp65da
Templet:-it-
10
5271
13278
2022-07-30T06:18:49Z
Asinis632
1829
Created page with "<includeonly>[[Grup:Tok Italiun]]</includeonly>__NOEDITSECTION__ ==<div id="toc" class="toccolours" ><big><big>[[File:Flag_of_Italy.svg|border|32px]] Tok Italiun</big></big></div>== <noinclude> [[Grup:Ol templet long tok]] </noinclude>"
wikitext
text/x-wiki
<includeonly>[[Grup:Tok Italiun]]</includeonly>__NOEDITSECTION__
==<div id="toc" class="toccolours" ><big><big>[[File:Flag_of_Italy.svg|border|32px]] Tok Italiun</big></big></div>==
<noinclude>
[[Grup:Ol templet long tok]]
</noinclude>
61usheu3qevwpk9302fj431aeb5trl5
Grup:Tok Italiun
14
5273
13279
2022-07-30T06:19:34Z
Asinis632
1829
Created page with "[[Grup:Olgeta tokples|Italiun]]"
wikitext
text/x-wiki
[[Grup:Olgeta tokples|Italiun]]
o4gm11778cqrgg8dn0lo2p09k186ij8
ainanga
0
5274
13281
2022-07-30T06:25:07Z
Asinis632
1829
Created page with "{{-tpi-}} ===Noun=== {{head|tpi|noun}} # [[whitebait]]"
wikitext
text/x-wiki
{{-tpi-}}
===Noun===
{{head|tpi|noun}}
# [[whitebait]]
dbi2suzij3wflf0hdvmm3wskujaiqa8
agriman
0
5275
13282
2022-07-30T06:26:06Z
Asinis632
1829
Created page with "{{-tpi-}} ===Etymology=== From {{der|tpi|en|agreement}}. ===Noun=== {{head|tpi|noun}} # [[agreement]]"
wikitext
text/x-wiki
{{-tpi-}}
===Etymology===
From {{der|tpi|en|agreement}}.
===Noun===
{{head|tpi|noun}}
# [[agreement]]
4n29mi5cjdq3a6t5pagpevgsjq1juea
aidia
0
5277
13283
2022-07-30T06:27:20Z
Asinis632
1829
Created page with "{{-tpi-}} ===Etymology=== From {{der|tpi|en|idea}}. ===Noun=== {{head|tpi|noun}} # [[idea]]"
wikitext
text/x-wiki
{{-tpi-}}
===Etymology===
From {{der|tpi|en|idea}}.
===Noun===
{{head|tpi|noun}}
# [[idea]]
r4h02t18sjfaq054pxs15pv6ei2iwpf
akseptim
0
5278
13284
2022-07-30T06:31:39Z
Asinis632
1829
Created page with "{{-tpi-}} ===Etymology=== From {{der|tpi|en|accept}}. ===Verb=== {{head|tpi|verb}} # to [[accept]]"
wikitext
text/x-wiki
{{-tpi-}}
===Etymology===
From {{der|tpi|en|accept}}.
===Verb===
{{head|tpi|verb}}
# to [[accept]]
79gbmmiuzquhplccso5sdychs5ihtdr