-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
th.ts
13026 lines (12964 loc) · 641 KB
/
th.ts
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
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="th_TH">
<context>
<name>APIPage</name>
<message>
<location filename="src/launcher/ui/pages/global/APIPage.ui" line="39"/>
<source>&Pastebin Service</source>
<oldsource>Pastebin Service</oldsource>
<translation>&บริการ Pastebin</translation>
</message>
<message>
<source><html><head/><body><p>Note: only input that starts with <span style=" font-weight:600;">http://</span> or <span style=" font-weight:600;">https://</span> will be accepted.</p></body></html></source>
<translation type="vanished"><html><head/><body><p>จดไว้: มีเพียงข้อความที่ขึ้นต้นด้วย <span style=" font-weight:600;">http://</span> or <span style=" font-weight:600;">https://</span> เท่านั้นที่ใส่ได้</p></body></html></translation>
</message>
<message>
<source><html><head/><body><p>Here you can choose from a predefined list of paste services, or input the URL of a different paste service of your choice, provided it supports the same protocol as 0x0.st, that is POST a file parameter to the URL and return a link in the response body.</p></body></html></source>
<translation type="vanished"><html><head/><body><p>ที่นี่คุณสามารถเลือกบริการฝากข้อความที่มีอยู่แล้วได้ หรือพิมพ์ลิงค์ของบริการฝากข้อความที่คุณใช้อยู่ โดยที่ใช้ระบบเดียวกันกับ 0x0.st, นั่นคือการ POST ผ่านตัวแปลไฟล์และส่งลิงค์กลับมา</p></body></html></translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/APIPage.ui" line="45"/>
<source>Paste Service &Type</source>
<oldsource>Paste Service Type</oldsource>
<translation>บริการPaste &ประเภท</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/APIPage.ui" line="58"/>
<source>Base &URL</source>
<translation>ฐาน &URL</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/APIPage.ui" line="78"/>
<source>Note: you probably want to change or clear the Base URL after changing the paste service type.</source>
<translation>หมายเหตุ: คุณอาจต้องการเปลี่ยนหรือล้าง URL ฐานหลังจากเปลี่ยนประเภทบริการวาง</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/APIPage.ui" line="150"/>
<source>API Keys</source>
<translation>คีย์ API</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/APIPage.ui" line="156"/>
<source>&Microsoft Authentication</source>
<oldsource>Microsoft Authentication</oldsource>
<translation>&การรับรองความถูกต้องของ Microsoft</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/APIPage.ui" line="162"/>
<source>Note: you probably don't need to set this if logging in via Microsoft Authentication already works.</source>
<translation>หมายเหตุ: คุณอาจไม่จำเป็นต้องตั้งค่านี้หากการเข้าสู่ระบบผ่าน Microsoft Authentication ใช้งานได้แล้ว</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/APIPage.ui" line="175"/>
<location filename="src/launcher/ui/pages/global/APIPage.ui" line="284"/>
<source>(Default)</source>
<translation>(ค่าเริ่มต้น)</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/APIPage.ui" line="182"/>
<source>Enter a custom client ID for Microsoft Authentication here.</source>
<oldsource>Enter a custom client ID for Microsoft Authentication here. </oldsource>
<translation>ป้อนรหัสไคลเอ็นต์ที่กำหนดเองสำหรับ Microsoft Authentication ที่นี่</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/APIPage.ui" line="204"/>
<source>&Modrinth API</source>
<translation>&Modrinth API</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/APIPage.ui" line="210"/>
<source><html><head/><body><p>Note: you only need to set this to access private data. Read the <a href="https://docs.modrinth.com/#section/Authentication">documentation</a> for more information.</p></body></html></source>
<oldsource><html><head/><body><p>Note: you only need to set this to access private data. Read the <a href="https://docs.modrinth.com/api-spec/#section/Authentication">documentation</a> for more information.</p></body></html></oldsource>
<translation><html><head/><body><p>หมายเหตุ: คุณต้องตั้งค่านี้หากต้องการเข้าถึงข้อมูลส่วนตัว อ่าน<a href="https://docs.modrinth.com/api-spec/#section/Authentication">เอกสารประกอบ</a>เพื่อดูข้อมูลเพิ่มเติม</p></body></html></translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/APIPage.ui" line="220"/>
<source>Enter a custom API token for Modrinth here.</source>
<translation>ป้อนโทเค็น API ที่กำหนดเองสำหรับ Modrinth ที่นี่</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/APIPage.ui" line="239"/>
<location filename="src/launcher/ui/pages/global/APIPage.ui" line="307"/>
<source>(None)</source>
<translation>(ไม่มี)</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/APIPage.ui" line="294"/>
<source>Technic Client ID</source>
<translation>ไอดีไคลเอนต์ Technic</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/APIPage.ui" line="300"/>
<source><html><head/><body><p>Note: you only need to set this to access private data.</p></body></html></source>
<translation><html><head/><body><p>หมายเหตุ: คุณจำเป็นต้องตั้งค่านี้เพื่อเข้าถึงข้อมูลส่วนตัวเท่านั้น</p></body></html></translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/APIPage.ui" line="314"/>
<source>Enter a custom GUID client ID for Technic here.</source>
<translation>ป้อน GUID ไอดีไคลเอนต์สำหรับ Technic ตรงนี้</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/APIPage.ui" line="338"/>
<source>Miscellaneous</source>
<translation>อื่นๆ</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/APIPage.ui" line="350"/>
<source>User Agent</source>
<translation>ตัวแทนผู้ใช้</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/APIPage.ui" line="359"/>
<source>Enter a custom User Agent here. The special string $LAUNCHER_VER will be replaced with the version of the launcher.</source>
<translation>ป้อนตัวแทนผู้ใช้ที่กำหนดเองที่นี่ สตริงพิเศษ $LAUNCHER_VER จะถูกแทนที่ด้วยเวอร์ชันของตัวเรียกใช้งาน</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/APIPage.ui" line="91"/>
<source>Meta&data Server</source>
<translation>เมตา&เซิร์ฟเวอร์ข้อมูล</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/APIPage.ui" line="33"/>
<source>Services</source>
<translation>บริการ</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/APIPage.ui" line="97"/>
<source>You can set this to a third-party metadata server to use patched libraries or other hacks.</source>
<translation>คุณสามารถตั้งค่านี้ให้กับเซิร์ฟเวอร์ข้อมูลเมตาของบุคคลที่สามเพื่อใช้ไลบรารีที่มีแพตช์หรือแฮ็กอื่นๆ</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/APIPage.ui" line="117"/>
<source>Enter a custom URL for meta here.</source>
<translation>ป้อน URL ที่กำหนดเองสำหรับเมตาที่นี่</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/APIPage.ui" line="252"/>
<source>&CurseForge Core API</source>
<translation>&CurseForge Core API</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/APIPage.ui" line="258"/>
<source>Note: you probably don't need to set this if CurseForge already works.</source>
<translation>หมายเหตุ: อาจไม่จำเป็นต้องตั้งค่าส่วนนี้หาก CurseForge ใช้งานได้อยู่แล้ว</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/APIPage.ui" line="265"/>
<source>Enter a custom API Key for CurseForge here.</source>
<oldsource>Enter a custom API Key for CurseForge here. </oldsource>
<translation>ป้อนคีย์ API ที่กำหนดเองสำหรับ CurseForge ที่นี่</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/APIPage.h" line="56"/>
<source>APIs</source>
<translation>APIs</translation>
</message>
</context>
<context>
<name>ATLauncher::PackInstallTask</name>
<message>
<location filename="src/launcher/modplatform/atlauncher/ATLPackInstallTask.cpp" line="120"/>
<source>Could not understand pack manifest:
</source>
<translation>ไม่เข้าใจรายการแพ็ค:
</translation>
</message>
<message>
<location filename="src/launcher/modplatform/atlauncher/ATLPackInstallTask.cpp" line="342"/>
<source>Failed to get local metadata index for %1</source>
<translation>ไม่สามารถรับดัชนีข้อมูลเมตาในเครื่องสำหรับ %1</translation>
</message>
<message>
<location filename="src/launcher/modplatform/atlauncher/ATLPackInstallTask.cpp" line="152"/>
<source>Failed to get local metadata index for '%1' v%2</source>
<translation>ไม่สามารถรับดัชนีข้อมูลเมตาในเครื่องสำหรับ '%1' v%2</translation>
</message>
<message>
<location filename="src/launcher/modplatform/atlauncher/ATLPackInstallTask.cpp" line="142"/>
<source>Unsupported installation mode</source>
<translation>โหมดการติดตั้งที่ไม่รองรับ</translation>
</message>
<message>
<location filename="src/launcher/modplatform/atlauncher/ATLPackInstallTask.cpp" line="183"/>
<source>Deleting existing files...</source>
<translation>กำลังลบไฟล์ที่มีอยู่...</translation>
</message>
<message>
<location filename="src/launcher/modplatform/atlauncher/ATLPackInstallTask.cpp" line="330"/>
<source>Unknown mod type: %1</source>
<translation>ประเภทม็อดที่ไม่รู้จัก: %1</translation>
</message>
<message>
<location filename="src/launcher/modplatform/atlauncher/ATLPackInstallTask.cpp" line="373"/>
<source>Failed to find version for %1 loader</source>
<translation>ไม่พบเวอร์ชันสำหรับตัวโหลด %1</translation>
</message>
<message>
<location filename="src/launcher/modplatform/atlauncher/ATLPackInstallTask.cpp" line="386"/>
<source>No loader version set for modpack!</source>
<translation>ไม่ได้ตั้งค่าเวอร์ชันตัวโหลดสำหรับ modpack!</translation>
</message>
<message>
<location filename="src/launcher/modplatform/atlauncher/ATLPackInstallTask.cpp" line="516"/>
<source>Unknown or unsupported download type: %1</source>
<translation>ประเภทการดาวน์โหลดที่ไม่รู้จักหรือไม่รองรับ: %1</translation>
</message>
<message>
<location filename="src/launcher/modplatform/atlauncher/ATLPackInstallTask.cpp" line="629"/>
<source>Downloading configs...</source>
<translation>กำลังดาวน์โหลดค่ากำหนด...</translation>
</message>
<message>
<location filename="src/launcher/modplatform/atlauncher/ATLPackInstallTask.cpp" line="630"/>
<source>Config download</source>
<translation>ดาวน์โหลดค่ากำหนด</translation>
</message>
<message>
<location filename="src/launcher/modplatform/atlauncher/ATLPackInstallTask.cpp" line="671"/>
<source>Extracting configs...</source>
<translation>กำลังแยกค่ากำหนด...</translation>
</message>
<message>
<location filename="src/launcher/modplatform/atlauncher/ATLPackInstallTask.cpp" line="677"/>
<source>Failed to open pack configs %1!</source>
<translation>เกิดข้อผิดพลาดในการเปิดแพ็คค่ากำหนด %1!</translation>
</message>
<message>
<location filename="src/launcher/modplatform/atlauncher/ATLPackInstallTask.cpp" line="707"/>
<source>Selecting optional mods...</source>
<translation>กำลังเลือกม็อดเสริม...</translation>
</message>
<message>
<location filename="src/launcher/modplatform/atlauncher/ATLPackInstallTask.cpp" line="716"/>
<source>Downloading mods...</source>
<translation>กำลังดาวน์โหลดม็อด...</translation>
</message>
<message>
<location filename="src/launcher/modplatform/atlauncher/ATLPackInstallTask.cpp" line="719"/>
<source>Mod download</source>
<translation>ดาวน์โหลดม็อด</translation>
</message>
<message>
<source>Unsupported download type: %1</source>
<translation type="vanished">ประเภทการดาวน์โหลดที่ไม่รองรับ: %1</translation>
</message>
<message>
<location filename="src/launcher/modplatform/atlauncher/ATLPackInstallTask.cpp" line="744"/>
<location filename="src/launcher/modplatform/atlauncher/ATLPackInstallTask.cpp" line="874"/>
<source>Unknown download type: %1</source>
<translation>ประเภทการดาวน์โหลดที่ไม่รู้จัก: %1</translation>
</message>
<message>
<location filename="src/launcher/modplatform/atlauncher/ATLPackInstallTask.cpp" line="824"/>
<source>Blocked mods found</source>
<translation>พบม็อดที่ถูกบล็อก</translation>
</message>
<message>
<location filename="src/launcher/modplatform/atlauncher/ATLPackInstallTask.cpp" line="825"/>
<source>The following files are not available for download in third party launchers.<br/>You will need to manually download them and add them to the instance.</source>
<translation>ไฟล์ต่อไปนี้ไม่พร้อมให้ดาวน์โหลดในตัวเรียกใช้งานของบุคคลที่สาม<br/>คุณจะต้องดาวน์โหลดไฟล์เหล่านี้ด้วยตนเองและเพิ่มลงในอินสแตนซ์</translation>
</message>
<message>
<location filename="src/launcher/modplatform/atlauncher/ATLPackInstallTask.cpp" line="881"/>
<source>%1 out of %2 complete</source>
<translation>ติดตั้งเสร็จสิ้น %1 ไฟล์จาก %2 ไฟล์</translation>
</message>
<message>
<location filename="src/launcher/modplatform/atlauncher/ATLPackInstallTask.cpp" line="921"/>
<source>Failed to extract mods...</source>
<translation>เกิดข้อผิดพลาดในการแยกม็อด...</translation>
</message>
<message>
<location filename="src/launcher/modplatform/atlauncher/ATLPackInstallTask.cpp" line="931"/>
<source>Extracting mods...</source>
<translation>กำลังแยกม็อด...</translation>
</message>
<message>
<location filename="src/launcher/modplatform/atlauncher/ATLPackInstallTask.cpp" line="1002"/>
<source>Installing modpack</source>
<translation>กำลังติดตั้งม็อดแพ็ค</translation>
</message>
<message>
<location filename="src/launcher/modplatform/atlauncher/ATLPackInstallTask.cpp" line="1014"/>
<source>Failed to create libraries component</source>
<translation>ไม่สามารถสร้างส่วนประกอบไลบรารี</translation>
</message>
<message>
<location filename="src/launcher/modplatform/atlauncher/ATLPackInstallTask.cpp" line="1041"/>
<source>Unknown loader type: </source>
<translation>ประเภทโหลดเดอร์ที่ไม่รู้จัก: </translation>
</message>
<message>
<location filename="src/launcher/modplatform/atlauncher/ATLPackInstallTask.cpp" line="1055"/>
<source>Failed to create pack component</source>
<translation>สร้างองค์ประกอบแพ็คไม่สำเร็จ</translation>
</message>
</context>
<context>
<name>AboutDialog</name>
<message>
<location filename="src/launcher/ui/dialogs/AboutDialog.ui" line="107"/>
<source>About</source>
<translation>เกี่ยวกับ</translation>
</message>
<message>
<location filename="src/launcher/ui/dialogs/AboutDialog.ui" line="116"/>
<source><html><head/><body><p>A custom launcher that makes managing Minecraft easier by allowing you to have multiple instances of Minecraft at once.</p></body></html></source>
<translation><html><head/><body><p>ลันเชอร์ปรับแต่งที่จะทำให้การจัดการ Minecraft ง่ายขึ้นโดยทำให้คุณสามารถมี Instance ของ Minecraft ได้หลาย ๆ ตัวในที่เดียว</p></body></html></translation>
</message>
<message>
<source>Version:</source>
<translation type="vanished">เวอร์ชัน:</translation>
</message>
<message>
<location filename="src/launcher/ui/dialogs/AboutDialog.ui" line="173"/>
<source>Platform:</source>
<translation>แพลตฟอร์ม:</translation>
</message>
<message>
<location filename="src/launcher/ui/dialogs/AboutDialog.ui" line="189"/>
<source>Build Date:</source>
<oldsource>Build Number:</oldsource>
<translation>วันที่สร้าง:</translation>
</message>
<message>
<location filename="src/launcher/ui/dialogs/AboutDialog.ui" line="205"/>
<source>Commit:</source>
<translation>คอมมิท:</translation>
</message>
<message>
<location filename="src/launcher/ui/dialogs/AboutDialog.ui" line="221"/>
<source>Channel:</source>
<translation>ช่อง:</translation>
</message>
<message>
<location filename="src/launcher/ui/dialogs/AboutDialog.ui" line="248"/>
<source>Credits</source>
<translation>เครดิต</translation>
</message>
<message>
<location filename="src/launcher/ui/dialogs/AboutDialog.ui" line="262"/>
<source>License</source>
<translation>ลิขสิทธิ์</translation>
</message>
<message>
<location filename="src/launcher/ui/dialogs/AboutDialog.ui" line="298"/>
<source>About Qt</source>
<translation>เกี่ยวกับ Qt</translation>
</message>
<message>
<location filename="src/launcher/ui/dialogs/AboutDialog.ui" line="318"/>
<source>Close</source>
<translation>ปิด</translation>
</message>
<message>
<location filename="src/launcher/ui/dialogs/AboutDialog.cpp" line="140"/>
<source>About %1</source>
<translation>เกี่ยวกับ %1</translation>
</message>
<message>
<location filename="src/launcher/ui/dialogs/AboutDialog.cpp" line="161"/>
<source>Commit: %1</source>
<translation>คอมมิท: %1</translation>
</message>
<message>
<location filename="src/launcher/ui/dialogs/AboutDialog.cpp" line="166"/>
<source>Build date: %1</source>
<translation>วันที่มีการ Build: %1</translation>
</message>
<message>
<source>Version</source>
<translation type="vanished">เวอร์ชัน</translation>
</message>
<message>
<location filename="src/launcher/ui/dialogs/AboutDialog.cpp" line="156"/>
<source>Platform</source>
<translation>แพลตฟอร์ม</translation>
</message>
<message>
<source>Build Number</source>
<translation type="vanished">หมายเลขบิวด์</translation>
</message>
<message>
<location filename="src/launcher/ui/dialogs/AboutDialog.cpp" line="171"/>
<source>Channel</source>
<translation>ช่อง</translation>
</message>
</context>
<context>
<name>AccountList</name>
<message>
<location filename="src/launcher/minecraft/auth/AccountList.cpp" line="286"/>
<source>MSA</source>
<comment>Account type</comment>
<translation>บัญชีไมโครซอฟท์</translation>
</message>
<message>
<location filename="src/launcher/minecraft/auth/AccountList.cpp" line="289"/>
<source>Offline</source>
<comment>Account type</comment>
<translation>ออฟไลน์</translation>
</message>
<message>
<location filename="src/launcher/minecraft/auth/AccountList.cpp" line="292"/>
<source>Unknown</source>
<comment>Account type</comment>
<translation>ไม่ทราบ/ไม่รู้จัก</translation>
</message>
<message>
<location filename="src/launcher/minecraft/auth/AccountList.cpp" line="298"/>
<source>Unchecked</source>
<comment>Account status</comment>
<translation>ยังไม่ได้ตรวจสอบ</translation>
</message>
<message>
<location filename="src/launcher/minecraft/auth/AccountList.cpp" line="301"/>
<source>Offline</source>
<comment>Account status</comment>
<translation>ออฟไลน์</translation>
</message>
<message>
<location filename="src/launcher/minecraft/auth/AccountList.cpp" line="304"/>
<source>Ready</source>
<comment>Account status</comment>
<translation>พร้อม</translation>
</message>
<message>
<location filename="src/launcher/minecraft/auth/AccountList.cpp" line="307"/>
<source>Working</source>
<comment>Account status</comment>
<translation>กำลังดำเนินการ</translation>
</message>
<message>
<location filename="src/launcher/minecraft/auth/AccountList.cpp" line="310"/>
<source>Errored</source>
<comment>Account status</comment>
<translation>เกิดข้อผิดพลาด</translation>
</message>
<message>
<location filename="src/launcher/minecraft/auth/AccountList.cpp" line="313"/>
<source>Expired</source>
<comment>Account status</comment>
<translation>หมดอายุ</translation>
</message>
<message>
<location filename="src/launcher/minecraft/auth/AccountList.cpp" line="316"/>
<source>Disabled</source>
<comment>Account status</comment>
<translation>ปิดการใช้งาน</translation>
</message>
<message>
<location filename="src/launcher/minecraft/auth/AccountList.cpp" line="319"/>
<source>Gone</source>
<comment>Account status</comment>
<translation>หายไปแล้ว</translation>
</message>
<message>
<location filename="src/launcher/minecraft/auth/AccountList.cpp" line="322"/>
<source>Unknown</source>
<comment>Account status</comment>
<translation>ไม่ทราบ</translation>
</message>
<message>
<location filename="src/launcher/minecraft/auth/AccountList.cpp" line="373"/>
<source>Type of the account (MSA or Offline)</source>
<translation>ประเภทบัญชี (ไมโครซอฟต์ หรือออฟไลน์)</translation>
</message>
<message>
<source>N/A</source>
<comment>Can Migrate</comment>
<translation type="obsolete">N/A</translation>
</message>
<message>
<source>Yes</source>
<comment>Can Migrate</comment>
<translation type="obsolete">ใช่</translation>
</message>
<message>
<source>No</source>
<comment>Can Migrate</comment>
<translation type="obsolete">ไม่ใช่</translation>
</message>
<message>
<source>N/A</source>
<comment>Can Migrate?</comment>
<translation type="vanished">N/A</translation>
</message>
<message>
<source>Yes</source>
<comment>Can Migrate?</comment>
<translation type="vanished">ใช่</translation>
</message>
<message>
<source>No</source>
<comment>Can Migrate?</comment>
<translation type="vanished">ไม่ใช่</translation>
</message>
<message>
<location filename="src/launcher/minecraft/auth/AccountList.cpp" line="355"/>
<source>Username</source>
<translation>ชื่อผู้ใช้งาน</translation>
</message>
<message>
<location filename="src/launcher/minecraft/auth/AccountList.cpp" line="357"/>
<source>Account</source>
<translation>บัญชีผู้ใช้</translation>
</message>
<message>
<location filename="src/launcher/minecraft/auth/AccountList.cpp" line="359"/>
<source>Type</source>
<translation>ประเภท</translation>
</message>
<message>
<location filename="src/launcher/minecraft/auth/AccountList.cpp" line="361"/>
<source>Status</source>
<translation>สภานะ</translation>
</message>
<message>
<source>Can Migrate?</source>
<translation type="vanished">โยกย้ายได้?</translation>
</message>
<message>
<location filename="src/launcher/minecraft/auth/AccountList.cpp" line="369"/>
<source>Minecraft username associated with the account.</source>
<translation>ชื่อผู้ใช้ Minecraft ที่เชื่อมโยงกับบัญชี</translation>
</message>
<message>
<source>Profile</source>
<translation type="vanished">โปรไฟล์</translation>
</message>
<message>
<location filename="src/launcher/minecraft/auth/AccountList.cpp" line="371"/>
<source>User name of the account.</source>
<translation>ชื่อผู้ใช้ของบัญชี</translation>
</message>
<message>
<source>Type of the account - Mojang or MSA.</source>
<translation type="vanished">ประเภทของบัญชี - Mojang หรือ Microsoft</translation>
</message>
<message>
<location filename="src/launcher/minecraft/auth/AccountList.cpp" line="375"/>
<source>Current status of the account.</source>
<translation>สถานะของบัญชี</translation>
</message>
<message>
<source>Can this account migrate to a Microsoft account?</source>
<oldsource>Name of the Minecraft profile associated with the account.</oldsource>
<translation type="vanished">บัญชีนี้สามารถย้ายไปยังบัญชี Microsoft ได้หรือไม่</translation>
</message>
</context>
<context>
<name>AccountListPage</name>
<message>
<source>Add &Mojang</source>
<oldsource>Add Mojang</oldsource>
<translation type="vanished">เพิ่มบัญชี &Mojang</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/AccountListPage.ui" line="105"/>
<source>Remo&ve</source>
<oldsource>Remove</oldsource>
<translation>&นำออก</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/AccountListPage.ui" line="66"/>
<source>&Set Default</source>
<oldsource>Set Default</oldsource>
<translation>&ตั้งเป็นค่าเริ่มต้น</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/AccountListPage.ui" line="74"/>
<source>&No Default</source>
<oldsource>No Default</oldsource>
<translation>&ไม่มีค่าเริ่มต้น</translation>
</message>
<message>
<source>&Upload Skin</source>
<oldsource>Upload Skin</oldsource>
<translation type="vanished">&อัปโหลดสกิน</translation>
</message>
<message>
<source>&Delete Skin</source>
<oldsource>Delete Skin</oldsource>
<translation type="vanished">&ลบสกิน</translation>
</message>
<message>
<source>Delete the currently active skin and go back to the default one</source>
<translation type="vanished">ลบสกินที่ใช้งานอยู่ในปัจจุบันและกลับไปใช้สกินเริ่มต้น</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/AccountListPage.ui" line="79"/>
<source>&Manage Skins</source>
<translation>&จัดการสกิน</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/AccountListPage.ui" line="82"/>
<source>Manage Skins</source>
<translation>เปลี่ยนสกิน</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/AccountListPage.ui" line="87"/>
<source>&Add Microsoft</source>
<oldsource>Add Microsoft</oldsource>
<translation>&เพิ่มบัญชี Microsoft</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/AccountListPage.ui" line="92"/>
<source>Add &Offline</source>
<oldsource>Add Offline</oldsource>
<translation>เพิ่มบัญชี &ออฟไลน์</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/AccountListPage.ui" line="97"/>
<source>&Refresh</source>
<oldsource>Refresh</oldsource>
<translation>&รีเฟรช</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/AccountListPage.ui" line="100"/>
<source>Refresh the account tokens</source>
<translation>รีเฟรชโทเค็นของบัญชี</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/AccountListPage.h" line="59"/>
<source>Accounts</source>
<translation>บัญชี</translation>
</message>
<message>
<source>Welcome!
If you're new here, you can select the "Add Microsoft" or "Add Mojang" buttons to link your Microsoft and/or Mojang accounts.</source>
<oldsource>Welcome!
If you're new here, you can click the "Add" button to add your Mojang or Minecraft account.</oldsource>
<translation type="obsolete">ยินดีต้อนรับ!
ถ้าคุณเป็นผู้ใช้ใหม่กดปุ่ม "เพิ่ม" เพื่อเพิ่มบัญชี Mojang หรือบัญชี Minecraft</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/AccountListPage.cpp" line="57"/>
<source>Welcome!
If you're new here, you can select the "Add Microsoft" button to link your Microsoft account.</source>
<translation>ยินดีต้อนรับ!
หากคุณเพิ่งเข้ามาใหม่ คุณสามารถเลือกปุ่ม "เพิ่ม ไมโครซอฟต์" เพื่อเชื่อมโยงบัญชี ไมโครซอฟต์ ของคุณได้</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/AccountListPage.cpp" line="90"/>
<source>No Microsoft Authentication client ID was set.</source>
<translation>ไม่มีไคลเอนต์ไอดีการรับรองของ Microsoft ที่ถูกจัดตั้ง</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/AccountListPage.cpp" line="106"/>
<source>Context menu</source>
<translation>เมนูเนื้อหา</translation>
</message>
<message>
<source>Add account</source>
<translation type="vanished">เพิ่มบัญชี</translation>
</message>
<message>
<source>How do you want to login?</source>
<translation type="vanished">คุณต้องการเข้าสู่ระบบด้วยวิธีใด?</translation>
</message>
<message>
<source>Recommended</source>
<translation type="vanished">แนะนำ</translation>
</message>
<message>
<source>Cancel</source>
<translation type="vanished">ยกเลิก</translation>
</message>
<message>
<source>Please enter your Mojang account email and password to add your account.</source>
<translation type="vanished">กรุณาป้อนอีเมลและรหัสผ่าน Minecraft เพื่อเพิ่มบัญชี</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/AccountListPage.cpp" line="146"/>
<source>You must add a Microsoft account that owns Minecraft before you can add an offline account.<br><br>If you have lost your account you can contact Microsoft for support.</source>
<translation>คุณต้องเพิ่มบัญชี ไมโครซอฟต์ ที่เป็นเจ้าของ Minecraft ก่อนจึงจะสามารถเพิ่มบัญชีออฟไลน์ได้<br><br>หากคุณทำบัญชีหาย คุณสามารถติดต่อ Microsoft เพื่อขอรับการสนับสนุนได้</translation>
</message>
<message>
<source>Microsoft Accounts not available</source>
<translation type="vanished">บัญชี Microsoft ไม่พร้อมใช้งาน</translation>
</message>
<message>
<source>Microsoft accounts are only usable on macOS 10.13 or newer, with fully updated %1.
Please update both your operating system and %1.</source>
<extracomment>%1 refers to the launcher itself</extracomment>
<translation type="vanished">บัญชี Microsoft สามารถใช้ได้เฉพาะกับ macOS เวอร์ชัน 10.13 ขึ้นไป ควบคู่กับเวอร์ชันของ %1 ที่อัพเดตเป็นปัจจุบันแล้วเท่านั้น
โปรดอัพเดตทั้งระบบปฏิบัติการและ %1 ของคุณ</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/AccountListPage.cpp" line="145"/>
<source>Error</source>
<translation>เกิดข้อผิดพลาด</translation>
</message>
<message>
<source>You must add a Microsoft or Mojang account that owns Minecraft before you can add an offline account.<br><br>If you have lost your account you can contact Microsoft for support.</source>
<translation type="vanished">คุณต้องเพิ่มบัญชีของ Microsoft หรือ Mojang ที่มีการซื้อ Minecraft ไว้แล้วก่อนที่จะเพิ่มบัญชีออฟไลน์<br><br>ถ้าเกิดคุณได้ทำบัญชีของคุณหาย คุณสามารถติดต่อทาง Microsoft เพื่อขอความช่วยเหลือได้</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/AccountListPage.cpp" line="153"/>
<source>Please enter your desired username to add your offline account.</source>
<translation>โปรดกรอกชื่อผู้ใช้ที่คุณต้องการเพื่อเพิ่มบัญชีออฟไลน์ของคุณ</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/AccountListPage.cpp" line="165"/>
<source>Remove account?</source>
<translation>ปิดบัญชี?</translation>
</message>
<message>
<location filename="src/launcher/ui/pages/global/AccountListPage.cpp" line="165"/>
<source>Do you really want to delete this account?</source>
<translation>คุณต้องการลบบัญชีนี้จริง ๆ หรือไม่?</translation>
</message>
<message>
<source>Skin Delete</source>
<translation type="vanished">ลบสกิน</translation>
</message>
<message>
<source>Failed to delete current skin!</source>
<translation type="vanished">เกิดข้อผิดพลาดในการลบสกินปัจจุบัน!</translation>
</message>
</context>
<context>
<name>AccountTask</name>
<message>
<source>Sending request to auth servers...</source>
<translation type="vanished">กำลังส่งคำขอไปยังเซิร์ฟเวอร์ตรวจสอบสิทธิ์...</translation>
</message>
<message>
<source>Authentication task succeeded.</source>
<translation type="vanished">การเข้าสู่ระบบสำเร็จ</translation>
</message>
<message>
<source>Failed to contact the authentication server.</source>
<translation type="vanished">ไม่สามารถติดต่อเซิร์ฟเวอร์การตรวจสอบสิทธิ์</translation>
</message>
<message>
<source>Client ID has changed. New session needs to be created.</source>
<translation type="vanished">เนื่องจากมีการเปลี่ยนแปลงของไอดีไคลเอนต์ จึงต้องมีการสร้างเซสชันใหม่ขึ้น</translation>
</message>
<message>
<source>Encountered an error during authentication.</source>
<translation type="vanished">พบข้อผิดพลาดระหว่างการตรวจสอบสิทธิ์</translation>
</message>
<message>
<source>Failed to authenticate. The session has expired.</source>
<translation type="vanished">การตรวจสอบสิทธิ์ผิดพลาด เซสชันดังกล่าวหมดอายุแล้ว</translation>
</message>
<message>
<source>Failed to authenticate. The account no longer exists.</source>
<translation type="vanished">ไม่สามารถตรวจสอบสิทธิ์ บัญชีนี้ไม่มีอยู่แล้ว</translation>
</message>
<message>
<source>...</source>
<translation type="vanished">...</translation>
</message>
<message>
<source>Unknown account task state: %1</source>
<translation type="vanished">ไม่ทราบสถานะการทำงานของบัญชี: %1</translation>
</message>
</context>
<context>
<name>AllVersionProxyModel</name>
<message>
<location filename="src/launcher/ui/widgets/ModFilterWidget.cpp" line="89"/>
<source>All Versions</source>
<translation>เวอร์ชั่นทั้งหมด</translation>
</message>
</context>
<context>
<name>Application</name>
<message>
<location filename="src/launcher/Application.cpp" line="799"/>
<source>Settings</source>
<translation>การตั้งค่า</translation>
</message>
<message>
<location filename="src/launcher/Application.cpp" line="946"/>
<source>This installation has a update lock file present at: %1
Timestamp: %2
Updating from version %3 to %4
Target install path: %5
Data Path: %6
This likely means that a update attempt failed. Please ensure your installation is in working order before proceeding.
Check the Prism Launcher updater log at:
%7
for details on the last update attempt.
To delete this lock and proceed select "Ignore" below.</source>
<translation>การติดตั้งนี้มีไฟล์ล็อคการอัปเดตอยู่ที่: %1
การประทับเวลา: %2
กำลังอัปเดตจากเวอร์ชัน %3 เป็น %4
เส้นทางการติดตั้งเป้าหมาย: %5
เส้นทางข้อมูล: %6
ซึ่งอาจหมายความว่าการพยายามอัปเดตล้มเหลว โปรดตรวจสอบให้แน่ใจว่าการติดตั้งของคุณอยู่ในสภาพใช้งานได้ก่อนดำเนินการต่อ
ตรวจสอบบันทึกการอัพเดต Prism Launcher ได้ที่:
%7
สำหรับรายละเอียดเกี่ยวกับความพยายามในการอัปเดตครั้งล่าสุด
หากต้องการลบการล็อคนี้และดำเนินการต่อ ให้เลือก "เพิกเฉย" ด้านล่าง</translation>
</message>
<message>
<location filename="src/launcher/Application.cpp" line="963"/>
<source>Update In Progress</source>
<translation>อยู่ระหว่างการปรับปรุง</translation>
</message>
<message>
<location filename="src/launcher/Application.cpp" line="987"/>
<source>An update attempt failed
Please ensure your installation is in working order before proceeding.
Check the Prism Launcher updater log at:
%1
for details on the last update attempt.</source>
<translation>ความพยายามในการอัปเดตล้มเหลว
โปรดตรวจสอบให้แน่ใจว่าการติดตั้งของคุณอยู่ในสภาพใช้งานได้ก่อนดำเนินการต่อ
ตรวจสอบบันทึกการอัพเดต Prism Launcher ได้ที่:
%1
สำหรับรายละเอียดเกี่ยวกับความพยายามในการอัปเดตครั้งล่าสุด</translation>
</message>
<message>
<location filename="src/launcher/Application.cpp" line="995"/>
<source>Update Failed</source>
<translation>การอัพเดทล้มเหลว</translation>
</message>
<message>
<location filename="src/launcher/Application.cpp" line="1019"/>
<source>Update succeeded
You are now running %1 .
Check the Prism Launcher updater log at:
%2
for details.</source>
<oldsource>Update succeeded
You are now running %1 .
Check the Prism Launcher updater log at:
%1
for details.</oldsource>
<translation>อัปเดตสำเร็จแล้ว
ขณะนี้คุณกำลังเรียกใช้ %1
ตรวจสอบบันทึกการอัพเดต Prism Launcher ได้ที่:
%2
เพื่อดูรายละเอียด</translation>
</message>
<message>
<location filename="src/launcher/Application.cpp" line="1027"/>
<source>Update Succeeded</source>
<translation>อัปเดตสำเร็จแล้ว</translation>
</message>
<message>
<location filename="src/launcher/Application.cpp" line="1059"/>
<source>Your /tmp directory is currently mounted with the 'noexec' flag enabled.
Some versions of Minecraft may not launch.
You may solve this issue by remounting /tmp as 'exec' or setting the java.io.tmpdir JVM argument to a writeable directory in a filesystem where the 'exec' flag is set (e.g., /home/user/.local/tmp)
</source>
<translation>ขณะนี้ไดเร็กทอรี /tmp ของคุณถูกเมาท์โดยเปิดใช้แฟล็ก 'noexec'
Minecraft บางเวอร์ชันอาจไม่สามารถเปิดได้
คุณสามารถแก้ไขปัญหานี้ได้โดยเมาท์ /tmp ใหม่เป็น 'exec' หรือตั้งค่าอาร์กิวเมนต์ JVM java.io.tmpdir เป็นไดเร็กทอรีที่เขียนได้ในระบบไฟล์ที่มีการตั้งค่าแฟล็ก 'exec' (เช่น /home/user/.local/tmp)
</translation>
</message>
<message>
<source>Your /tmp directory is currently mounted with the 'noexec' flag enabled.
Some versions of Minecraft may not launch.
</source>
<translation type="vanished">ไดเร็กทอรี /tmp ของคุณถูกติดตั้งโดยเปิดใช้แฟล็ก 'noexec' อยู่
Minecraft บางเวอร์ชันอาจไม่สามารถเปิดใช้งานได้
</translation>
</message>
<message>
<location filename="src/launcher/Application.cpp" line="1065"/>
<source>Incompatible system configuration</source>
<translation>การกำหนดค่าระบบที่เข้ากันไม่ได้</translation>
</message>
<message>
<location filename="src/launcher/Application.cpp" line="1425"/>
<source>Aborted</source>
<translation>ล้มเลิก</translation>
</message>
<message>
<location filename="src/launcher/Application.cpp" line="1827"/>
<source>Old data from %1 was found, but you already have existing data for %2. Sadly you will need to migrate yourself. Do you want to be reminded of the pending data migration next time you start %2?</source>
<translation>พบข้อมูลเก่าจาก %1 แต่คุณมีข้อมูลดังกล่าวสำหรับ %2 แล้ว น่าเสียดายที่คุณจะต้องทำการโยกย้ายคุณเอง คุณต้องการที่จะให้เตือนการรอการโยกย้ายข้อมูลของคุณหลังจากที่เริ่มเปิด %2 หรือไม่?</translation>
</message>
<message>
<location filename="src/launcher/Application.cpp" line="1831"/>
<source>It looks like you used %1 before. Do you want to migrate your data to the new location of %2?</source>
<translation>ดูเหมือนว่าคุณจะเคยใช้ %1 มาก่อนหน้านี้ คุณต้องการที่จะโยกย้ายข้อมูลของคุณเข้ามาอยู่ในตำแหน่งใหม่ของ %2 หรือไม่?</translation>
</message>
<message>
<location filename="src/launcher/Application.cpp" line="1837"/>
<source>It looks like you used %1 on %2 before. Do you want to migrate your data to the new location of %3?</source>
<translation>ดูเหมือนว่าคุณจะเคยใช้ %1 บน %2 มาก่อนหน้านี้แล้ว คุณต้องการที่จะโยกย้ายข้อมูลของคุณไปยังตำแหน่งใหม่ของ %3 หรือไม่?</translation>
</message>
<message>
<location filename="src/launcher/Application.cpp" line="1880"/>
<source>Migration failed! Reason: %1</source>
<translation>การโยกย้ายข้อมูลผิดพลาด! เหตุผล: %1</translation>
</message>
</context>
<context>
<name>ArchiveDownloadTask</name>
<message>
<location filename="src/launcher/java/download/ArchiveDownloadTask.cpp" line="37"/>
<source>Downloading Java</source>
<translation>กำลังดาวน์โหลดจาวา</translation>
</message>
<message>
<location filename="src/launcher/java/download/ArchiveDownloadTask.cpp" line="68"/>
<source>Extracting Java</source>
<oldsource>Extracting java</oldsource>
<translation>กำลังแยก Java</translation>
</message>
<message>
<location filename="src/launcher/java/download/ArchiveDownloadTask.cpp" line="70"/>
<location filename="src/launcher/java/download/ArchiveDownloadTask.cpp" line="83"/>
<source>Extracting Java (Progress is not reported for tar archives)</source>
<translation>กำลังแยก Java (ความคืบหน้าจะไม่รายงานสำหรับไฟล์ tar)</translation>
</message>
<message>
<location filename="src/launcher/java/download/ArchiveDownloadTask.cpp" line="73"/>
<source>Unable to open supplied tar file.</source>
<translation>ไม่สามารถเปิดไฟล์ tar ที่ให้มาได้</translation>
</message>
<message>
<location filename="src/launcher/java/download/ArchiveDownloadTask.cpp" line="77"/>
<location filename="src/launcher/java/download/ArchiveDownloadTask.cpp" line="85"/>
<source>Unable to extract supplied tar file.</source>
<translation>ไม่สามารถแยกไฟล์ tar ที่ให้มาได้</translation>
</message>
<message>
<location filename="src/launcher/java/download/ArchiveDownloadTask.cpp" line="93"/>
<source>Unable to open supplied zip file.</source>
<translation>ไม่สามารถเปิดไฟล์ zip ที่ให้มาได้</translation>
</message>
<message>
<location filename="src/launcher/java/download/ArchiveDownloadTask.cpp" line="98"/>
<source>No files were found in the supplied zip file.</source>
<oldsource>No files were found in the supplied zip file,</oldsource>
<translation>ไม่พบไฟล์ในไฟล์ zip ที่ให้มา</translation>
</message>
<message>
<location filename="src/launcher/java/download/ArchiveDownloadTask.cpp" line="130"/>
<source>Could not determine archive type!</source>
<translation>ไม่สามารถระบุประเภทของไฟล์ได้!</translation>
</message>
</context>
<context>
<name>AssetUpdateTask</name>
<message>
<location filename="src/launcher/minecraft/update/AssetUpdateTask.cpp" line="20"/>
<source>Updating assets index...</source>
<translation>กำลังอัปเดตรายการแฟ้มที่จำเป็น...</translation>
</message>
<message>
<location filename="src/launcher/minecraft/update/AssetUpdateTask.cpp" line="26"/>
<source>Asset index for %1</source>
<translation>รายการแฟ้มที่จำเป็นของ %1</translation>
</message>
<message>
<location filename="src/launcher/minecraft/update/AssetUpdateTask.cpp" line="41"/>
<location filename="src/launcher/minecraft/update/AssetUpdateTask.cpp" line="78"/>
<source>Aborted</source>
<translation>ล้มเลิก</translation>
</message>
<message>
<location filename="src/launcher/minecraft/update/AssetUpdateTask.cpp" line="69"/>
<source>Failed to read the assets index!</source>
<translation>เกิดข้อผิดพลาดในการอ่านรายการแฟ้มที่จำเป็น!</translation>
</message>
<message>
<location filename="src/launcher/minecraft/update/AssetUpdateTask.cpp" line="74"/>
<source>Getting the assets files from Mojang...</source>
<translation>กำลังดาวน์โหลดแฟ้มที่จำเป็นจาก Mojang...</translation>
</message>
<message>
<location filename="src/launcher/minecraft/update/AssetUpdateTask.cpp" line="90"/>
<source>Failed to download the assets index:
%1</source>
<translation>เกิดข้อผิดพลาดในการดาวน์โหลดรายการแฟ้มที่จำเป็น:
%1</translation>
</message>
<message>
<location filename="src/launcher/minecraft/update/AssetUpdateTask.cpp" line="95"/>
<source>Failed to download assets:
%1</source>
<translation>ไม่สามารถดาวน์โหลดแฟ้มที่จำเป็น:
%1</translation>
</message>
</context>
<context>
<name>Atl::FilterModel</name>
<message>