Module:rad-stem/templates: Difference between revisions
Jump to navigation
Jump to search
TheNightAvl (talk | contribs) mNo edit summary |
TheNightAvl (talk | contribs) mNo edit summary |
||
Line 80: | Line 80: | ||
local decl_type = { | local decl_type = { | ||
["C"] = "heavy", | ["C"] = "heavy", | ||
["CH"] = "spirant", | ["CH"] = "heavy spirant", | ||
["VH"] = "spirant", | ["VH"] = "light spirant", | ||
["V"] = "light", | ["V"] = "light", | ||
["G"] = "semi-light" | ["G"] = "semi-light" | ||
} | } | ||
local type_name = decl_type[stems['type']] | |||
add("<table class=\"mw-collapsible mw-collapsed wikitable inflection table\" style=\"text-align: center\">") | add("<table class=\"mw-collapsible mw-collapsed wikitable inflection table\" style=\"text-align: center\">") | ||
add("<tr>") | add("<tr>") | ||
th("Declension of <i>" .. stems.nom .. "</i> (" .. | th("Declension of <i>" .. stems.nom .. "</i> (" .. type_name .. ")  ", 1, 4) | ||
add("</tr>") | add("</tr>") | ||
add("</table>") | add("</table>") | ||
add("<includeonly>[[Category:Radestrian " .. type_name .. " stems]]</includeonly>") | |||
return table.concat(format_table) | return table.concat(format_table) |
Revision as of 01:07, 1 December 2023
local export = {}
local getArgs = require('Module:Arguments').getArgs
local m_stem = require("Module:rad-stem")
local m_parameters = require("Module:parameters")
function get_stems(args)
local shifted = {"noun", "_"}
local i = 1
while args[i] do
shifted[i+2] = args[i]
i = i + 1
end
return m_stem.getNounStem(shifted)
end
function break_adj(adj)
local C = "bcdðfghħjĵkķlmnņpqrsștvwxzþ°"
local temp = adj
temp = mw.ustring.gsub(temp, "([" .. C .. "])([" .. C .. "])íș$", "%1%2ieș")
temp = mw.ustring.gsub(temp, "(°)", "")
temp = mw.ustring.gsub(temp, "(íș)$", "jeș")
temp = mw.ustring.gsub(temp, "(úș)$", "uoș")
temp = mw.ustring.gsub(temp, "(ýș)$", "yeș")
temp = mw.ustring.gsub(temp, "(oș)$", "uș")
return temp
end
function rad_link(word)
return require("Module:links").full_link{
term = word,
language = m_languages.get_by_code("rad")
}
end
function rad_IPA(word)
local IPA = require("Module:rad-IPA").generate{
word,
"format",
"nolarge"
}
return "<span style=\"color:dimgrey\">" .. IPA .. "</span>"
end
function export.sg_pl(frame)
local args = getArgs(frame)
local stems = get_stems(args)
local adj = args['adj']
local adj_broken = ""
local adj_broken_e = ""
if adj then
adj_broken = args['adjbreak'] or break_adj(adj)
adj_broken_e = mw.ustring.gsub(adj_broken, "(uș)$", "ûș")
end
local format_table = {}
local function add(code)
table.insert(format_table, code)
end
local function th(data, rowspan, colspan)
add("<th")
if rowspan and rowspan~=1 then add(" rowspan=" .. rowspan) end
if colspan and colspan~=1 then add(" colspan=" .. colspan) end
add(">" .. data .. "</th>")
end
local function td(data, rowspan, colspan)
add("<td")
if rowspan and rowspan~=1 then add(" rowspan=" .. rowspan) end
if colspan and colspan~=1 then add(" colspan=" .. colspan) end
add(">" .. data .. "</td>")
end
local decl_type = {
["C"] = "heavy",
["CH"] = "heavy spirant",
["VH"] = "light spirant",
["V"] = "light",
["G"] = "semi-light"
}
local type_name = decl_type[stems['type']]
add("<table class=\"mw-collapsible mw-collapsed wikitable inflection table\" style=\"text-align: center\">")
add("<tr>")
th("Declension of <i>" .. stems.nom .. "</i> (" .. type_name .. ")  ", 1, 4)
add("</tr>")
add("</table>")
add("<includeonly>[[Category:Radestrian " .. type_name .. " stems]]</includeonly>")
return table.concat(format_table)
end
return export
--[[
Debug console test string:
=p.sg_pl(mw.getCurrentFrame():newChild{title="whatever",args={"hv", "o~u^u", "þ"}})
]]--