mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-16 22:46:03 +01:00
79 lines
1.8 KiB
Lua
79 lines
1.8 KiB
Lua
---@type { [string]: string }
|
|
local dict = {}
|
|
|
|
---@param prefix string|nil
|
|
---@param source { [string]: string }
|
|
---@param target { [string]: string }
|
|
local function flattenDict(prefix, source, target)
|
|
for key, value in pairs(source) do
|
|
local fullKey = prefix and (prefix .. "." .. key) or key
|
|
|
|
if type(value) == "table" then
|
|
flattenDict(fullKey, value, target)
|
|
else
|
|
target[fullKey] = value
|
|
end
|
|
end
|
|
end
|
|
|
|
---@param str string
|
|
---@param ... string | number
|
|
---@return string
|
|
function locale(str, ...)
|
|
local lstr = dict[str]
|
|
|
|
if lstr then
|
|
if ... then
|
|
return lstr and lstr:format(...)
|
|
end
|
|
|
|
return lstr
|
|
end
|
|
|
|
return str
|
|
end
|
|
|
|
function lib.getLocales()
|
|
return dict
|
|
end
|
|
|
|
function lib.locale()
|
|
local lang = GetConvar('ox:locale', 'en')
|
|
local locales = json.decode(LoadResourceFile(cache.resource, ('locales/%s.json'):format(lang)))
|
|
|
|
if not locales then
|
|
local warning = "could not load 'locales/%s.json'"
|
|
warn(warning:format(lang))
|
|
|
|
if lang ~= 'en' then
|
|
locales = json.decode(LoadResourceFile(cache.resource, 'locales/en.json'))
|
|
|
|
if not locales then
|
|
warn(warning:format('en'))
|
|
end
|
|
end
|
|
|
|
if not locales then return end
|
|
end
|
|
|
|
local flattenedDict = {}
|
|
flattenDict(nil, locales, flattenedDict)
|
|
|
|
for k, v in pairs(flattenedDict) do
|
|
if type(v) == 'string' then
|
|
for var in v:gmatch('${[%w%s%p]-}') do
|
|
local locale = locales[var:sub(3, -2)]
|
|
|
|
if locale then
|
|
locale = locale:gsub('%%', '%%%%')
|
|
v = v:gsub(var, locale)
|
|
end
|
|
end
|
|
end
|
|
|
|
dict[k] = v
|
|
end
|
|
end
|
|
|
|
return lib.locale
|