-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathLocalizable.strings
More file actions
3870 lines (2627 loc) · 260 KB
/
Copy pathLocalizable.strings
File metadata and controls
3870 lines (2627 loc) · 260 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 " = " Privacy Policy ";
/* CrowdNode */
" Terms of Use " = " Terms of Use ";
/* Dash DEX
Maya */
"%@ address" = "%@ address";
/* Dash DEX / dex_error_blacklisted */
"%@ can't be swapped at the moment." = "%@ can't be swapped at the moment.";
/* Dash DEX
Maya/SwapKit order preview */
"%@ fee" = "%@ fee";
/* No comment provided by engineer. */
"%@ has accepted your contact request" = "%@ has accepted your contact request";
/* Dash DEX */
"%@ has received your transaction and is processing the swap." = "%@ has received your transaction and is processing the swap.";
/* No comment provided by engineer. */
"%@ has sent you a contact request" = "%@ has sent you a contact request";
/* No comment provided by engineer. */
"%@ is not allowed to access Face ID. Allow Face ID access in Settings" = "%@ is not allowed to access Face ID. Allow Face ID access in Settings";
/* No comment provided by engineer. */
"%@ is not allowed to access the camera" = "%@ is not allowed to access the camera";
/* No comment provided by engineer. */
"%@ is not allowed to access Touch ID. Allow Touch ID access in Settings" = "%@ is not allowed to access Touch ID. Allow Touch ID access in Settings";
/* Dash DEX */
"%@ refund address" = "%@ refund address";
/* Credits */
"%@ ~ %lu contacts / %lu profile updates" = "%1$@ ~ %2$lu contacts / %3$lu profile updates";
/* #bc-ignore! */
"%d ATM(s) in %@" = "%1$d ATM(s) in %2$@";
/* #bc-ignore! */
"%d key(s)" = "%d key(s)";
/* #bc-ignore! */
"%d merchant(s) in %@" = "%1$d merchant(s) in %2$@";
/* #bc-ignore! */
"%d transaction(s)" = "%d transaction(s)";
/* Voting - multiple keys warning */
"%d votes will be cast as you have multiple voting keys stored in the wallet" = "%d votes will be cast as you have multiple voting keys stored in the wallet";
/* Voting */
"%ld duplicates" = "%ld duplicates";
/* Voting */
"%ld requests" = "%ld requests";
/* Dash DEX */
"%ld sec" = "%ld sec";
/* #bc-ignore! */
"%ld used" = "%ld used";
/* 10/20 Characters */
"%ld/%ld Characters" = "%1$ld/%2$ld Characters";
/* No comment provided by engineer. */
"(1/3) Processing Payment" = "(1/3) Processing Payment";
/* No comment provided by engineer. */
"(1/3) Unable to process payment" = "(1/3) Unable to process payment";
/* No comment provided by engineer. */
"(2/3) Creating Dash Identity" = "(2/3) Creating Dash Identity";
/* No comment provided by engineer. */
"(2/3) Unable to create Dash Identity" = "(2/3) Unable to create Dash Identity";
/* No comment provided by engineer. */
"(3/3) Can't register username" = "(3/3) Can't register username";
/* No comment provided by engineer. */
"(3/3) Registering Username" = "(3/3) Registering Username";
/* No comment provided by engineer. */
"1 hour" = "1 hour";
/* Explore Dash: Filters */
"1 mile" = "1 mile";
/* Shorten version of minute */
"1 min" = "1 min";
/* Explore Dash: Filters */
"2 km" = "2 km";
/* Explore Dash: Filters */
"20 miles" = "20 miles";
/* No comment provided by engineer. */
"24 hours" = "24 hours";
/* Explore Dash: Filters */
"32 km" = "32 km";
/* Explore Dash: Filters */
"5 miles" = "5 miles";
/* Shorten version of minutes */
"5 min" = "5 min";
/* Explore Dash: Filters */
"50 miles" = "50 miles";
/* 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" = "\"%@\" is not a recovery phrase word";
/* 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?" = "\"%@\" is not a recovery phrase word. Would you like to try to recover the correct word that should be in its place?";
/* No comment provided by engineer. */
"\ntry again in %@" = "\ntry again in %@";
/* No comment provided by engineer. */
"A device passcode is needed to safeguard your wallet. Go to settings and turn passcode on to continue." = "A device passcode is needed to safeguard your wallet. Go to settings and turn passcode on to continue.";
/* CrowdNode */
"A Masternode needs 1000 Dash as collateral and each Masternode is currently rewarded approximately %@ per year." = "A Masternode needs 1000 Dash as collateral and each Masternode is currently rewarded approximately %@ per year.";
/* DashSpend/Maya */
"A previous Dash conversion is still confirming. Please wait for it to confirm (about 2–5 minutes) before starting a new one." = "A previous Dash conversion is still confirming. Please wait for it to confirm (about 2–5 minutes) before starting a new one.";
/* No comment provided by engineer. */
"About" = "About";
/* No comment provided by engineer. */
"About me" = "About me";
/* No comment provided by engineer. */
"Accept" = "Accept";
/* Explore */
"Accept Dash directly" = "Accept Dash directly";
/* DashSpend */
"Accept terms and\nconditions" = "Accept terms and\nconditions";
/* CrowdNode */
"Accept Terms Of Use" = "Accept Terms Of Use";
/* CrowdNode */
"Accepting terms of use…" = "Accepting terms of use…";
/* CrowdNode */
"Account Recovery" = "Account Recovery";
/* No comment provided by engineer. */
"Activity" = "Activity";
/* Coinbase
Coinbase/Buy Dash */
"Add" = "Add";
/* Add <username> as your contact... */
"Add %@ as your contact to Pay Directly to Username and Retain Mutual Transaction History" = "Add %@ as your contact to Pay Directly to Username and Retain Mutual Transaction History";
/* No comment provided by engineer. */
"Add a New Contact" = "Add a New Contact";
/* No comment provided by engineer. */
"Add your friends & family" = "Add your friends & family";
/* No comment provided by engineer. */
"Add your Friends & Family" = "Add your Friends & Family";
/* Explore Dash */
"Address" = "Address";
/* Maya
SwapKit */
"Address validation unavailable — please check your connection" = "Address validation unavailable — please check your connection";
/* CoinJoin */
"Advanced" = "Advanced";
/* CoinJoin */
"Advanced privacy level requires a reliable internet connection" = "Advanced privacy level requires a reliable internet connection";
/* No comment provided by engineer. */
"Advanced Security" = "Advanced Security";
/* Coinbase */
"Advanced users who have a very high level of technical expertise can determine your transaction history" = "Advanced users who have a very high level of technical expertise can determine your transaction history";
/* Usernames */
"After the voting ends we will notify you about its results" = "After the voting ends we will notify you about its results";
/* No comment provided by engineer. */
"Agree" = "Agree";
/* TimeSkew */
"ahead" = "ahead";
/* All
all
Voting */
"All" = "All";
/* No comment provided by engineer. */
"All payments will be considered as an expense and all incoming transactions will be income.\nThe owner of this wallet is responsible for making any cost basis adjustments in their chosen tax reporting system." = "All payments will be considered as an expense and all incoming transactions will be income.\nThe owner of this wallet is responsible for making any cost basis adjustments in their chosen tax reporting system.";
/* Shortcut selection empty state */
"All shortcuts are already in use" = "All shortcuts are already in use";
/* CrowdNode */
"All transfers to and from CrowdNode from this device will be performed with the below Dash address from this device." = "All transfers to and from CrowdNode from this device will be performed with the below Dash address from this device.";
/* ZenLedger */
"Allow" = "Allow";
/* No comment provided by engineer. */
"Allow camera access in Settings" = "Allow camera access in Settings";
/* ZenLedger */
"Allow sending all transactions from Dash Wallet to Zenledger?" = "Allow sending all transactions from Dash Wallet to Zenledger?";
/* Coinbase/Buy Dash */
"Amount in Dash" = "Amount in Dash";
/* No comment provided by engineer. */
"Amount received" = "Amount received";
/* No comment provided by engineer. */
"Amount Sent" = "Amount Sent";
/* Maya
Swap */
"Amount too small to cover fees" = "Amount too small to cover fees";
/* No comment provided by engineer. */
"An error occurred" = "An error occurred";
/* No comment provided by engineer. */
"An intuitive and familiar experience across all your devices" = "An intuitive and familiar experience across all your devices";
/* DashSpend */
"An unknown error occurred. Please try again later." = "An unknown error occurred. Please try again later.";
/* CrowdNode */
"and" = "and";
/* CoinJoin */
"Any funds that have been mixed will be combined with your un mixed funds" = "Any funds that have been mixed will be combined with your un mixed funds";
/* Usernames */
"Any username that has a number 2-9, is more than 20 characters or that has a hyphen will be automatically approved" = "Any username that has a number 2-9, is more than 20 characters or that has a hyphen will be automatically approved";
/* AboutDash */
"App version" = "App version";
/* Coinbase/Payment Methods */
"Apple Pay" = "Apple Pay";
/* No comment provided by engineer. */
"Application %@ is requesting a payment to" = "Application %@ is requesting a payment to";
/* No comment provided by engineer. */
"Application %@ is requesting an address so it can pay you. Would you like to authorize this?" = "Application %@ is requesting an address so it can pay you. Would you like to authorize this?";
/* 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." = "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.";
/* No comment provided by engineer. */
"Apply" = "Apply";
/* Coinbase/Buy Dash/Cancel Order */
"Are you sure you want to cancel this order?" = "Are you sure you want to cancel this order?";
/* Coinbase/Buy Dash/Cancel Order */
"Are you sure you want to cancel this transaction?" = "Are you sure you want to cancel this transaction?";
/* CoinJoin */
"Are you sure you want to change the privacy level?" = "Are you sure you want to change the privacy level?";
/* CoinJoin */
"Are you sure you want to stop mixing?" = "Are you sure you want to stop mixing?";
/* No comment provided by engineer. */
"Are you sure?" = "Are you sure?";
/* 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." = "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.";
/* 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." = "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.";
/* DashSpend */
"As soon as your code is generated, it will be displayed here" = "As soon as your code is generated, it will be displayed here";
/* DashSpend */
"at" = "at";
/* Translate it as short as possible! (24 symbols max) */
"ATM" = "ATM";
/* No comment provided by engineer. */
"ATM search works better with Location Services turned on." = "ATM search works better with Location Services turned on.";
/* No comment provided by engineer. */
"ATMs" = "ATMs";
/* DashSpend/Maya */
"Authentication cancelled" = "Authentication cancelled";
/* No comment provided by engineer. */
"Authentication is unvailable" = "Authentication is unvailable";
/* Location Service Status */
"Authorized" = "Authorized";
/* No comment provided by engineer. */
"Auto Logout" = "Auto Logout";
/* No comment provided by engineer. */
"Autohide Balance" = "Autohide Balance";
/* Dash DEX */
"Back home" = "Back home";
/* No comment provided by engineer. */
"Back Up Now" = "Back Up Now";
/* No comment provided by engineer. */
"Back Up Your Wallet" = "Back Up Your Wallet";
/* Translate it as short as possible! (24 symbols max) */
"Backup" = "Backup";
/* No comment provided by engineer. */
"Backup Passphrase" = "Backup Passphrase";
/* A noun. Used as a title. */
"Backup Wallet" = "Backup Wallet";
/* No comment provided by engineer. */
"Backup your passphrase to create a CrowdNode account" = "Backup your passphrase to create a CrowdNode account";
/* Back up wallet */
"Backup your recovery phrase" = "Backup your recovery phrase";
/* No comment provided by engineer. */
"Bad recovery phrase" = "Bad recovery phrase";
/* Send Screen: to address */
"Balance" = "Balance";
/* CrowdNode */
"Balance On CrowdNode" = "Balance On CrowdNode";
/* CrowdNode */
"Balance: " = "Balance: ";
/* Coinbase/Payment Methods */
"Bank Account" = "Bank Account";
/* Coinbase/Payment Methods */
"Bank Wire" = "Bank Wire";
/* CrowdNode */
"Become part of a Dash Masternode with CrowdNode" = "Become part of a Dash Masternode with CrowdNode";
/* TimeSkew */
"behind" = "behind";
/* Validation rule: Between 3 and 24 characters */
"Between %ld and %ld characters" = "Between %1$ld and %2$ld characters";
/* Usernames */
"Between 3 and 23 characters" = "Between 3 and 23 characters";
/* Coinbase Entry Point */
"Between Dash Wallet and Coinbase" = "Between Dash Wallet and Coinbase";
/* Dash Service Overview */
"Between Dash Wallet and your Coinbase account" = "Between Dash Wallet and your Coinbase account";
/* No comment provided by engineer. */
"Biometrics Access Required" = "Biometrics Access Required";
/* Voting */
"Block" = "Block";
/* No comment provided by engineer. */
"Block #%d of %d" = "Block #%1$d of %2$d";
/* No comment provided by engineer. */
"block #%d of %d" = "block #%1$d of %2$d";
/* Voting */
"Blocked '%@' username" = "Blocked '%@' username";
/* Buy
buy */
"Buy" = "Buy";
/* Translate it as short as possible! (24 symbols max) */
"Buy & Sell" = "Buy & Sell";
/* Buy Sell Dash
Buy Sell Portal */
"Buy & Sell Dash" = "Buy & Sell Dash";
/* No comment provided by engineer. */
"Buy a Gift Card" = "Buy a Gift Card";
/* Dash Service Overview */
"Buy and convert Dash with another crypto" = "Buy and convert Dash with another crypto";
/* Credits */
"Buy credits" = "Buy credits";
/* Coinbase/Buy Dash
CrowdNode
Dash DEX Portal
Integration Entry Point */
"Buy Dash" = "Buy Dash";
/* Dash Service Overview */
"Buy Dash with fiat" = "Buy Dash with fiat";
/* Buy Sell Dash
Dash Portal */
"Buy Dash · No account needed" = "Buy Dash · No account needed";
/* Swap */
"Buy flow is not supported by this swap backend" = "Buy flow is not supported by this swap backend";
/* DashSpend */
"Buy gift card" = "Buy gift card";
/* Explore */
"Buy gift cards with your Dash" = "Buy gift cards with your Dash";
/* Explore */
"Buy gift cards with your Dash for the exact amount of your purchase." = "Buy gift cards with your Dash for the exact amount of your purchase.";
/* Buy/Sell */
"Buy/Sell" = "Buy/Sell";
/* Voting */
"By tapping the \"Vote for All\" button, you will automatically vote for all of the filtered usernames (%ld) that were submitted first" = "By tapping the \"Vote for All\" button, you will automatically vote for all of the filtered usernames (%ld) that were submitted first";
/* 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." = "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.";
/* No comment provided by engineer. */
"Camera is required to scan QR codes." = "Camera is required to scan QR codes.";
/* No comment provided by engineer. */
"Camera Unavailable" = "Camera Unavailable";
/* Coinbase
DashSpend
Leftover balance warning
Payment confirmation */
"Cancel" = "Cancel";
/* Voting */
"Cancel Approval" = "Cancel Approval";
/* Usernames */
"Cancel Request" = "Cancel Request";
/* Coinbase/Buy Dash/Cancel Order */
"Canceling this transaction does not cancel the trade order. You will receive DASH on your Coinbase account shortly." = "Canceling this transaction does not cancel the trade order. You will receive DASH on your Coinbase account shortly.";
/* DashSpend */
"Card number" = "Card number";
/* DashSpend */
"Card PIN" = "Card PIN";
/* DashSpend */
"Cashier instructions" = "Cashier instructions";
/* DashSpend */
"Challenge" = "Challenge";
/* A verb. Action button title for an alert 'Change payment amount?' */
"Change" = "Change";
/* No comment provided by engineer. */
"Change payment amount?" = "Change payment amount?";
/* No comment provided by engineer. */
"Change PIN" = "Change PIN";
/* CoinJoin */
"Change to Advanced" = "Change to Advanced";
/* CoinJoin */
"Change to Intermediate" = "Change to Intermediate";
/* TimeSkew */
"Check date & time settings" = "Check date & time settings";
/* No comment provided by engineer. */
"Check your connection" = "Check your connection";
/* DashSpend */
"Check your email and enter the verification code." = "Check your email and enter the verification code.";
/* Dash DEX */
"Checking amount…" = "Checking amount…";
/* Choose your Dash username */
"Choose your" = "Choose your";
/* No comment provided by engineer. */
"Choose Your Username" = "Choose Your Username";
/* No comment provided by engineer. */
"Claimed" = "Claimed";
/* No comment provided by engineer. */
"Clear" = "Clear";
/* No comment provided by engineer. */
"Clear trusted node?" = "Clear trusted node?";
/* Dash DEX
Maya */
"Clipboard" = "Clipboard";
/* Accessibility
Action Button
CrowdNode
Dash DEX
Maya
ZenLedger */
"Close" = "Close";
/* Dash DEX */
"Close and notify me" = "Close and notify me";
/* CrowdNode */
"Close and notify when it’s done" = "Close and notify when it’s done";
/* No comment provided by engineer. */
"Close App" = "Close App";
/* Buy Sell Dash
Dash Portal
Translate it as short as possible! (24 symbols max) */
"Coinbase" = "Coinbase";
/* Coinbase Two Factor Auth */
"Coinbase 2FA code" = "Coinbase 2FA code";
/* Coinbase/Buy Dash */
"Coinbase Fee" = "Coinbase Fee";
/* CoinJoin */
"CoinJoin" = "CoinJoin";
/* CoinJoin */
"CoinJoin Collateral Inputs" = "CoinJoin Collateral Inputs";
/* CoinJoin */
"CoinJoin Create Denominations" = "CoinJoin Create Denominations";
/* CoinJoin */
"CoinJoin Mixing" = "CoinJoin Mixing";
/* CoinJoin */
"CoinJoin Mixing Fee" = "CoinJoin Mixing Fee";
/* Coinbase
Coinbase/Buy Dash/Confirm Order
Dash DEX
DashSpend
Payment confirmation */
"Confirm" = "Confirm";
/* Coinbase/Buy Dash/Confirm Order */
"Confirm (%d%@)" = "Confirm (%1$d%2$@)";
/* Maya */
"Confirm (%lds)" = "Confirm (%lds)";
/* No comment provided by engineer. */
"Confirm PIN" = "Confirm PIN";
/* No comment provided by engineer. */
"Confirming" = "Confirming";
/* ZenLedger */
"Connect your crypto wallets to the ZenLedger platform. Learn more and get started with your Dash Wallet transactions." = "Connect your crypto wallets to the ZenLedger platform. Learn more and get started with your Dash Wallet transactions.";
/* Buy Sell Portal */
"Connected" = "Connected";
/* CrowdNode */
"Connected Dash address" = "Connected Dash address";
/* No comment provided by engineer. */
"Connected peers: %d" = "Connected peers: %d";
/* No comment provided by engineer. */
"Connecting to payment server" = "Connecting to payment server";
/* DashSpend */
"Connection Error" = "Connection Error";
/* DashSpend */
"Contact %@ Support" = "Contact %@ Support";
/* Coinbase
Coinbase Two Factor Auth */
"Contact Coinbase Support" = "Contact Coinbase Support";
/* Dash DEX
Maya */
"Contact Maya Support" = "Contact Maya Support";
/* No comment provided by engineer. */
"Contact Request Pending" = "Contact Request Pending";
/* No comment provided by engineer. */
"Contact Requests" = "Contact Requests";
/* No comment provided by engineer. */
"Contact Support" = "Contact Support";
/* AboutDash */
"Contact support" = "Contact support";
/* No comment provided by engineer. */
"Contacts" = "Contacts";
/* Buy Dash
Continue
DashSpend
Leftover balance warning */
"Continue" = "Continue";
/* No comment provided by engineer. */
"Continue Anyway" = "Continue Anyway";
/* Dash DEX
Maya */
"Conversion failed" = "Conversion failed";
/* Dash DEX
Maya */
"Conversion in progress" = "Conversion in progress";
/* Dash Dex */
"Convert" = "Convert";
/* Coinbase
Integration Entry Point */
"Convert Crypto" = "Convert Crypto";
/* Maya */
"Convert Dash" = "Convert Dash";
/* Dash DEX
Maya Portal */
"Convert Dash from Dash Wallet to any crypto that is supported on Maya and send it to any wallet" = "Convert Dash from Dash Wallet to any crypto that is supported on Maya and send it to any wallet";
/* Dash DEX / tx history row title */
"Converted · %@" = "Converted · %@";
/* Dash DEX */
"Copied" = "Copied";
/* No comment provided by engineer. */
"Copy" = "Copy";
/* No comment provided by engineer. */
"Copy Invitation Link" = "Copy Invitation Link";
/* No comment provided by engineer. */
"Copy Logs" = "Copy Logs";
/* No comment provided by engineer. */
"Copy text" = "Copy text";
/* No comment provided by engineer. */
"Copyright © 2023 Dash Core" = "Copyright © 2023 Dash Core";
/* AboutDash */
"Copyright © 2026 Dash Core Group" = "Copyright © 2026 Dash Core Group";
/* No comment provided by engineer. */
"Could not automatically recover missing or incorrect words" = "Could not automatically recover missing or incorrect words";
/* No comment provided by engineer. */
"Could not connect to the Dash network, please check that you are connected to the internet." = "Could not connect to the Dash network, please check that you are connected to the internet.";
/* No comment provided by engineer. */
"Could not find exchange rate." = "Could not find exchange rate.";
/* SwapKit */
"Could not load Buy Dash options — please check your connection and try again" = "Could not load Buy Dash options — please check your connection and try again";
/* Shown when the selected inputs were already consumed by a pending transaction. */
"Couldn't make payment" = "Couldn't make payment";
/* No comment provided by engineer. */
"Couldn't sweep balance" = "Couldn't sweep balance";
/* No comment provided by engineer. */
"Couldn't transmit payment to Dash network" = "Couldn't transmit payment to Dash network";
/* No comment provided by engineer. */
"Create a new Invitation" = "Create a new Invitation";
/* No comment provided by engineer. */
"Create a new invitation" = "Create a new invitation";
/* No comment provided by engineer. */
"Create a New Wallet" = "Create a New Wallet";
/* No comment provided by engineer. */
"Create a username" = "Create a username";
/* Create account
DashSpend */
"Create account" = "Create account";
/* CrowdNode */
"Create Account" = "Create Account";
/* DashSpend account title */
"Create an account or log into an existing one" = "Create an account or log into an existing one";
/* CrowdNode */
"Create an online CrowdNode account" = "Create an online CrowdNode account";
/* No comment provided by engineer. */
"Create invitation" = "Create invitation";
/* No comment provided by engineer. */
"Create new account" = "Create new account";
/* CrowdNode
CrowdNode Portal */
"Create Online Account" = "Create Online Account";
/* Usernames */
"Create your username" = "Create your username";
/* Description label text */
"Create your Username, find friends & family with their usernames and add them to your contacts" = "Create your Username, find friends & family with their usernames and add them to your contacts";
/* Coinbase/Payment Methods */
"Credit Card" = "Credit Card";
/* Translate it as short as possible! (24 symbols max) */
"CrowdNode" = "CrowdNode";
/* CrowdNode */
"CrowdNode benefits" = "CrowdNode benefits";
/* CrowdNode */
"CrowdNode sign-up and deposits are temporarily unavailable." = "CrowdNode sign-up and deposits are temporarily unavailable.";
/* CrowdNode Portal */
"CrowdNode Support" = "CrowdNode Support";
/* 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 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 */
"CrowdNode withdrawal limits" = "CrowdNode withdrawal limits";
/* Crowdnode
CrowdNode */
"CrowdNode · Account" = "CrowdNode · Account";
/* CrowdNode Portal */
"CrowdNode ➝ DashWallet" = "CrowdNode ➝ DashWallet";
/* No comment provided by engineer. */
"CSV Export" = "CSV Export";
/* Explore Dash/Filters */
"CTX gift card" = "CTX gift card";
/* Explore Dash: Filters */
"CTX gift cards" = "CTX gift cards";
/* CrowdNode */
"Current APY = %@" = "Current APY = %@";
/* CrowdNode */
"Current APY is %@" = "Current APY is %@";
/* Explore Dash: Filters */
"Current location" = "Current location";
/* Explore Dash/Merchants/Filters */
"Current Location Settings" = "Current Location Settings";
/* No comment provided by engineer. */
"Current user: %@" = "Current user: %@";
/* Shortcut banner */
"Customize shortcut bar" = "Customize shortcut bar";
/* Dash DEX
Explore Dash: Filters
Maya */
"Dash" = "Dash";
/* CrowdNode */
"Dash address" = "Dash address";
/* CrowdNode */
"Dash address designated for your CrowdNode account in the Dash Wallet on this device " = "Dash address designated for your CrowdNode account in the Dash Wallet on this device ";
/* No comment provided by engineer. */
"Dash balance" = "Dash balance";
/* Coinbase Entry Point */
"Dash balance on Coinbase" = "Dash balance on Coinbase";
/* Uphold Entry Point */
"Dash balance on Uphold" = "Dash balance on Uphold";
/* Dash DEX Portal
Translate it as short as possible! (24 symbols max) */
"Dash DEX" = "Dash DEX";
/* Coinbase */
"Dash payments can't be less than %@" = "Dash payments can't be less than %@";
/* No comment provided by engineer. */
"Dash username" = "Dash username";
/* Dash DEX
DashSpend
Maya */
"Dash Wallet" = "Dash Wallet";
/* AboutDash */
"Dash Wallet is an open sourced app forked from Bitcoin Wallet" = "Dash Wallet is an open sourced app forked from Bitcoin Wallet";
/* Buy Dash */
"Dash Wallet on this device" = "Dash Wallet on this device";
/* No comment provided by engineer. */
"DashPay Invitation" = "DashPay Invitation";
/* No comment provided by engineer. */
"DashPay Upgrade Fee" = "DashPay Upgrade Fee";
/* AboutDash */
"DashSync" = "DashSync";
/* CrowdNode Portal */
"DashWallet ➝ CrowdNode" = "DashWallet ➝ CrowdNode";
/* No comment provided by engineer. */
"Date" = "Date";
/* Voting */
"Date: New to old" = "Date: New to old";
/* Voting */
"Date: Old to new" = "Date: Old to new";
/* DashSpend */
"Decrease quantity" = "Decrease quantity";
/* Voting */
"Default filter setting" = "Default filter setting";
/* Explore Dash */
"Default filters applied" = "Default filters applied";
/* Location Service Status */
"Denied" = "Denied";
/* CrowdNode
CrowdNode Portal */
"Deposit" = "Deposit";
/* CrowdNode Portal */
"Deposit %@ to start earning" = "Deposit %@ to start earning";
/* CrowdNode */
"Deposit at least %@ Dash on your Dash Wallet to complete a withdrawal" = "Deposit at least %@ Dash on your Dash Wallet to complete a withdrawal";
/* CrowdNode Portal */
"Deposit at least %@ to start earning" = "Deposit at least %@ to start earning";
/* CrowdNode */
"Deposit sent" = "Deposit sent";
/* No comment provided by engineer. */
"DEVICE SECURITY COMPROMISED\nAny 'jailbreak' app can access any other app's keychain data (and steal your Dash)." = "DEVICE SECURITY COMPROMISED\nAny 'jailbreak' app can access any other app's keychain data (and steal your 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." = "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.";
/* Coinbase Entry Point */
"Disconnect Coinbase Account" = "Disconnect Coinbase Account";
/* Uphold Entry Point */
"Disconnect Uphold Account" = "Disconnect Uphold Account";
/* Buy Sell Portal */
"Disconnected" = "Disconnected";
/* DashSpend
Explore Dash: Filters */
"Discount" = "Discount";
/* No comment provided by engineer. */
"Dismiss" = "Dismiss";
/* No comment provided by engineer. */
"Display Name" = "Display Name";
/* Explore Dash: Filters */
"Distance" = "Distance";
/* No comment provided by engineer. */
"Do not take a screenshot" = "Do not take a screenshot";
/* Usernames */
"Do you really want to cancel the username request?" = "Do you really want to cancel the username request?";
/* No comment provided by engineer. */
"Done" = "Done";
/* DashSpend */
"Double tap to change quantity" = "Double tap to change quantity";
/* SegmentedControl */
"Double tap to select" = "Double tap to select";
/* ex., Download peer: 127.0.0.1:9999 */
"Download peer: %@" = "Download peer: %@";
/* CrowdNode */
"Due to CrowdNode’s terms of service users can withdraw no more than:" = "Due to CrowdNode’s terms of service users can withdraw no more than:";
/* 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." = "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.";
/* Geoblock */
"Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK";
/* 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." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username.";
/* CrowdNode */
"e.g. johndoe@mail.com" = "e.g. 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" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network";
/* (List of notifications happened) Earlier (some time ago) */
"Earlier" = "Earlier";
/* No comment provided by engineer. */
"Easily stake Dash and earn passive income with a few simple clicks" = "Easily stake Dash and earn passive income with a few simple clicks";
/* No comment provided by engineer. */
"Easily stake Dash and earn passive income with a few simple clicks." = "Easily stake Dash and earn passive income with a few simple clicks.";
/* No comment provided by engineer. */
"Edit profile" = "Edit profile";
/* No comment provided by engineer. */
"Edit Profile" = "Edit Profile";
/* Invitation tag placeholder */
"eg: Dad" = "eg: Dad";
/* Input username textfield placeholder */
"eg: johndoe" = "eg: johndoe";