Module:category tree/lang/snon
Jump to navigation
Jump to search
Documentation for this module may be created at Module:category tree/lang/snon/doc
local labels = {}
--------------------------------- Nouns/Pronouns/Numerals --------------------------------
labels["n-stem nouns"] = {
description = "{{{langname}}} ''n''-stem nouns, deriving from Proto-Indo-European ''n''-stem nouns.",
displaytitle = "{{{langname}}} ''n''-stem nouns",
additional = "This is not a single class in {{{langdisp}}}, but several related gender-differentiated classes.",
breadcrumb = "''n''-stem",
parents = {"nouns by inflection type"},
}
--[=[
Noun declension specifications. The top-level key is the stem class, and the value is an object containing properties of
the stem class. If the stem class contains the word 'GENDER' in it, it expands into labels both for a parent category
that subsumes several genders (obtained by removing the word 'GENDER' and following whitespace) as well as
gender-specific children categories (obtained by replacing the word 'GENDER' with the genders specified in the
`possible_genders` field). The stem class can contain literal Latin-script text (e.g. suffixes), which will be
italicized in breadcrumbs and titles. The fields of the property object for a given stem class are as follows:
* `gender`: The description of the gender(s) of the stem class. If preceded by ~, the description is preceded by
"most commonly". This appears in the `additional` field of the label properties. It is not used in gender-specific
children categories; instead the gender of that category is used.
* `possible_genders`: The possible genders this class occurs in. If this is specified, the word 'GENDER' must occur in
the stem class, and gender-specific variants of the stem class (with GENDER replaced by the possible genders) are
handled along with a parent category subsuming all genders.
* `nom_sg`: The nominative singular ending. Use <...> to enclose literal Latin-script text (e.g. suffixes), which will
be italicized.
* `GENDER_nom_sg`: The nominative singular ending for the GENDER variant of this stem class. If not specified, the
value of `nom_sg` is used.
* `gen_sg`: The genitive singular ending. Conventions are the same as for `nom_sg`.
* `GENDER_gen_sg`: The genitive singular ending for the GENDER variant of this stem class. If not specified, the value
of `gen_sg` is used.
* `nom_pl`: The nominative plural ending. Conventions are the same as for `nom_sg`.
* `GENDER_nom_pl`: The nominative plural ending for the GENDER variant of this stem class. If not specified, the value
of `nom_pl` is used.
* `breadcrumb`: The breadcrumb for the category, appearing in the trail of breadcrumbs at the top of the page. If this
stem has gender-specific variants, the breadcrumb specified here is used only for the parent category, while the
gender-specific child categories use the gender as the breadcrumb. If not specified, it defaults to `sortkey`. If that
is also not specified, or if the breadcrumb has the value "+", the stem class (without the word 'GENDER') is used.
(Use "+" when a sortkey is specified but the stem class should be used as the breadcrumb.)
* `parent`: The parent category or categories. If specified, the actual category label is formed by appending the part
of speech (e.g. "nouns"). Defaults to "POS by inflection type" where POS is the part of speech. Note that
gender-specific child categories do not use this, but always have the gender-subsuming parent stem class category as
their parent.
* `sortkey`: The sort key used for sorting this category among its parent's children. Defaults to the stem class
(without the word 'GENDER'). Note that gender-specific child categories do not use this, but always use the gender
as the sort key.
]=]
local noun_decls = {
["<a>-stem"] = {
gender = "masculine",
possible_genders = {"masculine", "neuter"},
nom_sg = "when masculine, <-r> (which assimilates to a preceding <l>, <n> or <s>)",
masculine_nom_sg = "<-r> (which assimilates to a preceding <l>, <n> or <s>)",
neuter_nom_sg = "the bare stem",
gen_sg = "<-s> or sometimes <-ar>",
nom_pl = "when masculine, <-ar>",
masculine_nom_pl = "<-ar>",
},
["<ōn>-stem"] = {
gender = "feminine",
nom_sg = "<-a>",
gen_sg = "bare stem with U-UMLAUT",
nom_pl = "<-orr> with U-UMLAUT",
},
}
require("Module:category tree/utilities").add_inflection_labels {
labels = labels,
pos = "noun",
stem_classes = noun_decls,
mark_up_spec = function(spec, nolink)
-- umlauts
spec = spec:gsub("I%-UMLAUT", "{{w|Old Norse#Umlaut|i-umlaut}}")
spec = spec:gsub("U%-UMLAUT", "{{w|Old Norse#U-umlaut|u-umlaut}}")
if nolink then
spec = require("Module:links").remove_links(spec)
end
return (spec:gsub("<(.-)>", "''%1''"))
end,
principal_parts = {
{"nom_sg", "nominative singular"},
{"gen_sg", "genitive singular"},
{"nom_pl", "nominative plural"},
},
addl = "The stem classes are named from the perspective of [[:Category:Proto-Germanic language|Proto-Germanic]] " ..
"and may not still be visible in {{{langname}}} inflections.",
}
return {LABELS = labels}