mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 15:06:02 +01:00
11 lines
253 B
Lua
11 lines
253 B
Lua
RegisterCommand('serverlocale', function(_, args, _)
|
|
if args?[1] then
|
|
SetResourceKvp('locale', args[1])
|
|
TriggerEvent('ox_lib:setLocale', args[1])
|
|
end
|
|
end, true)
|
|
|
|
function lib.getServerLocale()
|
|
return GetResourceKvpString('locale') or 'en-US'
|
|
end
|