Module:pollasena-roots: Difference between revisions

no edit summary
No edit summary
Tag: Reverted
No edit summary
 
(24 intermediate revisions by the same user not shown)
Line 1: Line 1:
local m_put = require("Module:parse utilities")
local m_put = require("Module:parse utilities")
local m_table = require("Module:table")
local m_families = require("Module:families")


local gsub = mw.ustring.gsub
local gsub = mw.ustring.gsub
Line 7: Line 7:
local match = mw.ustring.match
local match = mw.ustring.match
local gmatch = mw.ustring.gmatch
local gmatch = mw.ustring.gmatch
local lang = require("Module:languages").getByCode("socl")


local export = {}
local export = {}
Line 21: Line 19:
end
end


local function link(term,alt)
local function link(lang, term, alt)
return "[[Contionary:*" .. term .. "|*" .. (alt or term) .. "]]"
local natlang = lang:getWikidataItem() or false
-- true if the language declaration has a wikidata item, a marginal amount of conlangs have it
term = (lang:getType() == "reconstructed" and "*" or "") .. term
local data = {term = term, alt = alt, lang = lang, nocont = natlang}
return require('Module:links').full_link(data)
end
end


function export.getLink(frame)
function export.getLink(frame)
local a = 2
local params = {}
local params = {
local a = 0
[1] = {},
[a] = {list = true}, -- Wascotl
if frame.args["older"] then
}
params[1] = {}
params[2] = {list = true}
a = 2
else
params[1] = {list = true}
a = 1
end
local args = require("Module:parameters").process(frame:getParent().args, params)
local args = require("Module:parameters").process(frame:getParent().args, params)
local fam, lang = m_families.getByCode(frame.args[1]), require("Module:languages").getByCode(frame.args[2])
local proto = fam:getProtoLanguage()


local links = {}; local categories = {}; local alts = {};
local links = {}; local categories = {}; local alts = {};
Line 55: Line 67:
if item:match("><") then
if item:match("><") then
if prefix == "a" then
if prefix == "a" then
table.insert(links, link(term, arg))
table.insert(links, link(proto, term, arg))
table.insert(alts, arg)
table.insert(alts, arg)
elseif prefix == "c" then
elseif prefix == "c" then
table.insert(categories, "Soc'ul' terms from Wascotl *" .. arg)
table.insert(categories, lang:getCanonicalName() .. " terms from " .. proto:getCanonicalName() .. " *" .. arg)
table.insert(alts, term)
table.insert(alts, term)
end
end
elseif prefix == "a" then
elseif prefix == "a" then
table.insert(links, link(term, arg))
table.insert(links, link(proto, term, arg))
table.insert(categories, "Soc'ul' terms from Wascotl *" .. term)
table.insert(categories, lang:getCanonicalName() .. " terms from " .. proto:getCanonicalName() .. " *" .. term)
table.insert(alts, arg)
table.insert(alts, arg)
elseif prefix == "c" then
elseif prefix == "c" then
table.insert(links, link(term))
table.insert(links, link(proto, term))
table.insert(categories, "Soc'ul' terms from Wascotl *" .. arg)
table.insert(categories, lang:getCanonicalName() .. " terms from " .. proto:getCanonicalName() .. " *" .. arg)
table.insert(alts, term)
table.insert(alts, term)
end
end
end
end
else
else
table.insert(links, link(args[a][i]))
table.insert(links, link(proto, args[a][i]))
table.insert(categories, "Soc'ul' terms from Wascotl *" .. args[a][i])
table.insert(categories, lang:getCanonicalName() .. " terms from " .. proto:getCanonicalName() .. " *" .. args[a][i])
table.insert(alts, args[a][i])
table.insert(alts, args[a][i])
end
end
if links[i-1] == "-" then links[i] = links[i]:gsub("%|%*","|") end
if i~=1 and links[i-1] == "-" then links[i] = links[i]:gsub("%|%*","|") end
if links[i-1] ~= "&nbsp;" then links[i] = links[i]:gsub("%|%*%-","|-") end
if i~=1 and links[i-1] ~= "&nbsp;" then links[i] = links[i]:gsub("%|%*%-","|-") end
--if i~=1 and alts[i-1]:match("%-$") then links[i] = links[i]:gsub("%|%*","|") end
end
end
if not links[1] then table.insert(links, "<small>[Term?]</small>") end
return table.concat(links) .. ncategories(categories)
return table.concat(links) .. ncategories(categories)