Changes
use gsub instead of the mw.message library for substituting parameters, as mw.message:params doesn't work with metatables; also, a few bug fixes
function Config:initialize()
end
function Config:getMessage(key)
return self._cfg.msg_msg[key]
end
self._params = params
end
end
function Blurb:_makePagetypeParameter()
-- parameter $4
local pagetypes = self._configObj:getConfigTable('pagetypeNamespacesbannerPagetypes') local namespace = self._titleObj:getNamespace().namespace
return pagetypes[namespace] or pagetypes.default or 'page'
end
self._configObj:getMessage('deletion-log-link-display')
)
end
function Blurb:makeReasonText()
local msg = self._bannerConfig.text
return self:_substituteParameters(msg)
end