Skip to content

Commit

Permalink
Merge pull request #116 from EnzoDCdev/patch-1
Browse files Browse the repository at this point in the history
Create it.lua
  • Loading branch information
GhzGarage authored Dec 21, 2023
2 parents 2f888d7 + 3ee98a3 commit 784ff2e
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions locales/it.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
local Translations = {
success = {
withdraw = 'Prelievo Effettuato',
deposit = 'Deposito Effettuato',
transfer = 'Trasferimento Effettuato',
account = 'Conto corrente Creato',
rename = 'Conto corrente Rinominato',
delete = 'Conto corrente Eliminato',
userAdd = 'Utente Aggiunto',
userRemove = 'Utente Rimosso',
card = 'Carta di Credito Creata',
},
error = {
error = 'Errore',
access = 'Autorizzazione Negata',
account = 'Conto Corrente non Trovato',
accounts = 'Hai raggiunto il limite di Conti Correnti da poter creare',
user = 'Utente già autorizzato',
noUser = 'Utente non trovato',
money = 'Non hai abbastanza soldi',
pin = 'PIN Errato',
card = 'Nessuna Carta di Credito trovata',
},
progress = {
atm = 'Accesso in corso all\'ATM',
}
}

if GetConvar('qb_locale', 'en') == 'it' then
Lang = Lang or Locale:new({ phrases = Translations, warnOnMissing = true })
end

0 comments on commit 784ff2e

Please sign in to comment.