Модуль:User error

Версия от 16:52, 3 января 2022; JustPlayer (обсуждение | вклад)
(разн.) ← Предыдущая версия | Текущая версия (разн.) | Следующая версия → (разн.)

return function (message, ...)
    local element = mw.html.create('strong')
        :addClass('error')
        :wikitext(... ..': ' .. message .. '.')

    for i = 1, select('#', ...) do
        local category = select(i, ...)

        if category ~= '' then
            element:wikitext('[[Category:' .. category .. ']]')
        end
    end

    return tostring(element)
end