mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-29 01:08:54 +00:00
25 lines
767 B
Lua
25 lines
767 B
Lua
Locales = {}
|
|
|
|
function Translate(str, ...) -- Translate string
|
|
if Locales[Config.Locale] then
|
|
if Locales[Config.Locale][str] then
|
|
return string.format(Locales[Config.Locale][str], ...)
|
|
elseif Config.Locale ~= 'en' and Locales['en'] and Locales['en'][str] then
|
|
return string.format(Locales['en'][str], ...)
|
|
else
|
|
return 'Translation [' .. Config.Locale .. '][' .. str .. '] does not exist'
|
|
end
|
|
elseif Config.Locale ~= 'en' and Locales['en'] and Locales['en'][str] then
|
|
return string.format(Locales['en'][str], ...)
|
|
else
|
|
return 'Locale [' .. Config.Locale .. '] does not exist'
|
|
end
|
|
end
|
|
|
|
function TranslateCap(str, ...) -- Translate string first char uppercase
|
|
return _(str, ...):gsub("^%l", string.upper)
|
|
end
|
|
|
|
_ = Translate
|
|
_U = TranslateCap
|