Added missing locales

This commit is contained in:
ElPumpo
2018-07-24 13:35:46 +02:00
parent 31803370d6
commit 079b9f7966
4 changed files with 7 additions and 3 deletions
+3 -1
View File
@@ -1,11 +1,13 @@
Locales['de'] = {
['by_default'] = 'default',
['installed'] = 'installiert',
['already_own'] = 'du besitzt bereits: ~b~',
['not_enough_money'] = 'du hast nicht genug Geld!',
['purchased'] = 'gekauft!',
['press_custom'] = 'Drücke ~INPUT_PICKUP~ um dein Fahrzeug zu modifizieren.',
['open_command'] = 'open LS Customs',
['level'] = 'level ',
['neon'] = 'neon',
-- Paint Colors
-- Black
['black'] = 'black',
+1
View File
@@ -5,6 +5,7 @@ Locales['en'] = {
['not_enough_money'] = 'you do not have enough money!',
['purchased'] = 'you have purchased the mod!',
['press_custom'] = 'press ~INPUT_PICKUP~ to personalize your vehicle.',
['open_command'] = 'open LS Customs',
['level'] = 'level ',
['neon'] = 'neon',
-- Paint Colors
+2 -1
View File
@@ -1,12 +1,13 @@
Locales['fr'] = {
['by_default'] = 'par défaut',
['installed'] = 'installé',
['already_own'] = 'vous possédez déjà: ~b~',
['not_enough_money'] = 'vous n\'avez pas assez d\'argent !',
['purchased'] = 'achat effectué !',
['press_custom'] = 'appuyez sur ~INPUT_PICKUP~ pour personnaliser le véhicule.',
['open_command'] = 'open LS Customs',
['level'] = 'niveau ',
['neon'] = 'neon',
-- Paint Colors
-- Black
['black'] = 'noir',
+1 -1
View File
@@ -37,7 +37,7 @@ end)
RegisterServerEvent('esx_lscustom:refreshOwnedVehicle')
AddEventHandler('esx_lscustom:refreshOwnedVehicle', function(myCar)
MySQL.Async.execute(
'UPDATE `owned_vehicles` SET `vehicle` = @vehicle WHERE `vehicle` LIKE "%' .. myCar['plate'] .. '%"',
'UPDATE `owned_vehicles` SET `vehicle` = @vehicle WHERE `vehicle` LIKE "%' .. myCar.plate .. '%"',
{
['@vehicle'] = json.encode(myCar)
}