Modul:Warning
Documentația acestui modul poate fi creată la Modul:Warning/doc
local libraryUtil = require('libraryUtil')
local wrapper = "%s" -- formatare wikitext
local msg_loc = "Avertizare Lua în %s pe rândul %d: %s."
local msg = "Avertizare Lua: %s."
return function (message, level)
libraryUtil.checkType('warn', 2, level, 'number', true)
level = level or 1
if level > 0 then
local _, location = pcall(error, '', level+2)
if location ~= '' then
location = mw.text.split(location:sub(1,-3), ':%f[%d]')
message = msg_loc:format(location[1], location[2], message)
else
message = msg:format(message)
end
else
message = msg:format(message)
end
mw.addWarning(wrapper:format(message))
end