-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0bb5946
commit 394af6f
Showing
5 changed files
with
145 additions
and
135 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
root = true | ||
|
||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
max_line_length = 300 | ||
indent_size = 4 | ||
indent_style = space |
188 changes: 94 additions & 94 deletions
188
server-data/resources/[bpt_addons]/bpt_crafting/config.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 25 additions & 25 deletions
50
server-data/resources/[bpt_addons]/bpt_crafting/fxmanifest.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
fx_version 'adamant' | ||
versin '1.0.0' | ||
game 'gta5' | ||
fx_version("adamant") | ||
version("1.0.0") | ||
game("gta5") | ||
|
||
shared_script '@es_extended/imports.lua' | ||
shared_script("@es_extended/imports.lua") | ||
|
||
ui_page 'html/form.html' | ||
ui_page("html/form.html") | ||
|
||
files { | ||
'html/form.html', | ||
'html/css.css', | ||
'html/script.js', | ||
'html/jquery-3.4.1.min.js', | ||
'html/img/*.png', | ||
} | ||
files({ | ||
"html/form.html", | ||
"html/css.css", | ||
"html/script.js", | ||
"html/jquery-3.4.1.min.js", | ||
"html/img/*.png", | ||
}) | ||
|
||
client_scripts{ | ||
'@es_extended/locale.lua', | ||
'locales/*.lua', | ||
'config.lua', | ||
'client/main.lua', | ||
} | ||
client_scripts({ | ||
"@es_extended/locale.lua", | ||
"locales/*.lua", | ||
"config.lua", | ||
"client/main.lua", | ||
}) | ||
|
||
server_scripts{ | ||
'@es_extended/locale.lua', | ||
'locales/*.lua', | ||
'@oxmysql/lib/MySQL.lua', | ||
'config.lua', | ||
'server/main.lua', | ||
} | ||
server_scripts({ | ||
"@es_extended/locale.lua", | ||
"locales/*.lua", | ||
"@oxmysql/lib/MySQL.lua", | ||
"config.lua", | ||
"server/main.lua", | ||
}) |
16 changes: 8 additions & 8 deletions
16
server-data/resources/[bpt_addons]/bpt_crafting/locales/en.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
Locales['en'] = { | ||
['not_enough_ingredients'] = 'You don\'t have enough ingredients', | ||
['you_cant_hold_item'] = 'You can\'t create the product', | ||
['item_crafted'] = 'Item crafted!', | ||
['wrong_job'] = 'You cannot open this workbench', | ||
['workbench_hologram'] = '[~b~E~w~] Work station', | ||
['inv_limit_exceed'] = 'Inventory limit exceeded! Remove something before you lose more merchandise', | ||
['crafting_failed'] = 'You were unable to create the item!' | ||
Locales["en"] = { | ||
["not_enough_ingredients"] = "You don't have enough ingredients", | ||
["you_cant_hold_item"] = "You can't create the product", | ||
["item_crafted"] = "Item crafted!", | ||
["wrong_job"] = "You cannot open this workbench", | ||
["workbench_hologram"] = "[~b~E~w~] Work station", | ||
["inv_limit_exceed"] = "Inventory limit exceeded! Remove something before you lose more merchandise", | ||
["crafting_failed"] = "You were unable to create the item!", | ||
} |
16 changes: 8 additions & 8 deletions
16
server-data/resources/[bpt_addons]/bpt_crafting/locales/it.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
Locales['it'] = { | ||
['not_enough_ingredients'] = 'Non hai abbastanza ingredienti', | ||
['you_cant_hold_item'] = 'Non puoi creare il prodotto', | ||
['item_crafted'] = 'Articolo realizzato!', | ||
['wrong_job'] = 'Non puoi aprire questo banco di lavoro', | ||
['workbench_hologram'] = '[~b~E~w~] banco da lavoro', | ||
['inv_limit_exceed'] = 'Limite inventario superato! Rimuovi qualcosa prima di perdere altra merce', | ||
['crafting_failed'] = 'Non sei riuscito a creare l\'oggetto!' | ||
Locales["it"] = { | ||
["not_enough_ingredients"] = "Non hai abbastanza ingredienti", | ||
["you_cant_hold_item"] = "Non puoi creare il prodotto", | ||
["item_crafted"] = "Articolo realizzato!", | ||
["wrong_job"] = "Non puoi aprire questo banco di lavoro", | ||
["workbench_hologram"] = "[~b~E~w~] banco da lavoro", | ||
["inv_limit_exceed"] = "Limite inventario superato! Rimuovi qualcosa prima di perdere altra merce", | ||
["crafting_failed"] = "Non sei riuscito a creare l'oggetto!", | ||
} |