2,788
edits
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
local export = {} | local export = {} | ||
local | |||
local | local m_links = require("Module:links") | ||
local m_languages = require("Module:languages") | |||
local m_parameters = require("Module:parameters") | |||
local params = { | |||
[1] = {required = true}, | |||
[2] = {required = true}, | |||
[3] = {required = true}, | |||
[4] = {alias_for = "display"}, | |||
["d"] = {alias_for = "display"}, | |||
["display"] = {}, | |||
[5] = {alias_for = "text"}, | |||
["t"] = {alias_for = "text"}, | |||
["text"] = {}, | |||
["pos"] = {}, | |||
["nocat"] = {type = "boolean"}, | |||
} | |||
function export.show(frame) | function export.show(frame) | ||
local args = ( | local args = m_parameters.process(frame:getParent().args, params) | ||
local | local language = m_languages.get_by_code(args[1]) | ||
local origin = get_by_code(args[2]) | local origin = m_languages.get_by_code(args[2]) | ||
local | local category = "[[Category:" .. lang.name .. " terms inherited from " .. origin.name .. "]]" | ||
return m_links.full_link({ | |||
language = origin, | |||
term = args[3], | |||
return | alt = args["alt"], | ||
text = args["text"], | |||
pos = args["pos"], | |||
}, "term") .. (args["nocat"] and "" or category) | |||
} .. category | |||
end | end | ||
return export | return export |