Difference between revisions of "Module:Int"
Jump to navigation
Jump to search
>Shirayuki |
>Shirayuki (preprocess) |
||
Line 17: | Line 17: | ||
local lang = templateTranslation.getLanguage() | local lang = templateTranslation.getLanguage() | ||
if (msg:exists() and not msg:isDisabled()) then | if (msg:exists() and not msg:isDisabled()) then | ||
local msgstr = msg:inLanguage(lang):plain() | |||
return frame:preprocess(msgstr) | |||
else | else | ||
return '⧼' .. args[1] .. '⧽' | return '⧼' .. args[1] .. '⧽' |
Revision as of 21:52, 28 January 2017
Documentation for this module may be created at Module:Int/doc
-- This is a helper module for Template:int
local this = {}
local templateTranslation = require 'Module:Template translation'
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] = v
end
end
local msg = mw.message.new(args[1], arguments)
local lang = templateTranslation.getLanguage()
if (msg:exists() and not msg:isDisabled()) then
local msgstr = msg:inLanguage(lang):plain()
return frame:preprocess(msgstr)
else
return '⧼' .. args[1] .. '⧽'
end
end
return this