eluna-scripts-ornfelt/lua/NetherBot/locale.lua
2024-09-23 07:59:23 +02:00

17 lines
249 B
Lua

NetherBot = {
Locales = {},
}
local _usedLocale
function NetherBot.InitLocale()
_usedLocale = NetherBot.Locales[GetLocale()]
end
function NetherBot.I18n(text)
if _usedLocale then
return _usedLocale[text] or text
else
return text
end
end