-
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) · 188 KB
/
Localizable.strings
File metadata and controls
3206 lines (2142 loc) · 188 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 " = "개인정보 보호정책";
/* CrowdNode */
" Terms of Use " = "이용약관";
/* No comment provided by engineer. */
"%@ has accepted your contact request" = "%@ 님이 당신의 연락처 요청을 수락하였습니다";
/* Username 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" = "%@은 페이스 ID 접근이 허용되지 않습니다. 설정에서 페이스 ID를 허용하십시오";
/* No comment provided by engineer. */
"%@ 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" = "%@은 터치 ID 접근이 허용되지 않습니다. 설정에서 터치 ID를 허용하십시오";
/* Credits */
"%@ ~ %lu contacts / %lu profile updates" = "%1$@ ~ %2$lu 연락처 / %3$lu 프로필 업데이트";
/* Voting - multiple keys warning */
"%d votes will be cast as you have multiple voting keys stored in the wallet" = "이 지갑에 수 개의 투표 키가 저장되어 있으므로 %d 표가 던져지게 됩니다 ";
/* Voting */
"%ld duplicates" = "%Id 복사";
/* Voting */
"%ld requests" = "%Id 요청";
/* 10/20 Characters */
"%ld/%ld Characters" = "%1$ld/%2$ld 글자";
/* No comment provided by engineer. */
"(1/3) Processing Payment" = "(1/3) 지불 처리 중";
/* No comment provided by engineer. */
"(1/3) Unable to process payment" = "(1/3) 지불을 처리할 수 없습니다";
/* No comment provided by engineer. */
"(2/3) Creating Dash Identity" = "(2/3) 대시 신원을 생성하는 중";
/* No comment provided by engineer. */
"(2/3) Unable to create Dash Identity" = "(2/3) 대시 신원을 생성할 수 없습니다";
/* No comment provided by engineer. */
"(3/3) Can't register username" = "(3/3) 사용자 이름을 등록할 수 없습니다";
/* No comment provided by engineer. */
"(3/3) Registering Username" = "(3/3) 사용자 이름을 등록하는 중";
/* No comment provided by engineer. */
"1 hour" = "1시간";
/* Explore Dash: Filters */
"1 mile" = "1마일";
/* Shorten version of minute */
"1 min" = "1분";
/* Explore Dash: Filters */
"2 km" = "2 km";
/* Explore Dash: Filters */
"20 miles" = "20마일";
/* No comment provided by engineer. */
"24 hours" = "24시간";
/* Explore Dash: Filters */
"32 km" = "32 km";
/* Explore Dash: Filters */
"5 miles" = "5마일";
/* Shorten version of minutes */
"5 min" = "5분";
/* Explore Dash: Filters */
"50 miles" = "50마일";
/* 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" = "\"%@\"는 복원 문구에 쓰이는 단어가 아닙니다.";
/* 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?" = "\"%@\"는 복구 문구 단어가 아닙니다. 해당 위치에 입력해야 할 올바른 단어를 복구하시겠습니까?";
/* No comment provided by engineer. */
"\ntry again in %@" = "\n%@ 뒤에 다시 시도해주세요";
/* No comment provided by engineer. */
"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." = "마스터노드는 1000 대시의 보증이 필요하며 각 마스터노드는 현재 연간 약 %@ 의 보상을 받습니다.";
/* No comment provided by engineer. */
"About" = "정보";
/* No comment provided by engineer. */
"About me" = "나에 관하여";
/* No comment provided by engineer. */
"Accept" = "수락";
/* Explore */
"Accept Dash directly" = "직접 DASH 수락하기";
/* DashSpend */
"Accept terms and\nconditions" = "이용 약관\n동의";
/* CrowdNode */
"Accept Terms Of Use" = "이용약관 수락하기";
/* CrowdNode */
"Accepting terms of use…" = "이용 약관에 동의하는 중...";
/* CrowdNode */
"Account Recovery" = "계정 복구";
/* No comment provided by engineer. */
"Activity" = "활동";
/* No comment provided by engineer. */
"Add" = "추가";
/* Add <username> as your contact... */
"Add %@ as your contact to Pay Directly to Username and Retain Mutual Transaction History" = "사용자 이름에 직접 지불하고 상호 거래 내역을 유지하려면 %@를 당신의 연락처에 추가하세요";
/* No comment provided by engineer. */
"Add a New Contact" = "새로운 연락처 추가하기";
/* No comment provided by engineer. */
"Add your Friends & Family" = "친구와 가족 추가";
/* Usernames */
"Add your friends & family" = "당신의 친구 & 가족을 추가하세요";
/* No comment provided by engineer. */
"Address" = "주소";
/* CoinJoin */
"Advanced" = "고급";
/* CoinJoin */
"Advanced privacy level requires a reliable internet connection" = "향상된 프라이버시 레벨은 신뢰할 수 있는 인터넷 연결이 필요합니다";
/* No comment provided by engineer. */
"Advanced Security" = "향상된 보안";
/* Coinbase */
"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" = "투표가 끝나면 결과를 알려드립니다";
/* No comment provided by engineer. */
"Agree" = "동의합니다";
/* TimeSkew */
"ahead" = "앞";
/* No comment provided by engineer. */
"All" = "모두";
/* 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." = "모든 지불 거래는 비용으로, 입금 거래는 수입으로 계산됩니다. 이 지갑의 소유자는 자신이 선택한 세금 보고 시스템에 따라 원가주의의 조정을 거쳐야 할 책임을 집니다.";
/* CrowdNode */
"All transfers to and from CrowdNode from this device will be performed with the below Dash address from this device." = "이 기기의 크라우드노드에서/로부터 발생하는 모든 거래는 이 기기의 아래 대시 주소로 이루어집니다.";
/* ZenLedger */
"Allow" = "허용";
/* No comment provided by engineer. */
"Allow camera access in Settings" = "설정에서 카메라 접근을 허용";
/* ZenLedger */
"Allow sending all transactions from Dash Wallet to Zenledger?" = "대시 지갑의 모든 거래를 Zenledger로 보내시겠습니까?";
/* Coinbase/Buy Dash */
"Amount in Dash" = "대시 금액";
/* No comment provided by engineer. */
"Amount received" = "받은 금액";
/* No comment provided by engineer. */
"Amount Sent" = "보낸 금액";
/* No comment provided by engineer. */
"An error occurred" = "오류 발생";
/* No comment provided by engineer. */
"An intuitive and familiar experience across all your devices" = "당신의 모든 기기에 걸친 직관적이고 친근한 경험";
/* CTXSpend error */
"An unknown error occurred. Please try again later." = "알 수 없는 오류가 발생했습니다. 나중에 다시 시도하십시오.";
/* CrowdNode */
"and" = "또한";
/* CoinJoin */
"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" = "2-9사이의 숫자가 포함되고, 20글자 이상이거나 하이픈 기호를 포함한 사용자 이름은 자동으로 승인됩니다";
/* Coinbase/Payment Methods */
"Apple Pay" = "애플 페이";
/* No comment provided by engineer. */
"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?" = "어플리케이션 %@ 이 귀하에게 지불할 수 있도록 주소를 요청하고 있습니다. 승인하시겠습니까?";
/* 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." = "어플리케이션 %@ 에서 마스터 공개 키를 수신하고자 합니다. 이것은 지갑을 추적하는데 사용할 수 있으며 대시를 이동하는 데 사용할 수 없습니다.";
/* No comment provided by engineer. */
"Apply" = "적용";
/* Coinbase/Buy Dash/Cancel Order */
"Are you sure you want to cancel this order?" = "이 주문을 정말 취소하시겠습니까?";
/* Coinbase/Buy Dash/Cancel Order */
"Are you sure you want to cancel this transaction?" = "이 거래를 정말 취소하시겠습니까?";
/* CoinJoin */
"Are you sure you want to change the privacy level?" = "정말 프라이버시 수준을 변경하시겠습니까?";
/* CoinJoin */
"Are you sure you want to stop mixing?" = "정말 믹싱을 중단하시겠습니까?";
/* No comment provided by engineer. */
"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." = "마스터노드 소유자는 사용자가 사용자 이름을 생성하기 이전에 이를 위한 요청에 대해 투표할 수 있습니다.\n부적절하다고 느껴지는 사용자이름의 생성은 차단할 수 있습니다.";
/* 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." = "대부분의 사람들이 당장 1000대시를 지니고 있지 않은 만큼, 크라우드노드는 구성원들의 보증금을 모아 마스터노드 소유의 장점을 누릴 수 있도록 하는 서비스를 개설하였습니다.";
/* DashSpend */
"at" = "이곳에서";
/* No comment provided by engineer. */
"ATM search works better with Location Services turned on." = "ATM 검색은 위치 서비스를 사용할 때 더욱 효과적입니다";
/* No comment provided by engineer. */
"ATMs" = "ATM";
/* No comment provided by engineer. */
"Authentication is unvailable" = "인증할 수 없습니다";
/* Location Service Status */
"Authorized" = "공인됨";
/* No comment provided by engineer. */
"Auto Logout" = "자동 로그아웃";
/* No comment provided by engineer. */
"Autohide Balance" = "잔고 자동숨김";
/* Translate it as short as possible! (24 symbols max) */
"Backup" = "백업";
/* No comment provided by engineer. */
"Backup Passphrase" = "암호 문구 백업하기";
/* A noun. Used as a title. */
"Backup Wallet" = "지갑 백업";
/* No comment provided by engineer. */
"Backup your passphrase to create a CrowdNode account" = "크라우드노드 계정을 생성하려면 암호 문구를 백업하세요";
/* Back up wallet */
"Backup your recovery phrase" = "복구 문구를 백업하세요";
/* No comment provided by engineer. */
"Bad recovery phrase" = "잘못된 복원 문구";
/* Send Screen: to address */
"Balance" = "잔액";
/* CrowdNode */
"Balance On CrowdNode" = "크라우드노드 잔고";
/* CrowdNode */
"Balance: " = "잔고:";
/* Coinbase/Payment Methods */
"Bank Account" = "은행 계좌";
/* Coinbase/Payment Methods */
"Bank Wire" = "은행 송금";
/* No comment provided by engineer. */
"Barcode placeholder" = "바코드 자리표시자";
/* CrowdNode */
"Become part of a Dash Masternode with CrowdNode" = "크라우드노드를 통해 대시 마스터노드의 일원이 되세요";
/* TimeSkew */
"behind" = "뒤";
/* Validation rule: Between 3 and 24 characters */
"Between %ld and %ld characters" = "%1$ld 와 %2$ld 글자 사이";
/* Usernames */
"Between 3 and 23 characters" = "3에서 23글자 사이";
/* Coinbase Entry Point */
"Between Dash Wallet and Coinbase" = "대시 지갑과 코인베이스 사이";
/* Dash Service Overview */
"Between Dash Wallet and your Coinbase account" = "대시 지갑과 코인베이스 계정간";
/* No comment provided by engineer. */
"Biometrics Access Required" = "생체 인증 접근이 필요합니다";
/* Voting */
"Block" = "블록";
/* No comment provided by engineer. */
"block #%d of %d" = "%2$d개중 %1$d번째 블록";
/* No comment provided by engineer. */
"Block #%d of %d" = "%2$d개중 %1$d번째 블록";
/* Voting */
"Blocked '%@' username" = "사용자 이름 '%@' 차단 됨";
/* Buy
buy */
"Buy" = "구매";
/* Translate it as short as possible! (24 symbols max) */
"Buy & Sell" = "매수 & 매도";
/* No comment provided by engineer. */
"Buy & Sell Dash" = "대시 매수 & 매도";
/* Buy a Gift Card */
"Buy a Gift Card" = "기프트 카드 구매";
/* Dash Service Overview */
"Buy and convert Dash with another crypto" = "다른 암호화폐로 대시 구매 및 전환하기";
/* No comment provided by engineer. */
"Buy credits" = "크레딧 구매";
/* No comment provided by engineer. */
"Buy Dash" = "대시 매수";
/* Dash Service Overview */
"Buy Dash with fiat" = "법정 화폐로 대시 구매하기";
/* Dash Portal */
"Buy Dash · No account needed" = "대시 구매하기 · 계정이 필요하지 않습니다";
/* DashSpend */
"Buy gift card" = "기프트 카드 구매하기";
/* No comment provided by engineer. */
"Buy gift cards with your Dash" = "대시로 기프트 카드 구매";
/* No comment provided by engineer. */
"Buy gift cards with your Dash for the exact amount of your purchase." = "정확히 당신의 구매 금액만큼 기프트 카드를 구매하세요.";
/* 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" = "\"모두 투표하기\" 버튼을 선택하면 필터를 거친 모든 사용자 이름 (%Id) 요청에 대해 자동으로 투표하게 됩니다.";
/* 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." = "이 기기를 삭제하면 더 이상 이 기기의 금액에 액세스할 수 없습니다. 이 작업은 더 이상 암호 문장에 접근할 수 없고 PIN 코드도 분실한 경우에만 실행하십시오.";
/* No comment provided by engineer. */
"Cancel" = "취소";
/* Voting */
"Cancel Approval" = "승인 취소하기";
/* No comment provided by engineer. */
"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." = "이 거래를 취소하더라도 거래 주문은 취소되지 않습니다. 곧 귀하의 코인베이스 계좌로 DASH를 받게 됩니다.";
/* DashSpend */
"Card number" = "카드 번호";
/* No comment provided by engineer. */
"Card PIN" = "카드 PIN";
/* A verb. Action button title for an alert 'Change payment amount?' */
"Change" = "변경";
/* No comment provided by engineer. */
"Change payment amount?" = "지불 금액을 변경하시겠습니까?";
/* No comment provided by engineer. */
"Change PIN" = "PIN 변경";
/* CoinJoin */
"Change to Advanced" = "고급으로 변경하기";
/* CoinJoin */
"Change to Intermediate" = "중급으로 변경하기";
/* No comment provided by engineer. */
"Check current balance" = "현재 잔액을 확인하세요";
/* TimeSkew */
"Check date & time settings" = "날짜 & 시간 설정 확인";
/* No comment provided by engineer. */
"Check your connection" = "연결을 확인하세요";
/* DashSpend */
"Check your email and enter the verification code." = "이메일을 확인하시고 인증 코드를 입력하세요";
/* Choose your Dash username */
"Choose your" = "다음을 선택하세요";
/* No comment provided by engineer. */
"Choose Your Username" = "사용자 이름을 선택하세요";
/* No comment provided by engineer. */
"Claimed" = "사용중입니다";
/* No comment provided by engineer. */
"Clear" = "삭제";
/* No comment provided by engineer. */
"Clear trusted node?" = "신뢰할 수 있는 노드를 삭제하시겠습니까?";
/* No comment provided by engineer. */
"Close" = "닫기";
/* CrowdNode */
"Close and notify when it’s done" = "완료되면 종료하고 알림받기";
/* No comment provided by engineer. */
"Close App" = "앱 닫기";
/* Dash Portal */
"Coinbase" = "코인베이스";
/* Coinbase Two Factor Auth */
"Coinbase 2FA code" = "코인베이스 2FA 코드";
/* Coinbase/Buy Dash */
"Coinbase Fee" = "코인베이스 수수료";
/* CoinJoin */
"CoinJoin" = "코인조인";
/* CoinJoin */
"CoinJoin Collateral Inputs" = "코인조인 담보 입력";
/* CoinJoin */
"CoinJoin Create Denominations" = "코인조인 디노미네이션 생성";
/* CoinJoin */
"CoinJoin Mixing" = "코인조인 믹싱";
/* CoinJoin */
"CoinJoin Mixing Fee" = "코인조인 믹싱 수수료";
/* No comment provided by engineer. */
"Confirm" = "승인";
/* Coinbase/Buy Dash/Confirm Order */
"Confirm (%d%@)" = "확인 (%1$d%2$@)";
/* No comment provided by engineer. */
"Confirm PIN" = "PIN 확인";
/* No comment provided by engineer. */
"Confirming" = "확인 중";
/* ZenLedger */
"Connect your crypto wallets to the ZenLedger platform. Learn more and get started with your Dash Wallet transactions." = "당신의 암호화폐 지갑을 Zenledger 플랫폼에 연결하세요. 자세한 내용을 확인하시고 대시 지갑 거래를 통해 지금 시작하세요.";
/* Buy Sell Portal
Coinbase Entry Point */
"Connected" = "연결됨";
/* CrowdNode */
"Connected Dash address" = "연결된 대시 주소";
/* No comment provided by engineer. */
"Connected peers: %d" = "연결된 피어: %d";
/* No comment provided by engineer. */
"Connecting to payment server" = "지불 서버에 연결 중";
/* Coinbase
Coinbase Two Factor Auth */
"Contact Coinbase Support" = "코인베이스 지원센터에 문의하기";
/* DashSpend */
"Contact CTX Support" = "CTX 지원팀에 문의하기";
/* No comment provided by engineer. */
"Contact Request Pending" = "연락처 요청 대기 중";
/* No comment provided by engineer. */
"Contact Requests" = "연락처 요청";
/* No comment provided by engineer. */
"Contact Support" = "고객 지원부에 문의하기";
/* No comment provided by engineer. */
"Contacts" = "연락처";
/* No comment provided by engineer. */
"Continue" = "계속";
/* No comment provided by engineer. */
"Continue Anyway" = "그래도 계속하기";
/* Coinbase Entry Point */
"Convert Crypto" = "암호화폐를 환전하세요";
/* No comment provided by engineer. */
"Copied" = "복사됨";
/* No comment provided by engineer. */
"Copy" = "복사";
/* No comment provided by engineer. */
"Copy Invitation Link" = "초대 링크 복사";
/* No comment provided by engineer. */
"Copy Logs" = "로그 복사하기";
/* No comment provided by engineer. */
"Copy text" = "문자 복사";
/* 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" = "입력되지 않거나 잘못 입력된 단어를 자동을 복구할 수 없었습니다.";
/* No comment provided by engineer. */
"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." = "환율 정보를 찾지 못했습니다.";
/* No comment provided by engineer. */
"Couldn't make payment" = "지불에 실패하였습니다";
/* No comment provided by engineer. */
"Couldn't sweep balance" = "잔액을 지갑으로 옮기지 못했습니다";
/* No comment provided by engineer. */
"Couldn't transmit payment to Dash network" = "지불 내용을 대시 네트워크에 전송하지 못하였습니다";
/* No comment provided by engineer. */
"Create a new Invitation" = "새로운 초대 생성하기";
/* No comment provided by engineer. */
"Create a new invitation" = "새로운 초대 생성하기";
/* No comment provided by engineer. */
"Create a New Wallet" = "새로운 지갑 생성하기";
/* Usernames */
"Create a username" = "사용자이름 생성하기";
/* CrowdNode */
"Create Account" = "계정 생성하기";
/* Create DashSpend account */
"Create account" = "계정 생성하기";
/* DashSpend account title */
"Create an account or log into an existing one" = "계정을 생성하거나 기존 계정에 로그인하세요";
/* CrowdNode */
"Create an online CrowdNode account" = "온라인 크라우드노드 계정 생성하기";
/* No comment provided by engineer. */
"Create invitation" = "초대 생성하기";
/* Create new account */
"Create new account" = "새로운 계정 생성하기";
/* CrowdNode
CrowdNode Portal */
"Create Online Account" = "온라인 계정 생성하기";
/* Usernames */
"Create your username" = "당신의 사용자 이름을 생성하세요";
/* No comment provided by engineer. */
"Create your Username, find friends & family with their usernames and add them to your contacts" = "사용자 이름을 생성하고, 사용자 이름으로 친구와 가족을 찾아 당신의 연락처에 추가하세요.";
/* Coinbase/Payment Methods */
"Credit Card" = "신용카드";
/* CrowdNode */
"CrowdNode benefits" = "크라우드노드의 이점";
/* CrowdNode Portal */
"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." = "크라우드노가 이 주소를 당신의 계정 ID로 사용합니다. 이 주소에 연결된 암호 문구를 잃게되는 경우, 이 지갑 안의 자금 및 크라우드노드 계정에 대한 액세스를 잃게 됩니다. ";
/* CrowdNode */
"CrowdNode withdrawal limits" = "크라우드노드 출금 한도";
/* No comment provided by engineer. */
"CrowdNode · Account" = "크라우드노드 · 계정";
/* CrowdNode Portal */
"CrowdNode ➝ DashWallet" = "크라우드노드 ➝ 대시지갑";
/* No comment provided by engineer. */
"CSV Export" = "CSV 내보내기";
/* Explore Dash/Filters */
"CTX gift card" = "CTX 기프트 카드";
/* Explore Dash: Filters */
"CTX gift cards" = "CTX 기프트 카드";
/* Crowdnode */
"Current APY = %@" = "현재 APY = %@";
/* CrowdNode */
"Current APY is %@" = "현재 APY는 %@ 입니다";
/* Explore Dash: Filters */
"Current location" = "현재 위치";
/* Explore Dash/Merchants/Filters */
"Current Location Settings" = "현재 위치 설정";
/* No comment provided by engineer. */
"Current user: %@" = "현재 사용자: %@";
/* Explore Dash: Filters */
"Dash" = "대시";
/* No comment provided by engineer. */
"Dash address" = "대시 주소";
/* CrowdNode */
"Dash address designated for your CrowdNode account in the Dash Wallet on this device " = "이 기기의 대시 지갑 내 크라우드노드 계정에 지정한 대시 주소";
/* No comment provided by engineer. */
"Dash balance" = "대시 잔고";
/* Coinbase Entry Point */
"Dash balance on Coinbase" = "코인베이스의 대시 잔액";
/* Uphold Entry Point */
"Dash balance on Uphold" = "업홀드 내 대시 잔고";
/* No comment provided by engineer. */
"Dash payments can't be less than %@" = "대시 지불은 %@보다 적을 수 없습니다";
/* No comment provided by engineer. */
"Dash username" = "대시 사용자 이름";
/* DashSpend confirmation */
"Dash Wallet" = "대시 지갑";
/* Buy Dash */
"Dash Wallet on this device" = "이 기기의 대시 지갑";
/* No comment provided by engineer. */
"DashPay Invitation" = "대시페이 초대";
/* No comment provided by engineer. */
"DashPay Upgrade Fee" = "대시페이 업그레이드 수수료";
/* CrowdNode Portal */
"DashWallet ➝ CrowdNode" = "대시지갑 ➝ 크라우드노드";
/* No comment provided by engineer. */
"Date" = "날짜";
/* Voting */
"Date: New to old" = "날짜: 현재부터 과거";
/* Voting */
"Date: Old to new" = "날짜: 과거부터 현재";
/* Voting */
"Default filter setting" = "디폴트 필터 설정";
/* Location Service Status */
"Denied" = "거절됨";
/* CrowdNode
CrowdNode Portal */
"Deposit" = "입금";
/* CrowdNode Portal */
"Deposit %@ to start earning" = "%@를 입금하고 소득 얻기를 시작하세요 ";
/* CrowdNode */
"Deposit at least %@ Dash on your Dash Wallet to complete a withdrawal" = "당신의 대시 지갑에 최소 금액 %@ 를 입금하여 출금을 완료합니다";
/* CrowdNode Portal */
"Deposit at least %@ to start earning" = "소득 얻기를 시작하려면 최소 %@ 를 입금해야 합니다";
/* CrowdNode */
"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)." = "기기 보안이 손상되었습니다\n어떤 '탈옥' 어플이든 다른 어플의 주요 체인 데이터에 접근할 수 있습니다 (당신의 대시가 도난당할 수 있습니다).";
/* 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." = "기기 보안이 손상되었습니다\n어떤 '탈옥' 어플이든 다른 어플의 주요 체인 데이터에 접근할 수 있습니다 (당신의 대시가 도난당할 수 있습니다). 이 지갑을 즉시 삭제하시고 안전한 기기에서 지갑을 복구하십시오.";
/* Coinbase Entry Point */
"Disconnect Coinbase Account" = "코인베이스 계정 연결 해제";
/* Uphold Entry Point */
"Disconnect Uphold Account" = "업홀드 계정 연결 해제";
/* Buy Sell Portal
Coinbase Entry Point */
"Disconnected" = "연결 해제";
/* DashSpend confirmation */
"Discount" = "할인";
/* No comment provided by engineer. */
"Dismiss" = "닫기";
/* No comment provided by engineer. */
"Display Name" = "이름 표시";
/* Explore Dash: Filters */
"Distance" = "거리";
/* No comment provided by engineer. */
"Do not take a screenshot" = "스크린샷을 찍지 마세요";
/* Usernames */
"Do you really want to cancel the username request?" = "사용자 이름 요청을 정말 취소하시겠습니까?";
/* No comment provided by engineer. */
"Done" = "완료";
/* ex., Download peer: 127.0.0.1:9999 */
"Download peer: %@" = "피어 다운로드: %@";
/* CrowdNode */
"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." = "규제적 제약으로 인하여, 귀하가 영국에 있지 않음을 확인해야 합니다. 코인베이스 기능 시작시 위치 확인이 필요합니다.";
/* Geoblock */
"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." = "투표 과정을 통해, 대시 네트워크는 사용자 이름 '%@'을 다른 사용자에게 할당하기로 결정하였습니다. 다른 사용자 이름으로 다시 시도해주십시오.";
/* CrowdNode */
"e.g. johndoe@mail.com" = "예시 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" = "각 초대는 이 금액을 통해 지원되며, 이로써 받는 이가 재빨리 대시 네트워크에 사용자 이름을 생성할 수 있습니다";
/* (List of notifications happened) Earlier (some time ago) */
"Earlier" = "이전";
/* No comment provided by engineer. */
"Easily stake Dash and earn passive income with a few simple clicks." = "간단한 클릭만으로 대시를 손쉽게 스테이킹하고 소극적 소득을 얻으세요.";
/* No comment provided by engineer. */
"Edit Profile" = "프로필 수정";
/* No comment provided by engineer. */
"Edit profile" = "프로필 수정";
/* Invitation tag placeholder */
"eg: Dad" = "예시: 아빠";
/* Input username textfield placeholder */
"eg: johndoe" = "예시: 홍길동";
/* CrowdNode */
"Email" = "이메일";
/* No comment provided by engineer. */
"Enable Face ID" = "페이스 ID 활성화";
/* No comment provided by engineer. */
"Enable Receive Notifications" = "수신 알림 허용";
/* No comment provided by engineer. */
"Enable Touch ID" = "터치 ID 활성화";
/* No comment provided by engineer. */
"Enter" = "입력";
/* Coinbase Two Factor Auth */
"Enter Coinbase 2FA code" = "코인베이스 2FA 코드를 입력하십시오";
/* No comment provided by engineer. */
"Enter PIN" = "PIN 입력하기";
/* No comment provided by engineer. */
"Enter Recovery Phrase" = "복원 문구를 입력하세요";
/* Enter verification code */
"Enter verification code" = "인증 코드 입력";
/* No comment provided by engineer. */
"Enter your 2FA code below" = "아래에 귀하의 2FA 코드를 입력하세요";
/* No comment provided by engineer. */
"Enter your Gravatar Email ID" = "당신의 Gravatar 이메일 ID를 입력하세요";
/* Voting */
"Enter your voting key" = "투표 키를 입력하세요";
/* No comment provided by engineer. */
"Error" = "오류";
/* CTXSpend error */
"Error processing server response. Please try again later." = "서버 반응 처리 오류. 나중에 다시 시도하십시오.";
/* No comment provided by engineer. */
"Error updating your profile" = "프로필 업데이트 오류";
/* CoinJoin */
"Error ·" = "오류 ·";
/* No comment provided by engineer. */
"Exit" = "나가기";
/* No comment provided by engineer. */
"Expense" = "비용";
/* No comment provided by engineer. */
"Explore" = "탐색하기";
/* No comment provided by engineer. */
"Explore Dash" = "대시 탐색하기";
/* ZenLedger */
"Export all transactions" = "모든 거래 내보내기";
/* No comment provided by engineer. */
"Export CSV" = "CSV 내보내기";
/* No comment provided by engineer. */
"Extended Public Keys" = "확장된 공개 키";
/* No comment provided by engineer. */
"Face ID limit" = "Face ID 제한";
/* No comment provided by engineer. */
"Failed to load barcode" = "바코드 로딩 실패";
/* Coinbase */
"Failed to start auth session" = "승인 세션을 시작하는 데 실패하였습니다";
/* Buy Sell Portal */
"Failed to sync" = "동기화에 실패하였습니다";
/* Explore Dash */
"Failed to sync on" = "동기화에 실패함";
/* No comment provided by engineer. */
"Failed wallet update" = "지갑 업데이트 실패";
/* No comment provided by engineer. */
"Fee" = "수수료";
/* No comment provided by engineer. */
"Fee is greater than balance" = "수수료가 잔고보다 큽니다";
/* No comment provided by engineer. */
"Fee will be deducted from requested amount." = "요청한 금액에서 수수료가 공제됩니다.";
/* Coinbase/Fee info */
"Fees in crypto purchases" = "암호화폐 매수 수수료";
/* No comment provided by engineer. */
"Fetching Image" = "이미지 불러오는 중";
/* Explore Dash */
"Fetching Info" = "정보 가져오는 중";
/* Balance */
"Fetching rates…" = "환율 불러오는 중...";
/* Coinbase/Payment Methods */
"Fiat Account" = "법정 화폐 계좌";
/* No comment provided by engineer. */
"Filter" = "필터";
/* No comment provided by engineer. */
"Filter transactions" = "거래 필터링하기";
/* No comment provided by engineer. */
"Filtered by" = "다음으로 필터";
/* Explore Dash/Merchants/Filters */
"Filtered by:" = "다음으로 필터:";
/* Explore Dash */
"Filters" = "필터";
/* No comment provided by engineer. */
"Find a user on the Dash Network" = "대시 네트워크에서 사용자를 검색합니다";
/* No comment provided by engineer. */
"Find ATMs where you can buy or sell Dash." = "대시를 사고 팔 수 있는 ATM을 찾아보세요.";
/* No comment provided by engineer. */
"Find merchants that accept Dash payments." = "대시를 통화로 사용하는 판매자를 찾아보세요.";
/* No comment provided by engineer. */
"Find merchants that accept Dash, where to buy it and how to earn income with it." = "대시를 받는 판매자를 찾고, 구매처를 확인하고, 수익을 얻는 방법을 확인하세요.";
/* CrowdNode */
"First deposit should be more than %@" = "첫 입금은 %@ 이상이어야 합니다";
/* CrowdNode */
"First minimum deposit" = "첫 번째 최소 입금";
/* DashSpend */
"Fixed amounts" = "고정된 금액";
/* Explore Dash: Filters */
"Fixed denominated amounts" = "고정된 단위 금액";
/* Explore Dash: Filters */
"Flexible amounts" = "유연한 금액";
/* DashSpend */
"Temporarily unavailable" = "일시적으로 이용할 수 없음";
/* Usernames */
"For some reason, the request for the username '%@' has failed." = "알 수 없는 이유로 사용자 이름 '%@'에 대한 요청에 실패하였습니다.";
/* Coinbase */
"For your security, you have been signed out." = "보안을 위해 로그아웃 되었습니다.";
/* No comment provided by engineer. */
"Forget about long crypto addresses, create the username, find friends and add them to your contacts" = "긴 크립토 주소는 잊어버리세요. 사용자 이름을 생성하고, 친구를 찾아 당신의 연락처에 추가하세요.";
/* No comment provided by engineer. */
"Forgot PIN?" = "PIN을 잊어버리셨나요?";
/* No comment provided by engineer. */
"Found missing word:\n%@" = "입력되지 않은 단어가 발견되었습니다:\n%@";
/* No comment provided by engineer. */
"Found missing words:\n%@" = "입력되지 않은 단어가 발견되었습니다:\n%@";
/* No comment provided by engineer. */
"Found potential missing words:\n%@" = "잠재적 입력되지 않은 단어가 발견되었습니다:\n%@";
/* DashSpend confirmation */
"From" = "다음으로부터";
/* from CrowdNode */
"from CrowdNode" = "크라우드노드에서";
/* from Dash Wallet */
"from Dash Wallet" = "대시 지갑에서";
/* Uphold Entry Point */
"From Uphold to Dash Wallet" = "업홀드에서 대시 지갑으로";
/* Dash Service Overview */
"From Uphold to your Dash Wallet" = "업홀드에서 당신의 대시 지갑으로";
/* Coinbase */