-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathth.json
More file actions
1103 lines (1103 loc) · 131 KB
/
Copy pathth.json
File metadata and controls
1103 lines (1103 loc) · 131 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
{
"Books": "หนังสือ",
"Recent": "ล่าสุด",
"Bookmarks": "ที่คั่น",
"Favorites": "รายการโปรด",
"Notes": "บันทึกย่อ",
"Highlights": "ที่เน้น",
"Shelf": "ชั้นวาง",
"Left": "ซ้าย",
"Justify": "เต็มแนว",
"Right": "ขวา",
"Text alignment": "การจัดแนวข้อความ",
"Synchronisation successful": "ซิงค์สำเร็จ",
"Permanently Delete": "ลบถาวร",
"Default search engine": "เครื่องมือค้นหาเริ่มต้น",
"Built-in font": "แบบอักษรที่มีมาให้",
"Cover": "ปก",
"Bold": "ตัวหนา",
"Sort by": "เรียงลำดับตาม",
"Italic": "ตัวเอียง",
"Underline": "ขีดเส้นใต้ข้อความ",
"Shadow": "เงาข้อความ",
"Import failed": "การนำเข้าล้มเหลว",
"New version available": "มีเวอร์ชันใหม่",
"New version": "เวอร์ชันใหม่",
"Customize": "ปรับแต่ง",
"Auto open book in full screen": "เปิดหนังสืออัตโนมัติเต็มจอ",
"System font": "แบบอักษรในระบบ",
"Access token expired, refetching token": "โทเค็นหมดอายุ กำลังดึงข้อมูลโทเค็นใหม่",
"Access token received, please continue": "รับโทเค็นสำเร็จ โปรดดำเนินการต่อ",
"Change log": "บันทึกการเปลี่ยนแปลง",
"Update complete": "อัปเดตเรียบร้อยแล้ว",
"Fetching access token failed": "การดึงข้อมูลโทเค็นล้มเหลว",
"Authorizing, please wait": "กำลังอนุญาต โปรดรอ",
"Downloading, please wait": "กำลังดาวน์โหลด โปรดรอ",
"Uploading, please wait": "กำลังอัพโหลด โปรดรอ",
"Import": "นำเข้า",
"Backup": "ฉันต้องการสำรองข้อมูล",
"Search my library": "ค้นหาในห้องสมุดของฉัน",
"Search my notes": "ค้นหาในบันทึกของฉัน",
"Search my highlights": "ค้นหาในที่เน้นของฉัน",
"Card": "การ์ด",
"List": "รายการ",
"Work": "การงาน",
"Duplicate shelf": "ทำซ้ำชั้นวาง",
"Reading time": "เวลาอ่าน",
"Content": "เนื้อหา",
"Voice": "เสียงพูด",
"Speed": "ความเร็ว",
"Bookmark": "ที่คั่น",
"Single": "โหมดหน้าเดียว",
"Double": "โหมดหน้าคู่",
"Background color": "สีพื้นหลัง",
"Font size": "ขนาดตัวอักษร",
"Font family": "ตัวอักษร",
"Default": "ค่าเริ่มต้น",
"Small": "เล็ก",
"Medium": "ปานกลาง",
"Large": "ใหญ่",
"Cancellation successful": "ยกเลิกเรียบร้อยแล้ว",
"Only supported by desktop version": "รองรับเฉพาะเวอร์ชันเดสก์ท็อปเท่านั้น",
"Hide mimical background": "ไม่มีพื้นหลังหนังสือกระดาษ",
"Auto hide cursor when reading": "ซ่อนเคอร์เซอร์อัตโนมัติเมื่อกำลังอ่าน",
"Disable update notification": "ปิดการแจ้งเตือนการอัปเดต",
"Roadmap": "แผนงาน",
"Paragraph spacing": "ระยะห่างย่อหน้า",
"Unlock": "ปลดล็อค",
"Lock": "ล็อค",
"Reading option": "ตัวเลือกการอ่าน",
"Progress": "ความคืบหน้า",
"Exit": "ออก",
"Language": "ภาษา",
"Enter full screen": "เข้าโหมดเต็มหน้าจอ",
"Exit full screen": "ออกจากโหมดเต็มหน้าจอ",
"Add to shelf": "เพิ่มในชั้นวาง",
"New shelf": "ชั้นวางใหม่",
"New": "ใหม่",
"Cancel": "ยกเลิก",
"Confirm": "ยืนยัน",
"Delete": "ลบ",
"Delete this book": "ลบหนังสือนี้",
"Edit Book": "แก้ไขหนังสือ",
"Edition successful": "แก้ไขเรียบร้อยแล้ว",
"Book name": "ชื่อหนังสือ",
"Sort by Date": "เรียงตามเวลาที่เพิ่ม",
"Descend": "ลำดับจากมากไปน้อย",
"Ascend": "ลำดับจากน้อยไปมาก",
"Token": "โทเค็น",
"Book not exists": "ไม่พบหนังสือ",
"Please authorize your account, and fill the following box with the token": "หลังจากการอนุญาตการเข้าสู่ระบบ คุณจะได้รับโทเค็น ป้อนโทเค็นในฟิลด์ด้านล่างเพื่อทำการรวมให้สมบูรณ์",
"Copy link": "คัดลอกลิงก์",
"Copy token": "คัดลอกโทเค็น",
"Copied": "คัดลอกแล้ว",
"Conversion of Chinese": "การแปลงจากภาษาจีน",
"Shelf title can't be pure number": "ชื่อชั้นวางไม่สามารถเป็นตัวเลขเท่านั้น",
"Open console": "เปิดคอนโซล",
"Appearance": "รูปลักษณ์",
"Open url with built-in browser": "เปิดลิงก์ด้วยเบราว์เซอร์ที่มีมาให้",
"Light mode": "โหมดสว่าง",
"Night mode": "โหมดกลางคืน",
"Follow OS": "ตามระบบปฏิบัติการ",
"Use first page as PDF cover": "ใช้หน้าแรกเป็นปก PDF",
"You may see this error when the book you're importing is not supported by Koodo Reader, try converting it with Calibre": "คุณอาจเห็นข้อผิดพลาดนี้เมื่อนำเข้าหนังสือที่ไม่รองรับโดย Koodo Reader ลองแปลงไฟล์ด้วย Calibre ดู",
"Simplified To Traditional": "จากภาษาจีนตัวย่อไปเป็นตัวเต็ม",
"Traditional To Simplified": "จากภาษาจีนตัวเต็มไปเป็นตัวย่อ",
"Shelf Title is Empty": "ชื่อชั้นวางว่างเปล่า",
"Link copy successful": "คัดลอกลิงก์เรียบร้อยแล้ว",
"Addition successful": "เพิ่มสำเร็จ",
"Select": "เลือก",
"Coming soon": "เร็วๆ นี้",
"Understand": "เข้าใจ",
"Authorisation successful": "อนุญาตสำเร็จ",
"Authorisation failed": "อนุญาตไม่สำเร็จ",
"Choose your operation": "เลือกการดำเนินการของคุณ",
"Where is your data?": "ข้อมูลของคุณอยู่ที่ไหน?",
"Where to keep your data?": "คุณเก็บข้อมูลของคุณไว้ที่ไหน?",
"Restore": "คืนค่า",
"Delete this shelf": "ลบชั้นวางนี้",
"This action will clear and remove this shelf": "การดำเนินการนี้จะล้างและลบชั้นวางนี้",
"Delete this tag": "ลบแท็กนี้",
"This action will clear and remove this tag": "การดำเนินการนี้จะล้างและลบแท็กนี้",
"Backup successful": "สำรองข้อมูลสำเร็จ",
"Restore successful": "คืนค่าข้อมูลสำเร็จ",
"Try refresh or restart": "ลองรีเฟรชหรือเริ่มต้นใหม่",
"Search the book": "ค้นหาหนังสือ",
"Theme color": "สีธีม",
"Turn on text-to-speech": "เปิดการอ่านข้อความอัตโนมัติ",
"Scrolling mode": "โหมดเลื่อนหน้า",
"Loading": "กำลังโหลด",
"Note": "บันทึกย่อ",
"Page width": "ความกว้างของหน้า",
"Digest": "สารบัญ",
"Auto expand content": "ขยายเนื้อหาอัตโนมัติ",
"Hide footer": "ซ่อนส่วนท้าย",
"Hide header": "ซ่อนส่วนหัว",
"Book size is over 20M": "ขนาดหนังสือมากกว่า 20 เมกะไบต์",
"Current Font size": "ขนาดตัวอักษรปัจจุบัน",
"Current Chapter": "บทปัจจุบัน",
"Turn off text-to-speech": "ปิดการอ่านข้อความอัตโนมัติ",
"Warning": "คำเตือน",
"Translation": "การแปล",
"All tags": "แท็กทั้งหมด",
"Turn on successful": "เปิดการใช้งานสำเร็จ",
"Turn off successful": "ปิดการใช้งานสำเร็จ",
"Turn off touch screen mode": "ปิดโหมดหน้าจอสัมผัส (ป้องกันการสัมผัสโดยไม่ตั้งใจ)",
"Use built-in font": "ใช้แบบอักษรที่มีมาให้",
"Setting": "การตั้งค่า",
"Turn on touch screen mode": "เปิดโหมดหน้าจอสัมผัส",
"Auto open last-read book": "เปิดหนังสือที่อ่านล่าสุดโดยอัตโนมัติ",
"About Project": "เกี่ยวกับโครงการ",
"Developer": "ผู้พัฒนา",
"Please import less than 10 books": "โปรดนำเข้าหนังสือน้อยกว่า 10 เล่ม",
"Please delete some books before import": "โปรดลบหนังสือบางเล่มก่อนนำเข้า",
"For better user experience, please visit this site on a computer": "เพื่อประสบการณ์ผู้ใช้ที่ดียิ่งขึ้น โปรดเข้าชมเว็บไซต์นี้บนคอมพิวเตอร์",
"Wrong bookmark": "ที่คั่นหน้าผิด",
"Last step": "ขั้นตอนล่าสุด",
"Next step": "ขั้นตอนต่อไป",
"Go to": "ไปที่",
"It seems like you're lost": "ดูเหมือนว่าคุณหลงทางนะ",
"Return to home": "กลับสู่หน้าหลัก",
"Only desktop support this format": "รองรับรูปแบบนี้เฉพาะแค่ในเดสก์ท็อปเท่านั้น",
"Only desktop support this service": "รองรับบริการนี้เฉพาะแค่ในเดสก์ท็อปเท่านั้น",
"Delete from shelf": "ลบออกจากชั้นวาง",
"Deletion successful": "ลบสำเร็จ",
"This action will move this book and its the notes, bookmarks and highlights of this book to the recycle bin": "การดำเนินการนี้จะย้ายหนังสือและบันทึกย่อต่างๆ ของหนังสือนี้ไปยังถังขยะ",
"This action won't delete the original book": "การดำเนินการนี้ไม่ได้ลบหนังสือต้นฉบับ",
"From": "จาก",
"Duplicate book": "ทำซ้ำหนังสือ",
"Unknown chapter": "บทที่ไม่รู้จัก",
"Unknown author": "ผู้เขียนที่ไม่รู้จัก",
"Empty": "ว่างเปล่า",
"Next chapter": "ต่อไป",
"Previous chapter": "ก่อนหน้า",
"Less": "น้อยลง",
"Latest stable version": "เวอร์ชันที่เสถียรล่าสุด",
"Developer version": "เวอร์ชันของนักพัฒนา",
"Current reading time": "ใช้เวลาอ่าน: {{count}} นาที",
"Remaining reading time": "เวลาที่เหลืออยู่: {{count}} นาที",
"Book page": "หน้า {{count}}",
"Total books": "ทั้งหมด {{count}} เล่ม",
"Pages": "หน้า",
"Chapters": "บท",
"Translate": "แปล",
"Continuous": "ต่อเนื่อง",
"Scroll": "เลื่อนหน้า",
"Show in the book": "แสดงในหนังสือ",
"More notes": "บันทึกย่อเพิ่มเติม",
"Pick a color": "เลือกสี",
"Highlighting successful": "เน้นสำเร็จ",
"Take a note": "เพิ่มบันทึกย่อ",
"Highlight": "เน้น",
"Copying successful": "คัดลอกสำเร็จ",
"Copy ": "คัดลอก",
"Text color": "สีข้อความ",
"Export": "ส่งออก",
"Publisher": "ผู้จัดพิมพ์",
"Added on": "เพิ่มเมื่อ",
"Margin": "ขอบกระดาษ",
"Do you want to open this link in browser": "คุณต้องการเปิดลิงก์นี้ในเบราว์เซอร์หรือไม่",
"WebDAV Info": "WebDAV เป็นโซลูชันการสำรองข้อมูลที่ใช้ง่ายและประสิทธิภาพ แนะนำให้ใช้บริการ WebDAV ที่ NextCloud ให้บริการ",
"Please wait": "กรุณารอสักครู่",
"Server address": "ที่อยู่เซิร์ฟเวอร์",
"Username": "ชื่อผู้ใช้",
"Password": "รหัสผ่าน",
"Description": "คำอธิบาย",
"Recently read": "อ่านล่าสุด",
"Collapse sidebar": "ยุบไอคอนเมนู",
"Show sidebar": "แสดงไอคอนเมนู",
"Sync": "ซิงค์",
"Document": "เอกสาร",
"Feedback": "ข้อเสนอแนะ",
"GitHub repository": "ที่เก็บบน GitHub",
"Speak the text": "อ่านข้อความ",
"Search on the Internet": "ค้นหาในอินเทอร์เน็ต",
"Search in the Book": "ค้นหาในหนังสือ",
"Change storage location": "เปลี่ยนตำแหน่งการจัดเก็บ",
"Change location": "เปลี่ยนตำแหน่ง",
"Change successful": "เปลี่ยนสำเร็จ",
"Too many images": "หนังสือมีรูปภาพมากเกินไป",
"Export successful": "ส่งออกสำเร็จ",
"Change failed": "เปลี่ยนไม่สำเร็จ",
"You successfully update to": "อัปเดตสำเร็จ: {{version}}",
"Deleted Books": "ถังขยะ",
"Delete all books": "ลบหนังสือทั้งหมด",
"Reading duration": "เวลาอ่าน",
"Author name": "ชื่อผู้แต่ง",
"Audio is not ready yet": "ระบบอ่านข้อความอัตโนมัติยังไม่พร้อม",
"Drop your books here": "วางหนังสือของคุณที่นี่",
"Reading progress": "เรียงตามเปอร์เซ็นต์",
"This action will remove all the books in recycle bin,together with their notes, bookmarks and digests": "การดำเนินการนี้จะลบหนังสือทั้งหมดในถังขยะพร้อมบันทึกย่อ ที่คั่นและหน้าสรุปย่อ",
"Batch import only support epub or pdf files": "การนำเข้าแบบเป็นชุดรองรับไฟล์รูปแบบ epub หรือ pdf เท่านั้น",
"The deleted books will show up here": "หนังสือที่ถูกลบจะปรากฎที่นี่",
"Empty recycle bin": "ลบขยะออก",
"Skip": "ข้าม",
"Local": "ท้องถิ่น",
"Tips": "คำแนะนำ",
"Brightness": "ความสว่าง",
"How synchronisation works": "วิธีการทำงานของการซิงค์",
"Sync function works with third-party cloud drive. You need to manually change the storage location to the same sync folder on different computers. When you click the sync button, Koodo Reader will automatically upload or download the data from this folder according the timestamp.": "ฟังก์ชันการซิงค์ทำงานร่วมกับไดรฟ์คลาวด์ของบุคคลที่สาม คุณจะต้องเปลี่ยนตำแหน่งการเก็บข้อมูลเพื่อให้เหมือนกับโฟลเดอร์ซิงค์ในเครื่องคอมพิวเตอร์ที่แตกต่างกัน เมื่อคุณคลิกที่ปุ่มซิงค์ Koodo Reader จะอัปโหลดหรือดาวน์โหลดข้อมูลจากโฟลเดอร์นี้โดยอัตโนมัติตาม timestamp",
"Line height": "ความสูงของบรรทัด",
"Please turn off open books in the main window first": "โปรดปิดหนังสือที่เปิดในหน้าต่างหลักก่อน",
"Please turn off merge with word first": "โปรดปิดการผสานกับคำต่างๆก่อน",
"Please choose an empty folder": "โปรดเลือกโฟลเดอร์ว่างเปล่า",
"Data change detected, whether to update?": "ตรวจพบการเปลี่ยนแปลงของข้อมูล คุณต้องการอัปเดตหรือไม่?",
"Empty library": "ห้องสมุดว่างเปล่า",
"Download": "ดาวน์โหลด",
"Use the fonts from your local computer": "ใช้แบบอักษรจากคอมพิวเตอร์ของคุณ",
"Backup your data with WebDAV": "สำรองข้อมูลของคุณด้วย WebDAV",
"Click the import button to add books": "คลิกปุ่มนำเข้าเพื่อเพิ่มหนังสือ",
"Turn on night mode": "เปิดโหมดกลางคืน",
"Turn on auto update": "เปิดการอัปเดตอัตโนมัติ",
"Auto Update relies on GitHub Release for package hosting, if your internet doesn't have stable connection to GitHub, we highly recommend you to turn off this option": "การอัปเดตอัตโนมัติขึ้นอยู่กับ GitHub Release สำหรับการโฮสต์แพ็กเกจ หากอินเทอร์เน็ตของคุณไม่มีการเชื่อมต่อที่เสถียรกับ GitHub เราขอแนะนำให้ปิดตัวเลือกนี้",
"File size": "ขนาดไฟล์",
"Take effect at next startup": "มีผลเมื่อเริ่มต้นใหม่",
"View mode": "โหมดดู",
"Download desktop version": "ดาวน์โหลดเวอร์ชันเดสก์ท็อป",
"No favorite books": "ไม่มีหนังสือที่ชื่นชอบ",
"Move your mouse on the top of any book, click the heart icon to add it to your favorite books": "เลื่อนเมาส์ไปที่ด้านบนของหนังสือใดก็ได้ คลิกไอคอนหัวใจเพื่อเพิ่มลงในหนังสือที่ชื่นชอบของคุณ",
"Empty reading records": "บันทึกการอ่านว่างเปล่า",
"Empty bookmark": "ที่คั่นว่างเปล่า",
"Empty note": "บันทึกย่อว่างเปล่า",
"Select any text and click the note button on the popup menu": "เลือกข้อความใดก็ได้และคลิกที่ปุ่มบันทึกย่อบนเมนูป็อปอัพ",
"Empty highlight": "ที่เน้นว่างเปล่า",
"Select any text and click the highlight button on the popup menu": "เลือกข้อความใดก็ได้และคลิกที่ปุ่มที่เน้นบนเมนูป็อปอัพ",
"Invert color": "สลับสี",
"Empty shelf": "ชั้นว่างเปล่า",
"Move your mouse on top of any book, then click the more icon to add the book to the shelf": "เลื่อนเมาส์ไปที่หนังสือใดก็ได้ จากนั้นคลิกไอคอนเพิ่มเติมเพื่อเพิ่มหนังสือลงในชั้นวาง",
"Download failed, network problem or no backup": "การดาวน์โหลดล้มเหลว เนื่องจากปัญหาเครือข่ายหรือไม่มีการสำรองข้อมูล",
"Upload failed, check your connection": "การอัปโหลดล้มเหลว โปรดตรวจสอบการเชื่อมต่อของคุณ",
"Version": "เวอร์ชัน: ",
"Not supported yet": "ยังไม่รองรับในขณะนี้",
"Update to": "อัปเดตเป็น",
"Date": "วันที่: ",
"Blue": "สีน้ำเงิน",
"Red": "สีแดง",
"Green": "สีเขียว",
"Purple": "สีม่วง",
"Unauthorize": "ยกเลิกการอนุญาต",
"Remember window's size": "จำขนาดหน้าต่าง",
"Letter spacing": "ระยะห่างตัวอักษร",
"Unauthorize successful": "ยกเลิกการอนุญาตเรียบร้อยแล้ว",
"Download Demo Book": "ดาวน์โหลดหนังสือตัวอย่าง",
"Extra large": "ขนาดใหญ่พิเศษ",
"Ultra large": "ขนาดใหญ่มาก",
"Disable analytics service": "ปิดใช้งานบริการการวิเคราะห์ข้อมูล",
"More": "เพิ่มเติม",
"Collect": "รวบรวม",
"Copy": "คัดลอก",
"Hi! stranger": "สวัสดี! คนแปลก",
"Sync data from storage": "ซิงค์ข้อมูลจากที่เก็บ",
"Click on any book to read": "คลิกที่หนังสือใดก็ได้เพื่ออ่าน",
"Move your mouse on the top edge of the reader": "เลื่อนเมาส์ไปยังขอบด้านบนของ Reader",
"Download failed,network problem or no backup": "การดาวน์โหลดล้มเหลว เนื่องจากปัญหาเครือข่ายหรือไม่มีการสำรองข้อมูล",
"Choose your action to this book": "เลือกการดำเนินการกับหนังสือนี้",
"Edit": "แก้ไข",
"Add": "เพิ่ม",
"Survey": "สำรวจความคิดเห็น",
"What's new about this version": "มีอะไรใหม่ในเวอร์ชันนี้",
"Our website": "เว็บไซต์ของเรา",
"What's new": "มีอะไรใหม่",
"What's been fixed": "ได้ทำการแก้ไขอะไรแล้วบ้าง",
"Target": "เป้าหมาย",
"Select all": "เลือกทั้งหมด",
"Execute successful": "ดำเนินการสำเร็จแล้ว",
"Disable screen blanking": "ปิดใช้งานการสลับหน้าจอ",
"When Koodo is running, your computer won't enter sleep mode": "เมื่อ Koodo กำลังทำงาน คอมพิวเตอร์ของคุณจะไม่เข้าโหมดหลับ",
"Prevent accidental trigger": "ป้องกันการเริ่มทำงานโดยไม่ตั้งใจ",
"Import books as link": "นำเข้าหนังสือเป็นลิงก์",
"Close main window while reading": "ปิดหน้าต่างหลักขณะอ่าน",
"Merge reader into Word": "ผสาน Reader เข้ากับ Word",
"Get rid of window frame, make reader hide into Word or any text editor, and can't be detected. You need to set up the reader's position, size and style first.": "กำจัดกรอบหน้าต่าง ทำให้ Reader ซ่อนอยู่ใน Word หรือโปรแกรมแก้ไขข้อความอื่นๆ และไม่สามารถตรวจพบได้ คุณต้องตั้งค่าตำแหน่ง ขนาดและสไตล์ของ Reader ก่อน",
"The imported books will not be copied to library, only linked to the original book path": "หนังสือที่นำเข้าจะไม่ถูกคัดลอกไปยังห้องสมุด แต่จะลิงก์ไปยังพาธหนังสือต้นฉบับเท่านั้น",
"Reader menu will not be triggered by hovering but clicking on the area": "เมนู Reader จะไม่ถูกเรียกใช้โดยการเอียงเมาส์แต่จะคลิกบนพื้นที่",
"Gesture and UI optimization for touch screen": "การปรับปรุง Gesture และ UI สำหรับจอสัมผัส",
"The book that you read from last time will be open automatically when launching": "หนังสือที่คุณอ่านครั้งล่าสุดจะถูกเปิดโดยอัตโนมัติเมื่อเปิดใช้งาน",
"All the folded content will be expanded in the navigation panel": "เนื้อหาทั้งหมดที่ถูกพับจะถูกขยายในแผงเมนูนำทาง",
"Reader window will be maximized to fit the screen when opening a book": "หน้าต่าง Reader จะถูกขยายให้พอดีกับหน้าจอเมื่อเปิดหนังสือ",
"Open books in the main window": "เปิดหนังสือในหน้าต่างหลัก",
"Book won't be opened in a separate window but directly opened in the main window": "หนังสือจะไม่ถูกเปิดในหน้าต่างแยกต่างหากแต่จะถูกเปิดโดยตรงในหน้าต่างหลัก",
"Frequency limit reached": "ถึงขีดจำกัดความถี่",
"Error happened": "เกิดข้อผิดพลาด",
"Text indentation": "การเยื้องข้อความ",
"Deselect all": "ไม่เลือกทั้งหมด",
"Authorize": "อนุญาต",
"Open book without adding it to library": "เปิดหนังสือโดยไม่เพิ่มลงในห้องสมุด",
"When opening books in the file manager with Koodo, the opened books won't be added to the library": "เมื่อเปิดหนังสือในตัวจัดการไฟล์ด้วย Koodo หนังสือที่เปิดจะไม่ถูกเพิ่มลงในห้องสมุด",
"Manage": "จัดการ",
"Sliding animation": "ภาพเคลื่อนไหวแบบเลื่อน",
"Please turn off open books in the main window": "โปรดปิดการเปิดหนังสือในหน้าต่างหลัก",
"This action will delete all the notes, bookmarks and digests of this book": "การดำเนินการนี้จะลบโน้ต ที่คั่น และการย่อยย่อของหนังสือเล่มนี้ทั้งหมด",
"More formats supported": "รองรับรูปแบบมากขึ้น",
"Koodo Reader's web version are limited by the browser, for more powerful features, please download the desktop version.": "เวอร์ชันเว็บของ Koodo Reader จำกัดโดยเบราว์เซอร์ สำหรับคุณสมบัติที่มีกำลังมากกว่าโปรดดาวน์โหลดเวอร์ชันเดสก์ท็อป",
"No popup when selecting texts": "ไม่มีป๊อปอัพเมื่อเลือกข้อความ",
"Turn it on when you want Koodo to work with other third-party translation service, right clicking on the selected text will trigger popup again": "เปิดใช้งานเมื่อคุณต้องการให้ Koodo ทำงานร่วมกับบริการแปลภาษาบุคคลที่สาม คลิกขวาบนข้อความที่เลือกจะเรียกใช้ป๊อปอัพอีกครั้ง",
"Disable trash bin": "ปิดใช้งานถังขยะ",
"When deleting books, they will be deleted permanently instead of sending to trash bin": "เมื่อลบหนังสือไปแล้ว มันจะถูกลบถาวรแทนที่จะส่งไปยังถังขยะ",
"Hide books already added to the shelf": "ซ่อนหนังสือที่เพิ่มเข้าชั้นวางแล้ว",
"Hide books which have been added to the shelf, so they won't show up in home page": "ซ่อนหนังสือที่เพิ่มเข้าชั้นวางไว้ ดังนั้นจะไม่ปรากฏในหน้าโฮมเพจ",
"Delete book from shelf also deleting book itself": "การลบหนังสือออกจากชั้นวางเช่นเดียวกับการลบหนังสือตัวตน",
"When deleting book from shelf, the book will be deleted as well": "เมื่อลบหนังสือออกจากชั้นวาง หนังสือนั้นๆ จะถูกลบออกจากห้องสมุดด้วย",
"Entertainment": "ความบันเทิง",
"Study": "การศึกษา",
"Author": "ผู้แต่ง",
"This process is irreversible, and will completely overwrite your current library, make sure you know what you're doing before proceeding": "กระบวนการนี้ไม่สามารถย้อนกลับได้ และจะเขียนทับไลบรารีปัจจุบันทั้งหมด โปรดตรวจสอบก่อนดำเนินการ",
"Lemmatize words when looking up in a dictionary": "ทำเลมมาเมื่อค้นหาในพจนานุกรม",
"To reduce the different forms of a word to one single form, for example, reducing builds, building or built to build, reducing cats to cat, reducing fastest to fast": "ลดรูปแบบต่างๆ ของคำให้เป็นรูปเดียว เช่น builds, building หรือ built เป็น build, cats เป็น cat, fastest เป็น fast",
"Export all books": "ส่งออกหนังสือทั้งหมด",
"Export all notes": "ส่งออกโน้ตทั้งหมด",
"Export all highlights": "ส่งออกไฮไลต์ทั้งหมด",
"Export all dictionary history": "ส่งออกประวัติพจนานุกรมทั้งหมด",
"Export dictionary history": "ส่งออกประวัติพจนานุกรม",
"Export all": "ส่งออกทั้งหมด",
"Export books": "ส่งออกหนังสือ",
"Export notes": "ส่งออกโน้ต",
"Export highlights": "ส่งออกไฮไลต์",
"Nothing to export": "ไม่มีข้อมูลให้ส่งออก",
"More actions": "การกระทำเพิ่มเติม",
"Pre-cache": "แคชล่วงหน้า",
"Pre-caching": "กำลังแคชล่วงหน้า",
"Pre-caching successful": "แคชล่วงหน้าสำเร็จ",
"Pre-caching failed": "แคชล่วงหน้าล้มเหลว",
"Delete pre-cache": "ลบแคชล่วงหน้า",
"Nothing to precache": "ไม่มีอะไรให้แคชล่วงหน้า",
"Auto precache books after import": "แคชล่วงหน้าหนังสือโดยอัตโนมัติหลังจากนำเข้า",
"Pre-cache books after import to increase opening speed, Koodo will generate a precache version of the original book and save it into your library": "แคชล่วงหน้าหนังสือหลังจากนำเข้าเพื่อเพิ่มความเร็วในการเปิด Koodo จะสร้างเวอร์ชันแคชล่วงหน้าของหนังสือต้นฉบับและบันทึกลงในคลังของคุณ",
"Take effect in a while": "จะมีผลในไม่ช้า",
"Don't use first page as PDF cover": "ไม่ใช้หน้าแรกเป็นปก PDF",
"Don't crop book cover": "ไม่ครอปปกหนังสือ",
"Add to favorite": "เพิ่มในรายการโปรด",
"Remove from favorite": "ลบออกจากรายการโปรด",
"Details": "รายละเอียด",
"Multiple selection": "เลือกหลายรายการ",
"Prototype": "ต้นแบบ",
"Right click on any book and click Add to favorite to add it to your favorite books": "คลิกขวาที่หนังสือใดๆ แล้วคลิก เพิ่มในรายการโปรด เพื่อเพิ่มไปยังรายการโปรดของคุณ",
"This action will permanently delete the selected books, together with their notes, bookmarks and digests": "การกระทำนี้จะลบหนังสือที่เลือกอย่างถาวร รวมทั้งโน้ต ที่คั่นหน้า และสรุป",
"Server Path": "เส้นทางเซิร์ฟเวอร์",
"Use SSL, 1 for use, 0 for not use": "ใช้ SSL, ใช้=1, ไม่ใช้=0",
"Server port": "พอร์ตเซิร์ฟเวอร์",
"Sending successful": "ส่งสำเร็จ",
"Sending": "กำลังส่ง",
"Thanks for using the developer version, leave a comment if you encounter any problems. Note that we can't reply to you from here. For faster and better support, please visit": "ขอบคุณที่ใช้เวอร์ชันนักพัฒนา หากพบปัญหาให้แสดงความคิดเห็น โปรดทราบว่าเราไม่สามารถตอบกลับจากที่นี่ สำหรับการสนับสนุนที่รวดเร็วและดีกว่า โปรดไปที่",
"You're not using the latest version of Koodo Reader. Please update first": "คุณไม่ได้ใช้เวอร์ชันล่าสุดของ Koodo Reader โปรดอัปเดตก่อน",
"Brief description of the problem": "คำอธิบายปัญหาแบบย่อ",
"Detailed description of the problem": "คำอธิบายปัญหาแบบละเอียด",
"Your email(optional), We may contact you for further investigation": "อีเมลของคุณ (ไม่บังคับ) เราอาจติดต่อเพื่อสอบสวนเพิ่มเติม",
"Report": "รายงาน",
"Sentence": "ประโยค",
"Associations": "ความเชื่อมโยง",
"Explanations": "คำอธิบาย",
"Pronunciations": "การออกเสียง",
"Upload attachments": "อัปโหลดไฟล์แนบ",
"File size is larger than 20MB": "ขนาดไฟล์ใหญ่กว่า 20MB",
"Learn more": "เรียนรู้เพิ่มเติม",
"Format": "รูปแบบ",
"Duplicate book in trash bin": "ทำซ้ำหนังสือในถังขยะ",
"Subject can't be empty": "หัวข้อไม่สามารถเว้นว่างได้",
"Full screen": "เต็มหน้าจอ",
"Dictionary": "พจนานุกรม",
"General": "ทั่วไป",
"Reading": "การอ่าน",
"Plugins": "ปลั๊กอิน",
"Paste the code of the plugin here, check out document to learn how to get more plugins": "วางโค้ดปลั๊กอินที่นี่ ดูเอกสารเพื่อเรียนรู้วิธีรับปลั๊กอินเพิ่มเติม",
"Add new voice": "เพิ่มเสียงใหม่",
"Plugin verification failed": "ตรวจสอบปลั๊กอินล้มเหลว",
"Add new plugin": "เพิ่มปลั๊กอินใหม่",
"Pot is running": "Pot กำลังทำงาน",
"Sync and backup": "ซิงค์และสำรองข้อมูล",
"Add data source": "เพิ่มแหล่งข้อมูล",
"Please select": "โปรดเลือก",
"Server path": "เส้นทางเซิร์ฟเวอร์",
"Switch failed": "สลับล้มเหลว",
"Switch successful": "สลับสำเร็จ",
"Please select a valid library": "โปรดเลือกไลบรารีที่ถูกต้อง",
"Switch Library": "สลับไลบรารี",
"Modify the storage location of the library, and the library will be moved to the new location. Please ensure that the new folder is empty": "แก้ไขตำแหน่งจัดเก็บไลบรารี แล้วไลบรารีจะถูกย้ายไปตำแหน่งใหม่ โปรดตรวจสอบว่าโฟลเดอร์ใหม่ว่างอยู่",
"Switch between multiple libraries without affecting the original library. For multi-device synchronization in the free version, please refer to the documentation": "สลับระหว่างไลบรารีหลายรายการโดยไม่กระทบไลบรารีเดิม สำหรับการซิงค์หลายอุปกรณ์ในเวอร์ชันฟรี โปรดดูเอกสารประกอบ",
"Authorization failed, please login again": "การยืนยันล้มเหลว โปรดเข้าสู่ระบบอีกครั้ง",
"Authorization failed": "การยืนยันล้มเหลว",
"Account": "บัญชี",
"Always keep local data when resolving sync conflicts": "เก็บข้อมูลในเครื่องไว้เสมอเมื่อแก้ไขความขัดแย้งการซิงค์",
"If you update a piece of data that has already been deleted in the cloud before synchronization, it will cause a conflict. In this case, we will keep the cloud data by default. If you turn this option on, we will keep the local data": "หากคุณอัปเดตข้อมูลที่ถูกลบในคลาวด์ก่อนการซิงค์ จะเกิดความขัดแย้ง ในกรณีนี้เราจะเก็บข้อมูลในคลาวด์ตามค่าเริ่มต้น หากเปิดตัวเลือกนี้ เราจะเก็บข้อมูลในเครื่อง",
"Encryption failed, error code": "การเข้ารหัสล้มเหลว รหัสข้อผิดพลาด",
"Decryption failed, error code": "การถอดรหัสล้มเหลว รหัสข้อผิดพลาด",
"Delete login option": "ลบตัวเลือกการเข้าสู่ระบบ",
"Log out": "ออกจากระบบ",
"Bind": "ผูกบัญชี",
"Testing connection...": "กำลังทดสอบการเชื่อมต่อ...",
"Connection failed": "การเชื่อมต่อล้มเหลว",
"Connection successful": "การเชื่อมต่อสำเร็จ",
"Upgrading, please wait...": "กำลังอัปเกรด โปรดรอ...",
"Upgrade successful": "อัปเกรดสำเร็จ",
"Login successful": "เข้าสู่ระบบสำเร็จ",
"Offline successful": "ใช้งานออฟไลน์สำเร็จ",
"Start Transferring Data": "เริ่มถ่ายโอนข้อมูล",
"Almost finished": "ใกล้เสร็จแล้ว",
"Please select an empty folder": "โปรดเลือกโฟลเดอร์ว่าง",
"Meticulously designed and built for Android and iOS": "ออกแบบและสร้างอย่างพิถีพิถันสำหรับ Android และ iOS",
"After three years of design and development, the mobile version of Koodo Reader is finally out": "หลังจากการออกแบบและพัฒนา 3 ปี เวอร์ชันมือถือของ Koodo Reader ได้ออกแล้ว",
"Synchronize books and reading progress across all your devices": "ซิงค์หนังสือและความคืบหน้าการอ่านบนทุกอุปกรณ์ของคุณ",
"With the integration of your cloud drive, WebDAV, and object storage, all your data remains securely in your control": "ด้วยการรวมคลาวด์ไดรฟ์ WebDAV และที่เก็บวัตถุ ข้อมูลทั้งหมดของคุณอยู่ภายใต้การควบคุมอย่างปลอดภัย",
"Embark on your journey of exploration with Koodo Reader Pro": "เริ่มต้นการสำรวจของคุณกับ Koodo Reader Pro",
"Continue with": "ดำเนินการต่อด้วย {{label}}",
"Manually enter login credentials": "ป้อนข้อมูลเข้าสู่ระบบด้วยตนเอง",
"By clicking continue, you acknowledge that you have carefully read and agree to accept Koodo Reader's Terms of Service and Privacy Policy": "เมื่อคลิกดำเนินการต่อ คุณยอมรับว่าคุณได้อ่านและยอมรับข้อกำหนดการให้บริการและนโยบายความเป็นส่วนตัวของ Koodo Reader",
"Add a data source for data synchronization and backup": "เพิ่มแหล่งข้อมูลสำหรับการซิงค์และสำรองข้อมูล",
"Download the mobile version to read and take notes anytime, anywhere": "ดาวน์โหลดเวอร์ชันมือถือเพื่ออ่านและจดบันทึกได้ทุกที่ทุกเวลา",
"Finish": "เสร็จสิ้น",
"At least one login option should be kept": "ต้องเก็บตัวเลือกการเข้าสู่ระบบอย่างน้อยหนึ่งรายการ",
"Removing": "กำลังลบ",
"Removal successful": "ลบสำเร็จ",
"Removal failed, error code": "ลบล้มเหลว รหัสข้อผิดพลาด",
"Login failed": "เข้าสู่ระบบล้มเหลว",
"Binding successful": "ผูกบัญชีสำเร็จ",
"Adding": "กำลังเพิ่ม",
"Add login option": "เพิ่มตัวเลือกการเข้าสู่ระบบ",
"Please turn off auto open book in full screen": "โปรดปิดการเปิดหนังสืออัตโนมัติในโหมดเต็มหน้าจอ",
"Load local fonts": "โหลดฟอนต์ในเครื่อง",
"Please turn off import books as link first": "โปรดปิดการนำเข้าหนังสือเป็นลิงก์ก่อน",
"Reset reader window's position": "รีเซ็ตตำแหน่งหน้าต่างผู้อ่าน",
"Reset successful": "รีเซ็ตสำเร็จ",
"Reset failed": "รีเซ็ตล้มเหลว",
"Reset": "รีเซ็ต",
"Close": "ปิด",
"Please select the service": "โปรดเลือกบริการ",
"Set default sync option": "ตั้งค่าตัวเลือกการซิงค์เริ่มต้น",
"Default sync option cannot be removed": "ไม่สามารถลบตัวเลือกการซิงค์เริ่มต้นได้",
"This feature is not available in the free version": "ฟีเจอร์นี้ไม่พร้อมใช้งานในเวอร์ชันฟรี",
"Make it offline": "ทำให้ออฟไลน์",
"Get device identifier": "รับตัวระบุอุปกรณ์",
"Sync failed": "ซิงค์ล้มเหลว",
"Please set default sync option in the setting": "โปรดตั้งค่าตัวเลือกการซิงค์เริ่มต้นในตั้งค่า",
"Previous page": "หน้าก่อนหน้า",
"Next page": "หน้าถัดไป",
"Beta phase": "ช่วงเบต้า",
"Free user": "ผู้ใช้ฟรี",
"Log out successful": "ออกจากระบบสำเร็จ",
"Valid until": "มีอายุถึง {{label}}",
"Failed to get sync state": "ไม่สามารถรับสถานะการซิงค์ได้",
"Pro version": "เวอร์ชัน Pro",
"Please add data source in the setting": "โปรดเพิ่มแหล่งข้อมูลในการตั้งค่า",
"Don't automatically pre-cache books for mobile version after import": "อย่าแคชล่วงหน้าอัตโนมัติสำหรับเวอร์ชันมือถือหลังนำเข้า",
"Upon importing, books will be automatically pre-cached, enabling seamless access in the mobile version. However, this process may consume additional storage space and extend the import duration. You can still do it manually": "เมื่อทำการนำเข้า หนังสือจะถูกแคชล่วงหน้าอัตโนมัติ ทำให้เข้าถึงได้อย่างราบรื่นในเวอร์ชันมือถือ อย่างไรก็ตามกระบวนการนี้อาจใช้พื้นที่เพิ่มเติมและเพิ่มเวลานำเข้า คุณยังสามารถทำด้วยตนเองได้",
"Test": "ทดสอบ",
"Minute": "นาที",
"Get error log": "รับบันทึกข้อผิดพลาด",
"Account type": "ประเภทบัญชี",
"Trial user": "ผู้ใช้ทดลอง",
"Paid user": "ผู้ใช้ชำระเงิน",
"Delete data source": "ลบแหล่งข้อมูล",
"Sync state is occupied by other devices, please try again later": "สถานะการซิงค์ถูกใช้งานโดยอุปกรณ์อื่น โปรดลองอีกครั้งภายหลัง",
"Start syncing": "เริ่มซิงค์",
"Backup to": "สำรองไปยัง",
"Restore from": "กู้คืนจาก",
"S3 Compatible": "รองรับ S3",
"Select data source": "เลือกแหล่งข้อมูล",
"Upgrade failed": "อัปเกรดล้มเหลว",
"Restore failed": "กู้คืนล้มเหลว",
"Backup failed": "สำรองข้อมูลล้มเหลว",
"This feature is only available in the developer version": "ฟีเจอร์นี้มีเฉพาะในเวอร์ชันนักพัฒนา",
"Missing parameters": "พารามิเตอร์ไม่ครบ",
"Offline failed": "ออฟไลน์ล้มเหลว",
"Email": "อีเมล",
"Binding failed": "ผูกบัญชีล้มเหลว",
"PDF files in double page mode does not support note taking yet": "ไฟล์ PDF ในโหมดหน้าคู่ยังไม่รองรับการจดโน้ต",
"Your trial period has expired": "ระยะทดลองใช้งานหมดอายุแล้ว",
"Exit Pro": "ออกจาก Pro",
"I've paid": "ฉันชำระเงินแล้ว",
"Need help": "ต้องการความช่วยเหลือ",
"Upgrade": "อัปเกรด",
"You haven't upgraded to Pro yet": "คุณยังไม่ได้อัปเกรดเป็น Pro",
"Please support our development": "โปรดสนับสนุนการพัฒนาของเรา",
"Thanks for your support": "ขอบคุณสำหรับการสนับสนุน",
"Failed to get user info": "ไม่สามารถรับข้อมูลผู้ใช้ได้",
"For just the price of a cup of coffee per year, you can continue to enjoy the premium features and support our development": "เพียงราคากาแฟหนึ่งแก้วต่อปี คุณสามารถเพลิดเพลินกับฟีเจอร์พรีเมียมต่อไปและสนับสนุนการพัฒนาของเรา",
"Fetch failed, error code": "การดึงข้อมูลล้มเหลว รหัสข้อผิดพลาด",
"Login failed, error code": "เข้าสู่ระบบล้มเหลว รหัสข้อผิดพลาด",
"Aliyun Drive": "Aliyun Drive",
"How to fill out": "วิธีกรอก",
"Upgrade to Pro": "อัปเกรดเป็น Pro",
"Renew Pro": "ต่ออายุ Pro",
"Generating payment link": "กำลังสร้างลิงก์ชำระเงิน",
"Checking payment status": "กำลังตรวจสอบสถานะการชำระเงิน",
"Your data has been exported to your local folder, learn how to sync your data to your other devices by visiting our documentation, Upgrade to pro to get more advanced features": "ข้อมูลของคุณถูกส่งออกไปยังโฟลเดอร์ในเครื่องแล้ว โปรดดูเอกสารเพื่อเรียนรู้วิธีซิงค์ข้อมูลไปยังอุปกรณ์อื่น อัปเกรดเป็น Pro เพื่อฟีเจอร์ขั้นสูง",
"Your data has been imported from your local folder, Upgrade to pro to get more advanced features": "ข้อมูลของคุณถูกนำเข้าจากโฟลเดอร์ในเครื่องแล้ว อัปเกรดเป็น Pro เพื่อฟีเจอร์ขั้นสูง",
"Due to Aliyun Drive's stringent concurrency restrictions, we have bypassed the synchronization of books and covers. Please manually download the books by clicking on them": "เนื่องจากข้อจำกัดการทำงานพร้อมกันของ Aliyun Drive เราจึงข้ามการซิงค์หนังสือและปก โปรดดาวน์โหลดหนังสือด้วยตนเองโดยคลิกที่หนังสือ",
"Aliyun Drive imposes strict limits on concurrent downloads. It is recommended that you wait 10 seconds before attempting to download again.": "Aliyun Drive มีข้อจำกัดการดาวน์โหลดพร้อมกันอย่างเข้มงวด แนะนำให้รอ 10 วินาทีก่อนลองดาวน์โหลดอีกครั้ง",
"Cannot get sync config": "ไม่สามารถรับการกำหนดค่าการซิงค์ได้",
"2FA code": "รหัส 2FA",
"Path": "เส้นทาง",
"Reading Assistant": "ผู้ช่วยอ่าน",
"Chat Assistant": "ผู้ช่วยแชท",
"Overwrite the default link style in the book": "เขียนทับสไตล์ลิงก์เริ่มต้นในหนังสือ",
"Edit shelf": "แก้ไขชั้นวาง",
"Manage shelf": "จัดการชั้นวาง",
"Locate": "ค้นหา",
"Created successfully": "สร้างสำเร็จ",
"Locate in the folder": "แสดงในโฟลเดอร์",
"File not found": "ไม่พบไฟล์",
"Drag to sort": "ลากเพื่อจัดเรียง",
"Renamed successfully": "เปลี่ยนชื่อสำเร็จ",
"Some S3 services are not compatible with browser environments. If you encounter connection issues, please refer to the service provider's official documentation for instructions on enabling CORS. Also due to browser's security restrictions, the S3 service must be accessed via HTTPS protocol when you're visiting Koodo Reader via HTTPS protocol.": "บริการ S3 บางรายการไม่เข้ากันกับสภาพแวดล้อมของเบราว์เซอร์ หากพบปัญหาการเชื่อมต่อ โปรดดูเอกสารของผู้ให้บริการสำหรับการเปิด CORS และเนื่องจากข้อจำกัดความปลอดภัยของเบราว์เซอร์ บริการ S3 ต้องเข้าถึงผ่าน HTTPS เมื่อคุณใช้ Koodo Reader ผ่าน HTTPS",
"Generated with AI": "สร้างด้วย AI",
"Official AI Dictionary": "พจนานุกรม AI อย่างเป็นทางการ",
"Official AI Translation": "การแปล AI อย่างเป็นทางการ",
"Official AI Assistant": "ผู้ช่วย AI อย่างเป็นทางการ",
"Recommended (use with Nutstore)": "แนะนำ (ใช้กับ Nutstore)",
"Enter your email": "กรอกอีเมลของคุณ",
"Enter code": "กรอกรหัส",
"Send code": "ส่งรหัส",
"Send successfully": "ส่งสำเร็จ",
"Due to the limited number of emails we can send each day, to prevent login issues after reaching the sending limit, please make sure to add additional login options as backups after logging in.": "เนื่องจากเราส่งอีเมลได้จำกัดในแต่ละวัน เพื่อป้องกันปัญหาหลังถึงขีดจำกัด โปรดเพิ่มตัวเลือกการเข้าสู่ระบบสำรองหลังจากเข้าสู่ระบบ",
"Failed to send code, error code": "ส่งรหัสล้มเหลว รหัสข้อผิดพลาด",
"Redeem with code": "แลกด้วยรหัส",
"Verify": "ยืนยัน",
"Redeem": "แลก",
"Enter your redemption code": "กรอกรหัสแลก",
"Redeem successful": "แลกสำเร็จ",
"Redeem failed, error code": "แลกล้มเหลว รหัสข้อผิดพลาด",
"Verifying...": "กำลังยืนยัน...",
"Optional": "ตัวเลือก",
"Required": "จำเป็น",
"Supported email providers": "ผู้ให้บริการอีเมลที่รองรับ",
"Log in": "เข้าสู่ระบบ",
"Unsupported email provider": "ผู้ให้บริการอีเมลที่ไม่รองรับ",
"Please click the authorize button below to authorize your account, enter the obtained credentials here, and then click the bind button below": "คลิกปุ่มอนุญาตด้านล่างเพื่ออนุญาตบัญชี กรอกข้อมูลรับรองที่ได้ที่นี่ แล้วคลิกปุ่มผูกด้านล่าง",
"Please login again to update your membership on this device": "โปรดเข้าสู่ระบบอีกครั้งเพื่ออัปเดตสมาชิกภาพบนอุปกรณ์นี้",
"Tasks failed after multiple retries, please check the network connection": "งานล้มเหลวหลังจากลองหลายครั้ง โปรดตรวจสอบการเชื่อมต่อเครือข่าย",
"Return": "กลับ",
"Example": "ตัวอย่าง",
"The Koodo Reader Docker version does not support the data source feature by default. You need to modify the configuration parameters during deployment to manually enable it. Also due to browser's security restrictions, the Docker service must be accessed via HTTPS protocol when you're visiting Koodo Reader via HTTPS protocol.": "เวอร์ชัน Docker ของ Koodo Reader ไม่รองรับฟีเจอร์แหล่งข้อมูลโดยค่าเริ่มต้น คุณต้องแก้ไขพารามิเตอร์การกำหนดค่าระหว่างการปรับใช้เพื่อเปิดใช้งาน และเนื่องจากข้อจำกัดด้านความปลอดภัยของเบราว์เซอร์ บริการ Docker ต้องเข้าถึงผ่าน HTTPS เมื่อคุณใช้ Koodo Reader ผ่าน HTTPS",
"Select server region": "เลือกภูมิภาคเซิร์ฟเวอร์",
"Server region": "ภูมิภาคเซิร์ฟเวอร์",
"Global": "ทั่วโลก",
"China": "จีน",
"Some login options and data sources are not available in your selected server region": "ตัวเลือกการเข้าสู่ระบบและแหล่งข้อมูลบางอย่างไม่พร้อมใช้งานในภูมิภาคเซิร์ฟเวอร์ที่เลือก",
"Grant access to local folder to save your data and reduce the risk of data loss": "ให้สิทธิ์เข้าถึงโฟลเดอร์ในเครื่องเพื่อบันทึกข้อมูลและลดความเสี่ยงการสูญหาย",
"Never lose your data": "อย่าทำข้อมูลหาย",
"Select folder": "เลือกโฟลเดอร์",
"Continue to store in the browser": "จัดเก็บต่อในเบราว์เซอร์",
"Failed to get folder access permission": "ไม่สามารถรับสิทธิ์เข้าถึงโฟลเดอร์ได้",
"Local folder access granted successfully": "อนุญาตการเข้าถึงโฟลเดอร์ในเครื่องสำเร็จ",
"Need to reauthorize the access to directory": "ต้องอนุญาตการเข้าถึงไดเรกทอรีอีกครั้ง",
"Granting access to local folder, please wait": "กำลังให้สิทธิ์เข้าถึงโฟลเดอร์ในเครื่อง โปรดรอ",
"Please click the allow on every visit button to avoid this popup once and for all": "โปรดคลิก อนุญาต ทุกครั้งที่เข้าชมเพื่อหลีกเลี่ยงป๊อปอัปนี้",
"Setup successful": "ตั้งค่าสำเร็จ",
"Download successful": "ดาวน์โหลดสำเร็จ",
"Download failed": "ดาวน์โหลดล้มเหลว",
"Downloading": "กำลังดาวน์โหลด",
"Back": "ย้อนกลับ",
"Please select a backup path": "โปรดเลือกเส้นทางสำรองข้อมูล",
"Only desktop version supports TTS plugin": "มีเฉพาะเวอร์ชันเดสก์ท็อปที่รองรับปลั๊กอิน TTS",
"Disable pagination in book list": "ปิดการแบ่งหน้าในรายการหนังสือ",
"We have bypassed the synchronization of book cover for Aliyun Drive, covers will be downloaded automatically when you open the book next time.": "เราข้ามการซิงค์ปกหนังสือสำหรับ Aliyun Drive ปกจะถูกดาวน์โหลดอัตโนมัติเมื่อเปิดหนังสือครั้งถัดไป",
"Stable version": "เวอร์ชันเสถียร",
"Only receive stable version": "รับเฉพาะเวอร์ชันเสถียร",
"Skip this version": "ข้ามเวอร์ชันนี้",
"Select update channel": "เลือกช่องทางอัปเดต",
"Upload failed": "อัปโหลดล้มเหลว",
"Uploading book": "กำลังอัปโหลดหนังสือ",
"Uploading cover": "กำลังอัปโหลดปก",
"Upload successful": "อัปโหลดสำเร็จ",
"Summarize this chapter for me": "สรุปบทนี้ให้ฉัน",
"What are the key points of this chapter": "ประเด็นสำคัญของบทนี้คืออะไร",
"Remove data source": "ลบแหล่งข้อมูล",
"Ask anything about this chapter": "ถามอะไรก็ได้เกี่ยวกับบทนี้",
"Ask anything about reading or learning": "ถามอะไรก็ได้เกี่ยวกับการอ่านหรือการเรียนรู้",
"Hi there! I'm happy to help with any questions about reading or learning": "สวัสดี! ยินดีช่วยตอบคำถามเกี่ยวกับการอ่านหรือการเรียนรู้",
"Hi there! What questions do you have about this chapter?": "สวัสดี! คุณมีคำถามอะไรเกี่ยวกับบทนี้?",
"Thinking, please wait...": "กำลังคิด โปรดรอ...",
"Recommend me some books from Colleen Hoover": "แนะนำหนังสือของ Colleen Hoover ให้ฉันหน่อย",
"Explain Stoicism and its principles to me": "อธิบายสโตอิกและหลักการให้ฉันหน่อย",
"From cloud storage": "จากที่เก็บข้อมูลบนคลาวด์",
"Import from": "นำเข้าจาก",
"Back to parent": "กลับไปยังโฟลเดอร์แม่",
"No file selected": "ไม่มีไฟล์ที่เลือก",
"Send": "ส่ง",
"Please add data source in the setting-Sync and backup first": "โปรดเพิ่มแหล่งข้อมูลในการตั้งค่า-ซิงค์และสำรองข้อมูลก่อน",
"Broken data detected, please click the setting button to reset the sync records": "ตรวจพบข้อมูลเสียหาย โปรดคลิกปุ่มตั้งค่าเพื่อรีเซ็ตบันทึกการซิงค์",
"Reset sync records": "รีเซ็ตบันทึกการซิงค์",
"Pro user": "ผู้ใช้ Pro",
"Select login method": "เลือกวิธีเข้าสู่ระบบ",
"Not bound": "ไม่ได้ผูก",
"Bound": "ผูกแล้ว",
"Classical Chinese": "จีนคลาสสิก",
"English": "อังกฤษ",
"Simplified Chinese": "จีนตัวย่อ",
"Traditional Chinese": "จีนตัวเต็ม",
"Japanese": "ญี่ปุ่น",
"Korean": "เกาหลี",
"French": "ฝรั่งเศส",
"German": "เยอรมัน",
"Spanish": "สเปน",
"Italian": "อิตาลี",
"Russian": "รัสเซีย",
"Portuguese": "โปรตุเกส",
"Binding": "การผูกบัญชี",
"Please log in first": "โปรดเข้าสู่ระบบก่อน",
"Logging in": "กำลังเข้าสู่ระบบ",
"Your email": "อีเมลของคุณ",
"Email can't be empty": "อีเมลห้ามว่าง",
"Please select a sync service": "โปรดเลือกบริการซิงค์",
"No result found": "ไม่พบผลลัพธ์",
"Updated successfully": "อัปเดตสำเร็จ",
"Enable this option to increase synchronization speed. Your reading progress, notes, highlights, bookmarks, and other reading-related data will be encrypted, stored and synced via our cloud service, your books and covers will still be synced by your added data sources. Turning off this option will remove the above data from our cloud.": "เปิดตัวเลือกนี้เพื่อเพิ่มความเร็วการซิงค์ ความคืบหน้าการอ่าน โน้ต ไฮไลต์ ที่คั่นหน้า และข้อมูลที่เกี่ยวข้องจะถูกเก็บและซิงค์ผ่านบริการคลาวด์ของเรา หนังสือและปกจะยังซิงค์ผ่านแหล่งข้อมูลที่เพิ่มไว้ ปิดตัวเลือกนี้จะลบข้อมูลดังกล่าวออกจากคลาวด์",
"Access may be unstable in China": "การเข้าถึงอาจไม่เสถียรในจีน",
"Only WebDAV service provided by Alist is directly supported in Browser, Other WebDAV services need to enable CORS to work properly. Also due to browser's security restrictions, the WebDAV service must be accessed via HTTPS protocol when you're visiting Koodo Reader via HTTPS protocol.": "เบราว์เซอร์รองรับโดยตรงเฉพาะ WebDAV จาก Alist บริการ WebDAV อื่นต้องเปิด CORS และเนื่องจากข้อจำกัดความปลอดภัย บริการ WebDAV ต้องเข้าถึงผ่าน HTTPS เมื่อคุณใช้ Koodo Reader ผ่าน HTTPS",
"Enable Koodo Sync": "เปิดใช้งาน Koodo Sync",
"Disable automatic sync": "ปิดการซิงค์อัตโนมัติ",
"By default, Koodo Reader will automatically synchronize your data when you open the app and exit reading": "ตามค่าเริ่มต้น Koodo Reader จะซิงค์ข้อมูลอัตโนมัติเมื่อเปิดแอปและออกจากการอ่าน",
"This endpoint usually don't contain bucket name": "โดยปกติเอ็นด์พอยต์นี้จะไม่มีชื่อบัคเก็ต",
"Export books with original name": "ส่งออกหนังสือด้วยชื่อเดิม",
"Failed to import": "นำเข้าล้มเหลว",
"Clear successful": "ล้างสำเร็จ",
"Reset main window's position": "รีเซ็ตตำแหน่งหน้าต่างหลัก",
"Copy quotes": "คัดลอกคำคม",
"7-days free trial only applies to users who registered with recommended email providers. Recommended email providers are as follows": "ทดลองใช้ฟรี 7 วันมีผลเฉพาะผู้ใช้ที่ลงทะเบียนด้วยผู้ให้บริการอีเมลที่แนะนำ ผู้ให้บริการที่แนะนำมีดังนี้",
"Convert PDF to Text": "แปลง PDF เป็นข้อความ",
"Set OCR language": "ตั้งค่าภาษา OCR",
"Unsupported file format": "รูปแบบไฟล์ที่ไม่รองรับ",
"When the spacing between two lines of text is n times of regular spacing, they will be split into two paragraphs": "เมื่อระยะห่างระหว่างสองบรรทัดเป็น n เท่าของระยะปกติ จะถูกแบ่งเป็นสองย่อหน้า",
"Invalid email format": "รูปแบบอีเมลไม่ถูกต้อง",
"Paragraph spacing threshold": "เกณฑ์ระยะห่างย่อหน้า",
"After hiding the menu button, you can move the mouse to the edge of the window to show it again.": "หลังซ่อนปุ่มเมนู คุณสามารถเลื่อนเมาส์ไปที่ขอบหน้าต่างเพื่อแสดงอีกครั้ง",
"When a line of text is n times the size of regular text, it will be treated as a title": "เมื่อบรรทัดข้อความมีขนาดใหญ่กว่าปกติ n เท่า จะถูกถือว่าเป็นหัวเรื่อง",
"Title size threshold": "เกณฑ์ขนาดหัวเรื่อง",
"OCR engine": "เอนจิน OCR",
"System OCR": "OCR ของระบบ",
"Render PDF from even page": "เรนเดอร์ PDF จากหน้าคู่",
"Filter by book": "กรองตามหนังสือ",
"Server path (Please first create this folder manually)": "เส้นทางเซิร์ฟเวอร์ (โปรดสร้างโฟลเดอร์นี้ด้วยตนเองก่อน)",
"Clear": "ล้าง",
"Automatically launch on system startup": "เริ่มอัตโนมัติเมื่อเปิดระบบ",
"Automatic": "อัตโนมัติ",
"Inflection": "การผันคำ",
"Word comparison": "เปรียบเทียบคำ",
"Language auto-detection may not be accurate. Please try selecting the source language manually": "การตรวจจับภาษาอัตโนมัติอาจไม่แม่นยำ โปรดลองเลือกภาษาต้นทางด้วยตนเอง",
"Action": "การกระทำ",
"Copy to": "คัดลอกไปยัง",
"Move to": "ย้ายไปยัง",
"Image copied to clipboard": "คัดลอกรูปภาพไปยังคลิปบอร์ดแล้ว",
"Disable auto scroll to next or previous chapter": "ปิดการเลื่อนอัตโนมัติไปยังบทถัดไปหรือก่อนหน้า",
"Disable auto scroll to next or previous chapter when reaching the end of the current chapter": "ปิดการเลื่อนอัตโนมัติเมื่อถึงจบบทปัจจุบัน",
"Auto download cloud books": "ดาวน์โหลดหนังสือบนคลาวด์อัตโนมัติ",
"To reduce storage usage, only the book metadata is downloaded by default, and the book files are not downloaded. After enabling this option, all book files will be downloaded during synchronization": "เพื่อลดการใช้พื้นที่จัดเก็บ ค่าเริ่มต้นจะดาวน์โหลดเฉพาะเมทาดาทา หลังเปิดตัวเลือกนี้จะดาวน์โหลดไฟล์หนังสือทั้งหมดระหว่างการซิงค์",
"Failed to open Google Picker": "เปิด Google Picker ไม่สำเร็จ",
"Total chapters": "จำนวนบททั้งหมด",
"Clear all data": "ล้างข้อมูลทั้งหมด",
"Please type 'CLEAR' to confirm": "โปรดพิมพ์ 'CLEAR' เพื่อยืนยัน",
"Current chapter": "บทปัจจุบัน",
"Show all": "แสดงทั้งหมด",
"Expand chapters": "ขยายบท",
"Collapse chapters": "ย่อบท",
"Windows always on top": "หน้าต่างอยู่ด้านบนเสมอ",
"Auto maximize main window": "ขยายหน้าต่างหลักอัตโนมัติ",
"Main window will be maximized to fit the screen when launching": "หน้าต่างหลักจะถูกขยายให้เต็มหน้าจอเมื่อเริ่มต้น",
"Your Pro trial has expired, please renew it to continue using the Pro features": "ช่วงทดลอง Pro หมดอายุแล้ว โปรดต่ออายุเพื่อใช้ฟีเจอร์ Pro ต่อไป",
"Support": "สนับสนุน",
"Continue": "ดำเนินการต่อ",
"This data source cannot be accessed from browser due to CORS policy. Please switch to another data source or CORS-enabled service provider.": "ไม่สามารถเข้าถึงแหล่งข้อมูลนี้จากเบราว์เซอร์เนื่องจากนโยบาย CORS โปรดเปลี่ยนแหล่งข้อมูลหรือผู้ให้บริการที่รองรับ CORS",
"This data source cannot be accessed due to browser's security policy. Please switch to another data source or HTTPS-based service provider.": "ไม่สามารถเข้าถึงแหล่งข้อมูลนี้เนื่องจากนโยบายความปลอดภัยของเบราว์เซอร์ โปรดเปลี่ยนแหล่งข้อมูลหรือผู้ให้บริการที่ใช้ HTTPS",
"Download in Browser": "ดาวน์โหลดในเบราว์เซอร์",
"Shelf location": "ตำแหน่งชั้นวาง",
"Use file name as book title": "ใช้ชื่อไฟล์เป็นชื่อหนังสือ",
"With the integration of popular cloud storage services, WebDAV, FTP, SFTP, SMB, Docker, and object storage, all your data remains securely in your control": "ด้วยการรวมบริการจัดเก็บคลาวด์ยอดนิยม WebDAV, FTP, SFTP, SMB, Docker และที่เก็บวัตถุ ข้อมูลทั้งหมดของคุณอยู่ภายใต้การควบคุมอย่างปลอดภัย",
"Only recommended for VIP users": "แนะนำสำหรับผู้ใช้ VIP เท่านั้น",
"The 115 cloud is only recommended for VIP users, as it is nearly unusable for free users. Additionally, due to API issues with 115 cloud, synchronization can be very slow. If you insist on using 115 cloud storage for syncing, it is recommended to enable Koodo Sync simultaneously, which will significantly improve the synchronization speed.": "115 cloud แนะนำสำหรับผู้ใช้ VIP เท่านั้น เนื่องจากแทบใช้ไม่ได้สำหรับผู้ใช้ฟรี นอกจากนี้ด้วยปัญหา API การซิงค์อาจช้ามาก หากต้องการใช้ 115 cloud เพื่อซิงค์ แนะนำให้เปิด Koodo Sync พร้อมกันซึ่งจะเพิ่มความเร็วอย่างมาก",
"Request timed out, You may change the server region to China to solve the connection issue in mainland China. Go to Settings > Account": "คำขอหมดเวลา คุณสามารถเปลี่ยนภูมิภาคเซิร์ฟเวอร์เป็นจีนเพื่อแก้ปัญหาการเชื่อมต่อในจีนแผ่นดินใหญ่ ไปที่ การตั้งค่า > บัญชี",
"Dubox": "Dubox",
"115 Yun": "115 Yun",
"Please add a data source in Setting-Sync and backup": "โปรดเพิ่มแหล่งข้อมูลใน ตั้งค่า-ซิงค์และสำรองข้อมูล",
"Failed to read file, please refresh and grant directory access again": "อ่านไฟล์ไม่สำเร็จ โปรดรีเฟรชและอนุญาตการเข้าถึงไดเรกทอรีอีกครั้ง",
"OneDrive (full access)": "OneDrive (เข้าถึงเต็ม)",
"Import folder": "นำเข้าโฟลเดอร์",
"Error scanning folder": "เกิดข้อผิดพลาดในการสแกนโฟลเดอร์",
"No files found in this folder": "ไม่พบไฟล์ในโฟลเดอร์นี้",
"Scanning folder": "กำลังสแกนโฟลเดอร์",
"Please make sure the email and code are correct": "โปรดตรวจสอบอีเมลและรหัสให้ถูกต้อง",
"Successfully scanned folder": "สแกนโฟลเดอร์สำเร็จ",
"Refresh": "รีเฟรช",
"Refreshing": "กำลังรีเฟรช",
"Refresh successful": "รีเฟรชสำเร็จ",
"If you didn't receive the verification code, please check the spam folder or use another email provider": "หากไม่ได้รับรหัสยืนยัน โปรดตรวจสอบโฟลเดอร์สแปมหรือใช้อีเมลผู้ให้บริการรายอื่น",
"In order to let you directly manage your data in Google Drive, we have deprecated the old Google Drive token. Please reauthorize Google Drive in the settings. Your new data will be stored in the root directory of your Google Drive, and you can manage it directly in the Google Drive web interface.": "เพื่อให้คุณจัดการข้อมูลใน Google Drive ได้โดยตรง เราได้ยกเลิกโทเค็น Google Drive แบบเดิม โปรดอนุญาต Google Drive ใหม่ในการตั้งค่า ข้อมูลใหม่ของคุณจะถูกเก็บไว้ในไดเรกทอรีรากของ Google Drive และคุณสามารถจัดการได้จากเว็บอินเทอร์เฟซโดยตรง",
"Official AI Voice": "เสียง AI อย่างเป็นทางการ",
"Female voice": "เสียงผู้หญิง",
"Male voice": "เสียงผู้ชาย",
"Loading audio, please wait...": "กำลังโหลดเสียง โปรดรอ...",
"Purchase more quota": "ซื้อโควต้าเพิ่ม",
"You have exhausted your daily free AI voice character quota. Please purchase more quota to continue using this feature or wait until the quota resets. You can also use other TTS voices instead.": "คุณใช้โควต้าตัวอักษรเสียง AI ฟรีรายวันหมดแล้ว โปรดซื้อโควต้าเพิ่มเพื่อใช้ฟีเจอร์นี้ต่อหรือรอจนกว่าโควต้าจะรีเซ็ต คุณสามารถใช้เสียง TTS อื่นแทนได้",
"Audio loading failed, stopped playback": "โหลดเสียงล้มเหลว หยุดเล่นแล้ว",
"Change": "เปลี่ยน",
"We have two server regions(Global and China). To change the server region, you need to log out first. Do you want to log out now?": "เรามีสองภูมิภาคเซิร์ฟเวอร์ (ทั่วโลกและจีน) หากต้องการเปลี่ยนภูมิภาคเซิร์ฟเวอร์ คุณต้องออกจากระบบก่อน คุณต้องการออกจากระบบตอนนี้หรือไม่",
"Get debug logs": "รับบันทึกการดีบัก",
"To enjoy a faster and seamless synchronization experience.": "เพื่อประสบการณ์การซิงค์ที่เร็วและราบรื่นยิ่งขึ้น",
"Your reading progress, notes, highlights, bookmarks, and other data will be stored and synced through our cloud service. Your books and covers will still be synced by your added data sources. All your data will be encrypted and stored securely in our cloud. You can disable this feature anytime in the settings.": "ความคืบหน้าการอ่าน บันทึก ไฮไลต์ ที่คั่นหนังสือ และข้อมูลอื่นๆ ของคุณจะถูกจัดเก็บและซิงค์ผ่านบริการคลาวด์ของเรา หนังสือและปกหนังสือของคุณจะยังคงถูกซิงค์โดยแหล่งข้อมูลที่คุณเพิ่มไว้ ข้อมูลทั้งหมดของคุณจะถูกเข้ารหัสและจัดเก็บอย่างปลอดภัยในคลาวด์ของเรา คุณสามารถปิดฟีเจอร์นี้ได้ทุกเมื่อในการตั้งค่า",
"Data in other devices is messed up, but the data in this device is normal. You can reset the sync record in this device, delete the KoodoReader/config folder in the data source(Turn off Koodo Sync if necessary), and sync again. This should resolve the issue": "ข้อมูลในอุปกรณ์อื่นมีปัญหา แต่ข้อมูลในอุปกรณ์นี้ปกติ คุณสามารถรีเซ็ตบันทึกการซิงค์ในอุปกรณ์นี้ ลบโฟลเดอร์ KoodoReader/config ในแหล่งข้อมูล (ปิด Koodo Sync หากจำเป็น) และซิงค์อีกครั้ง ซึ่งน่าจะแก้ไขปัญหาได้",
"Tasks failed after multiple retries, please check the network connection or reauthorize the data source in the settings": "งานล้มเหลวหลังจากลองหลายครั้ง โปรดตรวจสอบการเชื่อมต่อเครือข่ายหรืออนุญาตแหล่งข้อมูลอีกครั้งในการตั้งค่า",
"This data source already contains a library. If you need to merge local and cloud data, please turn off Koodo Sync and resync.": "แหล่งข้อมูลนี้มีไลบรารีอยู่แล้ว หากคุณต้องการรวมข้อมูลในเครื่องและคลาวด์ โปรดปิด Koodo Sync และซิงค์อีกครั้ง",
"Download completed": "ดาวน์โหลดเสร็จสมบูรณ์",
"Overwrite the default text style in the book": "แทนที่รูปแบบข้อความเริ่มต้นในหนังสือ",
"AI voice character quota": "โควต้าตัวอักษรเสียง AI",
"Free quota": "โควต้าฟรี",
"Once the daily free quota is exhausted, the system will begin deducting from your purchased quota. The character count is calculated as follows, each letter, and punctuation mark counts as one character.": "เมื่อโควต้าฟรีรายวันหมด ระบบจะเริ่มหักจากโควต้าที่คุณซื้อ การนับจำนวนตัวอักษรมีดังนี้: ตัวอักษรและเครื่องหมายวรรคตอนแต่ละตัวนับเป็นหนึ่งตัวอักษร",
"You can also use the desktop app to avoid this issue.": "คุณยังสามารถใช้แอปเดสก์ท็อปเพื่อหลีกเลี่ยงปัญหานี้",
"Please select the books in the Google Drive Picker": "โปรดเลือกหนังสือใน Google Drive Picker",
"To delete your account, you need to use the mobile app. After logging in, go to Settings → Account, and follow the instructions.": "หากต้องการลบบัญชีของคุณ คุณต้องใช้แอปมือถือ หลังจากเข้าสู่ระบบ ให้ไปที่การตั้งค่า → บัญชี และทำตามคำแนะนำ",
"Delete account": "ลบบัญชี",
"How to": "วิธีการ",
"Send email": "ส่งอีเมล",
"Email copied to clipboard": "คัดลอกอีเมลไปยังคลิปบอร์ดแล้ว",
"Some of your books are currently not downloaded to the local. Changing the default sync option may lead to data loss. We recommend downloading all books to the local by turn on Auto download cloud books in the setting before changing the default sync option. Click 'OK' to proceed without downloading.": "หนังสือบางเล่มของคุณยังไม่ได้ดาวน์โหลดไปยังเครื่อง การเปลี่ยนตัวเลือกการซิงค์เริ่มต้นอาจทำให้ข้อมูลสูญหาย เราขอแนะนำให้ดาวน์โหลดหนังสือทั้งหมดไปยังเครื่องโดยเปิดการดาวน์โหลดหนังสือคลาวด์อัตโนมัติในการตั้งค่าก่อนเปลี่ยนตัวเลือกการซิงค์เริ่มต้น คลิก 'ตกลง' เพื่อดำเนินการต่อโดยไม่ต้องดาวน์โหลด",
"The default sync options in the local and cloud are inconsistent, please set the local default sync option to ": "ตัวเลือกการซิงค์เริ่มต้นในเครื่องและคลาวด์ไม่สอดคล้องกัน โปรดตั้งค่าตัวเลือกการซิงค์เริ่มต้นในเครื่องเป็น ",
"Restoring from a snapshot will overwrite your current data. Are you sure you want to continue?": "การกู้คืนจากสแนปชอตจะเขียนทับข้อมูลปัจจุบันของคุณ คุณแน่ใจหรือไม่ว่าต้องการดำเนินการต่อ",
"Each time you open Koodo Reader, it automatically creates a snapshot of your library (excluding books and covers). You can use these snapshots to restore your library to a previous state. Please note that restoring from a snapshot will overwrite your current data": "ทุกครั้งที่คุณเปิด Koodo Reader มันจะสร้างสแนปชอตของไลบรารีของคุณ (ไม่รวมหนังสือและปก) โดยอัตโนมัติ คุณสามารถใช้สแนปชอตเหล่านี้เพื่อกู้คืนไลบรารีของคุณกลับสู่สถานะก่อนหน้า โปรดทราบว่าการกู้คืนจากสแนปชอตจะเขียนทับข้อมูลปัจจุบันของคุณ",
"Deleting...": "กำลังลบ...",
"This code has already been used, if you have redeemed it before, there is no need to redeem it again. Just log in to same account to use Pro features": "รหัสนี้ถูกใช้แล้ว หากคุณเคยใช้ redeem มาก่อน ไม่จำเป็นต้องใช้ redeem อีก เพียงเข้าสู่ระบบบัญชีเดียวกันเพื่อใช้ฟีเจอร์ Pro",
"Restore from snapshots": "กู้คืนจากสแนปชอต",
"Compare Free and Pro features": "เปรียบเทียบฟีเจอร์ฟรีและ Pro",
"Failed to export": "ส่งออกล้มเหลว",
"Exporting...": "กำลังส่งออก...",
"7-day free trial upon registration, then billed annually": "ทดลองใช้ฟรี 7 วันเมื่อลงทะเบียน จากนั้นคิดค่าบริการรายปี",
"Tags": "แท็ก",
"Please select a folder": "โปรดเลือกโฟลเดอร์",
"The authentication token for your data source is no longer valid, please reauthorize in the settings": "โทเค็นการรับรองความถูกต้องสำหรับแหล่งข้อมูลของคุณไม่ถูกต้องอีกต่อไป โปรดอนุญาตใหม่อีกครั้งในการตั้งค่า",
"Setup failed": "ตั้งค่าล้มเหลว",
"Can not find iCloud Drive folder in the default path": "ไม่พบโฟลเดอร์ iCloud Drive ในเส้นทางเริ่มต้น",
"Importing": "กำลังนำเข้า",
"Can't find Koodo Reader's folder in the default iCloud path, please make sure iCloud Drive is installed and set up correctly, and you have already synced your library to iCloud Drive on the iOS version first.": "ไม่พบโฟลเดอร์ Koodo Reader ในเส้นทาง iCloud เริ่มต้น โปรดตรวจสอบให้แน่ใจว่า iCloud Drive ติดตั้งและตั้งค่าอย่างถูกต้อง และคุณได้ซิงค์ไลบรารีของคุณไปยัง iCloud Drive ในเวอร์ชัน iOS ก่อน",
"This is the order number not the redemption code, please check your email again, the redemption code is below the order number": "นี่คือหมายเลขคำสั่งซื้อ ไม่ใช่รหัส redeem โปรดตรวจสอบอีเมลของคุณอีกครั้ง รหัส redeem อยู่ด้านล่างหมายเลขคำสั่งซื้อ",
"More accurate": "แม่นยำยิ่งขึ้น",
"Chinese": "ภาษาจีน",
"Official AI OCR": "OCR AI อย่างเป็นทางการ",
"Your quota will be reset in": "โควต้าของคุณจะถูกรีเซ็ตใน {{ttl}} ชั่วโมง",
"Auto switch to shelf on startup": "สลับไปยังชั้นหนังสือโดยอัตโนมัติเมื่อเริ่มต้น",
"Disabled": "ปิดใช้งาน",
"Click to select image": "คลิกเพื่อเลือกรูปภาพ",
"Export cover": "ส่งออกปก",
"From OPDS": "จาก OPDS",
"Popular OPDS Catalogs": "แคตตาล็อก OPDS ยอดนิยม",
"My OPDS Catalogs": "แคตตาล็อก OPDS ของฉัน",
"Add OPDS Catalog": "เพิ่มแคตตาล็อก OPDS",
"OPDS Catalog URL": "URL แคตตาล็อก OPDS",
"Catalog Name": "ชื่อแคตตาล็อก",
"Added successfully": "เพิ่มสำเร็จ",
"Failed to load catalog": "โหลดแคตตาล็อกล้มเหลว",
"Search in catalog...": "ค้นหาในแคตตาล็อก...",
"Search failed": "ค้นหาล้มเหลว",
"Book Detail": "รายละเอียดหนังสือ",
"Download as": "ดาวน์โหลดเป็น",
"No supported formats available": "ไม่มีรูปแบบที่รองรับ",
"Please enter a valid URL": "โปรดป้อน URL ที่ถูกต้อง",
"Edit prompt": "แก้ไขคำแนะนำ",
"AI translation model": "โมเดลการแปล AI",
"AI dictionary model": "โมเดลพจนานุกรม AI",
"AI assistance model": "โมเดลช่วยเหลือ AI",
"Model assignment": "การกำหนดโมเดล",
"Added AI models": "โมเดล AI ที่เพิ่มแล้ว",
"No AI models added yet": "ยังไม่ได้เพิ่มโมเดล AI",
"Add new model": "เพิ่มโมเดลใหม่",
"Text orientation": "การวางแนวข้อความ",
"Horizontal": "แนวนอน",
"Vertical": "แนวตั้ง",
"Default font family": "ตระกูลฟอนต์เริ่มต้น",
"Delete original file when permanently deleting books": "ลบไฟล์ต้นฉบับเมื่อลบหนังสืออย่างถาวร",
"Allow Javascript in the books": "อนุญาต Javascript ในหนังสือ",
"Configuration": "การกำหนดค่า",
"Features": "ฟีเจอร์",
"Website": "เว็บไซต์",
"Installed": "ติดตั้งแล้ว",
"AI Encyclopedia": "สารานุกรม AI",
"Not installed": "ยังไม่ได้ติดตั้ง",
"Install": "ติดตั้ง",
"Add custom plugin": "เพิ่มปลั๊กอินที่กำหนดเอง",
"How to custom plugin": "วิธีปรับแต่งปลั๊กอิน",
"Plugin market": "ตลาดปลั๊กอิน",
"Bookmark already exists": "ที่คั่นหนังสือมีอยู่แล้ว",
"Visit online version": "เยี่ยมชมเวอร์ชันออนไลน์",
"Enable hyphenation": "เปิดใช้งานการตัดคำ",
"Shortcuts": "ทางลัด",
"The audiobook feature has been moved to the bottom right of the book page": "ฟีเจอร์หนังสือเสียงได้ถูกย้ายไปที่มุมล่างขวาของหน้าหนังสือ",
"Allow orphan and widow lines": "อนุญาตบรรทัดกำพร้าและบรรทัดแม่หม้าย",
"Please visit the documentation to learn how to install this plugin. Your browser will automatically open in 5 seconds": "โปรดไปที่เอกสารประกอบเพื่อเรียนรู้วิธีติดตั้งปลั๊กอินนี้ เบราว์เซอร์ของคุณจะเปิดโดยอัตโนมัติใน 5 วินาที",
"Due to the high cost of Azure TTS voices, this voice will consume 5 times of your daily quota than normal voice": "เนื่องจากต้นทุนสูงของเสียง Azure TTS เสียงนี้จะใช้โควต้ารายวันของคุณมากกว่าเสียงปกติ 5 เท่า",
"Plugin already installed": "ติดตั้งปลั๊กอินแล้ว",
"Backup...": "กำลังสำรองข้อมูล...",
"Restoring...": "กำลังกู้คืน...",
"The text is too long to analyze": "ข้อความยาวเกินไปที่จะวิเคราะห์",
"Analysis failed": "วิเคราะห์ล้มเหลว",
"Analyzing roles, please wait...": "กำลังวิเคราะห์บทบาท โปรดรอ...",
"No OPDS added yet": "ยังไม่ได้เพิ่ม OPDS",
"Auto open book in maximized screen": "เปิดหนังสือในหน้าจอขยายใหญ่สุดอัตโนมัติ",
"Reader window will enter full screen when opening a book": "หน้าต่างเครื่องอ่านจะเข้าสู่โหมดเต็มหน้าจอเมื่อเปิดหนังสือ",
"Please make sure you entered the correct redemption code and the code matches your server region, if you have any questions, please contact our support team": "โปรดตรวจสอบให้แน่ใจว่าคุณป้อนรหัส redeem ที่ถูกต้องและรหัสตรงกับภูมิภาคเซิร์ฟเวอร์ของคุณ หากมีคำถามใดๆ โปรดติดต่อทีมสนับสนุนของเรา",
"Disable automatically scroll to the bottom of the AI chat": "ปิดการเลื่อนไปที่ด้านล่างของแชท AI โดยอัตโนมัติ",
"Disable AI features": "ปิดฟีเจอร์ AI",
"CJK font family": "ตระกูลฟอนต์ CJK",
"Fast reading mode (make the first half of the word bold)": "โหมดอ่านเร็ว (ทำให้ครึ่งแรกของคำเป็นตัวหนา)",
"Full text translation": "แปลข้อความเต็ม",
"Bilingual translation": "แปลสองภาษา",
"Use AI to analyze books, with different characters reading aloud in different voices": "ใช้ AI วิเคราะห์หนังสือ โดยให้ตัวละครต่างกันอ่านออกเสียงด้วยเสียงต่างกัน",
"Voice type": "ประเภทเสียง",
"System voice": "เสียงระบบ",
"Purchase the code": "ซื้อรหัส",
"Please upgrade to Pro to use this feature": "โปรดอัปเกรดเป็น Pro เพื่อใช้ฟีเจอร์นี้",
"Query redemption code": "สอบถามรหัส redeem",
"Custom voice": "เสียงที่กำหนดเอง",
"Disable": "ปิด",
"AI multi-role speech": "การพูดหลายบทบาทด้วย AI",
"Narrator voice": "เสียงผู้บรรยาย",
"You have reached the daily limit for this feature.": "คุณถึงขีดจำกัดรายวันสำหรับฟีเจอร์นี้แล้ว",
"AI multi-role speech is paused for now.": "การพูดหลายบทบาทด้วย AI ถูกหยุดชั่วคราวในขณะนี้",
"Purchase code": "ซื้อรหัส",
"Redemption code has been sent to the email address you provided during checkout. If you haven't received the code, please check the spam foler or contact our support team for assistance.": "รหัส redeem ถูกส่งไปยังที่อยู่อีเมลที่คุณให้ไว้เมื่อชำระเงิน หากคุณยังไม่ได้รับรหัส โปรดตรวจสอบโฟลเดอร์สแปมหรือติดต่อทีมสนับสนุนของเราเพื่อขอความช่วยเหลือ",
"If you purchased a redemption code, please click the redeem button to redeem it, or contact our support team for assistance": "หากคุณซื้อรหัส redeem โปรดคลิกปุ่ม redeem เพื่อใช้รหัส หรือติดต่อทีมสนับสนุนของเราเพื่อขอความช่วยเหลือ",
"Child voice": "เสียงเด็ก",
"Only translation": "เฉพาะคำแปล",
"Orange": "สีส้ม",
"Pink": "สีชมพู",
"Yellow": "สีเหลือง",
"Violet": "สีม่วง",
"Sky": "สีฟ้า",
"Slate": "สีเทาหินชนวน",
"Show page border": "แสดงขอบหน้า",
"Custom": "กำหนดเอง",
"Please upgrade to Pro to unlock more daily free quota or wait until the quota resets. You can also use other TTS voices instead.": "โปรดอัปเกรดเป็น Pro เพื่อปลดล็อกโควต้าฟรีรายวันเพิ่มเติมหรือรอจนกว่าโควต้าจะรีเซ็ต คุณยังสามารถใช้เสียง TTS อื่นแทนได้",
"Minimize to tray on close": "ย่อไปยังถาดเมื่อปิด",
"When closing the window, the app will minimize to the system tray instead of quitting": "เมื่อปิดหน้าต่าง แอปจะย่อไปยังถาดระบบแทนที่จะออก",
"Data": "ข้อมูล",
"View": "มุมมอง",
"Select format": "เลือกรูปแบบ",
"Enable Discord Rich Presence": "เปิดใช้งาน Discord Rich Presence",
"Show your reading status and the book your're reading on your Discord profile. Discord needs to be running on your computer": "แสดงสถานะการอ่านและหนังสือที่คุณกำลังอ่านบนโปรไฟล์ Discord ของคุณ Discord ต้องทำงานบนคอมพิวเตอร์ของคุณ",
"Visit": "เยี่ยมชม",
"Auto sync notes and highlights to Notion": "ซิงค์บันทึกและไฮไลต์ไปยัง Notion โดยอัตโนมัติ",
"Notion Integration Token": "โทเค็นการรวม Notion",
"Enter your Notion integration token": "ป้อนโทเค็นการรวม Notion ของคุณ",
"Enter custom CSS here": "ป้อน CSS ที่กำหนดเองที่นี่",
"Notion Database ID": "ID ฐานข้อมูล Notion",
"Custom app style": "สไตล์แอปที่กำหนดเอง",
"Customize the appearance of the entire application with CSS": "ปรับแต่งรูปลักษณ์ของแอปพลิเคชันทั้งหมดด้วย CSS",
"Enter the ID of the Notion database to sync to": "ป้อน ID ของฐานข้อมูล Notion เพื่อซิงค์",
"Auto sync notes and highlights to Yuque": "ซิงค์บันทึกและไฮไลต์ไปยัง Yuque โดยอัตโนมัติ",
"Yuque Token": "โทเค็น Yuque",
"Enter your Yuque personal access token": "ป้อนโทเค็นการเข้าถึงส่วนตัว Yuque ของคุณ",
"Yuque Namespace": "เนมสเปซ Yuque",
"Enter namespace, e.g. username/repo-slug": "ป้อนเนมสเปซ เช่น ชื่อผู้ใช้/slug-repo",
"Auto sync notes and highlights to Readwise": "ซิงค์บันทึกและไฮไลต์ไปยัง Readwise โดยอัตโนมัติ",
"Readwise Access Token": "โทเค็นการเข้าถึง Readwise",
"Enter your Readwise access token": "ป้อนโทเค็นการเข้าถึง Readwise ของคุณ",
"Custom book style (CSS)": "สไตล์หนังสือที่กำหนดเอง (CSS)",
"Auto sync notes and highlights to local markdown files": "ซิงค์บันทึกและไฮไลต์ไปยังไฟล์ markdown ในเครื่องโดยอัตโนมัติ",
"Suitable for Obsidian, Joplin and other markdown-based note-taking apps. Each book will be a separate markdown file named 'Book Name.md' in the specified folder. ": "เหมาะสำหรับ Obsidian, Joplin และแอปจดบันทึกที่ใช้ markdown อื่นๆ หนังสือแต่ละเล่มจะเป็นไฟล์ markdown แยกกันชื่อ 'ชื่อหนังสือ.md' ในโฟลเดอร์ที่ระบุ",
"Markdown Sync Folder": "โฟลเดอร์ซิงค์ Markdown",
"Enter the folder path to save markdown files": "ป้อนเส้นทางโฟลเดอร์เพื่อบันทึกไฟล์ markdown",
"Current version": "เวอร์ชันปัจจุบัน",
"About": "เกี่ยวกับ",
"AI service": "บริการ AI",
"Provider": "ผู้ให้บริการ",
"Enter your API Key": "ป้อนคีย์ API ของคุณ",
"Loading...": "กำลังโหลด...",
"Fetch models": "ดึงโมเดล",
"Select model": "เลือกโมเดล",
"Please select a model": "โปรดเลือกโมเดล",
"Model name": "ชื่อโมเดล",
"Display name of the model": "ชื่อที่แสดงของโมเดล",
"Model ID": "ID โมเดล",
"e.g. gpt-4o, claude-sonnet-4-20250514": "เช่น gpt-4o, claude-sonnet-4-20250514",
"Save": "บันทึก",
"Testing...": "กำลังทดสอบ...",
"This provider does not support fetching model list, please fill in manually": "ผู้ให้บริการนี้ไม่รองรับการดึงรายชื่อโมเดล โปรดป้อนด้วยตนเอง",
"Please enter API Key first": "โปรดป้อนคีย์ API ก่อน",
"Fetched models": "โมเดลที่ดึงมา",
"Custom model": "โมเดลที่กำหนดเอง",
"No models found": "ไม่พบโมเดล",
"Failed to fetch model list": "ดึงรายชื่อโมเดลล้มเหลว",
"Please fill in all required fields": "โปรดกรอกข้อมูลในช่องที่จำเป็นทั้งหมด",
"Test successful": "ทดสอบสำเร็จ",
"Test failed": "ทดสอบล้มเหลว",
"Update successful": "อัปเดตสำเร็จ",
"Operation failed": "ดำเนินการล้มเหลว",
"Deletion failed": "ลบล้มเหลว",
"Failed to parse model configuration": "แยกวิเคราะห์การกำหนดค่าโมเดลล้มเหลว",
"Background": "ภาพพื้นหลัง",
"Import successful": "นำเข้าสำเร็จ",
"Clear app background": "ล้างพื้นหลังแอป",
"Set as app background": "ตั้งเป็นพื้นหลังแอป",
"Clear book background": "ล้างพื้นหลังหนังสือ",
"Set as book background": "ตั้งเป็นพื้นหลังหนังสือ",
"No background images added yet": "ยังไม่ได้เพิ่มภาพพื้นหลัง",
"Import local image": "นำเข้าภาพในเครื่อง",
"Action after selecting text": "การดำเนินการหลังจากเลือกข้อความ",
"Trial quota": "โควต้าทดลอง",
"Clear all style": "ล้างสไตล์ทั้งหมด",
"Please install local fonts to your machine and then restart the application. The installed font will automatically appear in the dropdown list.": "โปรดติดตั้งฟอนต์ในเครื่องลงในเครื่องของคุณแล้วรีสตาร์ทแอปพลิเคชัน ฟอนต์ที่ติดตั้งจะปรากฏในรายการดรอปดาวน์โดยอัตโนมัติ",
"AI-generated content is for reference only. Please verify carefully as it does not constitute professional advice.": "เนื้อหาที่สร้างโดย AI มีไว้เพื่ออ้างอิงเท่านั้น โปรดตรวจสอบอย่างรอบคอบเนื่องจากไม่ถือเป็นคำแนะนำจากผู้เชี่ยวชาญ",
"Force path style": "บังคับรูปแบบเส้นทาง",
"Enter 1 to enable, leave empty to disable. Required for some S3 storage services that are not compatible with virtual host style URL": "ป้อน 1 เพื่อเปิดใช้งาน เว้นว่างไว้เพื่อปิดใช้งาน จำเป็นสำหรับบริการจัดเก็บ S3 บางบริการที่ไม่เข้ากันกับ URL แบบ virtual host",
"Custom AI Translation": "การแปล AI ที่กำหนดเอง",
"Custom AI Dictionary": "พจนานุกรม AI ที่กำหนดเอง",
"Custom AI Assistance": "ความช่วยเหลือ AI ที่กำหนดเอง",
"Your trial will expire in": "รุ่นทดลองของคุณจะหมดอายุใน {{ttl}} วัน โปรดต่ออายุให้ทันเวลาเพื่อใช้งานฟีเจอร์ Pro ต่อ",
"Minute duration": "{{tts}} นาที",
"Hour duration": "{{tts}} ชั่วโมง",
"Tutorial": "บทช่วยสอน",
"Read from here": "อ่านจากที่นี่",
"Ask AI": "ถาม AI",
"Reading Stats": "สถิติการอ่าน",
"Books read": "หนังสือที่อ่านแล้ว",
"Total reading time": "เวลาอ่านทั้งหมด",
"Reading streak (days)": "การอ่านต่อเนื่อง (วัน)",
"Daily average": "เฉลี่ยรายวัน",
"Reading Activity": "กิจกรรมการอ่าน",
"Last 30 Days": "30 วันที่ผ่านมา",
"Bar Chart": "แผนภูมิแท่ง",
"Line Chart": "แผนภูมิเส้น",
"Customize popup menu": "ปรับแต่งเมนูป๊อปอัป",
"You can enable up to {{count}} options": "คุณสามารถเปิดใช้งานได้สูงสุด {{count}} ตัวเลือก",
"From URL": "จาก URL",
"Enter book download URL or article URL": "ป้อน URL ดาวน์โหลดหนังสือหรือ URL บทความ",
"Please enter a valid http or https URL": "โปรดป้อน URL http หรือ https ที่ถูกต้อง",
"Show number of books in each shelf": "แสดงจำนวนหนังสือในแต่ละชั้น",
"You can add models manually by selecting the custom model": "คุณสามารถเพิ่มโมเดลด้วยตนเองโดยเลือกโมเดลที่กำหนดเอง",
"Copy book link": "คัดลอกลิงก์หนังสือ",
"Copy note link": "คัดลอกลิงก์บันทึก",
"Automatically sync your library with cloud at the specified interval.": "ซิงค์ไลบรารีของคุณกับคลาวด์โดยอัตโนมัติตามช่วงเวลาที่กำหนด",
"Fetching metadata from cloud": "กำลังดึงข้อมูลเมตาจากคลาวด์",
"No metadata found": "ไม่พบข้อมูลเมตา",
"Failed to fetch metadata from cloud": "ดึงข้อมูลเมตาจากคลาวด์ล้มเหลว",
"iTunes": "iTunes",
"The new sync interval will take effect after restarting Koodo Reader": "ช่วงเวลาการซิงค์ใหม่จะมีผลหลังจากรีสตาร์ท Koodo Reader",
"Scheduled sync interval": "ช่วงเวลาการซิงค์ตามกำหนดการ",
"Book path": "เส้นทางหนังสือ",
"Pin to top": "ปักหมุดไว้ด้านบน",
"Unpin from top": "เลิกปักหมุดจากด้านบน",
"Unsupported language for word definition, currently only Chinese, Japanese and English are supported": "ไม่รองรับภาษาสำหรับคำจำกัดความของคำ ขณะนี้รองรับเฉพาะภาษาจีน ญี่ปุ่น และอังกฤษ",
"Get metadata": "รับข้อมูลเมตา",
"Data source": "แหล่งข้อมูล",
"Search": "ค้นหา",
"Apply": "ใช้",
"Auto sync new words to Eudic": "ซิงค์คำศัพท์ใหม่ไปยัง Eudic โดยอัตโนมัติ",
"When you look up a word, it will be automatically synced to your Eudic study list": "เมื่อคุณค้นหาคำศัพท์ คำนั้นจะถูกซิงค์ไปยังรายการเรียน Eudic ของคุณโดยอัตโนมัติ",
"In trial": "กำลังทดลองใช้",
"Eudic Access Token": "โทเค็นการเข้าถึง Eudic",
"Enter your Eudic NIS access token": "ป้อนโทเค็นการเข้าถึง Eudic NIS ของคุณ",
"Eudic Study List Name": "ชื่อรายการเรียน Eudic",
"Enter the study list name": "ป้อนชื่อรายการเรียน",
"Eudic Language": "ภาษา Eudic",
"Language code, e.g. en / fr / de / es": "รหัสภาษา เช่น en / fr / de / es",
"Auto sync new words to AnkiConnect": "ซิงค์คำศัพท์ใหม่ไปยัง AnkiConnect โดยอัตโนมัติ",
"When you look up a word, it will be automatically added to an Anki deck via AnkiConnect (must be running locally)": "เมื่อคุณค้นหาคำศัพท์ คำนั้นจะถูกเพิ่มไปยังเด็ค Anki โดยอัตโนมัติผ่าน AnkiConnect (ต้องรันในเครื่อง)",
"Host": "โฮสต์",
"e.g. 127.0.0.1": "เช่น 127.0.0.1",
"Port": "พอร์ต",
"e.g. 8765": "เช่น 8765",
"Key": "คีย์",
"Api key": "คีย์ API",
"Deck Name": "ชื่อเด็ค",
"Import dictionary": "นำเข้าพจนานุกรม",
"Local dictionary": "พจนานุกรมในเครื่อง",
"e.g. Vocabulary": "เช่น คำศัพท์",