mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-31 02:08:55 +00:00
Added missing locales
This commit is contained in:
+3
-1
@@ -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',
|
||||
|
||||
@@ -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
@@ -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
@@ -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)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user