From 5a1a2e98a15b2063ff8ddbb41ea6e3780ea8f9e2 Mon Sep 17 00:00:00 2001 From: Gellipapa Date: Sun, 11 Sep 2022 11:45:15 +0200 Subject: [PATCH 01/10] remove unused links --- [esx_addons]/esx_banking/html/ui.html | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/[esx_addons]/esx_banking/html/ui.html b/[esx_addons]/esx_banking/html/ui.html index aa5b68f9..922ff813 100644 --- a/[esx_addons]/esx_banking/html/ui.html +++ b/[esx_addons]/esx_banking/html/ui.html @@ -3,7 +3,6 @@ - @@ -15,7 +14,6 @@ - - \ No newline at end of file + From 1e9eadbd954c81b264833d981f134cc5889eba9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Horv=C3=A1th=20Gell=C3=A9rt?= Date: Sun, 11 Sep 2022 12:10:00 +0200 Subject: [PATCH 02/10] remove unused variable in app js and remove images folder --- .../esx_banking/html/images/checkmark.svg | 56 ------------------- [esx_addons]/esx_banking/html/scripts/app.js | 31 ---------- 2 files changed, 87 deletions(-) delete mode 100644 [esx_addons]/esx_banking/html/images/checkmark.svg diff --git a/[esx_addons]/esx_banking/html/images/checkmark.svg b/[esx_addons]/esx_banking/html/images/checkmark.svg deleted file mode 100644 index 583c32e8..00000000 --- a/[esx_addons]/esx_banking/html/images/checkmark.svg +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/[esx_addons]/esx_banking/html/scripts/app.js b/[esx_addons]/esx_banking/html/scripts/app.js index ff2d5c01..1a8f5df4 100644 --- a/[esx_addons]/esx_banking/html/scripts/app.js +++ b/[esx_addons]/esx_banking/html/scripts/app.js @@ -264,25 +264,7 @@ class Render { language = "" constructor(elementID){ this.elementID = elementID - // this.fullRenderData = renderData } - - // getCurrentTemplate(){ - // let functionName = "" - // switch(this.elementID){ - // case "bankcard": - // functionName = this.renderBankCard() - // break; - // case "your_money": - // functionName = this.renderMyMoneySection() - // break; - // case "transaction": - // functionName = this.renderTransactions() - // break; - // } - // return functionName; - // } - renderBankCard(){ const bankData = this.fullRenderData $("#bankcard").empty(); @@ -898,7 +880,6 @@ $(document).ready(function(){ second: false } - let currentNotify = false $(document).on('keyup','input[type="number"] , input[type="password"]',function(){ let buttonGroup = $(this).closest('.input-groups-container').find('button'); @@ -927,12 +908,6 @@ $(document).ready(function(){ if($(this).val() != '') { if($(this).attr("name") == "pincode" && $(this).val().length < 4){ - if(!currentNotify){ - currentNotify = true - setTimeout(function(){ - currentNotify = false - },3000) - } return } @@ -962,12 +937,6 @@ $(document).ready(function(){ let inputValue = $(this).prev('input').val(); if(inputValue == undefined){return} if((inputValue.length == 0 && inputValue <= 0 )){ - if(!currentNotify){ - currentNotify = true - setTimeout(function(){ - currentNotify = false - },3000) - } return } From 472e18e010a2d65f6b3e6db4d6a8213483fdc810 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Horv=C3=A1th=20Gell=C3=A9rt?= Date: Sun, 11 Sep 2022 12:38:11 +0200 Subject: [PATCH 03/10] fix blip issue and fix spam escape when try open bank ui --- [esx_addons]/esx_banking/client/main.lua | 2 +- [esx_addons]/esx_banking/html/scripts/app.js | 10 +++++++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/[esx_addons]/esx_banking/client/main.lua b/[esx_addons]/esx_banking/client/main.lua index bc10890a..9d84e734 100644 --- a/[esx_addons]/esx_banking/client/main.lua +++ b/[esx_addons]/esx_banking/client/main.lua @@ -20,7 +20,7 @@ end local function CreateBlips() local tmpActiveBlips = {} for i = 1, #Config.Banks do - if type(Config.Banks[i].Blip) == 'table' and Config.Banks[i].Blip.Activate then + if type(Config.Banks[i].Blip) == 'table' and Config.Banks[i].Blip.Enabled then local blip = AddBlipForCoord(Config.Banks[i].Position.xy) SetBlipSprite(blip, Config.Banks[i].Blip.Sprite) SetBlipScale(blip, Config.Banks[i].Blip.Scale) diff --git a/[esx_addons]/esx_banking/html/scripts/app.js b/[esx_addons]/esx_banking/html/scripts/app.js index 1a8f5df4..a2bc9585 100644 --- a/[esx_addons]/esx_banking/html/scripts/app.js +++ b/[esx_addons]/esx_banking/html/scripts/app.js @@ -1,3 +1,4 @@ +var LOADED = true class Components{ static allComponents = [] static generateAllComponents(generatedData,generateType = "bank"){ @@ -55,11 +56,12 @@ class Components{ `); $(appendedDiv).fadeIn(200) - + LOADED = true setTimeout(() => { $(`${appendedDiv}`).fadeOut(200) $("#wrapper").fadeIn().css("display","flex"); if(appendedDiv == ".loader") $("#container").fadeIn().css("display","flex") + LOADED = false }, 2500); }else if(state == "hide"){ $(`${appendedDiv}`).fadeOut(200) @@ -966,8 +968,10 @@ $(document).ready(function(){ $(document).keyup(function(e) { if(e.which == 27) { - Components.loader(".loader","hide") - $.post('https://esx_banking/close', JSON.stringify({})); + if (!LOADED) { + Components.loader(".loader","hide") + $.post('https://esx_banking/close', JSON.stringify({})); + } } }); }) From 9e508a21766cae505f5af20c608c5f45345bb82b Mon Sep 17 00:00:00 2001 From: Mycroft Date: Mon, 12 Sep 2022 01:28:48 +0100 Subject: [PATCH 04/10] fix(esx_property): Correct Enter Translation --- [esx_addons]/esx_property/locales/en.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/[esx_addons]/esx_property/locales/en.lua b/[esx_addons]/esx_property/locales/en.lua index 1810139c..7a1636ba 100644 --- a/[esx_addons]/esx_property/locales/en.lua +++ b/[esx_addons]/esx_property/locales/en.lua @@ -108,7 +108,7 @@ Locales['en'] = { ["wardrobe_desc"] = "Change Position of Property Wardrobe.", ["Furniture_title"] = "Furniture", ["Furniture_desc"] = "Change Position of Property Wardrobe.", - ["enter_title"] = "Inventory", + ["enter_title"] = "Enter", ["knock_title"] = "Knock On Door", ["buy_title"] = "Buy", ["buy_desc"] = "Buy This Property For $%s", From 3ca6c68d2dcb7fef2ed22aa8f9b75dd7cbb5a2fb Mon Sep 17 00:00:00 2001 From: Mycroft Date: Mon, 12 Sep 2022 18:34:14 +0100 Subject: [PATCH 05/10] fix(esx_multicharacter & es_extended): Character not loading --- [esx]/es_extended/server/main.lua | 14 ++++++++++++-- [esx]/esx_multicharacter/client/main.lua | 12 ++++-------- 2 files changed, 16 insertions(+), 10 deletions(-) diff --git a/[esx]/es_extended/server/main.lua b/[esx]/es_extended/server/main.lua index 836fb7c8..135cf5e0 100644 --- a/[esx]/es_extended/server/main.lua +++ b/[esx]/es_extended/server/main.lua @@ -298,8 +298,18 @@ function loadESXPlayer(identifier, playerId, isNew) TriggerEvent('esx:playerLoaded', playerId, xPlayer, isNew) xPlayer.triggerEvent('esx:playerLoaded', - {accounts = xPlayer.getAccounts(), coords = xPlayer.getCoords(), identifier = xPlayer.getIdentifier(), inventory = xPlayer.getInventory(), - job = xPlayer.getJob(), loadout = xPlayer.getLoadout(), maxWeight = xPlayer.getMaxWeight(), money = xPlayer.getMoney(), dead = false}, isNew, + { + accounts = xPlayer.getAccounts(), + coords = xPlayer.getCoords(), + identifier = xPlayer.getIdentifier(), + inventory = xPlayer.getInventory(), + job = xPlayer.getJob(), + loadout = xPlayer.getLoadout(), + maxWeight = xPlayer.getMaxWeight(), + money = xPlayer.getMoney(), + sex = xPlayer.get("sex") or "m", + dead = false + }, isNew, userData.skin) if not Config.OxInventory then diff --git a/[esx]/esx_multicharacter/client/main.lua b/[esx]/esx_multicharacter/client/main.lua index 0804e506..fccdc5f2 100644 --- a/[esx]/esx_multicharacter/client/main.lua +++ b/[esx]/esx_multicharacter/client/main.lua @@ -272,8 +272,9 @@ if ESX.GetConfig().Multichar then local spawn = playerData.coords or Config.Spawn if isNew or not skin or #skin == 1 then local finished = false - local sex = skin.sex or 0 - local model = sex == 0 and mp_m_freemode_01 or mp_f_freemode_01 + skin = Config.Default[playerData.sex] + skin.sex = playerData.sex == "m" and 0 or 1 + local model = skin.sex == 0 and mp_m_freemode_01 or mp_f_freemode_01 RequestModel(model) while not HasModelLoaded(model) do RequestModel(model) @@ -281,13 +282,8 @@ if ESX.GetConfig().Multichar then end SetPlayerModel(PlayerId(), model) SetModelAsNoLongerNeeded(model) - while not ESX.PlayerData.sex do - Wait(0) - end - skin = Config.Default[ESX.PlayerData.sex] - skin.sex = ESX.PlayerData.sex == "m" and 0 or 1 TriggerEvent('skinchanger:loadSkin', skin, function() - playerPed = PlayerPedId() + local playerPed = PlayerPedId() SetPedAoBlobRendering(playerPed, true) ResetEntityAlpha(playerPed) TriggerEvent('esx_skin:openSaveableMenu', function() From b6241e194c1abb431aa17f8fb462f7ff16a8f210 Mon Sep 17 00:00:00 2001 From: Mycroft Date: Mon, 12 Sep 2022 18:52:33 +0100 Subject: [PATCH 06/10] fix(es_extended): Better Handing Of Onesync Spawning --- [esx]/es_extended/client/functions.lua | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/[esx]/es_extended/client/functions.lua b/[esx]/es_extended/client/functions.lua index 53fdb072..50c91c23 100644 --- a/[esx]/es_extended/client/functions.lua +++ b/[esx]/es_extended/client/functions.lua @@ -498,13 +498,26 @@ function ESX.Game.SpawnVehicle(vehicle, coords, heading, cb, networked) local isAutomobile = IsThisModelACar(model) if isAutomobile ~= false then isAutomobile = true end ESX.TriggerServerCallback('esx:Onesync:SpawnVehicle',function(NetID) - print("Spawned Vehicle: " .. NetID) if NetID then + local Tries = 0 + SetNetworkIdCanMigrate(NetID, true) local vehicle = NetworkGetEntityFromNetworkId(NetID) - while not DoesEntityExist(vehicle) and not NetworkHasControlOfEntity(vehicle) do - vehicle = NetworkGetEntityFromNetworkId(NetID) - NetworkRequestControlOfEntity(vehicle) + while not DoesEntityExist(vehicle) do Wait(0) + vehicle = NetworkGetEntityFromNetworkId(NetID) + Tries += 1 + if Tries > 250 then + break + end + end + Tries = 0 + NetworkRequestControlOfEntity(vehicle) + while not NetworkHasControlOfEntity(vehicle) do + Wait(0) + Tries += 1 + if Tries > 250 then + break + end end SetEntityAsMissionEntity(vehicle, true, true) SetVehicleHasBeenOwnedByPlayer(vehicle, true) From 2076bd8bcde8ba9f4ac84c4bd4b703393f0733a4 Mon Sep 17 00:00:00 2001 From: Gellipapa Date: Mon, 12 Sep 2022 20:40:48 +0200 Subject: [PATCH 07/10] some issue fix and responsive table fix --- [esx_addons]/esx_banking/client/main.lua | 4 ---- [esx_addons]/esx_banking/html/config.json | 8 +++++++ [esx_addons]/esx_banking/html/css/app.css | 7 ++++++ [esx_addons]/esx_banking/html/scripts/app.js | 25 +++++++++++++------- [esx_addons]/esx_banking/locales/en.lua | 6 +---- [esx_addons]/esx_banking/locales/hu.lua | 6 +---- 6 files changed, 33 insertions(+), 23 deletions(-) diff --git a/[esx_addons]/esx_banking/client/main.lua b/[esx_addons]/esx_banking/client/main.lua index 9d84e734..3dd4a489 100644 --- a/[esx_addons]/esx_banking/client/main.lua +++ b/[esx_addons]/esx_banking/client/main.lua @@ -126,14 +126,10 @@ function OpenUi(atm) openATM = atm, datas = { your_money_panel = { - title = _U('your_money_title'), - desc = _U('your_money_desc'), accountsData = {{ - title = _U('your_money_cash'), name = "cash", amount = data.money }, { - title = _U('your_money_bank'), name = "bank", amount = data.bankMoney }} diff --git a/[esx_addons]/esx_banking/html/config.json b/[esx_addons]/esx_banking/html/config.json index 5eacc1c5..5ded13f2 100644 --- a/[esx_addons]/esx_banking/html/config.json +++ b/[esx_addons]/esx_banking/html/config.json @@ -71,6 +71,10 @@ } ], "LAUNGAGE": { + "your_money_title":"Balance", + "your_money_desc":"Here you can see your current balance and cash.", + "your_money_cash_label":"Your cash", + "your_money_bank_label":"Your bank balance", "withdraw":"WITHDRAW", "deposit":"DEPOSIT", "transfer":"TRANSFER", @@ -165,6 +169,10 @@ ], "LAUNGAGE": { + "your_money_title":"Egyenleged", + "your_money_desc":"Itt láthatod a jelenlegi egyenleged és készpénzed.", + "your_money_cash_label":"Készpénz", + "your_money_bank_label":"Banki egyenleged", "withdraw":"KIVÉTEL", "deposit":"BETÉTEL", "transfer":"UTALÁS", diff --git a/[esx_addons]/esx_banking/html/css/app.css b/[esx_addons]/esx_banking/html/css/app.css index 3c53fbfd..0c70a9c0 100644 --- a/[esx_addons]/esx_banking/html/css/app.css +++ b/[esx_addons]/esx_banking/html/css/app.css @@ -758,3 +758,10 @@ table.dataTable tbody tr:hover { padding: 3vmin; border-radius: 1.38vmin; } + +/*MEDIA QUERY*/ +@media only screen and (max-width: 1280px) { + .dataTables_scrollBody{ + max-height: 310px !important; + } +} diff --git a/[esx_addons]/esx_banking/html/scripts/app.js b/[esx_addons]/esx_banking/html/scripts/app.js index a2bc9585..179b481a 100644 --- a/[esx_addons]/esx_banking/html/scripts/app.js +++ b/[esx_addons]/esx_banking/html/scripts/app.js @@ -57,6 +57,8 @@ class Components{ `); $(appendedDiv).fadeIn(200) LOADED = true + + setTimeout(() => { $(`${appendedDiv}`).fadeOut(200) $("#wrapper").fadeIn().css("display","flex"); @@ -371,14 +373,13 @@ class Render { renderMyMoneySection(){ const moneyData = this.fullRenderData $("#your-money-panel").empty(); - let template = `

${moneyData.title}

-

${moneyData.desc}

+ let template = `

${this.language.your_money_title}

+

${this.language.your_money_desc}

`; moneyData.accountsData.forEach((data)=>{ - template += `
-

${data.title}

+

${this.language[`your_money_${data.name}_label`]}

${this.language.moneyFormat.replace("__replaceData__",data.amount)}
`; @@ -480,8 +481,7 @@ class Pincode { } } - -const timeZone = localStorage.getItem("TIME_ZONE") +var timeZone = "" class Utils { static dateFormat(date){ if(typeof(date) == "number"){ @@ -489,8 +489,7 @@ class Utils { }else{ var newDate = date } - - return newDate.toLocaleString([timeZone], { + return newDate.toLocaleString([Utils.getTimeZone()], { weekday:"long", hour:"2-digit", minute:"2-digit", @@ -529,6 +528,14 @@ class Utils { } return genNum; } + + static setTimeZone(newTimeZone){ + timeZone = newTimeZone + } + + static getTimeZone(){ + return timeZone + } } class Graph{ @@ -643,7 +650,7 @@ $(document).ready(function(){ if(data[data.lang] != null){ lang = data.lang } - localStorage.setItem("TIME_ZONE",lang == "EN" ? "en-GB" : "hu-HU") + Utils.setTimeZone(lang == "EN" ? "en-GB" : "hu-HU") formData = new GlobalStore(data[lang]["DYNAMIC_FORM_DATA"]) language = new GlobalStore(data[lang]["LAUNGAGE"]) }).fail(function(error){ diff --git a/[esx_addons]/esx_banking/locales/en.lua b/[esx_addons]/esx_banking/locales/en.lua index 5fd8777b..9f5453c8 100644 --- a/[esx_addons]/esx_banking/locales/en.lua +++ b/[esx_addons]/esx_banking/locales/en.lua @@ -12,9 +12,5 @@ Locales['en'] = { ['not_enough_money'] = "Not enough money! You need %s money!", ['pincode_not_found'] = "Invalid PIN code", ['pincode_found'] = "Valid PIN code...", - ['bank_name'] = "Fleeca Bank", - ['your_money_title'] = "Balance", - ['your_money_desc'] = "Here you can see your current balance and cash.", - ['your_money_cash'] = "Your cash", - ['your_money_bank'] = "Your bank balance" + ['bank_name'] = "Fleeca Bank" } \ No newline at end of file diff --git a/[esx_addons]/esx_banking/locales/hu.lua b/[esx_addons]/esx_banking/locales/hu.lua index a5877b32..0d74a8c4 100644 --- a/[esx_addons]/esx_banking/locales/hu.lua +++ b/[esx_addons]/esx_banking/locales/hu.lua @@ -12,9 +12,5 @@ Locales['hu'] = { ['not_enough_money'] = "Nincs elég pénzed, még szükséged lesz ennyire: %s", ['pincode_not_found'] = "Érvénytelen PIN kód", ['pincode_found'] = "Érvényes PIN kód...", - ['bank_name'] = "Fleeca Bank", - ['your_money_title'] = "Egyenleg", - ['your_money_desc'] = "Itt láthatod a jelenlegi egyenleged és készpénzed.", - ['your_money_cash'] = "Készpénz", - ['your_money_bank'] = "Banki egyenleged" + ['bank_name'] = "Fleeca Bank" } \ No newline at end of file From 7faa154cee5a8331c48a5babded2350d0a298041 Mon Sep 17 00:00:00 2001 From: Gellipapa Date: Mon, 12 Sep 2022 20:58:15 +0200 Subject: [PATCH 08/10] add IT translate and change default timezone --- [esx_addons]/esx_banking/html/config.json | 97 ++++++++++++++++++++ [esx_addons]/esx_banking/html/scripts/app.js | 2 +- [esx_addons]/esx_banking/locales/it.lua | 16 ++++ 3 files changed, 114 insertions(+), 1 deletion(-) create mode 100644 [esx_addons]/esx_banking/locales/it.lua diff --git a/[esx_addons]/esx_banking/html/config.json b/[esx_addons]/esx_banking/html/config.json index 5ded13f2..0deac798 100644 --- a/[esx_addons]/esx_banking/html/config.json +++ b/[esx_addons]/esx_banking/html/config.json @@ -195,5 +195,102 @@ "tableFullLanguage":"Hungarian" } } + }, + "IT":{ + "DYNAMIC_FORM_DATA":[ + { + "componentName":"moreGraph", + "elementID":"#wrapper", + "title":"", + "closeButtonText":"Close", + "bankTitle":"Fleeca Bank", + "mainExitButtonText": "Disconnettersi" + }, + { + "elementID":"#cpincode", + "name":"cpincode", + "buttonText":"conferma", + "inputPlaceholder": "4 cifre...", + "title":"IMPOSTAZIONE CODICE PIN", + "description": "Qui puoi impostare o modificare il codice PIN.", + "type":"password" + }, + { + "elementID":"#withdraw", + "name":"withdraw", + "buttonText":"conferma", + "inputPlaceholder": "Quantità", + "title":"RITIRARE", + "description": "Qui puoi prelevare i tuoi soldi dalla banca.", + "type":"number" + }, + { + "elementID":"#deposit", + "name":"deposit", + "buttonText":"conferma", + "inputPlaceholder": "Quantità", + "title":"DEPOSITARE", + "description": "Qui puoi depositare i tuoi soldi in banca.", + "type":"number" + }, + { + "elementID":"#transfer", + "name":"transfer", + "buttonText":"trasferisci", + "inputPlaceholder": "Quantità", + "inputPlaceholder2": "Giocatore ID", + "title":"TRASFERIMENTO", + "description": "Qui puoi trasferire i tuoi soldi a qualcun altro." + }, + { + "componentName":"trans", + "elementID":"#third-column", + "title":"CRONOLOGIA DELLE TRANSAZIONI", + "description": "Qui puoi vedere la cronologia delle tue operazioni.", + "moreHistoryText": "Mostra più cronologia", + "moreGraphText": "Mostra tutto il grafico" + }, + { + "componentName":"pincodePanel", + "elementID":"#wrapper", + "title":"Enter PIN", + "deleteButtonText": "", + "loginButtonText": "", + "closeButtonText": "Close" + }, + { + "componentName":"atmComponent", + "elementID":"#wrapper", + "title":"Fleeca Bank", + "closeButtonText":"Disconnettersi" + } + ], + "LAUNGAGE": { + "your_money_title":"saldo", + "your_money_desc":"qui puoi vedere il saldo attuale e contanti.", + "your_money_cash":"i tuoi soldi", + "your_money_bank":"il tuo saldo bancario", + "withdraw":"RITIRARE", + "deposit":"DEPOSITARE", + "transfer":"TRASFERIMENTO", + "transferReceive":"TRASFERIMENTO RICEVUTO", + "moneyFormat":"$__replaceData__", + "graphTitle":"Il tuo bilancio", + "moreGraphTitle": "grafico", + "moreHistoryTitle":"Mostra la cronologia", + "inputErrorTitle":"I dati non sono corretti", + "inputErrorMessage":"Non può essere vuoto o un valore inferiore a 1!", + "showPincodeErrorTitle":"PIN errato", + "showPincodeErrorMessage":"Il pin deve contenere almeno 4 caratteri!", + "tableLang":{ + "typeLabel": "Tipo di transazione", + "balanceLabel":"bilancio", + "amountLabel":"quantità", + "timeLabel":"tempo", + "searchInputPlaceholder":"Cerca ...", + "_comment": "tabella Opzioni complete della lingua: inglese, ungherese, italiana puoi trovare qui tutte le lingue: https://cdn.datatables.net/plug-ins/9dcbecd42ad/i18n/", + "tableFullLanguage":"Italiano" + } + } } } diff --git a/[esx_addons]/esx_banking/html/scripts/app.js b/[esx_addons]/esx_banking/html/scripts/app.js index 179b481a..2cf8afe5 100644 --- a/[esx_addons]/esx_banking/html/scripts/app.js +++ b/[esx_addons]/esx_banking/html/scripts/app.js @@ -650,7 +650,7 @@ $(document).ready(function(){ if(data[data.lang] != null){ lang = data.lang } - Utils.setTimeZone(lang == "EN" ? "en-GB" : "hu-HU") + Utils.setTimeZone(lang == "HU" ? "hu-HU" : "en-GB") formData = new GlobalStore(data[lang]["DYNAMIC_FORM_DATA"]) language = new GlobalStore(data[lang]["LAUNGAGE"]) }).fail(function(error){ diff --git a/[esx_addons]/esx_banking/locales/it.lua b/[esx_addons]/esx_banking/locales/it.lua new file mode 100644 index 00000000..ed5de004 --- /dev/null +++ b/[esx_addons]/esx_banking/locales/it.lua @@ -0,0 +1,16 @@ +Locales['it'] = { + ['invalid_amount'] = 'questa è una somma di denaro non valida', + ['deposit_money'] = 'hai depositato $%s', + ['withdraw_money'] = 'hai prelevato $%s', + ['pincode_money'] = 'hai un nuovo codice pin %s', + ['transfer_money'] = 'hai trasferito con successo il denaro a $%s ID: %s', + ['receive_transfer'] = 'hai ricevuto un trasferimento di denaro da $%s ID: %s', + ['press_e_banking'] = 'premi [E] per accedere alla banca', + ['access_bank'] = 'accedi alla banca', + ['banking_blip'] = 'Banca', + ['cant_do_it'] = "non puoi farlo!", + ['not_enough_money'] = "non hai abbastanza soldi! hai bisogno di %s soldi!", + ['pincode_not_found'] = "codice PIN errato", + ['pincode_found'] = "codice PIN valido...", + ['bank_name'] = "Fleeca Bank", +} \ No newline at end of file From 3936625dc7dfd733bf19a029fc08225357753b4b Mon Sep 17 00:00:00 2001 From: Gellipapa Date: Mon, 12 Sep 2022 21:25:33 +0200 Subject: [PATCH 09/10] add some images in readme --- readme.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 7b3dcc98..55d557c6 100644 --- a/readme.md +++ b/readme.md @@ -1,3 +1,12 @@ +

ESX BANKING

+ +## BANK UI +![esx_banking_pic1](https://user-images.githubusercontent.com/22717950/189738189-375101ac-c86b-4ce8-8df3-19d740c3809c.png) +## ATM UI +![esx_banking_pic2](https://user-images.githubusercontent.com/22717950/189738199-a325092b-5f1d-4c7f-8950-d660d053ed0f.png) +![esx_banking_pic3](https://user-images.githubusercontent.com/22717950/189738210-7af2c7d5-7fa1-4f70-8460-743ee9258f88.png) + +

ESX Legacy

Discord - Website - Documentation @@ -7,7 +16,7 @@


-### Supporters +### Supporters Interested in helping us? [Take a look at our patreon](https://www.patreon.com/esx "Take a look at our patreon") From 70013571b9486b26b190952c490c6d02111b16c0 Mon Sep 17 00:00:00 2001 From: Benzo <102178921+Benzo00@users.noreply.github.com> Date: Tue, 13 Sep 2022 03:59:27 +0200 Subject: [PATCH 10/10] fix: readme.... --- readme.md | 9 --------- 1 file changed, 9 deletions(-) diff --git a/readme.md b/readme.md index 55d557c6..9a6bd291 100644 --- a/readme.md +++ b/readme.md @@ -1,12 +1,3 @@ -

ESX BANKING

- -## BANK UI -![esx_banking_pic1](https://user-images.githubusercontent.com/22717950/189738189-375101ac-c86b-4ce8-8df3-19d740c3809c.png) -## ATM UI -![esx_banking_pic2](https://user-images.githubusercontent.com/22717950/189738199-a325092b-5f1d-4c7f-8950-d660d053ed0f.png) -![esx_banking_pic3](https://user-images.githubusercontent.com/22717950/189738210-7af2c7d5-7fa1-4f70-8460-743ee9258f88.png) - -

ESX Legacy

Discord - Website - Documentation