implement all needed tr() for localization

* implement some pt-BR translations
* remove legacy about module
This commit is contained in:
Eduardo Bart
2012-04-26 16:54:16 -03:00
parent ca0e1bd38b
commit 34091bc48e
47 changed files with 480 additions and 419 deletions

View File

@@ -1,11 +1,15 @@
function print(...)
local msg = ""
for i,v in ipairs(arg) do
for i,v in ipairs({...}) do
msg = msg .. tostring(v) .. "\t"
end
g_logger.log(LogInfo, msg)
end
function warning(msg)
g_logger.log(LogWarning, msg)
end
function fatal(msg)
g_logger.log(LogFatal, msg)
end