Module:qhv-verb: Difference between revisions
No edit summary |
No edit summary |
||
| (26 intermediate revisions by the same user not shown) | |||
| Line 10: | Line 10: | ||
local PAGENAME = mw.title.getCurrentTitle().text | local PAGENAME = mw.title.getCurrentTitle().text | ||
local NAMESPACE = mw.title.getCurrentTitle().nsText | local NAMESPACE = mw.title.getCurrentTitle().nsText | ||
local consonants = "[bdghjklmnpqrstvzñ]" | |||
local lang = require("Module:languages").getByCode("qhv") | local lang = require("Module:languages").getByCode("qhv") | ||
| Line 17: | Line 18: | ||
local endings = { | local endings = { | ||
["[lr]"] = "liquid", | ["[lr]"] = "liquid", | ||
["[ | ["[ptkqbdg]"] = "stop", | ||
["[mn]"] = "nasal", | ["[mn]"] = "nasal", | ||
["ñ"] = "palatal", | |||
["[hszvj]"] = "fricative", | |||
["[hszvj] | |||
} | } | ||
function export.detect_decl(word, class) | function export.detect_decl(word, class) | ||
root = sub(word, 1, -5) | |||
tv = sub(word, -4, -4) | |||
if class then | if class then | ||
local decl = class | local decl = class | ||
return decl, {sub(root, 1, (sub(root, -2) == ("lj" or "gh") and -3 or -2))} | return decl, {sub(root, 1, (sub(root, -2) == ("lj" or "gh") and -3 or -2))} | ||
elseif find(tv, "[eiou]") or m_data.astems[word] then return "vowel", {root} | elseif match(word, "urnegon$") or root == "urn" then | ||
return "-urnegon", {root} | |||
elseif find(tv, "[eiou]") or m_data.astems[word] then | |||
return "vowel", {root} | |||
elseif match(word, "[^l]ilagon$") or root == "il" then | |||
return "-ilagon", {root} | |||
elseif match(word, "[āeē]mm?agon$") and word ~= "jemagon" and word ~= "uēmagon" then | |||
return "-emagon", {root} | |||
elseif match(root, "lj$") then return "palatal", {root} | |||
elseif match(root, "gh$") then return "fricative", {root} | |||
elseif match(root, consonants .. "+" .. consonants .. "$") then return "cluster", {root} | |||
else | else | ||
for ending, decl in pairs(endings) do | for ending, decl in pairs(endings) do | ||
if find | if find(root, ending .. "$") then | ||
return decl, { | return decl, {root} | ||
end | end | ||
end | end | ||
| Line 59: | Line 70: | ||
end | end | ||
-- if not decl_type then decl_type, numbers = "fricative", {root} end | |||
args = require("Module:parameters").process(parent_args, m_data[decl_type].params, true) | args = require("Module:parameters").process(parent_args, m_data[decl_type].params, true) | ||
| Line 74: | Line 83: | ||
local data = {forms = {}, categories = {}} | local data = {forms = {}, categories = {}} | ||
data.head = parent_args["head"] or nil | data.head = parent_args["head"] or parent_args["word"] or nil | ||
data.no_cat = parent_args["nocat"] or parent_args["det"] or nil | data.no_cat = parent_args["nocat"] or parent_args["det"] or nil | ||
data.thematic_vowel = | data.thematic_vowel = tv | ||
data.intr = parent_args["intr"] or parent_args[1] or nil | |||
if data.intr and not data.no_cat then table.insert(data.categories, "High Valyrian intransitive verbs") end | |||
-- Generate the forms | -- Generate the forms | ||
| Line 121: | Line 132: | ||
return "sylugon" | return "sylugon" | ||
elseif param == "pagename" then | elseif param == "pagename" then | ||
return PAGENAME | return data.head or PAGENAME | ||
else | else | ||
return show_form(data.forms[param]) | return show_form(data.forms[param]) | ||
| Line 169: | Line 180: | ||
{| style="background:#F9F9F9; text-align:center; width:100%; border-collapse: collapse;" border="1px solid #000" | {| style="background:#F9F9F9; text-align:center; width:100%; border-collapse: collapse;" border="1px solid #000" | ||
|- style="background: #7AB350" | |- style="background: #7AB350" | ||
! colspan="2" rowspan="3" style="background: #508626; color: #fff; width: 7em" | [[:Category:High Valyrian ]=] .. data.decl_type .. [=[ verbs|<span style="color: #fff; text-decoration: inherit; -moz-text-decoration-color: #fff; text-decoration-color: #fff;"> | ! colspan="2" rowspan="3" style="background: #508626; color: #fff; width: 7em" | [[:Category:High Valyrian ]=] .. gsub(data.decl_type, "%s", "-") .. [=[ verbs|<span style="color: #fff; text-decoration: inherit; -moz-text-decoration-color: #fff; text-decoration-color: #fff;">{{{decl_type}}}</span>]] | ||
! colspan="3" | singular | ! colspan="3" | singular | ||
! colspan="3" | plural | ! colspan="3" | plural | ||
| Line 227: | Line 238: | ||
{| style="background:#F9F9F9; text-align:center; width:100%; border-collapse: collapse;" border="1px solid #000" | {| style="background:#F9F9F9; text-align:center; width:100%; border-collapse: collapse;" border="1px solid #000" | ||
|- style="background: #7AB350" | |- style="background: #7AB350" | ||
! colspan="2" rowspan="3" style="background: #508626; color: #fff; width: 7em" | [[:Category:High Valyrian ]=] .. data.decl_type .. [=[ verbs|<span style="color: #fff; text-decoration: inherit; -moz-text-decoration-color: #fff; text-decoration-color: #fff;"> | ! colspan="2" rowspan="3" style="background: #508626; color: #fff; width: 7em" | [[:Category:High Valyrian ]=] .. gsub(data.decl_type, "%s", "-") .. [=[ verbs|<span style="color: #fff; text-decoration: inherit; -moz-text-decoration-color: #fff; text-decoration-color: #fff;">{{{decl_type}}}</span>]] | ||
! colspan="3" | singular | ! colspan="3" | singular | ||
! colspan="3" | plural | ! colspan="3" | plural | ||
| Line 276: | Line 287: | ||
]=] | ]=] | ||
local wikicode = divframe_active .. active .. divframe_passive .. passive | local wikicode = divframe_active .. active .. (not data.intr and divframe_passive .. passive or "") | ||
return (gsub(wikicode, "{{{([a-z0-9_]+)}}}", repl)) .. (data.no_cat and "" or require("Module:utilities").format_categories(data.categories, lang)) | return (gsub(wikicode, "{{{([a-z0-9_]+)}}}", repl)) .. (data.no_cat and "" or require("Module:utilities").format_categories(data.categories, lang)) | ||