forked from jerameel/sushi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathit-IT.ts
70 lines (60 loc) · 1.86 KB
/
it-IT.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import { Translation } from 'types/Translation';
import en_US from './en-US';
const it_IT: Translation = {
...en_US,
// DASHBOARD
CREDIT: 'Spese',
DEBIT: 'Guadagni',
RECENT_TRANSACTIONS: 'Transazioni Recenti',
MY_ACCOUNTS: 'I Miei Conti',
// ADD ACCOUNT
ADD_ACCOUNT: 'Aggiungi Conto',
ACCOUNT_NAME: 'Nome Conto',
INITIAL_AMOUNT: 'Importo Iniziale',
CREATE_ACCOUNT: 'Crea Conto',
// EDIT ACCOUNT
EDIT_ACCOUNT: 'Modifica Conto',
UPDATE_ACCOUNT: 'Aggiorna Conto',
// ACCOUNT DETAILS
ACCOUNT_DETAILS: 'Dettagli Account',
INITIAL_BALANCE: 'Bilancio Iniziale',
DELETE_ACCOUNT: 'Elimina Account?',
DELETE_ACCOUNT_INFO:
'Questo eliminerà definitivamente il conto {{accountName}} comprese {{transactionCount}} transazioni collegate.',
// NEW TRANSACTION
NEW_TRANSACTION: 'Nuova Transazione',
CREATE_TRANSACTION: 'Crea Transazione',
CATEGORY: 'Categoria',
SOURCE_ACCOUNT: 'Conto Di Origine',
DESTINATION_ACCOUNT: 'Conto Di Destinazione',
TRANSFER: 'Trasferimento',
SHORT_DESCRIPTION: 'Breve Descrizione',
AMOUNT: 'Importo',
// EDIT TRANSACTION
EDIT_TRANSACTION: 'Modifica Transazione',
UPDATE_TRANSACTION: 'Aggiorna Transazione',
// TRANSACTION DETAILS
TRANSACTION_DETAILS: 'Dettagli Transazione',
ACCOUNT: 'Conto',
DATE_CREATED: 'Data Di Creazione',
DATE_UPDATED: 'Data Di Aggiornamento',
DELETE_TRANSACTION: 'Eliminare La Transazione?',
DELETE_TRANSACTION_INFO: 'Questo eliminerà definitivamente la transazione.',
KEEP: 'Mantieni',
DELETE: 'Elimina',
// Transactions
TRANSACTIONS: 'Transazioni',
SEARCH: 'Ricerca',
DATE_RANGE: 'Intervallo Di Date',
SHOW_ALL: 'Mostra Tutto',
EXPORT: 'Export',
// SETTINGS
SETTINGS: 'Impostazioni',
TRANSLATION_NAME: 'Italiano (IT)',
CURRENCY: 'Valuta',
LANGUAGE: 'Lingua',
THEME: 'Tema',
THEME_LIGHT: 'Chiaro',
THEME_DARK: 'Scuro',
};
export default it_IT;