11,796
edits
TheNightAvl (talk | contribs) No edit summary |
TheNightAvl (talk | contribs) (Added auto decatting of accusative with verbs) |
||
(15 intermediate revisions by the same user not shown) | |||
Line 7: | Line 7: | ||
-- COLOUR DATA | -- COLOUR DATA | ||
local data = mw.loadData("Module:government/data") | local data = mw.loadData("Module:government/data") | ||
local function pluralize(word) | local function pluralize(word) | ||
Line 18: | Line 17: | ||
end | end | ||
function export. | function export.show(frame) | ||
local args = getArgs(frame) | local args = getArgs(frame) | ||
local | local language, pos | ||
if mw.ustring.find(args[1], "^[a-z]+%s+[a-z]+$") then | |||
language, pos = mw.ustring.match(args[1], "^([a-z]+)%s+([a-z]+)$") | |||
if | language = m_languages.find_by_code(language) | ||
pos = ( language ~= nil and (data["pos aliases"][pos] or pos) ) or nil | |||
else | else | ||
language = m_languages.find_by_code(args[1]) | |||
pos = data["pos aliases"][args["pos"]] or args["pos"] | |||
end | end | ||
if (language and args[2] == nil) or args[1] == nil then error("Entry parameter is missing") end | |||
if language == nil and pos then error("The |pos parameter requires the language code to be specified in the first parameter") end | |||
local show = "[" | local show = "[" | ||
Line 71: | Line 39: | ||
local i = 2 | local i = 2 | ||
if language == nil then i = 1 end | |||
while args[i] do | while args[i] do | ||
if | if #show > 1 then | ||
append("; ''or'' ") | append("; ''or'' ") | ||
end | end | ||
Line 96: | Line 66: | ||
if conjunction == "/" then | if conjunction == "/" then | ||
append(" ''or'' ") | append(" ''or'' ") | ||
elseif conjunction == "+" then | elseif conjunction == "+" and not with_needed then | ||
append(" ''and'' ") | append(" ''and'' ") | ||
end | end | ||
Line 103: | Line 73: | ||
temp = mw.ustring.sub(temp, 2) | temp = mw.ustring.sub(temp, 2) | ||
elseif with_needed then | elseif with_needed then | ||
append("''with'' ") | append(" ''with'' ") | ||
with_needed = false | with_needed = false | ||
end | end | ||
else | else | ||
local function glossary(form, colour) | local function glossary(form, colour) | ||
form = mw.ustring.gsub(form, "^%*", "") | |||
if mw.ustring.sub(form, 1, 1) == "_" then | if mw.ustring.sub(form, 1, 1) == "_" then | ||
return "''" .. mw.ustring.sub(form, 2) .. "''" | return "''" .. mw.ustring.sub(form, 2) .. "''" | ||
Line 127: | Line 98: | ||
end | end | ||
local form, colour | local form, colour | ||
if mw.ustring.find(temp, "^%([^%)]+%)%:") then -- for postpositions | |||
form = mw.ustring.match(temp, "^%(([^%)]+)%)%:") | |||
remove_temp("^%([^%)]+%)%:") | |||
if mw.ustring.find(temp, "^%[[^%]]+%]") then | |||
colour = mw.ustring.match(temp, "^%[([^%]]+)%]") | |||
remove_temp("^%[[^%]]+%]") | |||
end | |||
temp_append("(" .. glossary(form, colour) .. " +) ") | |||
end | |||
if mw.ustring.find(temp, "^%:[^%(%<%[%+%/%:]+") then | if mw.ustring.find(temp, "^%:[^%(%<%[%+%/%:]+") then | ||
if language == nil then error("A language code must be specified in the first parameter for the link function to work") end | |||
temp_append("'''") | temp_append("'''") | ||
while mw.ustring.find(temp, "^%:[^%(%<%[%+%/%:]+") do | while mw.ustring.find(temp, "^%:[^%(%<%[%+%/%:]+") do | ||
local link = mw.ustring.match(temp, "^%:([^%(%<%[%+%/%:]+)") | local link = mw.ustring.match(temp, "^%:([^%(%<%[%+%/%:]+)") | ||
local spacing = mw.ustring.match(link, "%s+$ | local spacing = mw.ustring.match(link, "%s+$") or "" | ||
link = mw.ustring.gsub(link, "%s+$", "") | link = mw.ustring.gsub(link, "%s+$", "") | ||
temp_append(m_links.full_link{language = language, term = link} .. spacing) | temp_append(m_links.full_link{language = language, term = link} .. spacing) | ||
Line 155: | Line 136: | ||
end | end | ||
temp_append(glossary(form, colour)) | temp_append(glossary(form, colour)) | ||
if | if language and pos and data[form] then | ||
if | if not (data[form].label == "accusative" and pos == "verb") then | ||
temp_append("[[Category:" .. language.name .. " " .. pluralize(pos) .. " governing the " .. data[form].label .. "]]") | |||
end | |||
end | end | ||
else | else | ||
Line 176: | Line 158: | ||
remove_temp("^%<[^%>]+%>") | remove_temp("^%<[^%>]+%>") | ||
end | end | ||
append(q .. temp_main .. | append(q .. temp_main .. t .. qq) | ||
end | end | ||
end | end |