Module:Int

From The Sims Wiki, a collaborative database for The Sims series
This is the current revision of this page, as edited by K6ka (talk | contribs) at 16:56, 25 August 2019 (Created page with "-- This is a helper module for Template:int local this = {} local templateTranslation = require 'Module:Template translation' function this.renderIntMessage(fr..."). The present address (URL) is a permanent link to this version.
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This module's documentation page can be edited at Module:Int/doc.


This is a helper module for Template:Int.

The code was taken from MediaWiki.org.


-- 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