Notice: We are aware that the wiki's extensions which enable video/audio embedding and other niceties are still broken. This will be fixed eventually.
If you plan to make a YouTube video or other content using bootlegs downloaded from our site, although we can't and won't force you to do anything, we greatly appreciate attribution for the large amounts of time and effort we spend finding these bootlegs. Thank you!
Module:Int
Jump to navigation
Jump to search
Documentation for this module may be created at Module:Int/doc
-- This is a helper module for [[Template:int]]
local templateTranslation = require('Module:Template translation')
local this = {}
function this.renderIntMessage(frame)
local args = frame.args
local pargs = (frame:getParent() or {}).args
local arguments = {}
for k, v in pairs(pargs) do
local n = tonumber(k) or 0
if (n >= 2) then
arguments[n - 1] = mw.text.trim(v)
end
end
local lang
if args.lang and args.lang ~= '' and mw.language.isValidCode(args.lang) then
lang = args.lang
else
lang = templateTranslation.getLanguage()
end
local msg = mw.message.new(mw.text.trim(args[1]), arguments):inLanguage(lang)
if msg:exists() or lang == 'qqx' then
if msg:isDisabled() then
return args.missing or ''
else
local msgstr = msg:plain()
return frame:preprocess(msgstr)
end
else
return args.missing ~= ''
and args.missing
or '⧼' .. args[1] .. '⧽'
end
end
return this