Revert "pt-PT Translation pt.lua"

This commit is contained in:
Jérémie N'gadi
2020-05-15 18:21:28 +02:00
committed by GitHub
parent 5a21e759a9
commit 947f2184ff
180 changed files with 668 additions and 11546 deletions
-13
View File
@@ -4,19 +4,6 @@ for i = 48, 57 do table.insert(Charset, string.char(i)) end
for i = 65, 90 do table.insert(Charset, string.char(i)) end
for i = 97, 122 do table.insert(Charset, string.char(i)) end
-- Be careful with this, use it for some config file parsing and such
ESX.EvalFile = function(resource, file, env)
env = env or {}
env._G = env
local code = LoadResourceFile(resource, file)
load(code, code, 't', env)()
return env
end
ESX.GetRandomString = function(length)
math.randomseed(GetGameTimer())