11,796
edits
TheNightAvl (talk | contribs) No edit summary |
TheNightAvl (talk | contribs) No edit summary |
||
(6 intermediate revisions by the same user not shown) | |||
Line 8: | Line 8: | ||
local args = getArgs(frame) | local args = getArgs(frame) | ||
local links = {} | local links = {} | ||
local nat = m_languages.find_by_code(args[1] or "" | local nat = m_languages.find_by_code(args[1] or "") | ||
local params = { | local params = { | ||
nocap = false, | nocap = false, | ||
nocat = false, | |||
nopre = false, | |||
} | } | ||
Line 17: | Line 19: | ||
for lang, _ in pairs(args) do | for lang, _ in pairs(args) do | ||
if type(lang) == "string" then | if type(lang) == "string" then | ||
if m_languages.find_by_code(lang) | if m_languages.find_by_code(lang) then | ||
table.insert(langs, lang) | table.insert(langs, lang) | ||
elseif params[lang] ~= nil then --check for parameters | elseif params[lang] ~= nil then --check for parameters | ||
Line 30: | Line 32: | ||
a = m_languages.get_by_code(a) | a = m_languages.get_by_code(a) | ||
b = m_languages.get_by_code(b) | b = m_languages.get_by_code(b) | ||
if nat == nil then | |||
return a.name < b.name | |||
end | |||
a_test = m_languages.stage_at_split(nat, a) | a_test = m_languages.stage_at_split(nat, a) | ||
Line 44: | Line 50: | ||
for _, lang in ipairs(langs) do | for _, lang in ipairs(langs) do | ||
local term, data = m_inline.parse(args[lang]) | local term, data = m_inline.parse(args[lang]) | ||
data[1], data[2] = lang, term | data[1], data[2], data["nobold"] = lang, term, true | ||
local link = frame:expandTemplate{title = "m+", args = data} | local pre = data["pre"] | ||
if nat then link = link .. "[[Category:" .. nat.name .. " terms with " .. lang.name .. " cognates]]" end | if pre then | ||
pre = pre .. " " | |||
data["pre"] = nil | |||
end | |||
local link = (pre or "") .. frame:expandTemplate{title = "m+", args = data} | |||
if nat and params.nocat == false then link = link .. "[[Category:" .. nat.name .. " terms with " .. m_languages.get_by_code(lang).name .. " cognates]]" end | |||
table.insert(links, link) | table.insert(links, link) | ||
end | end | ||
local text = ((params.nocap and "c") or "C") .. "ognate with " | local text = ((not params.nopre) and ((params.nocap and "c") or "C") .. "ognate with ") or "" | ||
for i, link in ipairs(links) do | for i, link in ipairs(links) do |