-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathit.json
More file actions
1766 lines (1766 loc) · 154 KB
/
Copy pathit.json
File metadata and controls
1766 lines (1766 loc) · 154 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"{{count}} transactions_one": "{{count}} transazione",
"{{count}} transactions_many": "{{count}} transazioni",
"{{count}} transactions_other": "{{count}} transazioni",
"{{count}} associated rules_one": "{{count}} regola associata",
"{{count}} associated rules_many": "{{count}} regole associate",
"{{count}} associated rules_other": "{{count}} regole associate",
"{{displayMonth}} budget templates have been applied.": "Sono stati applicati i modelli di budget per il mese {{displayMonth}}.",
"(hidden)": "(nascosto)",
"(modified)": "(modificato)",
"(none)": "(nessuno)",
"(Optional)": "(Opzionale)",
"(please select)": "(si prega di selezionare)",
"{{displayMonth}} budgets have all been set to last month's budgeted amounts.": "I budget di {{displayMonth}} sono stati impostati sugli importi del mese scorso.",
"{{displayMonth}} end-of-month cleanup templates have been applied.": "Sono stati applicati i modelli di pulizia di fine mese per {{displayMonth}}.",
"{{displayMonth}} budget templates have been overwritten.": "I modelli di budget di {{displayMonth}} sono stati sovrascritti.",
"(give feedback)": "(fornisci feedback)",
"{{displayMonth}} budgets have all been set to zero.": "Tutti i budget di {{displayMonth}} sono stati impostati su zero.",
"{{selectedPayeeNames}}, and more": "{{selectedPayeeNames}} e altri",
"<0>Actual's data directory</0> <2><0>where your files are stored</0></2>": "<0>Cartella dei dati di Actual</0> <2><0>dove sono salvati i tuoi files</0></2>",
"<0><0>How is cash flow calculated?</0></0><1>Cash flow shows the balance of your budgeted accounts over time, and the amount of expenses/income each day or month. Your budgeted accounts are considered to be \"cash on hand,\" so this gives you a picture of how available money fluctuates.</1>": "<0><0>Com'è calcolato il flusso di cassa?</0></0><1>Il flusso di cassa mostra il saldo dei tuoi conti di bilancio nel tempo e l'importo delle spese/entrate ogni giorno o mese. I tuoi conti di bilancio sono considerati \"denaro contante\", quindi questo ti dà un'idea di come fluttua il denaro disponibile.</1>",
"Your SimpleFIN Access Token is no longer valid. Please reset and generate a new token.": "Il tuo token di accesso SimpleFIN non è più valido. Reimposta e genera un nuovo token.",
"<0>Actual</0> is a super fast privacy-focused app for managing your finances.": "<0>Actual</0> è una applicazione per gestire le tue finanze super veloce e orientato alla privacy.",
"<0>Balance:</0><1>{{amount}}</1>": "<0>Saldo:</0><1>{{amount}}</1>",
"<0>Budgeted:</0><1>{{amount}}</1>": "<0>Nel Budget:</0><1>{{amount}}</1>",
"<0>Budget ID:</0> {{budgetId}}": "<0>ID Budget:</0> {{budgetId}}",
"<0>Authentication method</0> modifies how users log in to the system.": "Il <0>Metodo di autenticazione</0> modifica il modo in cui gli utenti effettuano l'accesso al sistema.",
"<0>Category Learning</0> will automatically determine the best category for a transaction and create a rule that sets the category for the payee. <3>Learn more</3>": "<0>Category Learning</0> determinerà automaticamente la categoria migliore per una transazione e creerà una regola che la assegna al beneficiario. <3>Scopri di più</3>",
"(+{{numHiddenPayees}} more)": "(+ {{numHiddenPayees}} in più)",
"<0><0>Custom Report:</0></0> <2>{{name}}</2>": "<0><0>Report Personalizzato:</0></0> <2>{{name}}</2>",
"<0>Create a local account</0> if you want to add transactions manually. You can also <3>import QIF/OFX/QFX files into a local account</3>.": "<0>Crea un account locale</0> se vuoi aggiungere le transazioni manualmente o <3>importare file QIF/OFX/QFX</3>.",
"<0>End-to-end encryption</0> is not enabled. Any data on the server is still protected by the server password, but it's not end-to-end encrypted which means the server owners have the ability to read it. If you want, you can use an additional password to encrypt your data on the server.": "La <0>cifratura end-to-end</0> non è abilitata. I dati sul server sono protetti dalla password del server, ma non sono criptati end-to-end. Ciò significa che il proprietario del server può leggerli. Se vuoi, puoi usare una password aggiuntiva per cifrare i tuoi dati sul server.",
"<0>Envelope budgeting</0> (recommended) digitally mimics physical envelope budgeting system by allocating funds into virtual envelopes for different expenses. It helps track spending and ensure you don't overspend in any category.": "L'<0>envelope budgeting</0> (consigliato) emula digitalmente un sistema di divisione fisica dei fondi, allocando il denaro in contenitori virtuali distinti per spese distinte. Aiuta a rendicontare le spese e fa in modo che tu non spenda più del dovuto per ogni categoria.",
"<0>End-to-end encryption</0> is not available when making an unencrypted connection to a remote server. You'll need to enable HTTPS on your server to use end-to-end encryption. This problem may also occur if your browser is too old to work with Actual.": "La <0>cifratura end-to-end</0> non è disponibile su connessioni non criptate verso il server remoto. Dovrai abilitare l'HTTPS sul tuo server per utilizzare la cifratura end-to-end. Questo problema può capitare anche se il tuo browser è troppo vecchio per funzionare con Actual.",
"<0>End-to-end encryption</0> is not available when running without a server. Budget files are always kept unencrypted locally, and encryption is only applied when sending data to a server.": "La <0>cifratura end-to-end</0> non è disponibile se non si utilizza un server. I file sono conservati in chiaro localmente e criptati solo quando trasferiti verso un server.",
"<0>Experimental features.</0> These features are not fully tested and may not work as expected. THEY MAY CAUSE IRRECOVERABLE DATA LOSS. They may do nothing at all. Only enable them if you know what you are doing.": "<Funzionalità sperimentali.</0> Queste funzionalità non sono completamente testate e possono produrre effetti indesiderati. POSSONO CAUSARE LA PERDITA DI DATI. Possono non fare nulla. Attivale solo se sai cosa stai facendo.",
"<0>Goal Type:</0><1>{{type}}</1>": "<0>Tipo di obiettivo:</0><1>{{type}}</1>",
"<0>Formatting</0> does not affect how budget data is stored, and can be changed at any time.": "La <0>formattazione</0> non influenza come i dati sono salvati e può essere cambiata in qualsiasi momento.",
"Your password or something else has changed with your bank and you need to login again.": "La tua password o qualcos'altro è cambiato nella tua banca e devi effettuare nuovamente l'accesso.",
"(No payee)": "(Nessun beneficiario)",
"<0>Goal:</0><1>{{amount}}</1>": "<0>Obiettivo:</0><1>{{amount}}</1>",
"<0>Export</0> your data as a zip file containing <3>db.sqlite</3> and <5>metadata.json</5> files. It can be imported into another Actual instance by closing an open file (if any), then clicking the \"Import file\" button, then choosing \"Actual.\"": "<0>Esporta</0> i dati in un file zip contenente i file <3>db.sqlite</3> e <5>metadata.json</5>. Può essere importato in un'altra istanza di Actual chiudendo il file eventualmente aperto, cliccando sul pulsante \"Importa file\" e scegliendo \"Actual.\"",
"{{endOccurrences}} times": "{{endOccurrences}} volte",
"<0>Language</0> support is not available. Please follow the instructions <3>here</3> to add missing translation files.": "Il supporto per <0>lingua</0> non è disponibile. Si prega di seguire le istruzioni <3>qui</3> per aggiungere i file di traduzione mancanti.",
"<0>Language</0> is the display language of all text. Please note that no warranty is provided for the accuracy or completeness of non-English translations. If you encounter a translation error, feel free to make a suggestion on <3>Weblate</3>.": "<0>Lingua</0> è la lingua di visualizzazione di tutto il testo. Si prega di notare che non viene fornita alcuna garanzia per l'accuratezza o la completezza delle traduzioni non in inglese. Se riscontri un errore di traduzione, sentiti libero di fare una proposta su <3>Weblate</3>.",
"(after weekend)": "(dopo il fine settimana)",
"(before weekend)": "(prima del fine settimana)",
"<0>IDs</0> are the names Actual uses to identify your budget internally. There are several different IDs associated with your budget. The Budget ID is used to identify your budget file. The Sync ID is used to access the budget on the server.": "Gli <0>IDs</0> sono i nomi che Actual utilizza per identificare internamente il tuo budget. Ci sono diversi ID associati al tuo budget. L'ID del budget viene utilizzato per identificare il file del budget. L'ID di sincronizzazione viene utilizzato per accedere al budget sul server.",
"<0>Important:</0> if you forget this password <3>and</3> you don't have any local copies of your data, you will lose access to all your data. The data cannot be decrypted without the password.": "<0>Importante:</0> se dimentichi questa password <3>e</3> non hai copie locali dei tuoi dati, perderai l'accesso a tutti i tuoi dati. I dati non possono essere decrittografati senza la password.",
"<0>Move schedule </0><1></1><2> {{beforeOrAfter}} weekend</2>": "<0>Muovi la pianificazione</0><1></1><2>{{beforeOrAfter}} del fine settimana</2>",
"<0>Read here</0> for instructions on how to migrate your data from YNAB. You need to export your data as JSON, and that page explains how to do that.": "<0>Leggi qui</0> per le istruzioni su come migrare i tuoi dati da YNAB. Dovrai esportare i tuoi dati come JSON, e quella pagina spiega come fare.",
"(deleted)": "(eliminato)",
"<0>Reset sync</0> will remove all local data used to track changes for syncing, and create a fresh sync ID on the server. This file on other devices will have to be re-downloaded to use the new sync ID. Use this if there is a problem with syncing and you want to start fresh.": "<0>Resetta la sincronizzazione</0> rimuoverà tutti i dati locali usati per tenere traccia dei cambiamenti per la sincronizzazione, e crea un nuovo sync ID sul server. Sarà necessario scaricare nuovamente questo file sugli altri dispositivi per usare il nuovo sync ID. Usa questa opzione se ci sono problemi con la sincronizzazione e vuoi ricominciare da zero.",
"<0>Reset budget cache</0> will clear all cached values for the budget and recalculate the entire budget. All values in the budget are cached for performance reasons, and if there is a bug in the cache you won't see correct values. There is no danger in resetting the cache. Hopefully you never have to do this.": "<0>Resetta la cache del budget</0> cancellerà tutti i valori nella cache per il budget e ricalcola tutto il budget. Tutti i valori nel budget sono nella cache per motivi di performance, e se c'è un bug nella cache non vedrai i valori corretti. Cancellare la cache non comporta nessun pericolo. Se tutto va bene non lo dovrai mai fare.",
"<0>Themes</0> change the user interface colors.": "<0>Temi </0> cambia i colori dell'interfaccia utente.",
"A new version of Actual is available!": "È disponibile una nuova versione di Actual!",
"A valid amount is required": "È richiesto un importo valido",
"Access": "Accesso",
"Access Revocation Incomplete": "Revoca dell'accesso incompleta",
"A file with id \"{{id}}\" already exists with the name \"{{name}}\". This file will be replaced. This probably happened because files were manually moved around outside of Actual.": "Un file con id “{{id}}” esiste già con il nome “{{name}}”. Questo file verrà sostituito. Questo probabilmente è accaduto perché i file sono stati spostati manualmente al di fuori di Actual.",
"$50 each month": "50€ al mese",
"28+": "28+",
"$10 a week": "10€ a settimana",
"$10 a week, up to a maximum of $80": "10€ a settimana, fino a un massimo di 80€",
"3 months": "3 mesi",
"1 month": "1 mese",
"1 year": "1 anno",
"6 months": "6 mesi",
"{{accountName}} bank sync settings": "{{accountName}}impostazioni sync banca",
"after": "dopo",
"amount (inflow)": "importo (entrata)",
"Add account": "Aggiungi account",
"Add transaction": "Aggiungi transazione",
"Admin": "Admin",
"Advanced options": "Opzioni avanzate",
"Advanced Settings": "Impostazioni avanzate",
"allocate": "allocare",
"amount": "importo",
"Amount": "Importo",
"AMOUNT OPTIONS": "OPZIONI IMPORTO",
"Apply": "Applica",
"Ascending": "Ascendente",
"Account linking not opening in a new tab? Click here": "Il collegamento dell'account non si apre in una nuova scheda? Clicca qui",
"amount (outflow)": "importo (uscita)",
"Amount (outflow)": "importo (uscita)",
"Assets:": "Patrimonio:",
"Add action": "Aggiungi azione",
"Add another split": "Aggiungi un'altra divisione",
"Add category": "Aggiungi categoria",
"Add New": "Aggiungi nuovo",
"Add new widget": "Aggiungi nuovo widget",
"Auth0 application settings": "Impostazioni dell'applicazione Auth0",
"Actual is a super fast privacy-focused app for managing your finances. To secure your data, you'll need to set a password for your server.": "Actual è un'app super veloce incentrata sulla privacy per la gestione delle tue finanze. Per proteggere i tuoi dati, dovrai impostare una password per il tuo server.",
"Add recurrence": "Aggiungi ricorrenza",
"Add specific days": "Aggiungi giorni specifici",
"Amount (inflow)": "Importo (entrata)",
"An internal error occurred, sorry! Visit https://actualbudget.org/contact/ for support. (ref: {{reason}})": "Si è verificato un errore interno, ci scusiamo! Visita https://actualbudget.org/contact/ per supporto. (rif: {{reason}})",
"An internal error occurred. Try to log in again, or get <2>in touch</2> for support.": "Si è verificato un errore interno. Prova ad accedere di nuovo o contattaci per ricevere supporto.",
"An unknown error occurred: {{error}}": "Si è verificato un errore sconosciuto: {{error}}",
"Apply to all": "Applica a tutti",
"Available funds": "Fondi disponibili",
"Accounts": "Conti",
"Actual has updated the syncing format": "Actual ha aggiornato il formato di sincronizzazione",
"Actions": "Azioni",
"Add group": "Aggiungi gruppo",
"Add new schedule": "Aggiungi nuova pianificazione",
"Add new user": "Aggiungi nuovo utente",
"Add condition": "Aggiungi condizione",
"Amount:": "Importo:",
"An error occurred while saving. Please visit https://actualbudget.org/contact/ for support.": "Si è verificato un errore durante il salvataggio. Visita https://actualbudget.org/contact/ per supporto.",
"Amount left: {{amount}}": "Importo rimanente: {{amount}}",
"Auto login failed - Proxy not trusted": "Accesso automatico non riuscito - Proxy non attendibile",
"Actual uses <1>SharedArrayBuffer</1> to allow usage from multiple tabs at once and to ensure correct behavior when switching files. While it can run without access to<3>SharedArrayBuffer</3>, you may encounter data loss or notice multiple budget files being merged with each other.": "Actual utilizza <1>SharedArrayBuffer</1> per consentire l'utilizzo da più schede contemporaneamente e per garantire il comportamento corretto quando si passa da un file all'altro. Sebbene possa essere eseguito senza accesso a <3>SharedArrayBuffer</3>, potresti riscontrare una perdita di dati o notare che più file di budget vengono uniti tra loro.",
"Add category group": "Aggiungi gruppo di categorie",
"Are you sure you want to close <2>{{accountName}}</2>? ": "Vuoi davvero chiudere <2>{{accountName}}</2>? ",
"and": "e",
"An unknown error occurred while exporting. Please report this as a new issue on GitHub.": "Si è verificato un errore sconosciuto durante l'esportazione. Per favore segnalalo come un nuovo problema su GitHub.",
"Approximately {{currencyAmount}}": "Circa {{currencyAmount}}",
"Account": "Account",
"Account in Actual": "Account in Actual",
"Account list": "Lista account",
"Account menu": "Menu account",
"Are you sure you want to edit this transaction?": "Sei sicuro di voler modificare questa transazione?",
"Are you sure?": "Sei sicuro?",
"Area Graph": "Grafico dell'area",
"App updated to {{version}}": "App aggiornata a {{version}}",
"append to notes": "aggiungere alle note",
"Apply actions": "Applica azioni",
"Auto login failed - No header sent": "Accesso automatico non riuscito - Nessuna intestazione inviata",
"Apply budget template": "Applica il modello di budget",
"Are you sure you want to delete the report named '<2>{{name}}</2>'?": "Vuoi davvero eliminare il report denominato \"<2>{{name}}</2>\"?",
"Actual field": "Campo Actual",
"Actual's data directory successfully changed.": "La directory dei dati di Actual è stata modificata correttamente.",
"Add": "Aggiungi",
"After disabling OpenID all sessions will be closed": "Dopo aver disabilitato OpenID tutte le sessioni verranno chiuse",
"After enabling OpenID all sessions will be closed": "Dopo aver abilitato OpenID tutte le sessioni verranno chiuse",
"All accounts": "Tutti i conti",
"All Accounts": "Tutti i conti",
"All reconciled!": "Tutto riconciliato!",
"All time": "Storico",
"All time divisor": "Divisore storico",
"all transactions": "tutte le transazioni",
"Automatically add transaction": "Aggiungi automaticamente la transazione",
"Available for download": "Disponibile per il download",
"Average": "Media",
"account": "account",
"(nothing)": "(niente)",
"Average of previous months": "Media dei mesi precedenti",
"Budget {{percent}}% of available funds to budget last month": "Assegna il {{percent}}% dei fondi disponibili del mese scorso",
"<0>Server self-signed certificate</0> <2><0>enables a secure connection</0></2>": "<0>Certificato autofirmato del server</0> <2><0>abilita una connessione sicura</0></2>",
"<allocatedAmount /> <italic>of <totalAmount /></italic>": "<allocatedAmount /> <italic> di <totalAmount /></italic>",
"{{scheduleName}} is due {{distanceFromNow}} ({{formattedDate}})": "{{scheduleName}} in scadenza {{distanceFromNow}} ({{formattedDate}})",
"Budget {{percent}}% of ‘{{category}}’ last month": "Assegna il {{percent}}% di '{{category}}' del mese scorso",
"Are you sure you want to unlink <1>{accountName}</1>?": "Sei sicuro di voler scollegare <1>{accountName}</1>?",
"<0>Sync ID:</0> {{syncId}}": "<0>ID sincronizzazione:</0> {{syncId}}",
"An error occurred while linking your account, sorry! The potential issue could be: {{ message }}": "Si è verificato un errore durante il collegamento del tuo account, ci scusiamo! Il problema potrebbe essere: {{ message }}",
"{{categoryGroupName}} expense group categories": "Categorie del gruppo spese {{categoryGroupName}}",
"Available funds to budget": "Disponibile per il budget",
"Actual requires access to <1>SharedArrayBuffer</1> in order to function properly. If you're seeing this error, either your browser does not support <3>SharedArrayBuffer</3>, or your server is not sending the appropriate headers, or you are not using HTTPS. See <6>our troubleshooting documentation</6> to learn more. <9></9>": "Actual richiede l'accesso a <1>SharedArrayBuffer</1> per funzionare correttamente. Se vedi questo errore, o il tuo browser non supporta <3>SharedArrayBuffer</3>, o il tuo server non sta inviando le intestazioni appropriate, o non stai utilizzando HTTPS. Consulta la <6>nostra documentazione sulla risoluzione dei problemi</6> per saperne di più. <9></9>",
"Budget {{percent}}% of ‘{{category}}’ this month": "Assegna il {{percent}}% di ‘{{category}}’ questo mese",
"Budget Summary": "Riepilogo del budget",
"Budgeted:": "Preventivato:",
"Change password": "Cambia password",
"Budgeted": "Preventivato",
"Change this username with caution; it is the server owner.": "Cambia questo nome utente con cautela; è il proprietario del server.",
"Choose Report": "Scegli Report",
"Change directory": "Cambia directory",
"Cancel": "Annulla",
"Can also assign ownership of a budget to another person, ensuring efficient budget management.": "È anche possibile assegnare la proprietà di un budget a un'altra persona, garantendone una gestione efficiente.",
"Cash Flow": "Flusso di cassa",
"Cash flow graph": "Grafico del flusso di cassa",
"category": "categoria",
"Change how many days in advance of the scheduled date a scheduled transaction appears in the account ledger as upcoming.": "Modifica quanti giorni prima della data pianificata una transazione pianificata deve essere visualizzata come futura nel registro contabile.",
"Change location": "Cambia posizione",
"Change upcoming length": "Modificare la lunghezza in arrivo",
"Change:": "Modifica:",
"Check templates": "Controlla i modelli",
"Checking Header Token Login ...": "Controllo del token di accesso...",
"Cannot save: No widget available.": "Impossibile salvare: nessun widget disponibile.",
"Categorize": "Categorizza",
"Category is required": "La categoria è obbligatoria",
"Category Learning": "Categoria Apprendimento",
"Category learning disabled": "Categoria apprendimento disabilitata",
"Add new split - {{amount}} left": "Aggiungi suddivisione - {{amount}} residuo",
"Category \"{{name}}\" already exists in group (it may be hidden)": "La categoria “{{name}}” esiste già nel gruppo (potrebbe essere nascosta)",
"Category learning settings": "Impostazioni della categoria di apprendimento",
"Choose the number of months shown at a time": "Scegli il numero di mesi visualizzati in una volta",
"Category name": "Nome della categoria",
"Category group name": "Nome del gruppo di categorie",
"Budgeted MTD": "Preventivato dall'inizio del mese",
"Budgeted amount for {{categoryName}} category": "Importo preventivato per la categoria {{categoryName}}",
"Calendar": "Calendario",
"Calendar card": "Scheda del calendario",
"Can do everything that Basic users can. In addition, they have the ability to add new users to the directory and access budget files from all users.": "Possono fare tutto ciò che possono fare gli utenti Basic. Inoltre, hanno la possibilità di aggiungere nuovi utenti alla directory e di accedere ai file di budget di tutti gli utenti.",
"Change server password": "Cambia la password del server",
"Change server URL": "Modifica l'URL del server",
"Budget set to {{numberOfMonths}}-month average.": "Budget impostato su una media di {{numberOfMonths}} mesi.",
"Change": "Cambia",
"By default imported transactions that you delete will be re-imported with the next bank sync operation. To disable this behaviour - untick this box.": "Per impostazione predefinita, le transazioni importate che elimini verranno reimportate con la successiva operazione di sincronizzazione bancaria. Per disabilitare questo comportamento, deseleziona questa casella.",
"Category": "Categoria",
"Budget template applied.": "Modello di budget applicato.",
"Center": "Centro",
"Average:": "Media:",
"Balance": "Saldo",
"Balance for {{categoryName}} category": "Saldo per la categoria {{categoryName}}",
"Balance:": "Saldo:",
"Backups are taken every {{BACKUP_FREQUENCY_MINS}} minutes and stored in <4><0>Actual's data directory</0></4>. Actual retains a maximum of {{MAX_BACKUPS}} backups at any time.": "I backup vengono eseguiti ogni {{BACKUP_FREQUENCY_MINS}} minuti e archiviati nella <4><0>directory dati di Actual</0></4>. Actual conserva un massimo di {{MAX_BACKUPS}} backup per volta.",
"Average per transaction": "Media per transazione",
"Bank field": "Campo banca",
"Back to file list": "Torna all'elenco dei file",
"Bank": "Banca",
"Bank Account To Sync": "Conto bancario da sincronizzare",
"Back up now": "Esegui il backup adesso",
"Backups": "Backup",
"Back": "Indietro",
"Balance must be a number": "Il saldo deve essere un numero",
"Average per month": "Media mensile",
"Budget {{percent}}% of available funds to budget this month": "E' disponibile il {{percent}}% del budget di questo mese",
"Budget {{percent}}% of total income last month": "{{percent}}% del budget dai guadagni del mese scorso",
"Budget {{percent}}% of total income this month": "{{percent}}% del budget dai guadagni di questo mese",
"Budget for a schedule": "Budget per una pianificazione",
"Budget files": "File del budget",
"Budget page menu": "Menu della pagina del budget",
"Budget name": "Nome del budget",
"By enabling bank sync, you will be granting GoCardless (a third party service) read-only access to your entire account's transaction history. This service is not affiliated with Actual in any way. Make sure you've read and understand GoCardless's <2>Privacy Policy</2> before proceeding.": "Attivando il sync della banca, darai accesso di lettura di tutte le transizioni del tuo accownt a GoCardless (un servizio di terza parte). Questo servizio non è affiliato in nessun modo a Actual. Assicurati di aver letto e capito la <2>Privacy Policy</2> di GoCardless’s prima di continuare.",
"Close Budget": "Chiudi Budget",
"Bar Graph": "Grafico a barre",
"Break down less-frequent expenses into monthly expenses": "Suddividi le spese meno frequenti in spese mensili",
"Client secret cannot be empty": "Client secret non può essere vuoto",
"contains": "contiene",
"Be aware that other devices may have already created these transactions. If you have multiple devices, make sure you only do this on one device or you will have duplicate transactions.": "Tieni presente che altri dispositivi potrebbero aver già creato queste transazioni. Se hai più dispositivi, assicurati di farlo solo su un dispositivo o avrai transazioni duplicate.",
"Close account": "Chiudi conto",
"Close Account": "Chiudi Conto",
"Basic": "Di base",
"copy": "copia",
"Configure OAuth2 provider": "Configurare il provider OAuth2",
"Clear all conditions": "Cancella tutte le condizioni",
"Clear search term": "Cancella termine di ricerca",
"Clear transactions on import": "Cancella transazioni all'importazione",
"Close the current budget and open another": "Chiudere il bilancio corrente e aprirne un altro",
"Closed Accounts": "Conti chiusi",
"Closed accounts...": "Conti chiusi...",
"Covered {{toCategoryName}} overspending from {{fromCategoryName}}.": "Coperta la spesa eccessiva di {{toCategoryName}} da {{fromCategoryName}}.",
"before": "prima",
"cleared": "verificato",
"Banners": "Banner",
"Budget \"{{id}}\" not found. Check the ID of your budget in the Advanced section of the settings page.": "Budget “{{id}}” non trovato. Controlla l'ID del tuo budget nella sezione Avanzate della pagina delle impostazioni.",
"Choose your bank:": "Scegliere la propria banca:",
"Client secret": "Client secret",
"Client Secret:": "Client Secret:",
"Closed accounts": "Conti chiusi",
"Closed: {{ accountName }}": "Chiuso: {{ accountName }}",
"Collapse month summary": "Riduci riepilogo del mese",
"Compare {{formattedStartDate}} to {{typeOrFormattedEndDate}}": "Confronta {{formattedStartDate}} con {{typeOrFormattedEndDate}}",
"Create": "Crea",
"Choose your country:": "Scegliere il proprio Paese:",
"Client version: {{version}}": "Versione client: : {{version}}",
"Close": "Chiudi",
"Collapse split transactions": "Comprimi le transazioni divise",
"Cloud file ID is missing.": "ID file cloud mancante.",
"Covered overbudgeted from {{categoryName}}": "Coperto overbudget da {{categoryName}}",
"Compare:": "Confronta:",
"Complete": "Completare",
"completed": "completato",
"Closing...": "Chiusura...",
"Collapse all": "Riduci tutto",
"Compare": "Confronta",
"Configure GoCardless integration": "Configurare l'integrazione di GoCardless",
"Budget": "Budget",
"Cleared": "Verificato",
"Cleared total:": "Totale verificato:",
"Click the button below to reload and apply the update.": "Cliccare sul pulsante qui sotto per ricaricare e applicare l'aggiornamento.",
"Client ID": "Client ID",
"Client ID cannot be empty": "L'ID client non può essere vuoto",
"Client ID:": "ID Client:",
"You can load a different backup or revert to the original version below.": "Puoi caricare un backup diverso o ripristinare la versione originale qui sotto.",
"Your browser doesn't support IndexedDB in this environment, a feature that Actual requires to run. This might happen if you are in private browsing mode. Please try a different browser or turn off private browsing.": "Il tuo browser non supporta IndexedDB in questo ambiente, una funzionalità che Actual richiede per funzionare. Ciò potrebbe accadere se sei in modalità di navigazione privata. Prova un altro browser o disattiva la navigazione privata.",
"Your data is still out of sync": "I tuoi dati non sono ancora sincronizzati",
"Your encryption key need to be reset": "La tua chiave di crittografia deve essere reimpostata",
"You don`t have permissions over this file.": "Non hai i permessi per visualizzare questo file.",
"Your budget is hosted on a server, making it accessible for download on your devices.<1></1>Would you like to duplicate this budget for all your devices or keep it stored locally on this device?": "Il tuo budget è ospitato su un server, rendendolo accessibile per il download sui tuoi dispositivi.<1></1>Vuoi duplicare questo budget per tutti i tuoi dispositivi o conservarlo archiviato localmente su questo dispositivo?",
"Your files won't be moved. You can manually move them to the folder.": "I tuoi file non verranno spostati. Puoi spostarli manualmente nella cartella.",
"You're up to date!": "Sei aggiornato!",
"Your cleared balance <2>{{clearedBalance}}</2> needs <5>{{difference}}</5> to match<7></7> your bank's balance of <10>{{bankBalance}}</10>": "Il tuo saldo verificato <2>{{clearedBalance}}</2> ha bisogno di <5>{{difference}}</5> per corrispondere<7></7> al saldo della tua banca di <10>{{bankBalance}}</10>",
"Your data is out of sync": "I tuoi dati non sono sincronizzati",
"You can also delete just the local copy. This will remove all local data and the file will be listed as available for download.": "Puoi anche eliminare solo la copia locale. Questo rimuoverà tutti i dati locali e il file verrà elencato come disponibile per il download.",
"Bank Sync": "Sincronizzazione bancaria",
"Bank Sync Offline": "Sincronizzazione bancaria offline",
"Bank sync": "Sincronizzazione bancaria",
"{{status}} (Split)": "{{status}} (Suddividi)",
"{{count}} uncategorized transactions_one": "{{count}} transazione non categorizzata",
"{{count}} uncategorized transactions_many": "{{count}} transazioni non categorizzate",
"{{count}} uncategorized transactions_other": "{{count}} transazioni non categorizzate",
"<0>{{category}}</0> is used by existing transactions.": "<0>{{category}}</0> è utilizzata da transazioni esistenti.",
"<0>Are you sure you want to delete it?</0> If so, you must select another category to transfer existing transactions and balance to.": "<0>Sei sicuro di volerla eliminare?</0> Se sì, devi selezionare un'altra categoria sulla quale trasferire transazioni e saldo esistenti.",
"<0>Reset sync</0> is only available when syncing is enabled.": "<0>Reimposta sincronizzazione</0> è disponibile soltanto quando la sincronizzazione è abilitata.",
"A new version of Actual is available! Your Pikapods instance will be automatically updated in the next few days - no action needed.": "Una nuova versione di Actual è disponibile! La tua istanza Pikapods sarà automaticamente aggiornata nei prossimi giorni - non è necessaria alcuna azione.",
"Account is a required field": "Account è un campo obbligatorio",
"Confirm": "Confermare",
"Confirm Delete": "Conferma eliminazione",
"Confirm password": "Conferma password",
"Connect to an Actual server to set up <2>automatic syncing</2>.": "Connettiti a un server Actual per impostare la <2>sincronizzazione automatica</2>.",
"Connecting...": "Connessione…",
"Consider opening <2>our tour</2> in a new tab for some guidance on what to do when you've set your password.": "Ti consigliamo di aprire <2>il nostro tour</2> in una nuova scheda per avere una guida su cosa fare dopo aver impostato la password.",
"Copy last month's budget": "Copia il budget del mese scorso",
"Could not search: {{errorReason}}": "Impossibile cercare: {{errorReason}}",
"Cover": "Coprire",
"Cover from a category": "Coprire da una categoria",
"Cover overbudgeted": "Copertura budget eccedente",
"Cover overspending": "Coprire spese eccedenti",
"Account sync": "Sincronizzazione account",
"Add entry": "Aggiungi voce",
"Add space between amount and symbol": "Aggiungi spazio tra importo e simbolo",
"Add Split": "Aggiungi suddivisione",
"Add user": "Aggiungi utente",
"Amount left:": "Importo rimanente:",
"An unknown error occurred while importing. Please report this as a new issue on GitHub.": "Si è verificato un errore sconosciuto durante l'importazione. Per favore, segnala questo errore come nuova issue su GitHub.",
"Australian Dollar": "Dollaro australiano",
"AVERAGE DEPOSIT": "DEPOSITO MEDIO",
"AVERAGE NET": "NETTO MEDIO",
"AVERAGE SPENDING": "SPESA MEDIA",
"Budget set to last month's budget.": "Budget impostato al budget del mese scorso.",
"Canadian Dollar": "Dollaro canadese",
"Categories in the group <2>{{group}}</2> are used by existing transactions or it has a positive leftover balance currently.": "Le categorie nel gruppo <2>{{group}}</2> sono utilizzate da transazioni esistenti o hanno attualmente un saldo residuo positivo.",
"Categories in the group <2>{{group}}</2> are used by existing transactions.": "Le categorie nel gruppo <2>{{group}} </2> sono utilizzate da transazioni esistenti.",
"Change category automations": "Cambia automazioni di categoria",
"Choose the schedule these {{ count }} transactions belong to:_one": "Scegli la pianificazione a cui appartiene questa transazione:",
"Choose the schedule these {{ count }} transactions belong to:_many": "Scegli la pianificazione a cui appartengono queste {{ count }} transazioni:",
"Choose the schedule these {{ count }} transactions belong to:_other": "Scegli la pianificazione a cui appartengono queste {{ count }} transazioni:",
"Command Bar": "Barra dei comandi",
"Community support (Discord)": "Supporto della comunità (Discord)",
"Configure your server": "Configura il tuo server",
"Copy a previous month": "Copia un mese precedente",
"Create a local account": "Crea un account locale",
"Create key": "Crea chiave",
"Create Local Account": "Crea Account Locale",
"Create New": "Crea Nuovo",
"Create new account": "Crea nuovo account",
"Create new account (off budget)": "Crea nuovo account (fuori budget)",
"Create new file": "Crea nuovo file",
"Create new rule": "Crea nuova regola",
"Create payee \"{{payeeName}}\"": "Crea beneficiario \"{{payeeName}}\"",
"Delete {{count}} rules_one": "Elimina {{count}} regola",
"Delete {{count}} rules_many": "Elimina {{count}} regole",
"Delete {{count}} rules_other": "Elimina {{count}} regole",
"Delete {{selectedCount}} users_one": "Elimina {{selectedCount}} utente",
"Delete {{selectedCount}} users_many": "Elimina {{selectedCount}} utenti",
"Delete {{selectedCount}} users_other": "Elimina {{selectedCount}} utenti",
"Fixed {{count}} non-split transactions with split errors._one": "Riparata {{count}} transazione non suddivisa con errori di suddivisione.",
"Fixed {{count}} non-split transactions with split errors._many": "Riparate {{count}} transazioni non suddivise con errori di suddivisione.",
"Fixed {{count}} non-split transactions with split errors._other": "Riparate {{count}} transazioni non suddivise con errori di suddivisione.",
"Fixed {{count}} split transactions with non-null category._one": "Riparata {{count}} transazione suddivisa con una categoria non vuota.",
"Fixed {{count}} split transactions with non-null category._many": "Riparate {{count}} transazioni suddivise con categorie non vuote.",
"Fixed {{count}} split transactions with non-null category._other": "Riparate {{count}} transazioni suddivise con categorie non vuote.",
"Fixed {{count}} splits that weren't properly deleted._one": "Riparata {{count}} suddivisione che non era stata correttamente eliminata.",
"Fixed {{count}} splits that weren't properly deleted._many": "Riparate {{count}} suddivisioni che non erano state correttamente eliminate.",
"Fixed {{count}} splits that weren't properly deleted._other": "Riparate {{count}} suddivisioni che non erano state correttamente eliminate.",
"You can always manually post a transaction later for a due schedule by selecting the schedule and clicking \"Post transaction today\" in the action menu.": "Puoi sempre registrare manualmente una transazione successivamente per una scadenza programmata selezionando il programma e cliccando \"Registra transazione oggi\" nel menu delle azioni.",
"You need to revert it to continue syncing. Any unsynced data will be lost. If you like, you can instead [upload this file](#upload) to be the latest version.": "Devi ripristinarlo per continuare la sincronizzazione Tutti i dati non sincronizzati andranno persi Se preferisci puoi invece [caricare questo file](#upload) come versione più recente.",
"Closed": "Chiuso",
"Collapse": "Comprimi",
"We found the following accounts. Select which ones you want to add:": "Abbiamo trovato i seguenti conti. Seleziona quali vuoi aggiungere:",
"We had an unknown problem opening \"{{id}}\".": "Si è verificato un problema sconosciuto durante l'apertura di “{{id}}”.",
"We hit a limit on the local storage available. Edits may not be saved. Please get in touch https://actualbudget.org/contact/ so we can help debug this.": "Abbiamo raggiunto il limite di spazio di archiviazione locale disponibile. Le modifiche potrebbero non essere salvate. Contattaci su https://actualbudget.org/contact/ così possiamo aiutarti a risolvere il problema.",
"We were unable to repair your sync state, sorry! You need to reset your sync state.": "Non siamo riusciti a riparare il tuo stato di sincronizzazione, ci dispiace! È necessario reimpostare lo stato di sincronizzazione.",
"Wednesday": "Mercoledì",
"Weekly": "Settimanalmente",
"Weekly Templates": "Modelli Settimanali",
"Weeks": "Settimane",
"Welcome to Actual!": "Benvenuto su Actual!",
"When": "Quando",
"When displaying user information, this will be shown instead of the username.": "Quando vengono visualizzate le informazioni utente, questo verrà mostrato al posto del nome utente.",
"When you've located your data, <2>compress it into a zip file</2>. On macOS, right-click the folder and select \"Compress\". On Windows, right-click and select \"Send to → Compressed (zipped) folder\". Upload the zipped folder for importing.": "Quando hai individuato i tuoi dati, <2>comprimi il tutto in un file zip</2>. Su macOS, fai clic con il tasto destro sulla cartella e seleziona \"Comprimi\". Su Windows, fai clic con il tasto destro e seleziona \"Invia a → Cartella compressa (zip)\". Carica la cartella zippata per l'importazione.",
"With <1>tracking budgeting</1>, category balances reset each month, and funds are managed using a \"Saved\" metric instead of \"To Be Budgeted.\" Income is forecasted to plan future spending, rather than relying on current available funds.": "Con il <1>budgeting di monitoraggio</1>, i saldi delle categorie si azzerano ogni mese e i fondi vengono gestiti utilizzando una metrica \"Risparmiati\" anziché \"Da Budgettare\". Il reddito viene previsto per pianificare le spese future, anziché basarsi sui fondi attualmente disponibili.",
"Year": "Anno",
"Year to date": "Da inizio anno",
"Yearly": "Annuale",
"Years": "Anni",
"Yes": "Sì",
"You are about to change Actual's data directory from:": "Stai per modificare la directory dei dati di Actual da:",
"You are currently working from a backup.": "Stai attualmente lavorando su un backup.",
"You can also <2>force close</2> the account which will delete it and all its transactions permanently. Doing so may change your budget unexpectedly since money in it may vanish.": "Puoi anche <2>chiudere forzatamente</2> il conto, il che lo eliminerà insieme a tutte le sue transazioni in modo permanente. Questa operazione potrebbe modificare il budget in modo imprevisto, poiché i fondi presenti potrebbero scomparire.",
"You can import data from another Actual account or instance. First export your data from a different account, and it will give you a compressed file. This file is a simple zip file that contains the <1>db.sqlite</1> and <4>metadata.json</4> files.": "Puoi importare dati da un altro account o istanza Actual. Per prima cosa esporta i tuoi dati da un account diverso e otterrai un file compresso. Questo file è un semplice file zip che contiene i file <1>db.sqlite</1> e <4>metadata.json</4>.",
"You have budgeted more than your available funds": "Hai superato il budget rispetto ai fondi disponibili",
"You have to be admin to set secrets": "Devi essere un amministratore per impostare le credenziali",
"You need to register it to take advantage of syncing which allows you to use it across devices and never worry about losing your data.": "È necessario registrarlo per sfruttare la sincronizzazione, che consente di utilizzarlo su più dispositivi senza doversi preoccupare di perdere i dati.",
"<0>{{category}}</0> is used by existing transactions or it has a positive leftover balance currently.": "<0>{{category}}</0> è usata da transazioni esistenti o ha un saldo residuo positivo.",
"Choose Color:": "Scegli il Colore:",
"Create reconciliation transaction": "Crea una transazione di riconciliazione",
"Create rule": "Crea regola",
"Create test file": "Crea un file di test",
"Creating budget...": "Creazione del budget...",
"CSV OPTIONS": "OPZIONI CSV",
"Current month": "Mese corrente",
"Custom length": "Lunghezza personalizzata",
"Custom Report:": "Report personalizzato:",
"Custom Report: {{name}}": "Report Personalizzato:{{name}}",
"Custom Reports": "Report Personalizzati",
"Dark theme": "Tema scuro",
"Dashboard has been successfully imported. Don't like what you see? You can always press [ctrl+z](#undo) to undo.": "La dashboard è stata importata con successo. Non ti piace quello che vedi? Puoi sempre premere [ctrl+z](#undo) per tornare indietro.",
"Dashboard has been successfully reset to default state. Don't like what you see? You can always press [ctrl+z](#undo) to undo.": "La dashboard è stata ripristinata con successo allo stato predefinito. Non ti piace quello che vedi? Puoi sempre premere [ctrl+z](#undo) per tornare indietro.",
"{{categoryName}} shortcuts": "{{categoryName}} scorciatoie",
"Budget page": "Pagina del budget",
"{isSearching\n ? 'No matching shortcuts'\n : isInCategory\n ? 'No shortcuts in this category'\n : 'No matching shortcuts'}": "{isSearching)\n? 'Nessuna corrispondenza delle scorciatoie '\n: Incategoria\n? 'Non ci sono scorciatoie in questa categoria'\n: \"Non ci sono scorciatoie corrispondenti\"",
"Automatically rename these payees in the future_one": "Rinominare automaticamente questo beneficiario in futuro",
"Automatically rename these payees in the future_many": "Rinominare automaticamente questi beneficiari in futuro",
"Automatically rename these payees in the future_other": "Rinominare automaticamente questi beneficiari in futuro",
"budget templates have been applied.": "i modelli di budget sono stati applicati.",
"Checking GoCardless configuration...": "Verifica della configurazione di GoCardless…",
"Confirm Unlink": "Conferma scollegamento",
"Cover each occurrence when it occurs": "Copri ogni occorrenza quando si verifica",
"Cover the occurrences of the schedule ‘{{name}}’ this month": "Copri gli eventi della pianificazione ‘{{name}}’ di questo mese",
"Create schedules": "Crea pianificazioni",
"CSV FIELDS": "CAMPI CSV",
"Currency support": "Supporto valuta",
"Daily": "Giornaliero",
"Dashboard widget successfully saved.": "Widget dashboard salvato con successo.",
"Data Table": "Tabella dati",
"date": "data",
"Date": "Data",
"Date filters": "Filtri per data",
"Date format": "Formato data",
"Date is required": "La data è obbligatoria",
"Dates": "Date",
"Day": "Giorno",
"Day: {{dayOfMonth}}": "Giorno: {{dayOfMonth}}",
"Days": "Giorni",
"Debt:": "Debito:",
"Debts:": "Debiti:",
"Decide later": "Decidi più tardi",
"Default": "Predefinito",
"Default Currency": "Valuta predefinita",
"Delete": "Elimina",
"Delete {{fileName}}": "Elimina {{fileName}}",
"Delete entry": "Elimina voce",
"Delete file from all devices": "Elimina file da tutti i dispositivi",
"Delete file locally": "Elimina file in locale",
"Delete filter": "Elimina filtro",
"Delete split": "Elimina suddivisione",
"Delete the selected transactions": "Elimina le transazioni selezionate",
"Delete transaction": "Elimina transazione",
"Deleting it will remove it and all of its backups permanently.": "La cancellazione eliminerà definitivamente il file e tutti i relativi backup.",
"Deleting reconciled transactions may bring your reconciliation out of balance.": "L'eliminazione delle transazioni riconciliate potrebbe causare uno sbilanciamento della riconciliazione.",
"Delimiter:": "Delimitatore:",
"Deposit": "Versamento",
"DEPOSIT": "VERSAMENTO",
"Deposits": "Versamenti",
"Descending": "Discendente",
"Description": "Descrizione",
"Determine which users can view and manage your budgets": "Determinare quali utenti possono visualizzare e gestire i vostri budget",
"Difference:": "Differenza:",
"Disable auto hold": "Disattiva il blocco automatico",
"Disable category learning": "Disattiva l'apprendimento delle categorie",
"Enable category learning": "Abilita l'apprendimento delle categorie",
"Enable encryption": "Abilita crittografia",
"Enable learning": "Abilita apprendimento",
"Enable OpenID": "Abilita OpenID",
"Enable privacy mode": "Abilita la modalità privacy",
"Enable templating": "Abilita i template",
"enabled": "abilitato",
"Enabled": "Abilitato",
"Encrypting the file failed. You have the correct key so this is an internal bug. To fix this, generate a new key in the next step.": "La crittografia del file non è riuscita. La chiave è corretta, quindi si tratta di un bug interno. Per risolvere il problema, generare una nuova chiave nel passaggio successivo.",
"Encrypting your file failed because you are missing your encryption key. Create your key in the next step.": "La crittografia del file non è riuscita perché manca la tua chiave di crittografia. Creare la tua chiave nel passaggio successivo.",
"End Date": "Data di fine",
"End of month cleanup": "Pulizie di fine mese",
"End-to-end Encryption is turned on.": "La crittografia end-to-end è attiva.",
"Enter server password": "Inserisci la password del server",
"Enter the current balance of your bank account that you want to reconcile with:": "Inserisci il saldo attuale del tuo conto bancario che desideri riconciliare con:",
"Error getting available users": "Errore durante il recupero degli utenti disponibili",
"Error getting users": "Errore durante il recupero degli utenti",
"Error when trying to contact Pluggy.ai": "Errore durante il tentativo di contattare Pluggy.ai",
"Error:": "Errore:",
"Euro": "Euro",
"Even though encryption is enabled, the exported zip file will not have any encryption.": "Anche se la crittografia è abilitata, il file zip esportato non sarà crittografato.",
"Every {{interval}} days": "Ogni {{interval}} giorni",
"Every {{interval}} months on the {{dateFormatted}}": "Ogni {{interval}} mesi il giorno {{dateFormatted}}",
"Every {{interval}} months on the {{range}}": "Ogni {{interval}} mesi il {{range}}",
"Every {{interval}} weeks on {{dateFormatted}}": "Ogni {{interval}} settimane il {{dateFormatted}}",
"Every {{interval}} years on {{dateFormatted}}": "Ogni {{interval}} anni il {{dateFormatted}}",
"Every day": "Ogni giorno",
"Every month on the {{dateFormatted}}": "Ogni mese il {{dateFormatted}}",
"Every month on the {{range}}": "Ogni mese il {{range}}",
"Every week on {{dateFormatted}}": "Ogni settimana il {{dateFormatted}}",
"Every year on {{dateFormatted}}": "Ogni anno il {{dateFormatted}}",
"Example": "Esempio",
"Existing filters will be cleared": "I filtri esistenti verranno rimossi",
"Existing sessions will be logged out and you will log in to this server. We will validate that Actual is running at this URL.": "Le sessioni esistenti verranno disconnesse e ti collegherai a questo server. Verificheremo che Actual sia in esecuzione a questo URL.",
"Expand": "Espandi",
"Expand all": "Espandi tutto",
"Expand month summary": "Espandi il resoconto mensile",
"Expand split transactions": "Espandi le transazioni suddivise",
"Expense category groups": "Gruppi di categorie di spesa",
"Expenses": "Spese",
"Expenses:": "Spese:",
"Export": "Esporta",
"Export budget": "Esporta budget",
"Export Dashboard": "Esporta Dashboard",
"Export data": "Esporta dati",
"Export transactions": "Esporta transazioni",
"Failed importing the dashboard file.": "Importazione del file dashboard non riuscita.",
"Failed loading available banks: GoCardless access credentials might be misconfigured. Please <2>set them up</2> again.": "Impossibile caricare le banche disponibili: le credenziali di accesso di GoCardless potrebbero essere configurate in modo errato. Si prega di <2>configurarle</2> nuovamente.",
"Failed parsing the imported JSON.": "Analisi del JSON importato non riuscita.",
"Failed saving report name: {{error}}": "Salvataggio nome del report fallito: {{error}}",
"Failed to complete ownership transfer. Please try again.": "Impossibile completare il trasferimento di proprietà. Riprova.",
"Failed to configure sync server": "Impossibile configurare il server di sincronizzazione",
"Failed to duplicate budget file": "Impossibile duplicare il file di budget",
"Failed to duplicate budget file.": "Impossibile duplicare il file di budget.",
"Failed to enable OpenID. Please try again.": "Impossibile abilitare OpenID. Per favore, riprova.",
"Failed to refresh login methods": "Impossibile aggiornare i metodi di accesso",
"Failed to save dashboard widget.": "Impossibile salvare il widget della dashboard.",
"Failed to transfer ownership": "Impossibile trasferire la proprietà",
"Fatal Error": "Errore irreversibile",
"Fatal error occurred: unable to open import file dialog.": "Si è verificato un errore irreversibile: impossibile aprire la finestra di dialogo del file di importazione.",
"Favorite": "Preferito",
"Field mapping": "Mappatura del campo",
"File has header row": "Il file ha una riga di intestazione",
"File needs upload": "Il file deve essere caricato",
"Files": "File",
"Files in the destination folder with the same name will be overwritten.": "I file nella cartella di destinazione con lo stesso nome verranno sovrascritti.",
"Filter": "Filtro",
"Filter name": "Nome filtro",
"Filter payees...": "Filtra beneficiari...",
"Filter rules...": "Filtra regole...",
"Filter schedules…": "Filtra pianificazioni…",
"Filter tags...": "Filtra tag…",
"Filter to the selected transactions": "Filtra le transazioni selezionate",
"Filter users...": "Filtra utenti...",
"Filtered balance:": "Saldo filtrato:",
"Filters": "Filtri",
"Financial files": "Documenti finanziari",
"Find matching transactions": "Trova transazioni corrispondenti",
"Find schedules": "Trova pianificazioni",
"Finish editing dashboard": "Termina modifica della dashboard",
"First day of the week": "Primo giorno della settimana",
"Fixed {{count}} splits with a blank payee._one": "Corretta {{count}} suddivisione con un beneficiario vuoto.",
"Fixed {{count}} splits with a blank payee._many": "Corrette {{count}} suddivisioni con un beneficiario vuoto.",
"Fixed {{count}} splits with a blank payee._other": "Corrette {{count}} suddivisioni con un beneficiario vuoto.",
"Fixed {{count}} splits with the wrong cleared flag._one": "Corretta {{count}} suddivisione con il flag \"verificata\" errato.",
"Fixed {{count}} splits with the wrong cleared flag._many": "Corrette {{count}} suddivisioni con il flag \"verificata\" errato.",
"Fixed {{count}} splits with the wrong cleared flag._other": "Corrette {{count}} suddivisioni con il flag \"verificata\" errato.",
"Fixed {{count}} transfers._one": "Corretto {{count}} trasferimento.",
"Fixed {{count}} transfers._many": "Corretti {{count}} trasferimenti.",
"Fixed {{count}} transfers._other": "Corretti {{count}} trasferimenti.",
"Flip amount": "Inverti importo",
"for": "per",
"For next month": "Per il prossimo mese",
"For this time period": "Per questo intervallo di tempo",
"Found {{count}} split transactions with mismatched amounts on the below dates. Please review them manually:_one": "Trovata {{count}} transazione suddivisa con importi non corrispondenti nelle date indicate di seguito. Ti preghiamo di verificarla manualmente:",
"Found {{count}} split transactions with mismatched amounts on the below dates. Please review them manually:_many": "Trovate {{count}} transazioni suddivise con importi non corrispondenti nelle date indicate di seguito. Ti preghiamo di verificarle manualmente:",
"Found {{count}} split transactions with mismatched amounts on the below dates. Please review them manually:_other": "Trovate {{count}} transazioni suddivise con importi non corrispondenti nelle date indicate di seguito. Ti preghiamo di verificarle manualmente:",
"Found Schedules": "Pianificazioni trovate",
"Friday": "Venerdì",
"From": "Da",
"From:": "Da:",
"Fully Expand": "Espandi completamente",
"Fully funded": "Interamente finanziato",
"Fund upcoming scheduled transaction only on needed month": "Finanzia la prossima transazione pianificata solo nel mese necessario",
"Fund upcoming scheduled transactions over time": "Finanzia nel tempo le prossime transazioni pianificate",
"Generate new key": "Genera una nuova chiave",
"Get started with passwordless.id": "Inizia ad usare passwordless.id",
"GitHub does not support discovery. You need to configure it in the server.": "GitHub non supporta discovery. Devi configurarla nel server.",
"Go to login": "Vai al login",
"Goal templates": "Modelli di obiettivi",
"Goal Templates": "Modelli di obiettivi",
"GoCardless integration has not yet been configured.": "L'integrazione con GoCardless non è ancora stata configurata.",
"Group": "Gruppo",
"Happy budgeting!": "Buon budgeting!",
"Help": "Aiuto",
"Hide": "Nascondi",
"Hide balance": "Nascondi saldo",
"Hide decimal places": "Nascondi cifre decimali",
"Hide hidden categories": "Nascondi le categorie nascoste",
"Hide reconciled transactions": "Nascondi le transazioni riconciliate",
"Hide running balance": "Nascondi il saldo corrente",
"Hide transactions": "Nascondi transazioni",
"Hide unchecked": "Nascondi elementi non selezionati",
"Hold": "Mantieni",
"Hold for next month": "Aspetta il mese prossimo",
"Hold this amount:": "Trattieni questo importo:",
"Hong Kong Dollar": "Dollaro di Hong Kong",
"How is net worth calculated?": "Come viene calcolato il patrimonio netto?",
"https://example.com": "https://example.com",
"I understand the risks, run Actual in the unsupported fallback mode": "Sono consapevole dei rischi, eseguire Actual in modalità di fallback non supportata",
"I understand the risks, show experimental features": "Comprendo i rischi, mostra le funzionalità sperimentali",
"If <2></2>{{allOrAny}} of these conditions match:": "Se <2></2>{{allOrAny}} di queste condizioni corrispondono:",
"If checked below, a rule will be created to do this rename while importing transactions.": "Se selezionato qui sotto, verrà creata una regola per eseguire questa operazione di rinominazione durante l'importazione delle transazioni.",
"If left empty, it will be updated from your OpenID provider on the user's login, if available there.": "Se lasciato vuoto, verrà aggiornato dal tuo provider OpenID al momento del login utente, se disponibile.",
"If the server is using a self-signed certificate <2>select it here</2>.": "Se il server utilizza un certificato autofirmato <2>selezionarlo qui</2>.",
"If this error persists, please get <2>in touch</2> so it can be investigated.": "Se l'errore persiste, <2>contattaci</2> per consentirci di indagare.",
"If you can't update Actual at this time you can find the latest release at <2>app.actualbudget.org</2>. You can use it until your client is updated.": "Se al momento non è possibile aggiornare Actual, è possibile trovare l'ultima versione all'indirizzo <2>app.actualbudget.org</2>. È possibile utilizzarla fino all'aggiornamento del client.",
"If you expected a schedule here and don't see it, it might be because the payees of the transactions don't match. Make sure you rename payees on all transactions for a schedule to be the same payee.": "Se ti aspettavi di trovare qui una pianificazione e non la vedi, potrebbe essere perché i beneficiari delle transazioni non corrispondono. Assicurati di rinominare i beneficiari su tutte le transazioni affinché la pianificazione riporti lo stesso beneficiario.",
"If you lost your password, you likely still have access to your server to manually reset it.": "Se hai perso la password, probabilmente hai ancora accesso al tuo server per reimpostarla manualmente.",
"If you use a backup, you will have to set up all your devices to sync from the new budget.": "Se utilizzi un backup, dovrai configurare tutti i tuoi dispositivi per sincronizzarli dal nuovo budget.",
"If you've already downloaded your data on other devices, you will need to reset them. Actual will automatically take you through this process.": "Se hai già scaricato i tuoi dati su altri dispositivi, dovrai reimpostarli. Actual ti guiderà automaticamente attraverso questo processo.",
"Import": "Importa",
"Import {{count}} transactions_one": "Importa {{count}} transazione",
"Import {{count}} transactions_many": "Importa {{count}} transazioni",
"Import {{count}} transactions_other": "Importa {{count}} transazioni",
"Import a file exported from Actual": "Importa un file esportato da Actual",
"Import file": "Importa file",
"Import From": "Importa da",
"Import from Actual export": "Importa da un export di Actual",
"Import from nYNAB": "Importa da nYNAB",
"Import from YNAB4": "Importa da YNAB4",
"Import is running...": "Importazione in corso...",
"Import my budget": "Importa il mio budget",
"Import notes from file": "Importa le note dal file",
"Import pending transactions": "Importa transazioni in sospeso",
"Import transaction notes": "Importa note delle transazioni",
"Import transactions": "Importa transazioni",
"imported payee": "beneficiario importato",
"Imported payee": "Beneficiario importato",
"Imported Payee": "Beneficiario Importato",
"In order to enable bank sync via GoCardless (only for EU banks) you will need to create access credentials. This can be done by creating an account with <2>GoCardless</2>.": "Per abilitare la sincronizzazione bancaria tramite GoCardless (solo per banche UE) sarà necessario creare le credenziali di accesso. Questo può essere fatto creando un account su <2>GoCardless\\</2>.",
"In order to enable bank sync via Pluggy.ai (only for Brazilian banks) you will need to create access credentials. This can be done by creating an account with <2>Pluggy.ai</2>.": "Per abilitare la sincronizzazione bancaria tramite Pluggy.ai (solo per banche brasiliane) sarà necessario creare le credenziali di accesso. Questo può essere fatto creando un account su <2>Pluggy.ai\\</2>.",
"In order to enable bank sync via SimpleFIN (only for North American banks), you will need to create a token. This can be done by creating an account with <2>SimpleFIN</2>.": "Per abilitare la sincronizzazione bancaria tramite SimpleFIN (solo per banche Nordamericane) sarà necessario creare le credenziali di accesso. Questo può essere fatto creando un account su <2>SimpleFIN\\</2>.",
"In our user directory, each user is assigned a specific role that determines their permissions and capabilities within the system.": "Nel nostro elenco utenti, a ciascun utente viene assegnato un ruolo specifico che determina i suoi permessi e le sue capacità all'interno del sistema.",
"In/Out": "Entrate/Uscite",
"Include current Month": "Includi il mese corrente",
"Include current Month in live range": "Includi il mese corrente nell'intervallo attivo",
"Include current period": "Includi periodo corrente",
"Include current period in live range": "Includi il periodo corrente nell'intervallo attivo",
"Include current Year": "Includi l'anno corrente",
"Include current Year in live range": "Includi l'anno corrente nell'intervallo attivo",
"Income": "Reddito",
"Income categories": "Categorie di reddito",
"Income:": "Reddito:",
"indefinitely": "senza scadenza",
"Inflow": "Afflusso",
"Initializing the connection to the local database...": "Inizializzazione della connessione al database locale…",
"Institution to Sync": "Entità da sincronizzare",
"Integrating Google Sign-In into your web app": "Integra Google Sign-In nella tua web app",
"Internal error": "Errore interno",
"Interval": "Intervallo",
"Interval:": "Intervallo:",
"Invalid": "Non valido",
"Invalid amount value": "Valore importo non valido",
"Invalid date format": "Formato data non valido",
"Invalid password": "Password non valida",
"Invalid rule": "Regola non valida",
"is": "è",
"is after": "è successivo",
"is after or equals": "è successivo o uguale a",
"is approx": "è circa",
"is approximately": "è approssimativamente",
"is before": "è precedente",
"is before or equals": "è precedente o uguale a",
"is between": "è compreso tra",
"is exactly": "è esattamente",
"is false": "è falso",
"is greater than": "è maggiore di",
"is greater than or equals": "è maggiore o uguale a",
"is less than": "è minore di",
"is less than or equals": "è minore o uguale a",
"is not": "non è",
"is off budget": "è fuori budget",
"is on budget": "è in budget",
"is true": "è vero",
"It is recommended for the encryption password to be different than the log-in password in order to better protect your data.": "Si consiglia di utilizzare una password di crittografia diversa dalla password di accesso per proteggere al meglio i propri dati.",
"It is required to provide a token.": "È necessario fornire un token.",
"It is required to provide both the client id, client secret and at least one item id.": "È necessario fornire sia il client id, sia il client secret e almeno un item ID.",
"It is required to provide both the secret id and secret key.": "È necessario fornire sia il secret id che la secret key.",
"It looks like you're using an outdated version of the Actual client. Your budget data has been updated by another client, but this client is still on the old version. For the best experience, please update Actual to the latest version.": "Sembra che tu stia utilizzando una versione non aggiornata del client Actual. I tuoi dati di budget sono stati aggiornati da un altro client, ma questo client è ancora sulla versione precedente. Per un'esperienza ottimale, aggiorna Actual all'ultima versione.",
"Item Ids (comma separated):": "ID articoli (separati da virgola):",
"Item is no longer authorized. You need to login again.": "Elimento non più autorizzato. È necessario effettuare nuovamente il login.",
"Key generation is randomized. The same password will create different keys, so this will change your key regardless of the password being different.": "La generazione delle chiavi è casuale. La stessa password creerà chiavi diverse, quindi questo cambierà la tua chiave indipendentemente dal fatto che la password sia diversa.",
"Keyboard shortcuts": "Tasti di scelta rapida",
"last": "ultimo",
"Last": "Ultimo",
"Last 12 months": "Ultimi 12 mesi",
"Last 3 months": "Ultimi 3 mesi",
"Last 6 months": "Ultimi 6 mesi",
"Last Balance from Bank: ": "Ultimo saldo bancario: ",
"last day": "ultimo giorno",
"Last month": "Mese scorso",
"Last sync": "Ultima sincronizzazione",
"Last week": "Ultima settimana",
"Last year": "Ultimo anno",
"Learn more": "Per saperne di più",
"Left": "Sinistra",
"Line Graph": "Grafico lineare",
"Link account": "Collega conto",
"Link accounts": "Collega conti",
"Link Accounts": "Collega Conti",
"Link bank in browser": "Collega banca nel browser",
"Link or view schedule for selected transactions": "Collegare o visualizzare la pianificazione per le transazioni selezionate",
"link schedule": "collega pianificazione",
"Link schedule": "Collega pianificazione",
"Link to schedule": "Collega alla pianificazione",
"{{num}} more items...": "{{num}} altri elementi…",
"a fixed amount": "un importo fisso",
"average": "media",
"budgeted": "preventivato",
"DEFAULT": "PREDEFINITO",
"an equal portion of the remainder": "una parte uguale del resto",
"a fixed percent of the remainder": "una percentuale fissa del resto",
"Disable current auto hold": "Disattiva l'attuale mantenimento automatico",
"Disable learning": "Disabilita l'apprendimento",
"Disable OpenID": "Disabilita OpenID",
"Disable privacy mode": "Disabilita la modalità privacy",
"Disable templating": "Disattiva la funzione di creazione template",
"disabled": "disabilitato",
"Disabled": "Disabilitato",
"Disabling Category Learning will not delete any existing rules but will prevent new rules from being created automatically on a global level.": "La disattivazione dell'apprendimento delle categorie non eliminerà alcuna regola esistente, ma impedirà la creazione automatica di nuove regole a livello globale.",
"Disabling OpenID will deactivate multi-user mode.": "Disabilitare OpenID disattiverà la modalità multiutente.",
"Display": "Mostra",
"Display Name": "Mostra nome",
"Distribute": "Distribuisci",
"Do nothing": "Non fare nulla",
"Documentation": "Documentazione",
"does not contain": "non contiene",
"Domain": "Dominio",
"Don't use a server": "Non usare un server",
"Donut Graph": "Grafico a ciambella",
"Download Snapshot": "Scarica istantanea",
"Downloaded file is invalid, sorry! Visit https://actualbudget.org/contact/ for support.": "Mi dispiace ma il file scaricato non è valido, visita https://actualbudget.org/contact/ per supporto.",
"Downloading and applying update...": "Sto scaricando e applicando l'aggiornamento...",
"Downloading the file failed. Check your network connection.": "Scaricamento del file fallito. Controlla la tua connessione ad internet.",
"Downloading...": "Scaricamento…",
"due": "in scadenza",
"Duplicate": "Duplica",
"Duplicate \"{{fileName}}\"": "Duplica “{{fileName}}”",
"Owner": "Proprietario",
"Owner:": "Proprietario:",
"Password": "Password",
"Payee": "Beneficiario",
"Payees": "Beneficiari",
"Payment": "Pagamento",
"Payments": "Pagamenti",
"Percentage": "Percentuale",
"Post": "Post",
"Pre": "Pre",
"Range:": "Intervallo:",
"Reauthorize": "Riautorizza",
"Received": "Ricevuto",
"Reconcile": "Riconcilia",
"Reconciled": "Riconciliato",
"Recurring": "Ricorrente",
"Register": "Registra",
"Remove": "Rimuovi",
"Rename": "Rinomina",
"Repair": "Ripara",
"Replace": "Sostituisci",
"Reports": "Report",
"Restart": "Riavvia",
"Revert": "Ripristina",
"Right": "Destra",
"Role": "Ruolo",
"Rules": "Regole",
"Saturday": "Sabato",
"Save": "Salva",
"Saved": "Salvato",
"Saved:": "Salvato:",
"Schedule": "Pianificazione",
"Schedules": "Pianificazioni",
"Search": "Cerca",
"set": "imposta",
"Settings": "Impostazioni",
"Show": "Mostra",
"Sort:": "Ordina:",
"Spent": "Speso",
"Split": "Suddividi",
"Split:": "Suddividi:",
"Stage": "Fase",
"Static": "Statico",
"Status": "Stato",
"Sum": "Somma",
"Summary": "Resoconto",
"Sunday": "Domenica",
"Syncing": "Sincronizzazione",
"template ": "template ",
"Theme": "Tema",
"Thursday": "Giovedì",
"Time": "Ora",
"to": "a",
"to ": "a ",
"To:": "A:",
"Today": "Oggi",
"Token:": "Token:",
"Total": "Totale",
"Totals": "Totali",
"Transfer": "Trasferimento",
"Transfer: ": "Trasferimento: ",
"Transferring...": "Trasferimento in corso...",
"Transfers": "Trasferimenti",
"Transfers:": "Trasferimenti:",
"Tuesday": "Martedì",
"Type:": "Tipo:",
"Uncategorized": "Non categorizzato",
"Uncleared": "Non verificato",
"Unfavorite": "Togli dai preferiti",
"Unknown": "Sconosciuto",
"Unlink": "Scollega",
"Unnamed": "Senza nome",
"Update": "Aggiorna",
"Upload": "Carica",
"User": "Utente",
"Username": "Nome utente",
"Payee:": "Beneficiario:",
"Transaction": "Transazione",
"Next:": "Prossimo:",
"once": "una volta",
"or": "o",
"payee": "beneficiario",
"reconciled": "riconciliato",
"saved": "salvato",
"until": "fino a",
"missed": "saltato",
"nothing": "niente",
"paid": "pagato",
"scheduled": "pianificato",
"upcoming": "in arrivo",
"Overbudgeted:": "Sforato il budget:",
"transfer": "trasferimento",
"Mode": "Modalità",
"Port": "Porta",
"Start": "Inizia",
"Navigation": "Navigazione",
"Multiplier": "Moltiplicatore",
"Outflow": "Uscite",
"PAYMENT": "PAGAMENTO",
"Refresh": "Aggiorna",
"Unassigned": "Non assegnato",
"You": "Tu",
"Tag": "Tag",
"Tags": "Tag",
"occurrence": "occorrenza",
"occurrences": "occorrenze",
"View": "Mostra",
"shortcut": "scorciatoia",
"shortcuts": "scorciatoie",
"POST": "POST",
"PRE": "PRE",
"THEN": "ALLORA",
"Duplicate locally": "Duplica in locale",
"Edit content": "Modifica contenuto",
"Edit dashboard": "Modifica dashboard",
"Edit field": "Modifica campo",
"Edit notes": "Modifica note",
"Linked transactions": "Transazioni collegate",
"Load Backup": "Carica Backup",
"Loading accounts...": "Caricamento conti...",
"Loading banks...": "Caricamento banche...",
"Loading Error": "Errore nel caricamento",
"Loading report...": "Caricamento del report...",
"Loading reports...": "Caricamento report...",
"Loading transactions...": "Caricamento transazioni...",
"Login expired": "Accesso scaduto",
"Make transfer": "Effettua un trasferimento",
"Making demo...": "Creazione demo…",
"Manage payees": "Gestisci i beneficiari",
"Modal dialog": "Finestra di dialogo",
"Modal logo": "Logo modale",
"Monthly Spending": "Spesa mensile",
"Monthly Templates": "Modelli mensili",
"Multi-month Templates": "Modelli multi-mese",
"Net Assets:": "Patrimonio netto:",
"Net Debts:": "Indebitamento netto:",
"Net Deposit": "Deposito netto",
"Net Payment": "Pagamento netto",
"Net Worth": "Patrimonio netto",
"Net worth:": "Patrimonio netto:",
"Network unavailable": "Rete non disponibile",
"New Account": "Nuovo conto",
"New Category": "Nuova categoria",
"Next date": "Prossima data",
"Next month": "Prossimo mese",
"No notes": "Nessuna nota",
"No payees": "Nessun beneficiario",
"No rules": "Nessuna regola",
"No schedules": "Nessuna pianificazione",
"No server": "Nessun server",
"No transactions": "Nessuna transazione",
"No users": "Nessun utente",
"Notes: {{name}}": "Note: {{name}}",
"Off budget": "Fuori budget",
"On budget": "In budget",
"one of": "uno di",
"Open Actual": "Apri Actual",
"Open changelog": "Apri le note di rilascio",
"OpenID is": "OpenID è",
"Overfunded ({{amount}})": "Finanziato in eccesso ({{amount}})",
"payee (name)": "beneficiario (nome)",
"Pin sidebar": "Blocca la barra laterale",
"Please wait...": "Attendi per favore...",
"Post transactions": "Registra transazioni",
"Post transactions?": "Registra transazioni?",
"Previous month": "Mese precedente",
"Projected savings:": "Risparmi previsti:",
"Reconciled Transaction": "Transazione riconciliata",
"Release Notes": "Note di rilascio",
"Remove recurrence": "Eliminare la ricorrenza",
"Rename budget": "Rinomina budget",
"Reopen account": "Riapri conto",
"Repeat every": "Ripeti ogni",
"Report Name": "Nome del report",
"Reset key": "Resetta chiave",
"Reset sync": "Reimposta la sincronizzazione",
"Restart app": "Riavvia app",
"Revert changes": "Annulla le modifiche",
"Rollover overspending": "Riporto delle spese in eccesso",
"Run Rules": "Esegui regole",
"Save notes": "Salva le note",
"Save widget": "Salva widget",
"Saved Filters": "Filtri salvati",
"Saved Reports": "Report salvati",
"Schedule Name": "Nome della pianificazione",
"Schedule Templates": "Modelli di pianificazione",
"Schedule: {{name}}": "Pianificazione: {{name}}",
"Scheduled date": "Data pianificata",
"Secret ID:": "Secret ID:",
"Secret Key:": "Secret Key:",
"Select account...": "Seleziona conto...",
"Select All": "Seleziona tutto",
"Select category...": "Seleziona categoria...",
"Select file...": "Seleziona file...",
"Select language": "Seleziona lingua",
"Select Provider": "Seleziona fornitore",
"Selected balance:": "Saldo selezionato:",
"Selected transactions": "Transazioni selezionate",
"Server offline": "Server offline",
"Server online": "Server online",
"Server Owner": "Proprietario del server",
"Set-up SimpleFIN": "Configura SimpleFIN",
"Show as": "Mostra come",
"Show balance": "Mostra saldo",
"Show Error": "Mostra errore",
"Show Labels": "Mostra etichette",
"Show Legend": "Mostra legenda",
"Show password": "Visualizza password",
"Show Summary": "Mostra riepilogo",
"Show transactions": "Mostra transazioni",
"Show unchecked": "Mostra non spuntate",
"Sidebar menu": "Menù laterale",
"Sign in": "Accedi",
"Sign out": "Esci",
"Single month": "Singolo mese",
"Spending analysis": "Analisi delle spese",
"Split Transaction": "Suddividi transazione",
"Suggested Payees": "Beneficiari suggeriti",
"Summary card": "Scheda riassuntiva",
"Switch theme": "Cambia tema",
"System default": "Impostazioni predefinite del sistema",
"Text position:": "Posizione del testo:",
"Text widget": "Testo del widget",
"Text Widget": "Testo del Widget",
"This month": "Questo mese",
"This week": "Questa settimana",
"To Budget": "Per il budget",
"Transaction list": "Lista transazioni",
"Transfer ownership": "Trasferisci proprietà",
"Transfer to:": "Trasferisci a:",
"Transfer To/From": "Trasferisci da/a",
"Try again": "Riprova",
"Try Demo": "Prova la demo",
"Uncleared total:": "Totale non verificato:",
"Underfunded ({{amount}})": "Sottofinanziato ({{amount}})",
"Unlink schedule": "Scollega pianificazione",
"Unpin sidebar": "Sblocca il menu laterale",
"Unsaved filter": "Filtro non salvato",
"Unsaved report": "Report non salvato",
"Unselect All": "Deseleziona tutto",
"Upcoming dates": "Prossime date",
"Update now": "Aggiorna ora",
"Update report": "Aggiorna report",
"Update required": "Aggiornamento richiesto",
"User Access": "Accesso utente",
"User Directory": "Rubrica utenti",
"View notes": "Mostra note",
"View rules": "Mostra regole",
"View schedule": "Mostra pianificazione",
"Next: {{month}}": "Prossimo: {{month}}",
"No account": "Nessun conto",
"OpenID provider": "Provider OpenID",
"Repair transactions": "Ripara transazioni",
"Transaction direction": "Direzione della transazione",
"New Transaction": "Nuova transazione",
"Search {{accountName}}": "Cerca {{accountName}}",
"Select account": "Seleziona conto",
"Show uncategorized": "Mostra non categorizzate",
"Spent {{monthYearFormatted}}:": "Speso {{monthYearFormatted}}:",
"Update conditions": "Aggiorna condizioni",
"Edit fields": "Modifica campi",
"More options": "Altre opzioni",
"Set-up Pluggy.ai": "Configura Pluggy.ai",
"Recurring error": "Errore ricorrente",
"Start Date": "Data d'inizio",
"until {{dateFormatted}}": "fino a {{dateFormatted}}",
"Save changes": "Salva cambiamenti",
"To Budget:": "Per il budget:",
"Percentage of": "Percentuale di",
"Savings mode": "Modalità Risparmi",
"Special categories": "Categorie speciali",
"Unknown category": "Categoria sconosciuta",
"Switch file": "Cambia file",
"View transactions": "Mostra transazioni",
"Search {{budgetName}}...": "Cerca {{budgetName}}…",
"Duplicate file \"{{newName}}\" created.": "Duplicato del file “{{newName}}” creato.",
"Duplicate for all devices": "Duplica per tutti i dispositivi",
"Duplicating: {{oldName}} to: {{newName}}": "Duplicazione: da {{oldName}} a: {{newName}}",