Module:category tree/speech acts: Difference between revisions
Jump to navigation
Jump to search
m 1 revision imported |
m →top: clean up |
||
| Line 17: | Line 17: | ||
labels["dismissals"] = { | labels["dismissals"] = { | ||
description = "{{{langname}}} expressions intended to [[dismiss]] the listener.", | description = "{{{langname}}} expressions intended to [[wikt:dismiss|dismiss]] the listener.", | ||
parents = {"farewells", "imperative sentences"}, | parents = {"farewells", "imperative sentences"}, | ||
} | } | ||
labels["expressions of gratitude"] = { | labels["expressions of gratitude"] = { | ||
description = "{{{langname}}} expressions intended to express the [[gratitude]] or [[thank]]s of the speaker to the listener.", | description = "{{{langname}}} expressions intended to express the [[wikt:gratitude|gratitude]] or [[wikt:thank|thank]]s of the speaker to the listener.", | ||
parents = {"speech acts"}, | parents = {"speech acts"}, | ||
} | } | ||
| Line 47: | Line 47: | ||
labels["responses to sneezing"] = { | labels["responses to sneezing"] = { | ||
description = "{{{langname}}} expressions said in response to a [[sneeze]].", | description = "{{{langname}}} expressions said in response to a [[wikt:sneeze|sneeze]].", | ||
parents = {"speech acts"}, | parents = {"speech acts"}, | ||
} | } | ||
labels["toasts"] = { | labels["toasts"] = { | ||
description = "{{{langname}}} expressions said as part of a [[toast]].", | description = "{{{langname}}} expressions said as part of a [[wikt:toast|toast]].", | ||
parents = {"speech acts"}, | parents = {"speech acts"}, | ||
} | } | ||
Latest revision as of 21:27, 22 May 2026
- The following documentation is generated by Template:category tree data submodule documentation. [edit]
- Useful links: root page • root page’s subpages • links • transclusions • testcases • sandbox
This data submodule defines part of Wiktionary's category structure.
For an introduction to the category tree system and a description of how to add or modify categories, see Module:category tree/documentation.
local labels = {}
local raw_categories = {}
-----------------------------------------------------------------------------
-- --
-- LABELS --
-- --
-----------------------------------------------------------------------------
labels["speech acts"] = {
description = "{{{langname}}} terms that serves a performative function, in addition to conveying information.",
umbrella_parents = "Terms by semantic function subcategories by language",
parents = {"terms by semantic function"},
}
labels["dismissals"] = {
description = "{{{langname}}} expressions intended to [[wikt:dismiss|dismiss]] the listener.",
parents = {"farewells", "imperative sentences"},
}
labels["expressions of gratitude"] = {
description = "{{{langname}}} expressions intended to express the [[wikt:gratitude|gratitude]] or [[wikt:thank|thank]]s of the speaker to the listener.",
parents = {"speech acts"},
}
labels["farewells"] = {
description = "{{{langname}}} expressions intended to mark the end of the speaker's interaction with the listener.",
parents = {"speech acts"},
}
labels["greetings"] = {
description = "{{{langname}}} expressions intended to mark the start of the speaker's interaction with the listener.",
parents = {"speech acts"},
}
labels["mnemonics"] = {
description = "{{{langname}}} terms used for remembering something more easily.",
parents = {"speech acts"},
}
labels["oaths"] = {
description = "{{{langname}}} expressions which appeal to a deity or entity as a form of intensifier.",
parents = {"speech acts", "intensifiers"},
}
labels["responses to sneezing"] = {
description = "{{{langname}}} expressions said in response to a [[wikt:sneeze|sneeze]].",
parents = {"speech acts"},
}
labels["toasts"] = {
description = "{{{langname}}} expressions said as part of a [[wikt:toast|toast]].",
parents = {"speech acts"},
}
for label, data in pairs(labels) do
if not data.umbrella_parents then
data.umbrella_parents = "Speech acts subcategories by language"
end
end
-----------------------------------------------------------------------------
-- --
-- RAW CATEGORIES --
-- --
-----------------------------------------------------------------------------
raw_categories["Speech acts subcategories by language"] = {
description = "Umbrella categories covering topics related to speech acts, such as greetings or farewells.",
additional = "{{{umbrella_meta_msg}}}",
parents = {
"Umbrella metacategories",
{name = "speech acts", is_label = true, sort = " "},
},
}
return {LABELS = labels, RAW_CATEGORIES = raw_categories}