Modul:it-headword
Penampilan
- Modul ini kekurangan sublaman pendokumenan. Sila mencipta laman pendokumenan berkaitan.
- Pautan berguna: senarai sublaman • pautan • transklusi • kes ujian • kotak pasir
-- This module contains code for Italian headword templates.
-- Templates covered are it-adj, it-noun and it-proper noun.
-- See [[Module:it-conj]] for Italian conjugation templates.
local export = {}
local lang = require("Module:languages").getByCode("it")
function export.itadj(frame)
local params = {
[1] = {},
[2] = {},
[3] = {},
[4] = {},
[5] = {},
["head"] = {},
["sort"] = {},
}
local args = require("Module:parameters").process(frame:getParent().args, params)
local data = {lang = lang, pos_category = "adjectives", categories = {}, sort_key = args["sort"], heads = {args["head"]}, genders = {}, inflections = {}}
local stem = args[1]
local end1 = args[2]
if not stem then -- all specified
data.heads = args[2]
data.inflections = {
{label = "mufrad feminin", args[3]},
{label = "jamak maskulin", args[4]},
{label = "jamak feminin", args[5]}
}
elseif not end1 then -- no ending vowel parameters - generate default
data.inflections = {
{label = "mufrad feminin", stem .. "a"},
{label = "jamak maskulin", make_plural(stem .. "o","m")},
{label = "jamak feminin", make_plural(stem .. "a","f")}
}
else
local end2 = args[3] or error("Either 0, 2 or 4 vowel endings should be supplied!")
local end3 = args[4]
if not end3 then -- 2 ending vowel parameters - m and f are identical
data.inflections = {
{label = "jamak maskulin dan feminin", stem .. end2}
}
else -- 4 ending vowel parameters - specify exactly
local end4 = args[5] or error("Either 0, 2 or 4 vowel endings should be supplied!")
data.inflections = {
{label = "mufrad feminin", stem .. end2},
{label = "jamak maskulin", stem .. end3},
{label = "jamak feminin", stem .. end4}
}
end
end
return require("Module:headword").full_headword(data)
end
function export.itnoun(frame)
local PAGENAME = mw.title.getCurrentTitle().text
local params = {
[1] = {list = "g", default = "?"},
[2] = {list = "pl"},
["head"] = {list = true},
["m"] = {list = true},
["mpl"] = {list = true},
["f"] = {list = true},
["fpl"] = {list = true},
["sort"] = {},
}
local args = require("Module:parameters").process(frame:getParent().args, params)
local data = {lang = lang, pos_category = "kata nama", categories = {}, sort_key = args["sort"], heads = args["head"], genders = {}, inflections = {}}
-- Gender
if args[1][1] == "mf" then
data.genders = {"m", "f"}
else
data.genders = args[1]
end
if #data.genders == 0 then
data.genders = {"?"}
end
local head = data.heads[1] and require("Module:links").remove_links(data.heads[1]) or PAGENAME
-- Plural
local plural = args[2][1]
if not plural and #args["mpl"] == 0 and #args["fpl"] == 0 then
args[2][1] = make_plural(head, data.genders[1])
end
if plural == "~" then
table.insert(data.inflections, {label = "[[Wiktionary:Lampiran glosari#tidak_berbilang|tidak berbilang]]"})
table.insert(data.categories, "Kata nama tidak berbilang bahasa Itali")
else
table.insert(data.categories, "Kata nama berbilang bahasa Itali")
end
if plural == "-" then
table.insert(data.inflections, {label = "[[Wiktionary:Lampiran glosari#tetap bentuk|tetap bentuk]]"})
end
if plural ~= "-" and plural ~= "~" and #args[2] > 0 then
args[2].label = "jamak"
table.insert(data.inflections, args[2])
end
-- Other gender
if #args["f"] > 0 then
args["f"].label = "feminine"
table.insert(data.inflections, args["f"])
end
if #args["m"] > 0 then
args["m"].label = "masculine"
table.insert(data.inflections, args["m"])
end
if #args["mpl"] > 0 then
args["mpl"].label = "jamak maskulin"
table.insert(data.inflections, args["mpl"])
end
if #args["fpl"] > 0 then
args["fpl"].label = "jamak feminin"
table.insert(data.inflections, args["fpl"])
end
-- Category
if head:find('o$') and data.genders[1] == "f" then
table.insert(data.categories, "Kata nama bahasa Itali dengan genus tidak nalar")
end
if head:find('a$') and data.genders[1] == "m" then
table.insert(data.categories, "Kata nama bahasa Itali dengan genus tidak nalar")
end
return require("Module:headword").full_headword(data)
end
-- Generate a default plural form, which is correct for most regular nouns
function make_plural(word, gender)
-- If there are spaces in the term, then we can't reliably form the plural.
-- Return nothing instead.
if word:find(" ") then
return nil
elseif word:find("io$") then
word = word:gsub("io$", "i")
elseif word:find("ologo$") then
word = word:gsub("o$", "i")
elseif word:find("[cg]o$") then
word = word:gsub("o$", "hi")
elseif word:find("o$") then
word = word:gsub("o$", "i")
elseif word:find("[cg]a$") then
word = word:gsub("a$", (gender == "m" and "hi" or "he"))
elseif word:find("[cg]ia$") then
word = word:gsub("ia$", "e")
elseif word:find("a$") then
word = word:gsub("a$", (gender == "m" and "i" or "e"))
elseif word:find("e$") then
word = word:gsub("e$", "i")
end
return word
end
-- Generate a default feminine form
function make_feminine(word, gender)
if word:find("o$") then
return word:gsub("o$", "a")
else
return word
end
end
function export.itprop(frame)
local params = {
[1] = {list = "g", default = "?"},
["f"] = {},
["head"] = {},
["m"] = {},
["sort"] = {},
}
local args = require("Module:parameters").process(frame:getParent().args, params)
local data = {lang = lang, pos_category = "kata nama khas", categories = {}, sort_key = args["sort"], heads = {args["head"]}, genders = args[1], inflections = {}}
for i, g in ipairs(data.genders) do
if g == "p" then
data.genders[i] = "?-p"
end
if g == "m-p" or g == "f-p" or g == "?-p" or g == "p" then
table.insert(data.inflections, {label = "[[Wiktionary:Lampiran glosari#jamak sahaja|jamak sahaja]]"})
table.insert(data.categories, "Pluralia tantum bahasa " .. lang:getCanonicalName())
break
end
end
if args["m"] then
table.insert(data.inflections, {label = "masculine", args["m"]})
end
if args["f"] then
table.insert(data.inflections, {label = "feminine", args["f"]})
end
return require("Module:headword").full_headword(data)
end
return export
-- For Vim, so we get 4-space tabs
-- vim: set ts=4 sw=4 noet: