diff --git a/locales/br.lua b/locales/br.lua index 09073293..80ab53c3 100644 --- a/locales/br.lua +++ b/locales/br.lua @@ -7,7 +7,6 @@ Locales['br'] = { ['bank_deposit'] = 'um depósito de segurança de ~g~', ['bank_deposit_r'] = 'um depósito de segurança de ~g~$', ['bank_deposit2'] = '$ ~s~foi feito para você depois do seu desmaio.', - ['bank_nodeposit'] = "você não tinha um depósito de segurança", ['foot_work'] = 'você deve estar a pé para poder trabalhar.', ['next_point'] = 'vá para o próximo passo depois de completar este.', ['security_deposit'] = 'a segurança dada será ~g~$', diff --git a/locales/de.lua b/locales/de.lua index dfb9d428..1246ed84 100644 --- a/locales/de.lua +++ b/locales/de.lua @@ -3,7 +3,6 @@ Locales['de'] = { ['bank_deposit'] = 'eine Kaution von ~g~', ['bank_deposit_r'] = 'eine Kaution von ~g~$', ['bank_deposit2'] = '$ ~s~wurde nach deiner Ohmacht getätigt.', - ['bank_nodeposit'] = "du hast keine Sicherheiten", ['foot_work'] = 'du musst zu Fuß sein um arbeiten zu können.', ['next_point'] = 'gehe zum nächsten Schritt wenn du hier fertig bist.', ['security_deposit'] = 'die Kaution beträgt ~g~$', diff --git a/locales/en.lua b/locales/en.lua index 609b4c34..095b66cf 100644 --- a/locales/en.lua +++ b/locales/en.lua @@ -7,7 +7,6 @@ Locales['en'] = { ['bank_deposit_g'] = 'a security deposit of ~g~$', ['bank_deposit_r'] = 'a security deposit of ~r~$', ['bank_deposit2'] = '$ ~s~was made to you after your fainting.', - ['bank_nodeposit'] = "you did not have a security deposit", ['foot_work'] = 'you have to be on foot to be able to work.', ['next_point'] = 'go to the next step after completing this one.', ['security_deposit'] = 'the security given will be ~g~$', diff --git a/locales/fr.lua b/locales/fr.lua index 174b279f..442377fb 100644 --- a/locales/fr.lua +++ b/locales/fr.lua @@ -7,7 +7,6 @@ Locales['fr'] = { ['bank_deposit'] = 'une caution de ~g~', ['bank_deposit_r'] = 'une caution de ~g~$', ['bank_deposit2'] = '$ ~s~vous a été rendue suite à votre évanouissment.', - ['bank_nodeposit'] = "vous n'aviez pas de caution", ['foot_work'] = 'vous devez être à pied pour pouvoir travailler.', ['next_point'] = 'rendez-vous à la prochaine étape après avoir complété celle-ci.', ['security_deposit'] = 'la caution rendue sera de ~g~$', diff --git a/locales/sv.lua b/locales/sv.lua index 5d1450c8..5d8564cb 100644 --- a/locales/sv.lua +++ b/locales/sv.lua @@ -7,7 +7,6 @@ Locales['sv'] = { ['bank_deposit_g'] = 'en deposition på ~g~$', ['bank_deposit_r'] = 'en deposition på ~r~$', ['bank_deposit2'] = '$ ~s~was made to you after your fainting.', - ['bank_nodeposit'] = "du hade ingen deposition", ['foot_work'] = 'du måste vara till fots för att kunna arbeta.', ['next_point'] = 'gå till nästa steg efter att du har avslutat det här steget.', ['security_deposit'] = 'säkerheten kommer att ges ~g~$', diff --git a/server/esx_jobs_sv.lua b/server/esx_jobs_sv.lua index bc5a8360..5e70cad7 100644 --- a/server/esx_jobs_sv.lua +++ b/server/esx_jobs_sv.lua @@ -37,8 +37,6 @@ AddEventHandler('esx_jobs:giveBackCautionInCaseOfDrop', function() if caution > 0 then xPlayer.addAccountMoney('bank', caution) TriggerClientEvent('esx:showNotification', _source, _U('bank_deposit_g').. caution .. _U('bank_deposit2')) - else - TriggerClientEvent('esx:showNotification', _source, _U('bank_nodeposit')) end end) end)