Module:inherit
Jump to navigation
Jump to search
Documentation for this module may be created at Module:inherit/documentation
local export = {}
local get_by_code = require("Module:languages").get_by_code
local make_link = require("Module:links").make_link
function export.show(frame)
local args = (frame:getParent() and frame:getParent().args) or frame.args
local lang = get_by_code(args[1])
local origin = get_by_code(args[2])
local category = ""
if not args["nocat"] then
category = "[[Category:" .. lang.name .. " terms inherited from " .. origin.name .. "]]"
end
return make_link{
["link_type"] = "mention",
["code"] = origin.code,
["word"] = args[3],
["display"] = args["d"] or args["display"],
["text"] = args[4] or args["t"] or args["text"],
["pos"] = args["pos"]
} .. category
end
return export