View source for Module:Int
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
-- 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)
000
1:0
Template used on this page:
Return to Module:Int.