-
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) · 217 KB
/
Localizable.strings
File metadata and controls
3206 lines (2142 loc) · 217 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" = "%@ 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" = "%@ ไม่สามารถเข้าถึงกล้องถ่ายรูป";
/* 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";
/* Credits */
"%@ ~ %lu contacts / %lu profile updates" = "%1$@ ~ %2$lu contacts / %3$lu profile updates";
/* 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 ซ้ำ";
/* Voting */
"%ld requests" = "%ld คำขอ";
/* 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) สร้างเอกลักษณ์ Dash";
/* No comment provided by engineer. */
"(2/3) Unable to create Dash Identity" = "(2/3) ไม่สามารถสร้างเอกลักษณ์ Dash";
/* 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 กม.";
/* Explore Dash: Filters */
"20 miles" = "20 ไมล์";
/* No comment provided by engineer. */
"24 hours" = "24 ชั่วโมง";
/* Explore Dash: Filters */
"32 km" = "32 กม.";
/* 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 กม.";
/* Explore Dash: Filters */
"80 km" = "80 กม.";
/* 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." = "Masternode ต้องการ 1000 Dash เป็นหลักประกัน และแต่ละ Masternode จะได้รับรางวัลโดยประมาณ %@ ต่อปี";
/* No comment provided by engineer. */
"About" = "เกี่ยวกับ";
/* No comment provided by engineer. */
"About me" = "เกี่ยวกับฉัน";
/* No comment provided by engineer. */
"Accept" = "ยอมรับ";
/* Explore */
"Accept Dash directly" = "Accept Dash directly";
/* DashSpend */
"Accept terms and\nconditions" = "Accept terms and\nconditions";
/* 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" = "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" = "After the voting ends we will notify you about its results";
/* No comment provided by engineer. */
"Agree" = "เห็นด้วย";
/* TimeSkew */
"ahead" = "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." = "การถ่ายโอนทั้งหมดไปและกลับจาก CrowdNode จากอุปกรณ์นี้จะดำเนินการด้วยที่อยู่ DASH ด้านล่างจากอุปกรณ์นี้";
/* ZenLedger */
"Allow" = "อนุญาติ";
/* No comment provided by engineer. */
"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" = "จำนวนเงินใน Dash";
/* No comment provided by engineer. */
"Amount received" = "จำนวนเงินที่ได้รับ";
/* No comment provided by engineer. */
"Amount Sent" = "จำนวนเงินที่ส่ง";
/* 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" = "ประสบการณ์ที่ใช้งานง่ายและคุ้นเคย";
/* CTXSpend error */
"An unknown error occurred. Please try again later." = "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" = "Any username that has a number 2-9, is more than 20 characters or that has a hyphen will be automatically approved";
/* Coinbase/Payment Methods */
"Apple Pay" = "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." = "แอพพลิเคชั่น %@ ต้องการรับ Master Public Key ของคุณ ซึ่งสามารถใช้ในการติดตามกระเป๋าสตางค์ของคุณได้ แต่ไม่สามารถใช้ในการย้าย 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." = "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." = "เนื่องจากคนส่วนใหญ่ไม่มี 1000 Dash อยู่ในมืออย่างแน่นอน Crowdnode จึงได้ให้บริการโดยรวบรวมเงินฝากจากสมาชิก พวกเขาสามารถบรรลุผลประโยชน์ของการเป็นเจ้าของ Masternode";
/* DashSpend */
"at" = "at";
/* No comment provided by engineer. */
"ATM search works better with Location Services turned on." = "การค้นหา ATM ทำงานได้ดีขึ้นเมื่อเปิดใช้บริการสถานที่";
/* No comment provided by engineer. */
"ATMs" = "เอทีเอ็ม";
/* 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" = "Wallet สำรอง";
/* No comment provided by engineer. */
"Backup your passphrase to create a CrowdNode account" = "สำรองข้อมูลรหัสผ่านของคุณเพื่อสร้างบัญชี CrowdNode";
/* 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";
/* CrowdNode */
"Balance: " = "ยอดคงเหลือ: ";
/* Coinbase/Payment Methods */
"Bank Account" = "บัญชีธนาคาร";
/* Coinbase/Payment Methods */
"Bank Wire" = "การโอนเงินผ่านทางธนาคาร ";
/* No comment provided by engineer. */
"Barcode placeholder" = "Barcode placeholder";
/* CrowdNode */
"Become part of a Dash Masternode with CrowdNode" = "เป็นส่วนหนึ่งของ Dash มาสเตอร์โหนด กับ CrowdNode";
/* TimeSkew */
"behind" = "behind";
/* Validation rule: Between 3 and 24 characters */
"Between %ld and %ld characters" = "ระหว่าง %1$ld and %2$ld ตัวอักษร";
/* Usernames */
"Between 3 and 23 characters" = "Between 3 and 23 characters";
/* Coinbase Entry Point */
"Between Dash Wallet and Coinbase" = "ระหว่าง Dash Wallet และ Coinbase";
/* Dash Service Overview */
"Between Dash Wallet and your Coinbase account" = "ระหว่างกระเป๋าเงิน Dash และบัญชี Coinbase ของคุณ";
/* No comment provided by engineer. */
"Biometrics Access Required" = "Biometrics Access Required";
/* Voting */
"Block" = "บล็อก";
/* No comment provided by engineer. */
"block #%d of %d" = "กลุ่ม # %1$d of %2$d";
/* No comment provided by engineer. */
"Block #%d of %d" = "กลุ่ม # %1$d of %2$d";
/* Voting */
"Blocked '%@' username" = "Blocked '%@' username";
/* Buy
buy */
"Buy" = "ซื้อ";
/* Translate it as short as possible! (24 symbols max) */
"Buy & Sell" = "ซื้อ ขาย";
/* No comment provided by engineer. */
"Buy & Sell Dash" = "ซื้อ & ขาย Dash";
/* Buy a Gift Card */
"Buy a Gift Card" = "ซื้อบัตรของขวัญ";
/* Dash Service Overview */
"Buy and convert Dash with another crypto" = "ซื้อและแลกเปลี่ยน Dash ด้วยคริปโตอื่น ๆ";
/* No comment provided by engineer. */
"Buy credits" = "Buy credits";
/* No comment provided by engineer. */
"Buy Dash" = "ขาย Dash";
/* Dash Service Overview */
"Buy Dash with fiat" = "ซื้อ Dash ด้วยเงินสด";
/* Dash Portal */
"Buy Dash · No account needed" = "ซื้อ Dash · ไม่ต้องใช้บัญชี";
/* DashSpend */
"Buy gift card" = "Buy gift card";
/* No comment provided by engineer. */
"Buy gift cards with your Dash" = "ซื้อบัตรของขวัญด้วย Dash ของคุณ";
/* No comment provided by engineer. */
"Buy gift cards with your Dash for the exact amount of your purchase." = "ซื้อบัตรของขวัญด้วย Dash ของคุณสำหรับจำนวนที่แน่นอนของการซื้อของคุณ";
/* 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" = "ด้วยการแตะปุ่ม \"โหวตให้ทั้งหมด\" คุณจะโหวตให้กับชื่อผู้ใช้ที่กรองทั้งหมด (%ld) ที่ถูกส่งเข้ามาก่อนโดยอัตโนมัติ";
/* 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" = "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 ในบัญชี Coinbase ของคุณในไม่ช้า";
/* DashSpend */
"Card number" = "Card number";
/* No comment provided by engineer. */
"Card PIN" = "Card 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" = "Check current balance";
/* TimeSkew */
"Check date & time settings" = "Check date & time settings";
/* No comment provided by engineer. */
"Check your connection" = "ตรวจสอบการเชื่อมต่อ";
/* DashSpend */
"Check your email and enter the verification code." = "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";
/* Coinbase Two Factor Auth */
"Coinbase 2FA code" = "รหัส 2FA ของ Coinbase ";
/* Coinbase/Buy Dash */
"Coinbase Fee" = "ค่าธรรมเนียม Coinbase ";
/* 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";
/* 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." = "Connect your crypto wallets to the ZenLedger platform. Learn more and get started with your Dash Wallet transactions.";
/* Buy Sell Portal
Coinbase Entry Point */
"Connected" = "เชื่อมต่อแล้ว";
/* CrowdNode */
"Connected Dash address" = "ที่อยู่ Dash ที่เชื่อมต่อ";
/* 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" = "ติดต่อฝ่ายสนับสนุน Coinbase";
/* DashSpend */
"Contact CTX Support" = "Contact CTX Support";
/* 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" = "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" = "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." = "ไม่สามารถเชื่อมต่อกับเครือข่าย DASH โปรดตรวจสอบว่าคุณเชื่อมต่อกับอินเทอร์เน็ต";
/* 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" = "ไม่สามารถชำระเงินส่งไปยังเครือข่าย Dash ได้";
/* 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" = "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" = "สร้างบัญชี CrowdNode ออนไลน์";
/* No comment provided by engineer. */
"Create invitation" = "สร้างคำเชิญ";
/* Create new account */
"Create new account" = "Create new account";
/* CrowdNode
CrowdNode Portal */
"Create Online Account" = "สร้างบัญชีออนไลน์";
/* Usernames */
"Create your username" = "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";
/* CrowdNode Portal */
"CrowdNode Support" = "ฝ่ายสนับสนุน CrowdNode ";
/* CrowdNode */
"CrowdNode uses this address as your account ID. You will lose access to your funds within this wallet and your CrowdNode account if you lose the passphrase associated to this address." = "CrowdNode ใช้ที่อยู่นี้เป็นรหัสบัญชีของคุณ คุณจะสูญเสียการเข้าถึงเงินทุนของคุณภายในกระเป๋าเงินนี้และบัญชี CrowdNode ของคุณหากคุณสูญเสียวลีรหัสผ่านที่เกี่ยวข้องกับที่อยู่นี้";
/* CrowdNode */
"CrowdNode withdrawal limits" = "ข้อจำกัดการถอน CrowdNode ";
/* No comment provided by engineer. */
"CrowdNode · Account" = "CrowdNode · Account";
/* CrowdNode Portal */
"CrowdNode ➝ DashWallet" = "CrowdNode ➝ DashWallet";
/* No comment provided by engineer. */
"CSV Export" = "ส่งออก CSV ";
/* Explore Dash/Filters */
"CTX gift card" = "CTX gift card";
/* Explore Dash: Filters */
"CTX gift cards" = "CTX gift cards";
/* 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" = "Dash";
/* No comment provided by engineer. */
"Dash address" = "ที่อยู่ Dash";
/* CrowdNode */
"Dash address designated for your CrowdNode account in the Dash Wallet on this device " = "ที่อยู่ Dash ที่กำหนดไว้สำหรับบัญชี CrowdNode ของคุณในกระเป๋าเงิน Dash บนอุปกรณ์นี้";
/* No comment provided by engineer. */
"Dash balance" = "ยอดคงเหลือ Dash";
/* Coinbase Entry Point */
"Dash balance on Coinbase" = "ยอดคงเหลือของ Dash บน Coinbase";
/* Uphold Entry Point */
"Dash balance on Uphold" = "ยอด Dash คงเหลือใน Uphold";
/* No comment provided by engineer. */
"Dash payments can't be less than %@" = "การชำระเงิน Dash ไม่สามารถจะน้อยกว่า %@";
/* No comment provided by engineer. */
"Dash username" = "ชื่อผู้ใช้ Dash";
/* DashSpend confirmation */
"Dash Wallet" = "กระเป๋าเงิน Dash ";
/* Buy Dash */
"Dash Wallet on this device" = "กระเป๋าเงิน Dash บนอุปกรณ์นี้";
/* No comment provided by engineer. */
"DashPay Invitation" = "คำเชิญ DashPay ";
/* No comment provided by engineer. */
"DashPay Upgrade Fee" = "DashPay อัพเกรดค่าบริการ";
/* CrowdNode Portal */
"DashWallet ➝ CrowdNode" = "DashWallet ➝ CrowdNode";
/* No comment provided by engineer. */
"Date" = "วันที่";
/* Voting */
"Date: New to old" = "วันที่: ใหม่ไปเก่า";
/* Voting */
"Date: Old to new" = "วันที่: เก่าไปใหม่";
/* Voting */
"Default filter setting" = "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" = "ฝากอย่างน้อย %@ Dash บนกระเป๋า Dash ของคุณเพื่อการถอน";
/* 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'jailbreak' แอพพลิเคชั่นต่าง ๆ สามารถเข้าถึงข้อมูลของแอพพลิเคชั่นอื่นได้ (และสามารถขโมย 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." = "อุปกรณ์รักษาความปลอดภัยที่ถูกบุกรุก\n'jailbreak' แอพพลิเคชั่นต่าง ๆ สามารถเข้าถึงข้อมูลของแอพพลิเคชั่นอื่นได้ (และสามารถขโมย dash ของคุณได้) กำจัดกระเป๋าสตางค์นี้โดยทันที และกู้คืนบนอุปกรณ์ที่ปลอดภัย";
/* Coinbase Entry Point */
"Disconnect Coinbase Account" = "ตัดการเชื่อมต่อบัญชี Coinbase";
/* Uphold Entry Point */
"Disconnect Uphold Account" = "ยกเลิกการเชื่อมต่อบัญชี Uphold";
/* Buy Sell Portal
Coinbase Entry Point */
"Disconnected" = "ตัดการเชื่อมต่อ";
/* DashSpend confirmation */
"Discount" = "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?" = "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:" = "เนื่องจากเงื่อนไขการใช้บริการของ CrowdNode สามารถถอนได้ไม่เกิน:";
/* 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" = "ตัวอย่างเช่น 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" = "คำเชิญแต่ละครั้งจะได้รับเงินทุนด้วยจำนวนเงินนี้เพื่อให้ผู้รับสามารถสร้างชื่อผู้ใช้ของพวกเขาได้อย่างรวดเร็วบนเครือข่าย Dash";
/* (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." = " Stake Dash ได้อย่างง่ายดายและได้รับรายได้แบบ passive income ด้วยการคลิกง่ายๆ";
/* No comment provided by engineer. */
"Edit Profile" = "แก้ไขโปรไฟล์";
/* No comment provided by engineer. */
"Edit profile" = "Edit profile";
/* Invitation tag placeholder */
"eg: Dad" = "เช่น: พ่อ";
/* Input username textfield placeholder */
"eg: johndoe" = "ตัวอย่างเช่น: johndoe";
/* CrowdNode */
"Email" = "อีเมล";
/* No comment provided by engineer. */
"Enable Face ID" = "เชื่อมต่อ Face ID";
/* No comment provided by engineer. */
"Enable Receive Notifications" = "เปิดรับการแจ้งเตือน";
/* No comment provided by engineer. */
"Enable Touch ID" = "เชื่อมต่อ touch ID";
/* No comment provided by engineer. */
"Enter" = "เข้าสู่";
/* Coinbase Two Factor Auth */
"Enter Coinbase 2FA code" = "ป้อนรหัส 2FA ของ Coinbase ";
/* No comment provided by engineer. */
"Enter PIN" = "ใส่รหัส PIN";
/* No comment provided by engineer. */
"Enter Recovery Phrase" = "ใส่วลีกู้คืน";
/* Enter verification code */
"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 ของคุณ";
/* Voting */
"Enter your voting key" = "ป้อนรหัสลงคะแนนของคุณ";
/* No comment provided by engineer. */
"Error" = "ผิดพลาด";
/* CTXSpend error */
"Error processing server response. Please try again later." = "Error processing server response. Please try again later.";
/* No comment provided by engineer. */
"Error updating your profile" = "ข้อผิดพลาดในการอัปเดตโปรไฟล์ของคุณ";
/* CoinJoin */
"Error ·" = "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" = "สำรวจ Dash";
/* ZenLedger */
"Export all transactions" = "Export all transactions";
/* No comment provided by engineer. */
"Export CSV" = "Export 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" = "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…" = "Fetching rates…";
/* Coinbase/Payment Methods */
"Fiat Account" = "บัญชีเงินสด";
/* No comment provided by engineer. */
"Filter" = "กรอง";
/* No comment provided by engineer. */
"Filter transactions" = "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" = "ค้นหาผู้ใช้บนเครือข่าย Dash";
/* No comment provided by engineer. */
"Find ATMs where you can buy or sell Dash." = "Find ATMs where you can buy or sell Dash.";
/* No comment provided by engineer. */
"Find merchants that accept Dash payments." = "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." = "ค้นหาร้านค้าที่รับ Dash ซื้อได้ที่ไหนและวิธีสร้างรายได้จาก Dash";
/* CrowdNode */
"First deposit should be more than %@" = "เงินฝากครั้งแรกควรมากกว่า %@";
/* CrowdNode */
"First minimum deposit" = "ฝากขั้นต่ำครั้งแรก";
/* DashSpend */
"Fixed amounts" = "Fixed amounts";
/* Explore Dash: Filters */
"Fixed denominated amounts" = "Fixed denominated amounts";
/* Explore Dash: Filters */
"Flexible amounts" = "Flexible amounts";
/* DashSpend */
"Temporarily unavailable" = "Temporarily unavailable";
/* Usernames */
"For some reason, the request for the username '%@' has failed." = "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" = "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";
/* from CrowdNode */
"from CrowdNode" = "จาก CrowdNode";
/* from Dash Wallet */
"from Dash Wallet" = "จากกระเป๋าเงิน Dash ";
/* Uphold Entry Point */
"From Uphold to Dash Wallet" = "จาก Uphold สู่กระเป๋าเงิน Dash";
/* Dash Service Overview */
"From Uphold to your Dash Wallet" = "จาก Uphold ไปสู่กระเป๋าเงิน Dash ของคุณ";
/* Coinbase */