Difference between revisions of "Module:Int"

From Game Detectives Wiki
Jump to: navigation, search
(Created page with "-- This is a helper module for Template:int local this = {} local templateTranslation = require 'Module:Template translation' function this.renderIntMessage(frame) local...")
 
m (5 revisions imported)
 
(4 intermediate revisions by one other user not shown)
Line 5: Line 5:
 
function this.renderIntMessage(frame)
 
function this.renderIntMessage(frame)
 
     local args = frame.args
 
     local args = frame.args
 +
    local pargs = (frame:getParent() or {}).args
 
     local arguments = {}
 
     local arguments = {}
     for k, v in pairs(args) do
+
     for k, v in pairs(pargs) do
 
         local n = tonumber(k) or 0
 
         local n = tonumber(k) or 0
 
         if (n >= 2) then
 
         if (n >= 2) then
             arguments[n - 1] = v
+
             arguments[n - 1] = mw.text.trim(v)
 
         end
 
         end
 
     end
 
     end
  
     local msg = mw.message.new(args[1], arguments)
+
     local msg = mw.message.new(mw.text.trim(args[1]), arguments)
 
     local lang = templateTranslation.getLanguage()
 
     local lang = templateTranslation.getLanguage()
 
     if (msg:exists() and not msg:isDisabled()) then
 
     if (msg:exists() and not msg:isDisabled()) then
         return msg:inLanguage(lang):plain()
+
         local msgstr = msg:inLanguage(lang):plain()
 +
        return frame:preprocess(msgstr)
 
     else
 
     else
 
         return '⧼' .. args[1] .. '⧽'
 
         return '⧼' .. args[1] .. '⧽'

Latest revision as of 03:27, 18 May 2018

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] = mw.text.trim(v)
        end
    end

    local msg = mw.message.new(mw.text.trim(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