mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-09-04 08:13:21 +00:00
Added missing locales
This commit is contained in:
+3
-1
@@ -1,11 +1,13 @@
|
|||||||
Locales['de'] = {
|
Locales['de'] = {
|
||||||
|
|
||||||
['by_default'] = 'default',
|
['by_default'] = 'default',
|
||||||
['installed'] = 'installiert',
|
['installed'] = 'installiert',
|
||||||
['already_own'] = 'du besitzt bereits: ~b~',
|
['already_own'] = 'du besitzt bereits: ~b~',
|
||||||
['not_enough_money'] = 'du hast nicht genug Geld!',
|
['not_enough_money'] = 'du hast nicht genug Geld!',
|
||||||
['purchased'] = 'gekauft!',
|
['purchased'] = 'gekauft!',
|
||||||
['press_custom'] = 'Drücke ~INPUT_PICKUP~ um dein Fahrzeug zu modifizieren.',
|
['press_custom'] = 'Drücke ~INPUT_PICKUP~ um dein Fahrzeug zu modifizieren.',
|
||||||
|
['open_command'] = 'open LS Customs',
|
||||||
|
['level'] = 'level ',
|
||||||
|
['neon'] = 'neon',
|
||||||
-- Paint Colors
|
-- Paint Colors
|
||||||
-- Black
|
-- Black
|
||||||
['black'] = 'black',
|
['black'] = 'black',
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ Locales['en'] = {
|
|||||||
['not_enough_money'] = 'you do not have enough money!',
|
['not_enough_money'] = 'you do not have enough money!',
|
||||||
['purchased'] = 'you have purchased the mod!',
|
['purchased'] = 'you have purchased the mod!',
|
||||||
['press_custom'] = 'press ~INPUT_PICKUP~ to personalize your vehicle.',
|
['press_custom'] = 'press ~INPUT_PICKUP~ to personalize your vehicle.',
|
||||||
|
['open_command'] = 'open LS Customs',
|
||||||
['level'] = 'level ',
|
['level'] = 'level ',
|
||||||
['neon'] = 'neon',
|
['neon'] = 'neon',
|
||||||
-- Paint Colors
|
-- Paint Colors
|
||||||
|
|||||||
+2
-1
@@ -1,12 +1,13 @@
|
|||||||
Locales['fr'] = {
|
Locales['fr'] = {
|
||||||
|
|
||||||
['by_default'] = 'par défaut',
|
['by_default'] = 'par défaut',
|
||||||
['installed'] = 'installé',
|
['installed'] = 'installé',
|
||||||
['already_own'] = 'vous possédez déjà: ~b~',
|
['already_own'] = 'vous possédez déjà: ~b~',
|
||||||
['not_enough_money'] = 'vous n\'avez pas assez d\'argent !',
|
['not_enough_money'] = 'vous n\'avez pas assez d\'argent !',
|
||||||
['purchased'] = 'achat effectué !',
|
['purchased'] = 'achat effectué !',
|
||||||
['press_custom'] = 'appuyez sur ~INPUT_PICKUP~ pour personnaliser le véhicule.',
|
['press_custom'] = 'appuyez sur ~INPUT_PICKUP~ pour personnaliser le véhicule.',
|
||||||
|
['open_command'] = 'open LS Customs',
|
||||||
['level'] = 'niveau ',
|
['level'] = 'niveau ',
|
||||||
|
['neon'] = 'neon',
|
||||||
-- Paint Colors
|
-- Paint Colors
|
||||||
-- Black
|
-- Black
|
||||||
['black'] = 'noir',
|
['black'] = 'noir',
|
||||||
|
|||||||
+1
-1
@@ -37,7 +37,7 @@ end)
|
|||||||
RegisterServerEvent('esx_lscustom:refreshOwnedVehicle')
|
RegisterServerEvent('esx_lscustom:refreshOwnedVehicle')
|
||||||
AddEventHandler('esx_lscustom:refreshOwnedVehicle', function(myCar)
|
AddEventHandler('esx_lscustom:refreshOwnedVehicle', function(myCar)
|
||||||
MySQL.Async.execute(
|
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)
|
['@vehicle'] = json.encode(myCar)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user