mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-30 01:38:52 +00:00
34a9f1b0d5
Supports many languages such as French, English and Polish (used Google Translate) Also fixed a typo in the readme and added instructions on how to change the language. Sorry I had to repush again due to my last repository being broke.
28 lines
369 B
Lua
28 lines
369 B
Lua
fx_version 'adamant'
|
|
|
|
game 'gta5'
|
|
|
|
server_scripts {
|
|
"@mysql-async/lib/MySQL.lua",
|
|
"server/main.lua",
|
|
}
|
|
|
|
client_scripts {
|
|
"client/main.lua",
|
|
}
|
|
|
|
ui_page {
|
|
'html/ui.html',
|
|
}
|
|
|
|
files {
|
|
'html/ui.html',
|
|
'html/css/main.css',
|
|
'html/js/app.js',
|
|
'html/locales/fr.js',
|
|
'html/locales/en.js',
|
|
'html/locales/pl.js',
|
|
}
|
|
|
|
dependency 'es_extended'
|