-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathLocalizable.strings
More file actions
3206 lines (2142 loc) · 231 KB
/
Localizable.strings
File metadata and controls
3206 lines (2142 loc) · 231 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
/* No comment provided by engineer. */
" " = " ";
/* CrowdNode */
" Privacy Policy " = "Politica sulla Riservatezza";
/* CrowdNode */
" Terms of Use " = "Termini di utilizzo";
/* No comment provided by engineer. */
"%@ has accepted your contact request" = "%@ ha accettato la tua richiesta di contatto";
/* Username has sent you a contact request */
"%@ has sent you a contact request" = "%@ ti ha inviato una richiesta di contatto";
/* No comment provided by engineer. */
"%@ is not allowed to access Face ID. Allow Face ID access in Settings" = "%@ non è autorizzato ad accedere a Face ID. Consenti l'accesso a Face ID nelle Impostazioni";
/* No comment provided by engineer. */
"%@ is not allowed to access the camera" = "%@ non ha il permesso di accedere alla videocamera";
/* No comment provided by engineer. */
"%@ is not allowed to access Touch ID. Allow Touch ID access in Settings" = "%@ non è autorizzato ad accedere a Touch ID. Consenti l'accesso Touch ID nelle Impostazioni";
/* Credits */
"%@ ~ %lu contacts / %lu profile updates" = "%1$@ ~ %2$lu contatti / %3$lu aggiornamenti del profilo";
/* Voting - multiple keys warning */
"%d votes will be cast as you have multiple voting keys stored in the wallet" = "%d i voti verranno espressi poiché nel portafoglio sono memorizzate più chiavi di voto";
/* Voting */
"%ld duplicates" = "%ld duplicati";
/* Voting */
"%ld requests" = "%ld richieste";
/* 10/20 Characters */
"%ld/%ld Characters" = "%1$ld/%2$ld Caratteri\n ";
/* No comment provided by engineer. */
"(1/3) Processing Payment" = "(1/3) Pagamento in elaborazione";
/* No comment provided by engineer. */
"(1/3) Unable to process payment" = "(1/3) Impossibile elaborare il pagamento";
/* No comment provided by engineer. */
"(2/3) Creating Dash Identity" = "(2/3) Creazione dell'identità Dash";
/* No comment provided by engineer. */
"(2/3) Unable to create Dash Identity" = "(2/3) Impossibile creare l'identità Dash";
/* No comment provided by engineer. */
"(3/3) Can't register username" = "(3/3) Impossibile registrare il nome utente";
/* No comment provided by engineer. */
"(3/3) Registering Username" = "(3/3) Registrazione del nome utente";
/* No comment provided by engineer. */
"1 hour" = "1 ora";
/* Explore Dash: Filters */
"1 mile" = "1 miglio";
/* Shorten version of minute */
"1 min" = "1 minuto";
/* Explore Dash: Filters */
"2 km" = "2 km";
/* Explore Dash: Filters */
"20 miles" = "20 miglia";
/* No comment provided by engineer. */
"24 hours" = "24 ore";
/* Explore Dash: Filters */
"32 km" = "32 km";
/* Explore Dash: Filters */
"5 miles" = "5 miglia";
/* Shorten version of minutes */
"5 min" = "5 minuti";
/* Explore Dash: Filters */
"50 miles" = "50 miglia";
/* Explore Dash: Filters */
"8 km" = "8 km";
/* Explore Dash: Filters */
"80 km" = "80 km";
/* No comment provided by engineer. */
"\"%@\" is not a recovery phrase word" = "\"%@\" non è una parola della frase di recupero";
/* No comment provided by engineer. */
"\"%@\" is not a recovery phrase word. Would you like to try to recover the correct word that should be in its place?" = "\"%@\" non è una parola della frase di recupero. Vorresti provare a recuperare la parola corretta che dovrebbe stare in questa posizione?";
/* No comment provided by engineer. */
"\ntry again in %@" = "\nriprova tra %@";
/* No comment provided by engineer. */
"A device passcode is needed to safeguard your wallet. Go to settings and turn passcode on to continue." = "Un codice di accesso è necessario per proteggere il tuo portafoglio. Vai nelle impostazioni e attiva il codice per continuare.";
/* CrowdNode */
"A Masternode needs 1000 Dash as collateral and each Masternode is currently rewarded approximately %@ per year." = "Un Masternode ha bisogno di 1000 Dash come garanzia e ogni Masternode è attualmente ricompensato approssimativamente %@ per anno";
/* No comment provided by engineer. */
"About" = "A proposito di";
/* No comment provided by engineer. */
"About me" = "Informazioni su di me";
/* No comment provided by engineer. */
"Accept" = "Accetta";
/* Explore */
"Accept Dash directly" = "Accetta Dash direttamente";
/* DashSpend */
"Accept terms and\nconditions" = "Accetta i termini e\nle condizioni";
/* CrowdNode */
"Accept Terms Of Use" = "Accetta i termini di utilizzo";
/* CrowdNode */
"Accepting terms of use…" = "Accettazione delle condizioni d'uso...";
/* CrowdNode */
"Account Recovery" = "Recupero dell'account";
/* No comment provided by engineer. */
"Activity" = "Attività";
/* No comment provided by engineer. */
"Add" = "Aggiungi";
/* Add <username> as your contact... */
"Add %@ as your contact to Pay Directly to Username and Retain Mutual Transaction History" = "Aggiungi %@ come contatto per pagare direttamente con il nome utente e conservare la cronologia delle transazioni reciproche";
/* No comment provided by engineer. */
"Add a New Contact" = "Aggiungi un nuovo contatto";
/* No comment provided by engineer. */
"Add your Friends & Family" = "Aggiungi i tuoi Amici e Familiari";
/* Usernames */
"Add your friends & family" = "Aggiungi i tuoi amici e familiari";
/* No comment provided by engineer. */
"Address" = "Indirizzo";
/* CoinJoin */
"Advanced" = "Avanzate";
/* CoinJoin */
"Advanced privacy level requires a reliable internet connection" = "Il livello di privacy avanzato richiede una connessione Internet affidabile";
/* No comment provided by engineer. */
"Advanced Security" = "Sicurezza Avanzata";
/* Coinbase */
"Advanced users who have a very high level of technical expertise can determine your transaction history" = "Gli utenti avanzati che hanno un livello molto elevato di competenza tecnica possono determinare la cronologia delle transazioni";
/* Usernames */
"After the voting ends we will notify you about its results" = "Al termine della votazione ti informeremo sui suoi risultati";
/* No comment provided by engineer. */
"Agree" = "Acconsento";
/* TimeSkew */
"ahead" = "avanti";
/* No comment provided by engineer. */
"All" = "Tutte";
/* No comment provided by engineer. */
"All payments will be considered as an Expense and all incoming transactions will be Income. The owner of this wallet is responsible for making any cost basis adjustments in their chosen tax reporting system." = "Tutti i pagamenti saranno considerati come Uscite e tutte le transazioni in entrata come Entrate. Il proprietario di questo portafoglio è responsabile di apportare eventuali modifiche alla base dei costi nel sistema di rendicontazione";
/* CrowdNode */
"All transfers to and from CrowdNode from this device will be performed with the below Dash address from this device." = "Tutti i trasferimenti da e verso CrowdNode da questo dispositivo verranno eseguiti con l'indirizzo Dash sottostante da questo dispositivo.";
/* ZenLedger */
"Allow" = "Permetti";
/* No comment provided by engineer. */
"Allow camera access in Settings" = "Abilita l'accesso alla videocamera in Impostazioni->Privacy->Fotocamera";
/* ZenLedger */
"Allow sending all transactions from Dash Wallet to Zenledger?" = "Consentire l'invio di tutte le transazioni dal Portafoglio Dash a Zenledger?";
/* Coinbase/Buy Dash */
"Amount in Dash" = "Importo in Dash";
/* No comment provided by engineer. */
"Amount received" = "Quantità ricevuta";
/* No comment provided by engineer. */
"Amount Sent" = "Importo Inviato";
/* No comment provided by engineer. */
"An error occurred" = "Si è verificato un errore";
/* No comment provided by engineer. */
"An intuitive and familiar experience across all your devices" = "Un'esperienza intuitiva e familiare su tutti i tuoi dispositivi";
/* CTXSpend error */
"An unknown error occurred. Please try again later." = "Si è verificato un errore sconosciuto. Riprova più tardi.";
/* CrowdNode */
"and" = "e";
/* CoinJoin */
"Any funds that have been mixed will be combined with your un mixed funds" = "Eventuali fondi mixati verranno combinati con i fondi non mixati";
/* Usernames */
"Any username that has a number 2-9, is more than 20 characters or that has a hyphen will be automatically approved" = "Qualsiasi nome utente che contenga un numero compreso tra 2 e 9, che abbia più di 20 caratteri o che contenga un trattino verrà automaticamente approvato";
/* Coinbase/Payment Methods */
"Apple Pay" = "Apple Pay";
/* No comment provided by engineer. */
"Application %@ is requesting a payment to" = "<br>L'applicazione %@ richiede un pagamento";
/* No comment provided by engineer. */
"Application %@ is requesting an address so it can pay you. Would you like to authorize this?" = "L'applicazione %@ richiede un indirizzo cosi' che possa pagarti. Potresti autorizzarlo?";
/* No comment provided by engineer. */
"Application %@ would like to receive your Master Public Key. This can be used to keep track of your wallet, this can not be used to move your Dash." = "L'applicazione %@vorrebbe ricevere la tua Chiave Pubblica Principale. Può essere utilizzata per tracciare il tuo portafoglio, ma non può essere usata per spostare i tuoi Dash.";
/* No comment provided by engineer. */
"Apply" = "Applica";
/* Coinbase/Buy Dash/Cancel Order */
"Are you sure you want to cancel this order?" = "Sei sicuro di voler annullare questo ordine?";
/* Coinbase/Buy Dash/Cancel Order */
"Are you sure you want to cancel this transaction?" = "Sei sicuro di voler annullare questa transazione?";
/* CoinJoin */
"Are you sure you want to change the privacy level?" = "Sei sicuro di voler modificare il livello di privacy?";
/* CoinJoin */
"Are you sure you want to stop mixing?" = "Sei sicuro di voler interrompere il mixing?";
/* No comment provided by engineer. */
"Are you sure?" = "Sei sicuro??";
/* Voting */
"As a masternode owner you can vote to approve requested usernames before users will be able to create it.\nYou can block the creation of the usernames that you feel inappropriate." = "In qualità di proprietario di un masternode, puoi votare per approvare i nomi utente richiesti prima che gli utenti possano crearli.\nPuoi bloccare la creazione di nomi utente che ritieni inappropriati.";
/* CrowdNode */
"As most people do not have exactly 1000 Dash at hand, Crowdnode has made a service where, by pooling deposits from members, they can achieve the benefits of owning a Masternode." = "Poiché la maggior parte delle persone non ha esattamente 1000 Dash a portata di mano, CrowdNode ha creato un servizio in cui, mettendo in comune i depositi dei membri, è possibile ottenere i vantaggi di possedere un Masternode.";
/* DashSpend */
"at" = "a";
/* No comment provided by engineer. */
"ATM search works better with Location Services turned on." = "La ricerca di un ATM funziona meglio con i servizi di localizzazione attivati";
/* No comment provided by engineer. */
"ATMs" = "ATMs";
/* No comment provided by engineer. */
"Authentication is unvailable" = "L'autenticazione non è disponibile";
/* Location Service Status */
"Authorized" = "Autorizzato";
/* No comment provided by engineer. */
"Auto Logout" = "Auto Logout";
/* No comment provided by engineer. */
"Autohide Balance" = "Mascheramento Automatico Bilancio ";
/* Translate it as short as possible! (24 symbols max) */
"Backup" = "Backup";
/* No comment provided by engineer. */
"Backup Passphrase" = "Passphrase di backup";
/* A noun. Used as a title. */
"Backup Wallet" = "Portafoglio di backup";
/* No comment provided by engineer. */
"Backup your passphrase to create a CrowdNode account" = "Esegui il backup della tua passphrase per creare un account CrowdNode";
/* Back up wallet */
"Backup your recovery phrase" = "Eseguire il backup della frase di recupero";
/* No comment provided by engineer. */
"Bad recovery phrase" = "Frase di recupero errata";
/* Send Screen: to address */
"Balance" = "Saldo";
/* CrowdNode */
"Balance On CrowdNode" = "Saldo su CrowdNode";
/* CrowdNode */
"Balance: " = "Bilancio:";
/* Coinbase/Payment Methods */
"Bank Account" = "Conto bancario";
/* Coinbase/Payment Methods */
"Bank Wire" = "Bonifico bancario";
/* No comment provided by engineer. */
"Barcode placeholder" = "Codice a barre sostitutivo";
/* CrowdNode */
"Become part of a Dash Masternode with CrowdNode" = "Entra a far parte di un Dash Masternode con CrowdNode";
/* TimeSkew */
"behind" = "indietro";
/* Validation rule: Between 3 and 24 characters */
"Between %ld and %ld characters" = "Tra %1$ld e %2$ld caratteri\n ";
/* Usernames */
"Between 3 and 23 characters" = "Tra 3 e 23 caratteri";
/* Coinbase Entry Point */
"Between Dash Wallet and Coinbase" = "Tra il Portafoglio Dash e Coinbase";
/* Dash Service Overview */
"Between Dash Wallet and your Coinbase account" = "Tra il Portafoglio Dash e il tuo account Coinbase";
/* No comment provided by engineer. */
"Biometrics Access Required" = "Accesso biometrico richiesto";
/* Voting */
"Block" = "Blocchi";
/* No comment provided by engineer. */
"block #%d of %d" = "blocco #%1$d di %2$d";
/* No comment provided by engineer. */
"Block #%d of %d" = "Blocco #%1$d di %2$d";
/* Voting */
"Blocked '%@' username" = "Nome utente '%@' bloccato";
/* Buy
buy */
"Buy" = "Compra";
/* Translate it as short as possible! (24 symbols max) */
"Buy & Sell" = "Compra & Vendi";
/* No comment provided by engineer. */
"Buy & Sell Dash" = "Compra & Vendi Dash";
/* Buy a Gift Card */
"Buy a Gift Card" = "Acquista una carta regalo ";
/* Dash Service Overview */
"Buy and convert Dash with another crypto" = "Acquista o scambia Dash con un'altra criptovaluta";
/* No comment provided by engineer. */
"Buy credits" = "Acquista crediti";
/* No comment provided by engineer. */
"Buy Dash" = "Compra Dash";
/* Dash Service Overview */
"Buy Dash with fiat" = "Acquista Dash con denaro fiat";
/* Dash Portal */
"Buy Dash · No account needed" = "Acquista Dash · Nessun account necessario";
/* DashSpend */
"Buy gift card" = "Acquista una carta regalo";
/* No comment provided by engineer. */
"Buy gift cards with your Dash" = "Acquista carte regalo con Dash";
/* No comment provided by engineer. */
"Buy gift cards with your Dash for the exact amount of your purchase." = "Acquista carte regalo con i tuoi Dash per l'importo esatto del tuo acquisto.";
/* Buy/Sell */
"Buy/Sell" = "Compra/Vendi";
/* Voting */
"By tapping the \"Vote for All\" button, you will automatically vote for all of the filtered usernames (%ld) that were submitted first" = "Toccando il pulsante \"Vota per tutti\", voterai automaticamente per tutti i nomi utente filtrati (%ld) che sono stati inviati per primi";
/* No comment provided by engineer. */
"By wiping this device you will no longer have access to funds on this device. This should only be done if you no longer have access to your passphrase and have also forgotten your PIN code." = "Cancellando questo dispositivo non avrai più accesso ai fondi su questo dispositivo. Questo dovrebbe essere fatto solo se non hai più accesso alla tua \"passphrase\" e hai anche dimenticato il tuo codice PIN.";
/* No comment provided by engineer. */
"Cancel" = "Cancella";
/* Voting */
"Cancel Approval" = "Annulla l'approvazione";
/* No comment provided by engineer. */
"Cancel Request" = "Richiesta cancellata";
/* Coinbase/Buy Dash/Cancel Order */
"Canceling this transaction does not cancel the trade order. You will receive DASH on your Coinbase account shortly." = "L'annullamento di questa transazione non annulla l'ordine commerciale. A breve riceverai DASH sul tuo account Coinbase.";
/* DashSpend */
"Card number" = "Numero della carta";
/* No comment provided by engineer. */
"Card PIN" = "PIN della carta";
/* A verb. Action button title for an alert 'Change payment amount?' */
"Change" = "Cambiare";
/* No comment provided by engineer. */
"Change payment amount?" = "Cambiare l'ammontare del pagamento?";
/* No comment provided by engineer. */
"Change PIN" = "Modificare PIN";
/* CoinJoin */
"Change to Advanced" = "Passa ad Avanzate";
/* CoinJoin */
"Change to Intermediate" = "Passare ad Intermedio";
/* No comment provided by engineer. */
"Check current balance" = "Controlla il saldo attuale";
/* TimeSkew */
"Check date & time settings" = "Controlla le impostazioni di data e ora";
/* No comment provided by engineer. */
"Check your connection" = "Controlla la connessione";
/* DashSpend */
"Check your email and enter the verification code." = "Controlla la tua email e inserisci il codice di verifica";
/* Choose your Dash username */
"Choose your" = "Scegli il tuo";
/* No comment provided by engineer. */
"Choose Your Username" = "Scegli il tuo Username";
/* No comment provided by engineer. */
"Claimed" = "Rivendicato";
/* No comment provided by engineer. */
"Clear" = "Rimuovere";
/* No comment provided by engineer. */
"Clear trusted node?" = "Rimuovere il nodo affidabile?";
/* No comment provided by engineer. */
"Close" = "Chiudi";
/* CrowdNode */
"Close and notify when it’s done" = "Chiudi e avvisa quando al termine";
/* No comment provided by engineer. */
"Close App" = "Chiudi app";
/* Dash Portal */
"Coinbase" = "Coinbase";
/* Coinbase Two Factor Auth */
"Coinbase 2FA code" = "Codice Coinbase 2FA";
/* Coinbase/Buy Dash */
"Coinbase Fee" = "Commissione Coinbase";
/* CoinJoin */
"CoinJoin" = "CoinJoin";
/* CoinJoin */
"CoinJoin Collateral Inputs" = "Collaterale Input CoinJoin";
/* CoinJoin */
"CoinJoin Create Denominations" = "CoinJoin Crea denominazioni";
/* CoinJoin */
"CoinJoin Mixing" = "Miscelazione CoinJoin";
/* CoinJoin */
"CoinJoin Mixing Fee" = "Commissione di miscelazione CoinJoin";
/* No comment provided by engineer. */
"Confirm" = "Conferma";
/* Coinbase/Buy Dash/Confirm Order */
"Confirm (%d%@)" = "Confermare (%1$d%2$@)";
/* No comment provided by engineer. */
"Confirm PIN" = "Conferma PIN";
/* No comment provided by engineer. */
"Confirming" = "In Conferma";
/* ZenLedger */
"Connect your crypto wallets to the ZenLedger platform. Learn more and get started with your Dash Wallet transactions." = "Collega i tuoi portafogli crypto alla piattaforma ZenLedger. Scopri di più e inizia con le transazioni del tuo Portafoglio Dash.";
/* Buy Sell Portal
Coinbase Entry Point */
"Connected" = "Connesso";
/* CrowdNode */
"Connected Dash address" = "Indirizzo Dash connesso";
/* No comment provided by engineer. */
"Connected peers: %d" = "Peers connessi: %d";
/* No comment provided by engineer. */
"Connecting to payment server" = "Connessione al server di pagamento";
/* Coinbase
Coinbase Two Factor Auth */
"Contact Coinbase Support" = "Contatta il supporto di Coinbase";
/* DashSpend */
"Contact CTX Support" = "Contatta il supporto CTX";
/* No comment provided by engineer. */
"Contact Request Pending" = "Richiesta di contatto in sospeso";
/* No comment provided by engineer. */
"Contact Requests" = "Richieste di contatto";
/* No comment provided by engineer. */
"Contact Support" = "Contatta il Supporto";
/* No comment provided by engineer. */
"Contacts" = "Contatti";
/* No comment provided by engineer. */
"Continue" = "Continua";
/* No comment provided by engineer. */
"Continue Anyway" = "Continua comunque";
/* Coinbase Entry Point */
"Convert Crypto" = "Converti criptovalute";
/* No comment provided by engineer. */
"Copied" = "Copiato";
/* No comment provided by engineer. */
"Copy" = "Copia";
/* No comment provided by engineer. */
"Copy Invitation Link" = "Copia il Link dell'Invito";
/* No comment provided by engineer. */
"Copy Logs" = "Copia i Logs";
/* No comment provided by engineer. */
"Copy text" = "Copia il testo";
/* No comment provided by engineer. */
"Copyright © 2023 Dash Core" = "Copyright © 2023 Dash Core";
/* No comment provided by engineer. */
"Could not automatically recover missing or incorrect words" = "Non è stato possibile recuperare automaticamente le parole mancanti od errate.";
/* No comment provided by engineer. */
"Could not connect to the Dash network, please check that you are connected to the internet." = "Impossibile connettersi alla rete Dash, controlla di essere connesso a Internet.";
/* No comment provided by engineer. */
"Could not find exchange rate." = "Impossibile trovare il tasso di cambio.";
/* No comment provided by engineer. */
"Couldn't make payment" = "Impossibile effettuare il pagamento";
/* No comment provided by engineer. */
"Couldn't sweep balance" = "Impossibile trasferire il saldo";
/* No comment provided by engineer. */
"Couldn't transmit payment to Dash network" = "Impossibile trasferire il pagamento alla rete Dash";
/* No comment provided by engineer. */
"Create a new Invitation" = "Crea un nuovo Invito";
/* No comment provided by engineer. */
"Create a new invitation" = "Crea un nuovo Invito";
/* No comment provided by engineer. */
"Create a New Wallet" = "Crea un nuovo portafoglio";
/* Usernames */
"Create a username" = "Crea un nome utente";
/* CrowdNode */
"Create Account" = "Crea un Account";
/* Create DashSpend account */
"Create account" = "Crea un account";
/* DashSpend account title */
"Create an account or log into an existing one" = "Crea un account o accedi ad uno esistente";
/* CrowdNode */
"Create an online CrowdNode account" = "Crea un account CrowdNode online";
/* No comment provided by engineer. */
"Create invitation" = "Crea invito";
/* Create new account */
"Create new account" = "Crea un nuovo account";
/* CrowdNode
CrowdNode Portal */
"Create Online Account" = "Crea un account online";
/* Usernames */
"Create your username" = "Crea il tuo nome utente";
/* No comment provided by engineer. */
"Create your Username, find friends & family with their usernames and add them to your contacts" = "Crea il tuo Username, trova amici e familiari con i loro Usernames e aggiungili ai tuoi contatti";
/* Coinbase/Payment Methods */
"Credit Card" = "Carta di Credito";
/* CrowdNode */
"CrowdNode benefits" = "Vantaggi di CrowNode";
/* CrowdNode Portal */
"CrowdNode Support" = "Supporto CrowdNode";
/* CrowdNode */
"CrowdNode uses this address as your account ID. You will lose access to your funds within this wallet and your CrowdNode account if you lose the passphrase associated to this address." = "CrowdNode utilizza questo indirizzo come ID account. Perderai l'accesso ai tuoi fondi all'interno di questo portafoglio e al tuo account CrowdNode se perdi la passphrase associata a questo indirizzo.";
/* CrowdNode */
"CrowdNode withdrawal limits" = "Limiti di prelievo CrowdNode";
/* No comment provided by engineer. */
"CrowdNode · Account" = "CrowdNode · Account";
/* CrowdNode Portal */
"CrowdNode ➝ DashWallet" = "CrowdNode ➝ DashWallet";
/* No comment provided by engineer. */
"CSV Export" = "Esporta CSV";
/* Explore Dash/Filters */
"CTX gift card" = "Carta regalo CTX";
/* Explore Dash: Filters */
"CTX gift cards" = "Carte regalo CTX";
/* Crowdnode */
"Current APY = %@" = "APY Corrente =%@";
/* CrowdNode */
"Current APY is %@" = "L'APY attuale è %@";
/* Explore Dash: Filters */
"Current location" = "Posizione attuale";
/* Explore Dash/Merchants/Filters */
"Current Location Settings" = "Impostazioni di posizione corrente";
/* No comment provided by engineer. */
"Current user: %@" = "Utente corrente: %@";
/* Explore Dash: Filters */
"Dash" = "Dash";
/* No comment provided by engineer. */
"Dash address" = "Indirizzo Dash";
/* CrowdNode */
"Dash address designated for your CrowdNode account in the Dash Wallet on this device " = "Indirizzo Dash designato per il tuo account CrowdNode nel Portafoglio Dash su questo dispositivo";
/* No comment provided by engineer. */
"Dash balance" = "Bilancio Dash";
/* Coinbase Entry Point */
"Dash balance on Coinbase" = "Saldo Dash su Coinbase";
/* Uphold Entry Point */
"Dash balance on Uphold" = "Bilancia del saldo su Uphold";
/* No comment provided by engineer. */
"Dash payments can't be less than %@" = "I pagamneti in Dash non possono essere inferiori a %@";
/* No comment provided by engineer. */
"Dash username" = "Nome utente Dash";
/* DashSpend confirmation */
"Dash Wallet" = "Portafoglio Dash ";
/* Buy Dash */
"Dash Wallet on this device" = "Portafoglio Dash su questo dispositivo";
/* No comment provided by engineer. */
"DashPay Invitation" = "Invito DashPay";
/* No comment provided by engineer. */
"DashPay Upgrade Fee" = "Commissione di aggiornamento DashPay";
/* CrowdNode Portal */
"DashWallet ➝ CrowdNode" = "DashWallet ➝ CrowdNode";
/* No comment provided by engineer. */
"Date" = "Data";
/* Voting */
"Date: New to old" = "Data: dal Nuovo al vecchio";
/* Voting */
"Date: Old to new" = "Data: dal Vecchio al nuovo";
/* Voting */
"Default filter setting" = "Impostazione del filtro predefinita";
/* Location Service Status */
"Denied" = "Nega";
/* CrowdNode
CrowdNode Portal */
"Deposit" = "Depositare";
/* CrowdNode Portal */
"Deposit %@ to start earning" = "Deposita %@ per iniziare a guadagnare";
/* CrowdNode */
"Deposit at least %@ Dash on your Dash Wallet to complete a withdrawal" = "Deposita almeno %@ Vai sul tuo portafoglio Dash per completare un prelievo";
/* CrowdNode Portal */
"Deposit at least %@ to start earning" = "Deposita almeno %@ per iniziare a guadagnare";
/* CrowdNode */
"Deposit sent" = "Deposito inviato";
/* No comment provided by engineer. */
"DEVICE SECURITY COMPROMISED\nAny 'jailbreak' app can access any other app's keychain data (and steal your Dash)." = "SICUREZZA DEL DISPOSITIVO COMPROMESSA\nQualunque app \"jailbreak\" può accedere ai dati di altre app (e rubare i tuoi Dash).";
/* No comment provided by engineer. */
"DEVICE SECURITY COMPROMISED\nAny 'jailbreak' app can access any other app's keychain data (and steal your Dash). Wipe this wallet immediately and restore on a secure device." = "SICUREZZA DEL DISPOSITIVO COMPROMESSA\nQualunque app \"jailbreak\" può accedere ai dati di altre app (e rubare i tuoi Dash). Elimina subito questo portafoglio e ripristina su un dispositivo sicuro.";
/* Coinbase Entry Point */
"Disconnect Coinbase Account" = "Disconnetti l'account Coinbase";
/* Uphold Entry Point */
"Disconnect Uphold Account" = "Disconnettere l'account Uphold";
/* Buy Sell Portal
Coinbase Entry Point */
"Disconnected" = "Disconnesso";
/* DashSpend confirmation */
"Discount" = "Sconto";
/* No comment provided by engineer. */
"Dismiss" = "Chiudi";
/* No comment provided by engineer. */
"Display Name" = "Nome da visualizzare";
/* Explore Dash: Filters */
"Distance" = "Distanza";
/* No comment provided by engineer. */
"Do not take a screenshot" = "Non scattare screenshot";
/* Usernames */
"Do you really want to cancel the username request?" = "Vuoi davvero annullare la richiesta del nome utente?";
/* No comment provided by engineer. */
"Done" = "Fatto";
/* ex., Download peer: 127.0.0.1:9999 */
"Download peer: %@" = "Scarica peer: %@";
/* CrowdNode */
"Due to CrowdNode’s terms of service users can withdraw no more than:" = "A causa dei termini di servizio di CrowdNode, gli utenti possono recedere non più di:";
/* Geoblock */
"Due to regulatory constraints, we need to verify that you are not in the UK. We only check your location when you enter the Coinbase features." = "A causa di vincoli normativi, dobbiamo verificare che tu non sia nel Regno Unito. Controlliamo la tua posizione solo quando accedi alle funzionalità di Coinbase.";
/* Geoblock */
"Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "A causa di vincoli normativi, non puoi utilizzare le funzionalità di Coinbase mentre ti trovi nel Regno Unito";
/* Usernames */
"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "A causa del processo di votazione, Dash Network ha deciso di assegnare il nome utente '%@' a qualcun altro. Riprova richiedendo un altro nome utente.";
/* CrowdNode */
"e.g. johndoe@mail.com" = "esempio: johndoe@mail.com";
/* No comment provided by engineer. */
"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Ogni invito sarà finanziato con questo importo in modo che il destinatario possa creare rapidamente il proprio Username Nella Dash Network";
/* (List of notifications happened) Earlier (some time ago) */
"Earlier" = "Prima";
/* No comment provided by engineer. */
"Easily stake Dash and earn passive income with a few simple clicks." = "Vincola facilmente Dash e guadagna entrate passive con pochi semplici clic.";
/* No comment provided by engineer. */
"Edit Profile" = "Modifica Profilo";
/* No comment provided by engineer. */
"Edit profile" = "Modifica Profilo";
/* Invitation tag placeholder */
"eg: Dad" = "es: Papà";
/* Input username textfield placeholder */
"eg: johndoe" = "es: johndoe";
/* CrowdNode */
"Email" = "E-mail";
/* No comment provided by engineer. */
"Enable Face ID" = "Abilita Face ID";
/* No comment provided by engineer. */
"Enable Receive Notifications" = "Abilita la ricezione di Notifiche";
/* No comment provided by engineer. */
"Enable Touch ID" = "Abilita Touch ID";
/* No comment provided by engineer. */
"Enter" = "Immetti";
/* Coinbase Two Factor Auth */
"Enter Coinbase 2FA code" = "Inserisci il codice Coinbase 2FA";
/* No comment provided by engineer. */
"Enter PIN" = "Immetti il PIN";
/* No comment provided by engineer. */
"Enter Recovery Phrase" = "Inserisci la Frase di Recupero";
/* Enter verification code */
"Enter verification code" = "Inserisci il codice di verifica";
/* No comment provided by engineer. */
"Enter your 2FA code below" = "Inserisci il tuo codice 2FA di seguito";
/* No comment provided by engineer. */
"Enter your Gravatar Email ID" = "Inserisci il tuo ID Email Gravatar";
/* Voting */
"Enter your voting key" = "Inserisci la tua chiave di voto";
/* No comment provided by engineer. */
"Error" = "Errore";
/* CTXSpend error */
"Error processing server response. Please try again later." = "Errore durante l'elaborazione della risposta del server. Riprova più tardi.";
/* No comment provided by engineer. */
"Error updating your profile" = "Errore durante l'aggiornamento del tuo profilo ";
/* CoinJoin */
"Error ·" = "Errore ·";
/* No comment provided by engineer. */
"Exit" = "Esci";
/* No comment provided by engineer. */
"Expense" = "Spese";
/* No comment provided by engineer. */
"Explore" = "Esplora";
/* No comment provided by engineer. */
"Explore Dash" = "Esplora Dash";
/* ZenLedger */
"Export all transactions" = "Esporta tutte le transazioni";
/* No comment provided by engineer. */
"Export CSV" = "Exporta CSV";
/* No comment provided by engineer. */
"Extended Public Keys" = "Chiavi pubbliche estese";
/* No comment provided by engineer. */
"Face ID limit" = "Limite \"Face ID\"";
/* No comment provided by engineer. */
"Failed to load barcode" = "Impossibile caricare il codice a barre";
/* Coinbase */
"Failed to start auth session" = "Impossibile avviare la sessione di autenticazione";
/* Buy Sell Portal */
"Failed to sync" = "Impossibile sincronizzare";
/* Explore Dash */
"Failed to sync on" = "Impossibile eseguire la sincronizzazione";
/* No comment provided by engineer. */
"Failed wallet update" = "\nAggiornamento del portafoglio fallito";
/* No comment provided by engineer. */
"Fee" = "Commissione";
/* No comment provided by engineer. */
"Fee is greater than balance" = "La commissione è maggiore del saldo";
/* No comment provided by engineer. */
"Fee will be deducted from requested amount." = "La commissione verrà detratta dall'importo richiesto.";
/* Coinbase/Fee info */
"Fees in crypto purchases" = "Commissioni negli acquisti di criptovalute";
/* No comment provided by engineer. */
"Fetching Image" = "Recupero dell'immagine";
/* Explore Dash */
"Fetching Info" = "Informazioni sul recupero";
/* Balance */
"Fetching rates…" = "Ricerca tariffe…";
/* Coinbase/Payment Methods */
"Fiat Account" = "Conto Fiat";
/* No comment provided by engineer. */
"Filter" = "Filtro";
/* No comment provided by engineer. */
"Filter transactions" = "Filtra le transazioni";
/* No comment provided by engineer. */
"Filtered by" = "Filtrato per";
/* Explore Dash/Merchants/Filters */
"Filtered by:" = "Filtra per:";
/* Explore Dash */
"Filters" = "Filtri";
/* No comment provided by engineer. */
"Find a user on the Dash Network" = "Trova un utente su Dash Network";
/* No comment provided by engineer. */
"Find ATMs where you can buy or sell Dash." = "Trova gli ATM dove puoi acquistare o vendere Dash.";
/* No comment provided by engineer. */
"Find merchants that accept Dash payments." = "Trova i commercianti che accettano Dash come pagamento.";
/* No comment provided by engineer. */
"Find merchants that accept Dash, where to buy it and how to earn income with it." = "Trova i commercianti che accettano Dash, dove acquistarlo e come guadagnarci.";
/* CrowdNode */
"First deposit should be more than %@" = "Il primo deposito dovrebbe essere superiore a %@";
/* CrowdNode */
"First minimum deposit" = "Primo deposito minimo";
/* DashSpend */
"Fixed amounts" = "Importi fissi";
/* Explore Dash: Filters */
"Fixed denominated amounts" = "Importi denominati in maniera fissa";
/* Explore Dash: Filters */
"Flexible amounts" = "Importi flessibili";
/* DashSpend */
"Temporarily unavailable" = "Temporaneamente non disponibile";
/* Usernames */
"For some reason, the request for the username '%@' has failed." = "Per qualche motivo, la richiesta del nome utente '%@' non è andata a buon fine.";
/* Coinbase */
"For your security, you have been signed out." = "Per la tua sicurezza, sei stato disconnesso.";
/* No comment provided by engineer. */
"Forget about long crypto addresses, create the username, find friends and add them to your contacts" = "Dimentica i lunghi indirizzi crittografici, crea il nome utente, trova gli amici e aggiungili ai tuoi contatti";
/* No comment provided by engineer. */
"Forgot PIN?" = "Hai dimenticato il PIN?";
/* No comment provided by engineer. */
"Found missing word:\n%@" = "Parola mancante trovata:\n%@";
/* No comment provided by engineer. */
"Found missing words:\n%@" = "Trovate parole mancanti:\n%@";
/* No comment provided by engineer. */
"Found potential missing words:\n%@" = "Trovare potenziali parole mancanti:\n%@";
/* DashSpend confirmation */
"From" = "Da";
/* from CrowdNode */
"from CrowdNode" = "da CrowdNode";
/* from Dash Wallet */
"from Dash Wallet" = "dal Portafoglio Dash";
/* Uphold Entry Point */
"From Uphold to Dash Wallet" = "Da Uphold al Portafoglio Dash ";
/* Dash Service Overview */
"From Uphold to your Dash Wallet" = "Da Uphold al tuo portafoglio Dash";
/* Coinbase */