This module powers all Welsh headword-line templates. All of them support at least the following arguments:
|head=
, |head2=
, |head3=
, ...|id=
{{senseid}}
.|suff=1
|nomut=1
|mut=1
The last two parameters control the presence or absence of non-mutable in the headword. This is normally displayed for terms beginning with an immutable consonant: ch, f, h, j, l (but not ll), n, r (but not rh) or s. Use |mut=1
with such terms to disable the non-mutable indication, and |nomut=1
with other terms to enable it. Terms that display the indication are placed into Category:Welsh non-mutable terms.
local export = {}
local pos_functions = {}
local m_links = require("Module:links")
local m_table = require("Module:table")
local lang = require("Module:languages").getByCode("cy")
local langname = lang:getCanonicalName()
local PAGENAME = mw.loadData("Module:headword/data").pagename
local suffix_categories = {
= true,
= true,
= true,
= true,
}
local function track(page)
require("Module:debug").track("cy-headword/" .. page)
return true
end
local function glossary_link(entry, text)
text = text or entry
return "]"
end
local function do_inflection(data, forms, label, accel)
if forms and #forms > 0 then
forms.label = label
if accel then
forms.accel = accel
end
table.insert(data.inflections, forms)
end
end
-- The main entry point.
-- This is the only function that can be invoked from a template.
function export.show(frame)
local tracking_categories = {}
local poscat = frame.args
or error("Plural part of speech e.g. 'nouns' has not been specified. Please pass parameter 1 to the module invocation.")
local params = {
= {list = true},
= {},
= {},
= {type = "boolean"},
}
local parargs = frame:getParent().args
if pos_functions then
local posparams
if type(pos_functions.params) == "function" then
posparams = pos_functions.params(parargs)
else
posparams = pos_functions.params
end
for key, val in pairs(posparams) do
params = val
end
end
local args = require("Module:parameters").process(parargs, params)
local data = {
lang = lang,
pos_category = poscat,
categories = {},
heads = args,
genders = {},
inflections = {},
id = args,
sort_key = args,
categories = {}
}
if args then
data.pos_category = "suffixes"
if suffix_categories then
local singular_poscat = poscat:gsub("s$", "")
table.insert(data.categories, langname .. " " .. singular_poscat .. "-forming suffixes")
else
error("No category exists for suffixes forming " .. poscat .. ".")
end
end
if pos_functions then
pos_functions.func(args, data, tracking_categories)
end
if params.mut then
local mutable
if args.mut then
mutable = true
elseif args.nomut then
mutable = false
else
local head = m_links.remove_links(data.heads or PAGENAME)
local mutdata = require("Module:cy-mut").get_mutation_data(head)
if not mutdata.mut1 and not mutdata.mut2 and not mutdata.mut3 then
mutable = false
end
end
if mutable == false then
table.insert(data.inflections, {label = "not mutable"})
table.insert(data.categories, langname .. " non-mutable terms")
end
end
for _, inflection_set in ipairs(data.inflections) do
for _, inflection in ipairs(inflection_set) do
if not inflection:find("%[%[") then
local title = mw.title.new(inflection)
if title and not title.exists then
table.insert(tracking_categories, langname .. " " .. poscat .. " with red links in their headword lines")
end
end
end
end
return require("Module:headword").full_headword(data)
.. require("Module:utilities").format_categories(tracking_categories, lang)
end
pos_functions = {
params = {
= {list = "stem"},
= {list = true},
= {type = "boolean"},
= {type = "boolean"},
= {type = "boolean"},
},
func = function(args, data, tracking_categories)
if #args == 0 then
args = {"+"}
end
local first_singular = {}
for _, arg1s in ipairs(args) do
if arg1s == "+" then
local stems = args
if #stems == 0 and #data.heads > 0 then
stems = {}
for _, head in ipairs(data.heads) do
m_table.insertIfNot(stems, m_links.remove_links(head))
end
end
if #stems == 0 then
stems = {PAGENAME}
end
for _, stem in ipairs(stems) do
m_table.insertIfNot(first_singular, stem .. "af")
end
else
m_table.insertIfNot(first_singular, arg1s)
end
end
do_inflection(data, first_singular, "first-person singular present", {form = "1|s|pres:ind//fut"})
if args.irr then
table.insert(data.categories, langname .. " irregular verbs")
end
end
}
pos_functions = {
params = {
= {list = true},
= {list = true},
= {},
= {list = true},
= {list = true},
= {list = true},
= {list = true},
= {type = "boolean"},
= {type = "boolean"},
},
func = function(args, data, tracking_categories)
if #args.f == 0 then
args.f = mw.clone(data.heads)
end
if #args.f == 0 then
args.f = {PAGENAME}
end
do_inflection(data, args.f, "feminine singular", {form = "f|s"})
if #args.pl == 0 then
args.pl = mw.clone(data.heads)
end
if #args.pl == 0 then
args.pl = {PAGENAME}
end
do_inflection(data, args.pl, "plural", {form = "p"})
local eqs, comps, sups
if args == "-" then
table.insert(data.inflections, {label = "not " .. glossary_link("comparable")})
table.insert(data.categories, langname .. " uncomparable adjectives")
else
local function copy_heads_with_prefix(source, prefix, mutate_head)
local dest = {}
local heads = source
local can_mutate = false
if #heads == 0 then
heads = data.heads
can_mutate = true
end
if #heads == 0 then
heads = {PAGENAME}
can_mutate = true
end
for _, head in ipairs(heads) do
if not head:find("%[%[") then
if can_mutate and mutate_head then
head = mutate_head(head)
end
head = "]"
end
head = prefix .. head
m_table.insertIfNot(dest, head)
end
return dest
end
local function copy_heads_with_suffix(source, suffix)
if #source > 0 then
return source
end
local dest = {}
local heads = args.stem
if #heads == 0 then
heads = data.heads
end
if #heads == 0 then
heads = {PAGENAME}
end
for _, head in ipairs(heads) do
head = m_links.remove_links(head) .. suffix
m_table.insertIfNot(dest, head)
end
return dest
end
local function mutate_equative(form)
local mutdata = require("Module:cy-mut").get_mutation_data(form)
if mutdata.mut1 and mutdata.initial ~= "ll" and mutdata.initial ~= "rh" then
return mutdata.mut1 .. mutdata.final
else
return form
end
end
if args == "mwy" then
eqs = copy_heads_with_prefix(args.eq, "mor ", mutate_equative)
comps = copy_heads_with_prefix(args.comp, "mwy ")
sups = copy_heads_with_prefix(args.sup, "mwyaf ")
elseif args == "ach" then
eqs = copy_heads_with_suffix(args.eq, "ed")
comps = copy_heads_with_suffix(args.comp, "ach")
sups = copy_heads_with_suffix(args.sup, "af")
else
table.insert(data.inflections, {label = '<span style="color: #ff0000;">unknown comparative</span>'})
table.insert(data.categories, "Requests for inflections in " .. langname .. " adjective entries")
end
end
-- Don't add accelerator for multiword equative/comparative/superlative, or the mutated portion of the
-- equative will end up with an accelerated entry.
local need_accel = args == "ach"
do_inflection(data, eqs, glossary_link("equative"), need_accel and {form = "equative"} or nil)
do_inflection(data, comps, glossary_link("comparative"), need_accel and {form = "comparative"} or nil)
do_inflection(data, sups, glossary_link("superlative"), need_accel and {form = "superlative"} or nil)
end
}
local allowed_genders = {
= true,
= true,
= true,
= true,
= true,
= true,
= true,
= true,
= true,
}
local function noun_params(args)
local params = {
= {alias_of = "g"},
= {list = true}, --gender(s)
= {list = true}, --feminine form(s)
= {list = true}, --masculine form(s)
= {list = true}, --diminutive(s)
= {type = "boolean"},
= {type = "boolean"},
}
if args and args:find("p$") then
params = {alias_of = "sg"}
params = {list = true}
params = {list = true}
params = {list = true}
else
params = {alias_of = "pl"}
params = {list = true}
end
return params
end
local function do_nouns(pos, args, data, tracking_categories)
local genders = {}
for _, g in ipairs(args.g) do
if not allowed_genders then
error("Unrecognized gender: " .. g)
end
table.insert(genders, g)
end
local plpos = require("Module:string utilities").pluralize(pos)
-- Check for special plural signals
local mode = nil
if args.pl then
-- not a plurale tantum
if args.pl == "?" or args.pl == "!" or args.pl == "-" or args.pl == "~" or args.pl == "#" then
mode = args.pl
table.remove(args.pl, 1) -- Remove the mode parameter
end
local countable, uncountable
if mode == "?" then
-- Plural is unknown
table.insert(data.categories, langname .. " " .. plpos .. " with unknown or uncertain plurals")
elseif mode == "!" then
-- Plural is not attested
table.insert(data.inflections, {label = "plural not attested"})
table.insert(data.categories, langname .. " " .. plpos .. " with unattested plurals")
return
elseif mode == "-" then
-- Uncountable noun; may occasionally have a plural
uncountable = true
-- If plural forms were given explicitly, then show "usually"
if #args.pl > 0 then
table.insert(data.inflections, {label = "usually " .. glossary_link("uncountable")})
countable = true
else
table.insert(data.inflections, {label = glossary_link("uncountable")})
end
elseif mode == "~" then
-- Mixed countable/uncountable noun, always has a plural
table.insert(data.inflections, {label = glossary_link("countable") .. " and " .. glossary_link("uncountable")})
uncountable = true
countable = true
elseif mode == "#" or pos == "noun" then
-- Countable nouns; the default for regular nouns but not proper nouns
if mode == "#" then
table.insert(data.inflections, {label = glossary_link("countable")})
end
countable = true
end
if countable then
table.insert(data.categories, langname .. " countable " .. plpos)
end
if uncountable and pos == "noun" then
table.insert(data.categories, langname .. " uncountable " .. plpos)
end
if #args.pl > 0 then
local plurals = {}
for _, pl in ipairs(args.pl) do
if pl == "au" then
local heads = data.heads
if #heads == 0 then
heads = {PAGENAME}
end
for _, head in ipairs(heads) do
head = m_links.remove_links(head) .. "au"
m_table.insertIfNot(plurals, head)
end
else
m_table.insertIfNot(plurals, pl)
end
end
do_inflection(data, plurals, "plural", {form = "p"})
end
else -- plurale tantum or collective
local function has_singulative(sgargs)
return #sgargs > 0 and sgargs ~= "-"
end
if has_singulative(args.sg) or has_singulative(args.msg) or has_singulative(args.fsg) then
local new_g = {}
for _, g in ipairs(genders) do
if g ~= "p" then
g = g:gsub("%-p$", "")
table.insert(new_g, g)
end
end
genders = new_g
table.insert(data.inflections, {label = glossary_link("collective")})
table.insert(data.categories, langname .. " collective " .. plpos)
end
local function do_singulative(sgargs, label, accel)
if sgargs then
if sgargs == "-" then
table.insert(data.inflections, {label = "no " .. label})
else
do_inflection(data, sgargs, label, accel)
end
end
end
do_singulative(args.sg, glossary_link("singulative"), {form = "singulative"})
do_singulative(args.msg, "masculine " .. glossary_link("singulative"))
do_singulative(args.fsg, "feminine " .. glossary_link("singulative"))
end
do_inflection(data, args.f, "feminine")
do_inflection(data, args.m, "masculine")
do_inflection(data, args.dim, glossary_link("diminutive"))
data.genders = genders
end
pos_functions = {
params = noun_params,
func = function(args, data, tracking_categories)
return do_nouns("noun", args, data, tracking_categories)
end,
}
pos_functions = {
params = noun_params,
func = function(args, data, tracking_categories)
return do_nouns("proper noun", args, data, tracking_categories)
end,
}
local function pos_with_gender()
return {
params = {
= {list = true},
= {type = "boolean"},
= {type = "boolean"},
},
func = function(args, data)
data.genders = args
end,
}
end
pos_functions.numerals = pos_with_gender()
pos_functions = pos_with_gender()
pos_functions = pos_with_gender()
pos_functions = pos_with_gender()
pos_functions = pos_with_gender()
pos_functions = pos_with_gender()
pos_functions = pos_with_gender()
pos_functions = pos_with_gender()
pos_functions = pos_with_gender()
return export