Module:Int: Difference between revisions
From Neodyland Wiki
More actions
1 revision imported from mw:Module:Int: Add parameter `missing` |
use internal page language instead of an expensive module; no pages using legacy manual translation use this module anyway |
||
| Line 1: | Line 1: | ||
-- This is a helper module for [[Template:int]] | -- This is a helper module for [[Template:int]] | ||
local this = {} | local this = {} | ||
| Line 19: | Line 18: | ||
lang = args.lang | lang = args.lang | ||
else | else | ||
lang = | lang = mw.getCurrentFrame():preprocess('{{PAGELANGUAGE}}') | ||
end | end | ||
Revision as of 19:42, 18 September 2021
This documentation is transcluded from Module:Int/doc.
-- This is a helper module for [[Template:int]]
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 msg = mw.message.new(mw.text.trim(args[1]), arguments)
local lang
if args.lang and args.lang ~= '' and mw.language.isValidCode(args.lang) then
lang = args.lang
else
lang = mw.getCurrentFrame():preprocess('{{PAGELANGUAGE}}')
end
if (msg:exists() and not msg:isDisabled()) or lang == 'qqx' then
local msgstr = msg:inLanguage(lang):plain()
return frame:preprocess(msgstr)
else
return args.missing ~= ''
and args.missing
or '⧼' .. args[1] .. '⧽'
end
end
return this