-
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) · 233 KB
/
Localizable.strings
File metadata and controls
3206 lines (2142 loc) · 233 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 " = "Datenschutzerklärung";
/* CrowdNode */
" Terms of Use " = "AGB";
/* No comment provided by engineer. */
"%@ has accepted your contact request" = "%@ hat deine Kontaktanfrage angenommen";
/* Username has sent you a contact request */
"%@ has sent you a contact request" = "%@ hat dir eine Kontaktanfrage geschickt";
/* No comment provided by engineer. */
"%@ is not allowed to access Face ID. Allow Face ID access in Settings" = "%@ist nicht berechtigt Face ID zu benutzen. Face ID in Einstellungen freischalten.";
/* No comment provided by engineer. */
"%@ is not allowed to access the camera" = "%@ darf nicht auf die Kamera zugreifen";
/* No comment provided by engineer. */
"%@ is not allowed to access Touch ID. Allow Touch ID access in Settings" = "%@ist nicht berechtigt Touch ID zu benutzen. Touch ID in Einstellungen freischalten.";
/* Credits */
"%@ ~ %lu contacts / %lu profile updates" = "%1$@ ~ %2$lu Kontakte/ %3$lu Profil-Updates";
/* Voting - multiple keys warning */
"%d votes will be cast as you have multiple voting keys stored in the wallet" = "%d die Stimmen werden abgegeben, da du mehrere Abstimmungs-Schlüssel in deiner Wallet gespeichert hast";
/* Voting */
"%ld duplicates" = "%ld Duplikate";
/* Voting */
"%ld requests" = "%ld Anfragen";
/* 10/20 Characters */
"%ld/%ld Characters" = "%1$ld/%2$ld Zeichen";
/* No comment provided by engineer. */
"(1/3) Processing Payment" = "(1/3) Verarbeite Zahlung";
/* No comment provided by engineer. */
"(1/3) Unable to process payment" = "(1/3) Zahlung konnte nicht verarbeitet werden";
/* No comment provided by engineer. */
"(2/3) Creating Dash Identity" = "(2/3) Erstelle Dash-Identität";
/* No comment provided by engineer. */
"(2/3) Unable to create Dash Identity" = "(2/3) Dash-Identität konnte nicht erstellt werden";
/* No comment provided by engineer. */
"(3/3) Can't register username" = "(3/3) Benutzername konnte nicht registriert werden";
/* No comment provided by engineer. */
"(3/3) Registering Username" = "(3/3) Registriere Benutzernamen";
/* No comment provided by engineer. */
"1 hour" = "1 Stunde";
/* Explore Dash: Filters */
"1 mile" = "1 Meile";
/* Shorten version of minute */
"1 min" = "1 Min";
/* Explore Dash: Filters */
"2 km" = "2 km";
/* Explore Dash: Filters */
"20 miles" = "20 Meilen";
/* No comment provided by engineer. */
"24 hours" = "24 Stunden";
/* Explore Dash: Filters */
"32 km" = "32 km";
/* Explore Dash: Filters */
"5 miles" = "5 Meilen";
/* Shorten version of minutes */
"5 min" = "5 Min";
/* Explore Dash: Filters */
"50 miles" = "50 Meilen";
/* 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" = "\"%@\" ist kein Wort aus der Wiederherstellungs-Wortfolge";
/* 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?" = "\"%@\" ist kein Wort der Wiederherstellungsphrase. Möchtest du versuchen, das korrekt Wort wiederherzustellen, das an dieser Stelle stehen sollte?";
/* No comment provided by engineer. */
"\ntry again in %@" = "\nerneut versuchen in %@";
/* No comment provided by engineer. */
"A device passcode is needed to safeguard your wallet. Go to settings and turn passcode on to continue." = "Ein Gerätecode wird benötigt um Ihr Wallet zu schützen. Stellen Sie in Ihren Einstellungen Ihren Code ein um fortzufahren.";
/* CrowdNode */
"A Masternode needs 1000 Dash as collateral and each Masternode is currently rewarded approximately %@ per year." = "Ein Masternode benötigt 1000 Dash als Einlage und jeder Masternode erhält derzeit rund %@ pro Jahr.";
/* No comment provided by engineer. */
"About" = "Über";
/* No comment provided by engineer. */
"About me" = "Über mich";
/* No comment provided by engineer. */
"Accept" = "Akzeptieren";
/* Explore */
"Accept Dash directly" = "DASH direkt akzeptieren";
/* DashSpend */
"Accept terms and\nconditions" = "AGB akzeptieren";
/* CrowdNode */
"Accept Terms Of Use" = "AGB akzeptieren";
/* CrowdNode */
"Accepting terms of use…" = "AGB akzeptieren ...";
/* CrowdNode */
"Account Recovery" = "Kontowiederherstellung";
/* No comment provided by engineer. */
"Activity" = "Aktivität";
/* No comment provided by engineer. */
"Add" = "Hinzufügen";
/* Add <username> as your contact... */
"Add %@ as your contact to Pay Directly to Username and Retain Mutual Transaction History" = "Füge %@ als Kontakt hinzu, um Zahlungen direkt an den Benutzernamen zu senden und einen gemeinsamen Zahlungsverlauf zu erstellen";
/* No comment provided by engineer. */
"Add a New Contact" = "Neuen Kontakt hinzufügen";
/* No comment provided by engineer. */
"Add your Friends & Family" = "Füge Freunde und Familie hinzu";
/* Usernames */
"Add your friends & family" = "Füge deine Freunde und Familie hinzu.";
/* No comment provided by engineer. */
"Address" = "Adresse";
/* CoinJoin */
"Advanced" = "Erweitert";
/* CoinJoin */
"Advanced privacy level requires a reliable internet connection" = "Ein fortschrittliches Privatsphäre-Level erfordert eine zuverlässige Internetverbindung";
/* No comment provided by engineer. */
"Advanced Security" = "Erhöhte Sicherheit";
/* Coinbase */
"Advanced users who have a very high level of technical expertise can determine your transaction history" = "Erfahrene Nutzer, die einen hohen Grad an technischer Expertise haben, können deine Transaktionshistorie bestimmen.";
/* Usernames */
"After the voting ends we will notify you about its results" = "Nachdem die Abstimmung endet, wirst du über das Ergebnis benachrichtigt werden.";
/* No comment provided by engineer. */
"Agree" = "Zustimmen";
/* TimeSkew */
"ahead" = "weiter";
/* No comment provided by engineer. */
"All" = "Alles";
/* 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." = "Alle Zahlungen werden als Ausgaben und alle eingehenden Transaktionen als Einnahmen betrachtet. Der Besitzer dieser Wallet ist dafür verantwortlich, alle Anpassungen der Kostenbasis in dem von ihm gewählten Steuererklärungssystem vorzunehmen.";
/* CrowdNode */
"All transfers to and from CrowdNode from this device will be performed with the below Dash address from this device." = "Alle Transfers von und zu Crowdnode auf diesem Gerät werden über die unten stehende Dash Adresse abgewickelt.";
/* ZenLedger */
"Allow" = "Erlauben";
/* No comment provided by engineer. */
"Allow camera access in Settings" = "Zugriff auf Kamera in den Einstellungen erlauben";
/* ZenLedger */
"Allow sending all transactions from Dash Wallet to Zenledger?" = "Erlaubst du, dass alle Transaktionen von der Dash Wallet an Zenledger gesendet werden?";
/* Coinbase/Buy Dash */
"Amount in Dash" = "Betrag in Dash";
/* No comment provided by engineer. */
"Amount received" = "Betrag empfangen";
/* No comment provided by engineer. */
"Amount Sent" = "Guthaben gesendet";
/* No comment provided by engineer. */
"An error occurred" = "Ein Fehler ist aufgetreten";
/* No comment provided by engineer. */
"An intuitive and familiar experience across all your devices" = "Eine intuitive und gewohnte Erfahrung über alle Gerätetypen hinweg";
/* CTXSpend error */
"An unknown error occurred. Please try again later." = "Ein unbekannter Fehler ist aufgetreten. Bitte versuche es zu einem späteren Zeitpunkt erneut.";
/* CrowdNode */
"and" = "und";
/* CoinJoin */
"Any funds that have been mixed will be combined with your un mixed funds" = "Jedes Guthaben, das gemixt wurde, wird mit nicht gemixten Guthaben kombiniert.";
/* Usernames */
"Any username that has a number 2-9, is more than 20 characters or that has a hyphen will be automatically approved" = "Jeder Nutzername, der die Nummern 2-9 beinhaltet, länger als 20 Zeichen ist oder einen Bindestrich beinhaltet, wird automatisch genehmigt.";
/* Coinbase/Payment Methods */
"Apple Pay" = "Apple Pay";
/* No comment provided by engineer. */
"Application %@ is requesting a payment to" = "Die Anwendung %@ fordert eine Zahlung an";
/* No comment provided by engineer. */
"Application %@ is requesting an address so it can pay you. Would you like to authorize this?" = "Die %@ Anwendung fordert eine Adresse an, damit Sie bezahlt werden können. Möchten Sie dies genehmigen?";
/* 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." = "Anwendung %@ möchte ihren öffentlichen Master-Key empfangen. Ihre Gelder können damit nicht versendet werden, lediglich beobachtet.";
/* No comment provided by engineer. */
"Apply" = "Anfragen";
/* Coinbase/Buy Dash/Cancel Order */
"Are you sure you want to cancel this order?" = "Bist du sicher, dass du diesen Handel stornieren möchtest?";
/* Coinbase/Buy Dash/Cancel Order */
"Are you sure you want to cancel this transaction?" = "Bist du sicher, dass du die Transaktion abbrechen möchtest?";
/* CoinJoin */
"Are you sure you want to change the privacy level?" = "Möchtest du die Einstellung der Privatsphäre wirklich ändern?";
/* CoinJoin */
"Are you sure you want to stop mixing?" = "Möchtest du wirklich aufhören zu mixen?";
/* No comment provided by engineer. */
"Are you sure?" = "Sind Sie sicher?";
/* 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." = "Als Masternode-Besitzer kannst du über die Genehmigung beantragter Nutzernamen abstimmen, bevor die Nutzer diese überhaupt erstellen können.\nDu kannst die Erstellung von gewissen Nutzernamen blockieren, die du für unangemessen hältst,";
/* 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." = "Da die meisten nicht genau 1000 Dash zur Hand haben, hat CrowdNode einen Service entwickelt der Einlagen von Mitgliedern zusammenlegt, damit diese die Vorteile, die durch das Besitzen eines Masternodes entstehen, nutzen können.";
/* DashSpend */
"at" = "bei";
/* No comment provided by engineer. */
"ATM search works better with Location Services turned on." = "Die Suche nach Automaten funktioniert besser, wenn der Standortdienst angeschaltet ist.";
/* No comment provided by engineer. */
"ATMs" = "ATMs";
/* No comment provided by engineer. */
"Authentication is unvailable" = "Authentifizierung nicht verfügbar";
/* Location Service Status */
"Authorized" = "Autorisiert";
/* No comment provided by engineer. */
"Auto Logout" = "Automatisches Ausloggen";
/* No comment provided by engineer. */
"Autohide Balance" = "Guthaben automatisch verstecken";
/* Translate it as short as possible! (24 symbols max) */
"Backup" = "Backup";
/* No comment provided by engineer. */
"Backup Passphrase" = "Passphrase sichern";
/* A noun. Used as a title. */
"Backup Wallet" = "Wallet-Backup";
/* No comment provided by engineer. */
"Backup your passphrase to create a CrowdNode account" = "Sichere deine Passphrase um ein Crowdnode Konto zu erstellen";
/* Back up wallet */
"Backup your recovery phrase" = "Wiederherstellungsphrase sichern";
/* No comment provided by engineer. */
"Bad recovery phrase" = "Fehlerhafte Wiederherstellungs-Wortfolge";
/* Send Screen: to address */
"Balance" = "Guthaben";
/* CrowdNode */
"Balance On CrowdNode" = "CrowdNode Guthaben";
/* CrowdNode */
"Balance: " = "Guthaben:";
/* Coinbase/Payment Methods */
"Bank Account" = "Bankkonto";
/* Coinbase/Payment Methods */
"Bank Wire" = "Banküberweisung";
/* No comment provided by engineer. */
"Barcode placeholder" = "Barcode-Platzhalter";
/* CrowdNode */
"Become part of a Dash Masternode with CrowdNode" = "Werde Teil eines Dash Masternodes mit CrowdNode";
/* TimeSkew */
"behind" = "zurück";
/* Validation rule: Between 3 and 24 characters */
"Between %ld and %ld characters" = "Zwischen %1$ld und %2$ld Zeichen";
/* Usernames */
"Between 3 and 23 characters" = "Zwischen 3 und 23 Zeichen";
/* Coinbase Entry Point */
"Between Dash Wallet and Coinbase" = "Zwischen der Dash Wallet und Coinbase";
/* Dash Service Overview */
"Between Dash Wallet and your Coinbase account" = "Zwischen Dash Wallet und deinem Coinbase Konto";
/* No comment provided by engineer. */
"Biometrics Access Required" = "Biometrischer Zugang erforderlich";
/* Voting */
"Block" = "Block";
/* No comment provided by engineer. */
"block #%d of %d" = "Block #%1$d von %2$d";
/* No comment provided by engineer. */
"Block #%d of %d" = "Block #%1$d von %2$d";
/* Voting */
"Blocked '%@' username" = "Nutzername '%@' blockiert";
/* Buy
buy */
"Buy" = "Kaufen";
/* Translate it as short as possible! (24 symbols max) */
"Buy & Sell" = "Kaufe & Verkaufe";
/* No comment provided by engineer. */
"Buy & Sell Dash" = "Kaufe & Verkaufe Dash";
/* Buy a Gift Card */
"Buy a Gift Card" = "Gutscheinkarte kaufen";
/* Dash Service Overview */
"Buy and convert Dash with another crypto" = "Kaufe und konvertiere Dash in eine andere Kryptowährung";
/* No comment provided by engineer. */
"Buy credits" = "Kaufe Credits";
/* No comment provided by engineer. */
"Buy Dash" = "Dash kaufen";
/* Dash Service Overview */
"Buy Dash with fiat" = "Dash mit Fiatwährung kaufen";
/* Dash Portal */
"Buy Dash · No account needed" = "Dash kaufen. Es wird kein Konto benötigt.";
/* DashSpend */
"Buy gift card" = "Geschenkkarte kaufen";
/* No comment provided by engineer. */
"Buy gift cards with your Dash" = "Kaufe Gutscheinkarten mit Dash";
/* No comment provided by engineer. */
"Buy gift cards with your Dash for the exact amount of your purchase." = "Kaufe mit deinen Dash Geschenkkarten in Höhe des genauen Betrags deines Einkaufs.";
/* Buy/Sell */
"Buy/Sell" = "Kaufen/Verkaufen";
/* Voting */
"By tapping the \"Vote for All\" button, you will automatically vote for all of the filtered usernames (%ld) that were submitted first" = "Indem du den \"Stimme für alle\" Button auswählst, wirst du automatisch für alle ausgewählten Nutzernamen (%ld) stimmen, die bis dahin eingegangen sind.";
/* 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." = "Durch das Zurücksetzen des Gerätes, geht das gespeicherte Guthaben verloren. Dies sollte nur geschehen, wenn kein Zugang mehr zur Passphrase besteht und der PIN-Code vergessen wurde.";
/* No comment provided by engineer. */
"Cancel" = "Abbrechen";
/* Voting */
"Cancel Approval" = "Zustimmung entziehen.";
/* No comment provided by engineer. */
"Cancel Request" = "Anfrage abbrechen";
/* Coinbase/Buy Dash/Cancel Order */
"Canceling this transaction does not cancel the trade order. You will receive DASH on your Coinbase account shortly." = "Die Stornierung dieser Transaktion führt nicht zur Stornierung des Handelsauftrags. Du wirst deine DASH in Kürze auf deinem Coinbase Konto erhalten.";
/* DashSpend */
"Card number" = "Kartennummer";
/* No comment provided by engineer. */
"Card PIN" = "Karten-PIN";
/* A verb. Action button title for an alert 'Change payment amount?' */
"Change" = "Ändern";
/* No comment provided by engineer. */
"Change payment amount?" = "Zahlungsbetrag ändern?";
/* No comment provided by engineer. */
"Change PIN" = "PIN ändern";
/* CoinJoin */
"Change to Advanced" = "Wechsel zu Erweitert";
/* CoinJoin */
"Change to Intermediate" = "Wechsel zu Standard";
/* No comment provided by engineer. */
"Check current balance" = "Aktuellen Kontostand prüfen";
/* TimeSkew */
"Check date & time settings" = "Datum- und Zeiteinstellungen prüfen";
/* No comment provided by engineer. */
"Check your connection" = "Verbindung überprüfen";
/* DashSpend */
"Check your email and enter the verification code." = "Kontrolliere deine E-Mail und gebe deinen Verifizierungscode ein";
/* Choose your Dash username */
"Choose your" = "Wähle deinen";
/* No comment provided by engineer. */
"Choose Your Username" = "Wähle deinen Benutzernamen";
/* No comment provided by engineer. */
"Claimed" = "Beansprucht";
/* No comment provided by engineer. */
"Clear" = "Löschen";
/* No comment provided by engineer. */
"Clear trusted node?" = "Zuverlässigen Knoten löschen?";
/* No comment provided by engineer. */
"Close" = "Schließen";
/* CrowdNode */
"Close and notify when it’s done" = "Schließen und benachrichtigen, wenn abgeschlossen";
/* No comment provided by engineer. */
"Close App" = "App schließen";
/* Dash Portal */
"Coinbase" = "Coinbase";
/* Coinbase Two Factor Auth */
"Coinbase 2FA code" = "Coinbase 2FA Code";
/* Coinbase/Buy Dash */
"Coinbase Fee" = "Coinbase Gebühr";
/* CoinJoin */
"CoinJoin" = "CoinJoin";
/* CoinJoin */
"CoinJoin Collateral Inputs" = "CoinJoin Collateral Inputs";
/* CoinJoin */
"CoinJoin Create Denominations" = "CoinJoin erstellt Stückelungen";
/* CoinJoin */
"CoinJoin Mixing" = "CoinJoin-Mixing";
/* CoinJoin */
"CoinJoin Mixing Fee" = "Coinjoin-Mixinggebühr";
/* No comment provided by engineer. */
"Confirm" = "Bestätigen";
/* Coinbase/Buy Dash/Confirm Order */
"Confirm (%d%@)" = "Bestätigen(%1$d %2$@)";
/* No comment provided by engineer. */
"Confirm PIN" = "PIN bestätigen";
/* No comment provided by engineer. */
"Confirming" = "Bestätige";
/* ZenLedger */
"Connect your crypto wallets to the ZenLedger platform. Learn more and get started with your Dash Wallet transactions." = "Verbinde deine Krypto-Wallets mit der Zenledger Plattform. Lerne mehr darüber und beginne mit deinen Transaktionen in der Dash Wallet.";
/* Buy Sell Portal
Coinbase Entry Point */
"Connected" = "Verbunden";
/* CrowdNode */
"Connected Dash address" = "Dash Adresse verknüpfen";
/* No comment provided by engineer. */
"Connected peers: %d" = "Verbundene Peers: %d";
/* No comment provided by engineer. */
"Connecting to payment server" = "Mit dem Zahlungs-Server verbinden";
/* Coinbase
Coinbase Two Factor Auth */
"Contact Coinbase Support" = "Coinbase Support kontaktieren";
/* DashSpend */
"Contact CTX Support" = "CTX-Support kontaktieren";
/* No comment provided by engineer. */
"Contact Request Pending" = "Kontaktanfrage ausstehend";
/* No comment provided by engineer. */
"Contact Requests" = "Kontaktanfrage";
/* No comment provided by engineer. */
"Contact Support" = "Support kontaktieren";
/* No comment provided by engineer. */
"Contacts" = "Kontakte";
/* No comment provided by engineer. */
"Continue" = "Fortfahren";
/* No comment provided by engineer. */
"Continue Anyway" = "Trotzdem fortfahren";
/* Coinbase Entry Point */
"Convert Crypto" = "Kryptowährung umwandeln";
/* No comment provided by engineer. */
"Copied" = "Kopiert";
/* No comment provided by engineer. */
"Copy" = "Kopieren";
/* No comment provided by engineer. */
"Copy Invitation Link" = "Einladungslink kopieren";
/* No comment provided by engineer. */
"Copy Logs" = "Log kopieren";
/* No comment provided by engineer. */
"Copy text" = "Text kopieren";
/* 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" = "Konnte fehlende / falsche Wörter nicht automatisch wiederherstellen";
/* No comment provided by engineer. */
"Could not connect to the Dash network, please check that you are connected to the internet." = "Verbindung zum Dash-Netzwerk konnte nicht hergestellt werden. Überprüfe bitte, ob du mit dem Internet verbunden bist.";
/* No comment provided by engineer. */
"Could not find exchange rate." = "Kann Wechselkurs nicht finden.";
/* No comment provided by engineer. */
"Couldn't make payment" = "Zahlung konnte nicht durchgeführt werden";
/* No comment provided by engineer. */
"Couldn't sweep balance" = "Guthaben konnte nicht übertragen werden";
/* No comment provided by engineer. */
"Couldn't transmit payment to Dash network" = "Zahlung konnte nicht an das Dash-Netzwerk übermittelt werden";
/* No comment provided by engineer. */
"Create a new Invitation" = "Neue Einladung erstellen";
/* No comment provided by engineer. */
"Create a new invitation" = "Neue Einladung erstellen";
/* No comment provided by engineer. */
"Create a New Wallet" = "Neue Wallet erstellen";
/* Usernames */
"Create a username" = "Nutzernamen erstellen.";
/* CrowdNode */
"Create Account" = "Konto erstellen";
/* Create DashSpend account */
"Create account" = "Konto erstellen";
/* DashSpend account title */
"Create an account or log into an existing one" = "Erstelle ein Konto oder logge dich mit einem bereits existierenden ein";
/* CrowdNode */
"Create an online CrowdNode account" = "Einen neues CrowdNode online Konto erstellen";
/* No comment provided by engineer. */
"Create invitation" = "Erstelle eine Einladung";
/* Create new account */
"Create new account" = "Ein neues Konto erstellen";
/* CrowdNode
CrowdNode Portal */
"Create Online Account" = "Online Konto erstellen";
/* Usernames */
"Create your username" = "Benutzernamen erstellen";
/* No comment provided by engineer. */
"Create your Username, find friends & family with their usernames and add them to your contacts" = "Erstelle deinen Benutzernamen, finde Freunde und Familie mit ihren Benutzernamen und füge sie zu deinen Kontakten hinzu";
/* Coinbase/Payment Methods */
"Credit Card" = "Kreditkarte";
/* CrowdNode */
"CrowdNode benefits" = "CrowdNode Leistungen";
/* 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 nutzt die Adresse als deine Konto ID. Wenn du die zugehörige Passphrase zu der Adresse verlierst, wirst du auch keinen Zugriff auf dein Guthaben und dein Crowdnode Konto mehr besitzen.";
/* CrowdNode */
"CrowdNode withdrawal limits" = "CrowdNode Auszahlungslimits";
/* No comment provided by engineer. */
"CrowdNode · Account" = "CrowdNode · Konto";
/* CrowdNode Portal */
"CrowdNode ➝ DashWallet" = "CrowdNode ➝ DashWallet";
/* No comment provided by engineer. */
"CSV Export" = "CSV Export";
/* Explore Dash/Filters */
"CTX gift card" = "CTX-Geschenkkarte";
/* Explore Dash: Filters */
"CTX gift cards" = "CTX Geschenkkarte";
/* Crowdnode */
"Current APY = %@" = "Derzeitige APY = %@";
/* CrowdNode */
"Current APY is %@" = "Derzeitige APY ist %@.";
/* Explore Dash: Filters */
"Current location" = "Aktueller Standort";
/* Explore Dash/Merchants/Filters */
"Current Location Settings" = "Aktuelle Ortseinstellung";
/* No comment provided by engineer. */
"Current user: %@" = "Aktueller Benutzer: %@";
/* Explore Dash: Filters */
"Dash" = "Dash";
/* No comment provided by engineer. */
"Dash address" = "Dash-Adresse";
/* CrowdNode */
"Dash address designated for your CrowdNode account in the Dash Wallet on this device " = "Dash Adresse, die für dein CrowdNode Konto in der Dash Wallet auf diesem Gerät bestimmt ist.";
/* No comment provided by engineer. */
"Dash balance" = "Dash-Guthaben";
/* Coinbase Entry Point */
"Dash balance on Coinbase" = "Dash Guthaben auf Coinbase";
/* Uphold Entry Point */
"Dash balance on Uphold" = "Dash Guthaben auf Uphold";
/* No comment provided by engineer. */
"Dash payments can't be less than %@" = "Dash-Zahlungen können nicht kleiner als %@ sein";
/* No comment provided by engineer. */
"Dash username" = "Dash-Benutzername";
/* DashSpend confirmation */
"Dash Wallet" = "Dash Wallet";
/* Buy Dash */
"Dash Wallet on this device" = "Dash Wallet auf diesem Gerät";
/* No comment provided by engineer. */
"DashPay Invitation" = "DashPay Einladung";
/* No comment provided by engineer. */
"DashPay Upgrade Fee" = "DashPay-Upgradegebühr";
/* CrowdNode Portal */
"DashWallet ➝ CrowdNode" = "DashWallet ➝ CrowdNode";
/* No comment provided by engineer. */
"Date" = "Datum";
/* Voting */
"Date: New to old" = "Datum: Neu nach alt";
/* Voting */
"Date: Old to new" = "Datum: Alt nach neu";
/* Voting */
"Default filter setting" = "Standardmäßige Filtereinstellung";
/* Location Service Status */
"Denied" = "Abgelehnt";
/* CrowdNode
CrowdNode Portal */
"Deposit" = "Einzahlung";
/* CrowdNode Portal */
"Deposit %@ to start earning" = "%@ einzahlen um Erträge zu erhalten.";
/* CrowdNode */
"Deposit at least %@ Dash on your Dash Wallet to complete a withdrawal" = "Zahle mindestens %@ Dash auf deine Dash Wallet ein um die Auszahlung abzuschließen";
/* CrowdNode Portal */
"Deposit at least %@ to start earning" = "Zahle mindestens %@ ein um Erträge zu erhalten.";
/* CrowdNode */
"Deposit sent" = "Einzahlung versendet";
/* No comment provided by engineer. */
"DEVICE SECURITY COMPROMISED\nAny 'jailbreak' app can access any other app's keychain data (and steal your Dash)." = "GERÄTESICHERHEIT KOMPROMITTIERT\nJede 'Jailbreak'-App kann auf die Schlüsselbund-Daten jeder anderen App zugreifen (und so Ihre Dash stehlen).";
/* 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." = "GERÄTESICHERHEIT KOMPROMITTIERT\nJede 'Jailbreak'-App kann auf die Schlüsselbund-Daten anderer Apps zugreifen (und so Ihre Dash stehlen). Löschen Sie dieses Wallet umgehend und stellen Sie dieses auf einem sicheren Gerät wieder her.";
/* Coinbase Entry Point */
"Disconnect Coinbase Account" = "Coinbase Konto trennen";
/* Uphold Entry Point */
"Disconnect Uphold Account" = "Die Verbindung zu deinem Uphold Konto auflösen";
/* Buy Sell Portal
Coinbase Entry Point */
"Disconnected" = "Verbindung getrennt";
/* DashSpend confirmation */
"Discount" = "Rabatt";
/* No comment provided by engineer. */
"Dismiss" = "Schließen";
/* No comment provided by engineer. */
"Display Name" = "Name anzeigen";
/* Explore Dash: Filters */
"Distance" = "Entfernung";
/* No comment provided by engineer. */
"Do not take a screenshot" = "Keinen Screenshot aufnehmen";
/* Usernames */
"Do you really want to cancel the username request?" = "Willst du die Nutzernamen-Anfrage wirklich abbrechen?";
/* No comment provided by engineer. */
"Done" = "Fertig";
/* ex., Download peer: 127.0.0.1:9999 */
"Download peer: %@" = "Downloade Peer: %@";
/* CrowdNode */
"Due to CrowdNode’s terms of service users can withdraw no more than:" = "Aufgrund der CrowdNode AGB können Nutzer nicht mehr als diesen Betrag abheben:";
/* 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." = "Aufgrund von regulatorischen Beschränkungen müssen wir feststellen, dass du dich nicht im Vereinigten Königreich aufhältst. Dein Standort wird lediglich überprüft, wenn du die Coinbase-Funktoin nutzt.";
/* Geoblock */
"Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Aufgrund von regulatorischen Einschränkungen kannst du die Coinbase-Funktionen nicht nutzen, wenn du dich im Vereinigten Königreich aufhältst.";
/* 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." = "Aufgrund des Voting-Prozesses hat das Dash Netzwerk entschieden, den Nutzernamen '%@' an jemand anderen zu vergeben. Bitte versuche es erneut, aber mit einem anderen Nutzernamen.";
/* CrowdNode */
"e.g. johndoe@mail.com" = "z.B. maxmustermann@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" = "Jede Einladung wird mit diesem Betrag versehen damit der Empfänger schnell einen eigenen Nutzernamen im Dash-Netzwerk beanspruchen kann";
/* (List of notifications happened) Earlier (some time ago) */
"Earlier" = "Früher";
/* No comment provided by engineer. */
"Easily stake Dash and earn passive income with a few simple clicks." = "Dash staken und passives Einkommen generieren.";
/* No comment provided by engineer. */
"Edit Profile" = "Profil bearbeiten";
/* No comment provided by engineer. */
"Edit profile" = "Profil bearbeiten";
/* Invitation tag placeholder */
"eg: Dad" = "zB: Papa";
/* Input username textfield placeholder */
"eg: johndoe" = "zB: maxmuster";
/* CrowdNode */
"Email" = "E-Mail";
/* No comment provided by engineer. */
"Enable Face ID" = "Face ID aktivieren";
/* No comment provided by engineer. */
"Enable Receive Notifications" = "Empfang von Hinweisen ermöglichen";
/* No comment provided by engineer. */
"Enable Touch ID" = "Touch ID aktivieren";
/* No comment provided by engineer. */
"Enter" = "Eingabe";
/* Coinbase Two Factor Auth */
"Enter Coinbase 2FA code" = "Coinbase 2FA Code eingeben";
/* No comment provided by engineer. */
"Enter PIN" = "PIN eingeben";
/* No comment provided by engineer. */
"Enter Recovery Phrase" = "Wiederherstellungs-Wortfolge eingeben";
/* Enter verification code */
"Enter verification code" = "Verifizierungscode eingeben";
/* No comment provided by engineer. */
"Enter your 2FA code below" = "Trage den 2FA-Code unten ein";
/* No comment provided by engineer. */
"Enter your Gravatar Email ID" = "Trage deine Gravatar E-Mail ID ein";
/* Voting */
"Enter your voting key" = "Gebe deinen Voting-Schlüssel ein.";
/* No comment provided by engineer. */
"Error" = "Fehler";
/* CTXSpend error */
"Error processing server response. Please try again later." = "Fehler bei der Verarbeitung der Serverantwort. Bitte versuche es später erneut.";
/* No comment provided by engineer. */
"Error updating your profile" = "Fehler beim Updaten deines Profils";
/* CoinJoin */
"Error ·" = "Fehler";
/* No comment provided by engineer. */
"Exit" = "Beenden";
/* No comment provided by engineer. */
"Expense" = "Ausgaben";
/* No comment provided by engineer. */
"Explore" = "Explore";
/* No comment provided by engineer. */
"Explore Dash" = "Explore Dash";
/* ZenLedger */
"Export all transactions" = "Alle Transaktionen exportieren";
/* No comment provided by engineer. */
"Export CSV" = "CSV exportieren";
/* No comment provided by engineer. */
"Extended Public Keys" = "Erweiterter Public Key";
/* No comment provided by engineer. */
"Face ID limit" = "Face-ID Limit";
/* No comment provided by engineer. */
"Failed to load barcode" = "Fehler beim Laden des Barcodes";
/* Coinbase */
"Failed to start auth session" = "Autorisierungssitzung konnte nicht gestartet werden.";
/* Buy Sell Portal */
"Failed to sync" = "Synchronisierung fehlgeschlagen";
/* Explore Dash */
"Failed to sync on" = "Synchronisierung fehlgeschlagen bei";
/* No comment provided by engineer. */
"Failed wallet update" = "Wallet Update gescheitert";
/* No comment provided by engineer. */
"Fee" = "Gebühr";
/* No comment provided by engineer. */
"Fee is greater than balance" = "Die Gebühr ist höher als das Gesamtguthaben";
/* No comment provided by engineer. */
"Fee will be deducted from requested amount." = "Die Gebühr wird vom angeforderten Betrag abgezogen.";
/* Coinbase/Fee info */
"Fees in crypto purchases" = "Gebühren bei Kryptowährungskäufen";
/* No comment provided by engineer. */
"Fetching Image" = "Bild abrufen";
/* Explore Dash */
"Fetching Info" = "Informationen abrufen";
/* Balance */
"Fetching rates…" = "Preise abrufen ...";
/* Coinbase/Payment Methods */
"Fiat Account" = "Fiat Konto";
/* No comment provided by engineer. */
"Filter" = "Filter";
/* No comment provided by engineer. */
"Filter transactions" = "Transaktionen filtern";
/* No comment provided by engineer. */
"Filtered by" = "Sortiert nach";
/* Explore Dash/Merchants/Filters */
"Filtered by:" = "Gefiltert nach:";
/* Explore Dash */
"Filters" = "Filter";
/* No comment provided by engineer. */
"Find a user on the Dash Network" = "Finde einen Benutzer des Dash-Netzwerks";
/* No comment provided by engineer. */
"Find ATMs where you can buy or sell Dash." = "Geldautomaten finden, an denen du Dash kaufen oder verkaufen kannst.";
/* No comment provided by engineer. */
"Find merchants that accept Dash payments." = "Finde Händler, die Dash als Zahlungsmethode akzeptieren.";
/* No comment provided by engineer. */
"Find merchants that accept Dash, where to buy it and how to earn income with it." = "Finde Händler die Dash akzeptieren, Orte wo du Dash kaufen kannst und Wege wie du Einkommen damit erzielen kannst.";
/* CrowdNode */
"First deposit should be more than %@" = "Die erste Einzahlung sollte größer als %@ sein.";
/* CrowdNode */
"First minimum deposit" = "Erste Mindesteinlage";
/* DashSpend */
"Fixed amounts" = "Festgesetzte Beträge";
/* Explore Dash: Filters */
"Fixed denominated amounts" = "Festgesetzte Beträge";
/* Explore Dash: Filters */
"Flexible amounts" = "Flexible Beträge";
/* DashSpend */
"Temporarily unavailable" = "Zur Zeit nicht verfügbar";
/* Usernames */
"For some reason, the request for the username '%@' has failed." = "Aus unerfindlichen Gründen ist die Anfrage für den Nutzernamen '%@ ' fehlgeschlagen. ";
/* Coinbase */
"For your security, you have been signed out." = "Du wurdest zu deiner Sicherheit abgemeldet.";
/* No comment provided by engineer. */
"Forget about long crypto addresses, create the username, find friends and add them to your contacts" = "Lasse lange Krypto-Adressen hinter dir, erstelle einen Nutzernamen, finde Freunde und füge sie zu deinen Kontakten hinzu.";
/* No comment provided by engineer. */
"Forgot PIN?" = "PIN vergessen?";
/* No comment provided by engineer. */
"Found missing word:\n%@" = "Fehlenden Begriff gefunden:\n%@";
/* No comment provided by engineer. */
"Found missing words:\n%@" = "Fehlende Begriffe gefunden:\n%@";
/* No comment provided by engineer. */
"Found potential missing words:\n%@" = "Potenziell fehlende Wörter gefunden:\n%@";
/* DashSpend confirmation */
"From" = "Von";
/* from CrowdNode */
"from CrowdNode" = "von CrowdNode";
/* from Dash Wallet */
"from Dash Wallet" = "von Dash Wallet";
/* Uphold Entry Point */
"From Uphold to Dash Wallet" = "Von Uphold zur Dash Wallet";
/* Dash Service Overview */
"From Uphold to your Dash Wallet" = "Von Uphold auf deine Dash Wallet";
/* Coinbase */