forked from WWBN/AVideo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
th.php
1640 lines (1637 loc) · 111 KB
/
th.php
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
<?php
global $t;
$t['%s Ago'] = '%s ที่ผ่านมา';
$t['%s ERROR: You must set a KEY on config'] = '%s ERROR: คุณต้องตั้ง KEY ใน config';
$t['%s ERROR: You must set an ID on config'] = '%s ERROR: คุณต้องตั้งรหัสใน config';
$t['%s ago'] = '%s ที่ผ่านมา';
$t['465 OR 587'] = '465 หรือ 587';
$t['A client error occurred [2]: %s'] = 'เกิดข้อผิดพลาด! กรุณาทำรายการใหม่อีกครั้งภายหลัง [2]: %s';
$t['A client error occurred: %s'] = 'เกิดข้อผิดพลาด! กรุณาทำรายการใหม่อีกครั้งภายหลัง: %s';
$t['A service error occurred [1]: %s'] = 'เกิดข้อผิดพลาดเกี่ยวกับบริการ [1]: %s';
$t['A service error occurred: %s'] = 'เกิดข้อผิดพลาดเกี่ยวกับบริการ: %s';
$t['AVideo URL'] = 'URL ของ';
$t['About'] = 'เกี่ยวกับ';
$t['Activate'] = 'กระตุ้น';
$t['Active'] = 'คล่องแคล่ว';
$t['Ad Title'] = 'ชื่อเรื่องโฆษณา';
$t['Ad'] = 'โฆษณา';
$t['Add Funds'] = 'เพิ่มเงิน';
$t['Add more user Groups'] = 'เพิ่มกลุ่มผู้ใช้เพิ่มเติม';
$t['Add to'] = 'เพิ่ม';
$t['Admin Menu'] = 'เมนูผู้ดูแลระบบ';
$t['Admin'] = 'ผู้ดูแลระบบ';
$t['Ads Form'] = 'แบบฟอร์มโฆษณา';
$t['Ads'] = 'โฆษณา';
$t['Advanced Configuration'] = 'การกำหนดค่าขั้นสูง';
$t['Advanced configuration'] = 'การกำหนดค่าขั้นสูง';
$t['Advanced configurations are disabled'] = 'การกำหนดค่าขั้นสูงถูกปิดใช้งาน';
$t['Advertising Manager'] = 'ผู้จัดการฝ่ายโฆษณา';
$t['Advertising Title'] = 'ชื่อโฆษณา';
$t['Ago'] = 'ที่ผ่านมา';
$t['Alert'] = 'เตือนภัย';
$t['Amount'] = 'จำนวน';
$t['Anyone with this key can watch your live stream.'] = 'ทุกคนที่ใช้คีย์นี้สามารถรับชมสตรีมสดของคุณได้';
$t['Are you sure?'] = 'คุณแน่ใจไหม?';
$t['Audio and Video'] = 'ไฟล์เสียงและวิดีโอ';
$t['Audio only'] = 'เสียงเท่านั้น';
$t['Audio'] = 'ไฟล์เสียง';
$t['Authenticated users can comment videos'] = 'ผู้ใช้ที่ได้รับการรับรองความถูกต้องสามารถแสดงความคิดเห็นวิดีโอ';
$t['Authenticated users can upload videos'] = 'ผู้ใช้ที่ได้รับการรับรองความถูกต้องสามารถอัปโหลดวิดีโอได้';
$t['Autoplay Next Video URL'] = 'เปิดใช้ URL วิดีโอถัดไป';
$t['Autoplay Next Video'] = 'เล่นวิดีโอถัดไปอัตโนมัติ';
$t['Autoplay Video on Load Page'] = 'เล่นวิดีโอแบบอัตโนมัติบนหน้าเว็บโหลด';
$t['Autoplay'] = 'เล่นอัตโนมัติ';
$t['Balance Form'] = 'แบบฟอร์มยอดคงเหลือ';
$t['Balance'] = 'สมดุล';
$t['Both'] = 'ทั้งสอง';
$t['Bottom'] = 'ด้านล่าง';
$t['Broadcast a Live Streaming'] = 'ออกอากาศสตรีมสด';
$t['Browse Channels'] = 'เรียกดูช่อง';
$t['Browse'] = 'หมวด';
$t['By associating groups with this user, they will be able to see all the videos that are related to this group'] = 'โดยการเชื่อมโยงกับกลุ่มผู้ใช้นี้พวกเขาจะสามารถดูวิดีโอทั้งหมดที่เกี่ยวข้องกับกลุ่มนี้';
$t['By linking groups to this video, it will no longer be public and only users in the same group will be able to watch this video'] = 'การเชื่อมโยงกลุ่มกับวิดีโอนี้จะไม่เป็นแบบสาธารณะและเฉพาะผู้ใช้ในกลุ่มเดียวเท่านั้นที่จะสามารถดูวิดีโอนี้ได้';
$t['Can Stream Videos'] = 'สามารถสตรีมวิดีโอได้';
$t['Can Upload Videos'] = 'สามารถอัปโหลดวิดีโอได้';
$t['Categories'] = 'หมวดหมู่';
$t['Category Form'] = 'แบบฟอร์มหมวดหมู่';
$t['Category to display this Ad'] = 'หมวดหมู่ที่จะแสดงโฆษณานี้';
$t['Category'] = 'ประเภท';
$t['Center'] = 'ศูนย์';
$t['Change Playlist Name'] = 'เปลี่ยนชื่อเพลย์ลิสต์';
$t['Change Style'] = 'เปลี่ยนสไตล์';
$t['Channel'] = 'ช่อง';
$t['Channels'] = 'ช่อง';
$t['Clean Name'] = 'ชื่อจริง';
$t['Clean Title'] = 'ชื่อเล่น';
$t['Click here if you agree to continue'] = 'คลิกที่นี่หากคุณตกลงที่จะดำเนินการต่อ';
$t['Clicks'] = 'คลิก';
$t['Close'] = 'ปิด';
$t['Color Legend'] = 'สัญลักษณ์สี';
$t['Coming soon'] = 'เร็ว ๆ นี้';
$t['Comment Form'] = 'แบบฟอร์มความคิดเห็น';
$t['Comment'] = 'คิดเห็น';
$t['Comments'] = 'ความคิดเห็น';
$t['Compatibility Check'] = 'ตรวจสอบความเข้ากันได้';
$t['Configuration'] = 'องค์ประกอบ';
$t['Configure an Encoder URL'] = 'กำลังเข้ารหัสด้วย URL';
$t['Confirm New Password'] = 'ยืนยันรหัสผ่านใหม่';
$t['Confirm!'] = 'ยืนยัน!';
$t['Confirm'] = 'ยืนยัน';
$t['Confirmation password does not match'] = 'รหัสผ่านการยืนยันไม่ตรงกัน';
$t['Congratulations!'] = 'ขอแสดงความยินดี!';
$t['Congratulations'] = 'ขอแสดงความยินดี';
$t['Contact Us Today!'] = 'ติดต่อเราวันนี้!';
$t['Contact'] = 'ติดต่อ';
$t['Continue'] = 'เชื่อมต่อ';
$t['Cost'] = 'ราคา';
$t['Could not move gif image file [%s.gif]'] = 'ไม่สามารถย้ายไฟล์รูปภาพ gif[%s.gif]';
$t['Could not move image file [%s.jpg]'] = 'ไม่สามารถย้ายไฟล์รูปภาพ]';
$t['Create a New Play List'] = 'สร้างรายการเล่นใหม่';
$t['Create an Advertising'] = 'สร้างโฆษณา';
$t['Create more translations'] = 'สร้างคำแปลเพิ่มเติม';
$t['Created'] = 'ที่สร้างไว้';
$t['Current Style & Theme'] = 'รูปแบบปัจจุบันและธีม';
$t['Dashboard'] = 'แผงควบคุม';
$t['Date'] = 'วันที่';
$t['Default'] = 'ค่าเริ่มต้น';
$t['Delete'] = 'ลบ';
$t['Description'] = 'ลักษณะ';
$t['Devices Stream Info'] = 'ข้อมูลสตรีมของอุปกรณ์';
$t['Direct upload'] = 'อัปโหลดโดยตรง';
$t['Disable AVideo Google Analytics'] = 'ปิดใช้งาน Google Analytics บนใช้งาน บน Agotube';
$t['Do not forget to save after choose your theme'] = 'อย่าลืมบันทึกหลังจากเลือกธีมของคุณแล้ว';
$t['Don´t like this video? Sign in to make your opinion count.'] = 'ไม่ชอบวิดีโอนี้หรือ ลงชื่อเข้าใช้เพื่อแสดงความคิดเห็นของคุณ';
$t['Drag and drop to sort'] = 'ลากและวางเพื่อจัดเรียง';
$t['Drop Here'] = 'วางที่นี่';
$t['Duration'] = 'ระยะเวลา';
$t['E-mail Address'] = 'ที่อยู่อีเมล';
$t['E-mail sent'] = 'ส่งอีเมลแล้ว';
$t['Edit Video'] = 'แก้ไขวีดีโอ';
$t['Edit'] = 'แก้ไข';
$t['Email can not be blank'] = 'อีเมลต้องไม่เว้นว่าง';
$t['Embed Stream'] = 'ฝังสตรีม';
$t['Embed a video link'] = 'ฝังลิงก์วิดีโอ';
$t['Embed'] = 'ฝัง';
$t['Embedded'] = 'ที่ฝัง';
$t['Enable SMTP Auth'] = 'เปิดใช้ SMTP Auth';
$t['Enable SMTP'] = 'เปิดใช้งาน SMTP';
$t['Enable WebCam Stream'] = 'เปิดใช้งานสตรีม WebCam';
$t['Encode video and audio'] = 'เข้ารหัสวิดีโอและเสียง';
$t['Encoding mp4 error'] = 'เกิดข้อผิดพลาดในการเข้ารหัส mp4';
$t['Encoding xmp3 error'] = 'ข้อผิดพลาดการเข้ารหัสxmp3';
$t['Encoding xogg error'] = 'เกิดข้อผิดพลาดในการเข้ารหัส xogg';
$t['Encoding xwebm error'] = 'เกิดข้อผิดพลาดในการเข้ารหัส xwebm';
$t['Encoding'] = 'การเข้ารหัส';
$t['Error on re-encoding!'] = 'ข้อผิดพลาดในการเข้ารหัสอีกครั้ง!';
$t['Error'] = 'ความผิดพลาด';
$t['Finish on'] = 'เสร็จสิ้น';
$t['First Page Mode'] = 'โหมดหน้าแรก';
$t['For faster encode, download your own encoder'] = 'สำหรับการเข้ารหัสได้เร็วขึ้นให้ดาวน์โหลดตัวเข้ารหัสของคุณเอง';
$t['From'] = 'จาก';
$t['Get imgage error'] = 'รูปภาพผิดปกติ';
$t['Go to manager videos page!'] = 'ไปที่หน้าจัดการวิดีโอ!';
$t['Groups That Can See This Stream'] = 'กลุ่มที่สามารถดูสตรีมนี้ได้';
$t['Groups that can see this video'] = 'กลุ่มที่สามารถดูวิดีโอนี้';
$t['Head Code'] = 'รหัสหัวหน้า';
$t['Help'] = 'ความช่วยเหลือ';
$t['Hide Replies'] = 'ซ่อนการตอบกลับ';
$t['History'] = 'ประวัติศาสตร์';
$t['How Much?'] = 'เท่าไหร่?';
$t['I forgot my password'] = 'ฉันลืมรหัสผ่าน';
$t['I would like to share this video with you:'] = 'ฉันต้องการแบ่งปันวิดีโอนี้กับคุณ:';
$t['ID can not be empty'] = 'ID ต้องไม่ว่างเปล่า';
$t["If you can't view this video, your browser does not support HTML5 videos"] = 'หากคุณไม่สามารถดูวิดีโอนี้เบราว์เซอร์ของคุณไม่สนับสนุนวิดีโอ HTML5';
$t['If you change your password the Server URL parameters will be changed too.'] = 'หากคุณเปลี่ยนรหัสผ่านพารามิเตอร์ URL เซิร์ฟเวอร์จะเปลี่ยนไปด้วย.';
$t['If you do not have curl, you can alternatively use a recent wget: '] = 'หากคุณไม่มีม้วนคุณสามารถเลือกใช้ wget ใหม่ได้:';
$t['Inactivate'] = 'ยับยั้ง';
$t['Inactive'] = 'เฉื่อยชา';
$t['Invalid'] = 'โมฆะ';
$t['Is Ad'] = 'โฆษณา';
$t['Language'] = 'ภาษา';
$t['Last 30 Days'] = '30 วันล่าสุด';
$t['Last 7 Days'] = '7 วันล่าสุด';
$t['Left Menu'] = 'เมนูด้านซ้าย';
$t['Left'] = 'ซ้าย';
$t['Like this video? Sign in to make your opinion count.'] = 'ชอบวิดีโอนี้หรือไม่? ลงชื่อเข้าใช้เพื่อแสดงความคิดเห็นของคุณ';
$t['Listed Transmition'] = 'รายการส่ง';
$t['Live Chat'] = 'แชทสด';
$t['Local File'] = 'ไฟล์ท้องถิ่น';
$t['Login'] = 'เข้าสู่ระบบ';
$t['Logoff'] = 'การออกจากระบบ';
$t['Make it public'] = 'ทำให้เป็นแบบสาธารณะ';
$t['Make sure that the video you are going to download has a duration of less than %d minute(s)!'] = 'ตรวจดูให้แน่ใจว่าวิดีโอที่คุณกำลังจะดาวน์โหลดมีระยะเวลาไม่ถึงนาที!';
$t['Manage Payouts'] = 'จัดการการจ่ายเงิน';
$t['Manage Wallets'] = 'จัดการกระเป๋าสตางค์';
$t['Message could not be sent'] = 'ไม่สามารถส่งข้อความได้';
$t['Message sent'] = 'ส่งข้อความ';
$t['Message'] = 'ข่าวสาร';
$t['Modified'] = 'ดัดแปลง';
$t['Most Popular'] = 'ที่นิยมมากที่สุด';
$t['Most Watched'] = 'ดูมากที่สุด';
$t['Most popular'] = 'ที่นิยมมากที่สุด';
$t['Most watched'] = 'ดูมากที่สุด';
$t['My Account'] = 'บัญชีของฉัน';
$t['My Channel'] = 'ช่องของฉัน';
$t['My Subscribers'] = 'สมาชิกของฉัน';
$t['My videos'] = 'วีดีโอช่องของฉัน';
$t["Name can't be blank"] = 'ชื่อต้องไม่เว้นว่างไว้';
$t['Name'] = 'ชื่อ';
$t['New Category'] = 'หมวดหมู่ใหม่';
$t['New Password'] = 'รหัสผ่านใหม่';
$t['New User Groups'] = 'กลุ่มผู้ใช้ใหม่';
$t['New User'] = 'ผู้ใช้ใหม่';
$t['None (Parent)'] = 'ไม่มี (ผู้ปกครอง)';
$t['Notify Subscribers'] = 'แจ้งสมาชิก';
$t['Only verified users can upload'] = 'เฉพาะผู้ใช้ที่ผ่านการยืนยันแล้วเท่านั้นที่สามารถอัปโหลดสื่อได้';
$t['Opacity'] = 'ความทึบแสง';
$t['Original words found'] = 'ค้นพบคำเดิม';
$t['Page'] = 'หน้า';
$t['Parent ID'] = 'รหัสผู้ดูแล';
$t['Parent-Category'] = 'หมวดหมู่ผู้ดูแล';
$t['Password'] = 'รหัสผ่าน';
$t['Paste here the translated words, one each line'] = 'วางคำที่แปลแล้วหนึ่งบรรทัด';
$t['Payout'] = 'การจ่ายเงิน';
$t['Permanent Link'] = 'ลิงก์ถาวร';
$t['Permission denied'] = 'การอนุญาตถูกปฏิเสธ "';
$t['Play All'] = 'เล่นทั้งหมด';
$t['Player URL'] = 'URL ของผู้เล่น';
$t['Playlist name?'] = 'ชื่อเพลย์์หรือไม่?';
$t['Please login to proceed'] = 'กรุณาเข้าสู่ระบบเพื่อดำเนินการต่อ';
$t['Please sign in'] = 'กรุณาเข้าสู่ระบบ';
$t['Plugin Form'] = 'แบบฟอร์มปลั๊กอิน';
$t['Plugins'] = 'ปลั๊กอิน';
$t['Position'] = 'ตำแหน่ง';
$t['Preview'] = 'ดูตัวอย่าง';
$t['Prints'] = 'พิมพ์';
$t['Public Video'] = 'วิดีโอสาธารณะ';
$t['Public'] = 'สาธารณะ';
$t['Queue Position'] = 'ตำแหน่งคิว';
$t['Recover Password'] = 'กู้คืนรหัสผ่าน';
$t['Recover password could not be saved!'] = 'ไม่สามารถบันทึกรหัสผ่านได้!';
$t['Recover password does not match'] = 'การกู้คืนรหัสผ่านไม่ตรงกัน';
$t['Recover password!'] = 'การกู้คืนรหัสผ่านไม่ตรงกัน';
$t['Regular Configuration'] = 'การกำหนดค่าปกติ';
$t['Regular User'] = '#3612;ู้ใช้งานปกติ';
$t['Remove Autoplay Next Video'] = 'ลบการเล่นอัตโนมัติวิดีโอถัดไป';
$t['Remove'] = 'เอาออก';
$t['Rename'] = 'ตั้งชื่อใหม่';
$t['Reply'] = 'ตอบ';
$t['Request Payout'] = 'ขอรับการชำระเงิน';
$t['Reset Key'] = 'รีเซ็ตคีย์';
$t['Reset to Default'] = 'รีเซ็ตเป็นค่าเริ่มต้น';
$t['Right'] = 'ขวา';
$t['Rotate LEFT'] = 'หมุนซ้าย';
$t['Rotate RIGHT'] = 'หมุนขวา';
$t['SMTP Host'] = 'โฮสต์ SMTP';
$t['SMTP Password'] = 'รหัสผ่าน SMTP';
$t['Save File'] = 'บันทึกไฟล์';
$t['Save Stream'] = 'บันทึกสตรีม';
$t['Save changes'] = 'บันทึกการเปลี่ยนแปลง';
$t['Select a file to submit!'] = 'เลือกไฟล์ที่จะส่ง!';
$t['Select a language!'] = 'เลือกภาษา!';
$t['Select an icon for the category'] = 'เลือกไอคอนสำหรับหมวดหมู่';
$t['Select an icon for the menu'] = 'เลือกไอคอนสำหรับเมนู';
$t['Select the update'] = 'เลือกการอัพเดต';
$t['Server URL'] = 'URL ของเซิร์ฟเวอร์';
$t['Session Timeout in seconds'] = 'ช่วงหมดเวลาเซสชันเป็นวินาที';
$t['Share Info'] = 'แชร์ข้อมูล';
$t['Share Video'] = 'แชร์วิดีโอ';
$t['Sign Up'] = 'ลงชื่อ';
$t['Sign in now!'] = 'ลงชื่อเข้าใช้ทันที';
$t['Sign in'] = 'ลงชื่อเข้าใช้';
$t['Site Configurations'] = 'การกำหนดค่าไซต์';
$t['Skip Ad'] = 'ข้ามโฆษณา';
$t['Skip Button appears after (X) seconds'] = 'ปุ่มข้ามจะปรากฏหลังจาก (X) วินาที';
$t['Sorry you not able to download videos right now!'] = 'ขออภัยคุณไม่สามารถดาวน์โหลดวิดีโอได้ในขณะนี้!';
$t['Sort by name'] = 'จัดเรียงตามชื่อ';
$t['Source'] = 'แหล่ง';
$t['Starts on'] = 'เริ่มต้นเมื่อ';
$t['Status not found'] = 'ไม่พบสถานะ';
$t['Status'] = 'สถานะ';
$t['Stop ad after (X) clicks'] = 'หยุดโฆษณาหลังจาก (X) คลิก';
$t['Stop ad after (X) prints'] = 'หยุดโฆษณาหลังจากพิมพ์ (X)';
$t['Stream Settings'] = 'การตั้งค่าสตรีม';
$t['Stream name/key'] = 'ชื่อสตรีม / คีย์';
$t['Style & Themes'] = 'สไตล์และธีม';
$t['Subscribe'] = 'สมัครสมาชิก';
$t['Subscribed to'] = 'สมัครเป็นสมาชิกแล้ว';
$t['Subscribed'] = 'สมัครเป็นสมาชิก';
$t['Subscribes'] = 'สมัครสมาชิก';
$t['Subscriptions'] = 'การสมัครรับข้อมูล';
$t['Subtitle Form'] = 'แบบคำบรรยาย';
$t['Success!'] = 'ความสำเร็จ';
$t['Success'] = 'ความสำเร็จ';
$t['Suggest'] = 'แนะนำ';
$t['Support value can not be empty'] = 'ค่าสนับสนุนต้องไม่เว้นว่าง';
$t['Supported'] = 'ได้รับการสนับสนุน';
$t['The captcha is empty'] = 'คำอธิบายว่างปล่าว';
$t['The captcha is wrong'] = 'คำอธิบายภาพไม่ถูกต้อง';
$t['The file must be an .vtt file!'] = 'ไฟล์ต้องเป็นไฟล์. vtt!';
$t['The original file for this video does not exists anymore'] = 'Tไฟล์เดิมของเขาสำหรับวิดีโอนี้ไม่มีอยู่อีกต่อไป';
$t['The recover pass does not match!'] = 'บัตรผ่านการกู้คืนไม่ตรงกัน!';
$t['Theme for Style:'] = 'ธีมสำหรับสไตล์:';
$t['There is missing data to recover your password'] = 'มีข้อมูลที่หายไปเพื่อกู้คืนรหัสผ่านของคุณ';
$t['There is no streaming now'] = 'ตอนนี้ไม่มีการสตรีม';
$t['This e-mail will be used for this web site notifications'] = 'อีเมลฉบับนี้จะใช้สำหรับการแจ้งเตือนของเว็บไซต์นี้';
$t['This help us to track and dettect errors'] = 'ช่วยให้เราสามารถติดตามและตรวจสอบข้อผิดพลาดได้';
$t['This is an experimental resource'] = 'นี่เป็นทรัพยากรทดลอง';
$t['This plugin is not available for you'] = 'ปลั๊กอินนี้ไม่สามารถใช้ได้กับคุณ';
$t['This value must match with the language files on'] = 'ค่านี้ต้องตรงกับไฟล์ภาษาที่เปิดอยู่';
$t['This video will cost you %s point(s)'] = 'วิดีโอนี้คุณเสียค่าใช้จ่าย';
$t['This video will work as an advertising and will no longer appear on videos list'] = 'วิดีโอนี้จะทำงานเป็นโฆษณาและจะไม่ปรากฏในรายการวิดีโออีกต่อไป';
$t['Thumbs Down'] = 'กดลง';
$t['Thumbs Up'] = 'กดขึ้น';
$t['Title'] = 'หัวข้อ';
$t['To install it right away for all UNIX users (Linux, OS X, etc.), type: '] = 'หากต้องการติดตั้งทันทีสำหรับผู้ใช้ UNIX ทั้งหมดให้พิมพ์(Linux, OS X ฯลฯ ):';
$t['To installations instructions try this link: '] = 'ลองใช้ลิงค์นี้:';
$t['To view this video please enable JavaScript, and consider upgrading to a web browser that'] = 'หากต้องการดูวิดีโอนี้โปรดเปิดใช้งานอัปเกรดเป็นเว็บเบราเซอร์ที่JavaScript';
$t['Today Views'] = 'มุมมองวันนี้';
$t['Today'] = 'วันนี้';
$t['Total Duration Videos (Minutes)'] = 'วิดีโอรวมระยะเวลา (นาที)';
$t['Total Subscriptions'] = 'จำนวนการสมัครรับข้อมูลทั้งหมด';
$t['Total Users'] = 'ผู้ใช้ทั้งหมด';
$t['Total Video Comments'] = 'ความคิดเห็นเกี่ยวกับวิดีโอทั้งหมด';
$t['Total Videos Dislikes'] = 'วิดีโอทั้งหมดไม่ชอบ';
$t['Total Videos Likes'] = 'วิดีโอทั้งหมดชอบ';
$t['Total Videos Views'] = 'จำนวนการดูวิดีโอทั้งหมด';
$t['Total Videos'] = 'วิดีโอทั้งหมด';
$t['Total Views (90 Days)'] = 'จำนวนการดูทั้งหมด (90 วัน)';
$t['Total Views (Today)'] = 'จำนวนการดูทั้งหมด (วันนี้)';
$t['Total Views Today'] = 'จำนวนการดูทั้งหมดวันนี้';
$t['Total Views'] = 'จำนวนการดูทั้งหมด';
$t['Translated Array'] = 'แถวที่แปลแล้ว';
$t['Trying to establish a chat server connection'] = '#3585;ำลังพยายามสร้างการเชื่อมต่อเซิร์ฟเวอร์แชท';
$t['Type the code'] = 'พิมพ์รหัส';
$t['Type your message...'] = 'พิมพ์ข้อความของคุณ ...';
$t['Type'] = 'ชนิด';
$t["UUID can't be blank"] = 'UUID ต้องไม่เว้นว่างไว้';
$t['Unable to open file!'] = 'ไม่สามารถเปิดไฟล์!';
$t['Uncheck all to make it public'] = 'ยกเลิกการเลือกทั้งหมดเพื่อให้เป็นแบบสาธารณะ';
$t['Unique Users'] = 'ผู้ใช้ที่ไม่ซ้ำ';
$t['Unknown User'] = 'ผู้ใช้ที่ไม่รู้จัก';
$t['Up Next'] = 'ต่อไป';
$t['Update AVideo System'] = 'อัปเดตระบบ';
$t['Update Now'] = 'อัปเดตเดี๋ยวนี้';
$t['Update the site configuration'] = 'อัปเดตการกำหนดค่าไซต์';
$t['Update version'] = 'อัปเดตเวอร์ชัน';
$t['Update your user'] = 'อัปเดตผู้ใช้ของคุณ';
$t['Upload a Background'] = 'อัปโหลดพื้นหลัง';
$t['Upload a Photo'] = 'อัพโหลดรูปภาพ';
$t['Upload a Plugin ZIP File'] = 'อัปโหลดไฟล์ ZIP ของปลั๊กอิน';
$t['Upload a Plugin'] = 'อัปโหลดปลั๊กอิน';
$t['Upload a logo'] = 'อัปโหลดโลโก้';
$t['Upload a small logo'] = 'อัปโหลดโลโก้ขนาดเล็ก';
$t['Upload an MP4 File'] = 'อัปโหลดไฟล์ MP4';
$t['Upload an MP4 video'] = 'อัปโหลดวิดีโอ MP4';
$t['Upload to YouTube'] = 'อัปโหลดไปยัง YouTube';
$t['Upload your file'] = 'อัปโหลดไฟล์ของคุณ';
$t['Uploaded By'] = 'อัปโหลดโดย';
$t['Use tls OR ssl'] = 'ใช้ tls หรือ ssl';
$t['User Form'] = 'ฟอร์มผู้ใช้';
$t['User Groups Form'] = 'แบบฟอร์มกลุ่มผู้ใช้';
$t['User Groups'] = 'กลุ่มผู้ใช้';
$t['User already exists'] = 'มีผู้ใช้นี้อยู่แล้ว';
$t['User and Password can not be blank'] = 'ผู้ใช้และรหัสผ่านต้องไม่ว่างเปล่า';
$t['User can not be blank'] = 'ผู้ใช้ต้องไม่ว่างเปล่า';
$t['User not found'] = 'ไม่พบชื่อผู้ใช้';
$t['User'] = 'ผู้ใช้งาน';
$t['UserGroups'] = 'กลุ่มผู้ใช้';
$t['Users Groups'] = 'กลุ่มผู้ใช้';
$t['Users'] = 'ผู้ใช้';
$t['Video Advertising'] = 'โฆษณาวิดีโอ';
$t['Video Chart'] = 'แผนภูมิวิดีโอ';
$t['Video Form'] = 'แบบฟอร์มวิดีโอ';
$t['Video Link'] = 'ลิงก์วิดีโอ';
$t['Video Title'] = 'ชื่อวิดีโอ';
$t['Video URL'] = 'URL วิดีโอ';
$t['Video can not be empty'] = 'วิดีโอต้องไม่ว่างเปล่า';
$t['Video not found'] = 'วิดีโอไม่พบ';
$t['Video re-encoding!'] = 'เข้ารหัสวิดีโอใหม่!';
$t['Videos linked'] = 'วิดีโอที่เชื่อมโยง';
$t['View Details'] = 'ดูรายละเอียด';
$t['View all replies'] = 'ดูการตอบกลับทั้งหมด';
$t['Warning'] = 'การเตือน';
$t['Watch on YouTube'] = 'ดูใน YouTube';
$t['Watching Now'] = 'กำลังดูอยู่';
$t['We could not notify anyone (%s), but we marked it as inappropriate'] = 'เราไม่สามารถแจ้งให้ใครทราบ (%s) แต่เราทำเครื่องหมายว่าไม่เหมาะสม';
$t['We could not notify the video owner %s, but we marked it as inappropriate'] = 'เราไม่สามารถแจ้งเจ้าของวิดีโอ %s แต่เราทำเครื่องหมายว่าไม่เหมาะสม';
$t['We detected a total of %s pending updates, if you want to do it now click (Update Now) button'] = 'ตรวจพบการอัพเดตที่กำลังรออยู่ทั้งหมดถ้าคุณต้องการทำตอนนี้ให้คลิกปุ่ม (อัปเดตตอนนี้)';
$t['We have not found any videos or audios to show'] = 'เราไม่พบวิดีโอหรือไฟล์เสียงที่จะแสดงเราไม่พบวิดีโอหรือไฟล์เสียงที่จะแสดง';
$t['We sent you an e-mail with instructions'] = 'เราได้ส่งอีเมลพร้อมคำแนะนำแล้ว';
$t['We use youtube-dl to download videos from youtube.com or other video platforms'] = 'เราใช้ youtube-dl เพื่อดาวน์โหลดวิดีโอจาก youtube.com หรือแพลตฟอร์มวิดีโออื่น ๆ';
$t['We will check if there is a stream conflict before stream'] = 'เราจะตรวจสอบว่ามีความขัดแย้งของสตรีมก่อนสตรีมหรือไม่';
$t['We will send you a link, to your e-mail, to recover your password!'] = 'เราจะส่งลิงก์ไปยังอีเมลของคุณเพื่อกู้คืนรหัสผ่านของคุณ!';
$t['We would like to thanks http://bootswatch.com/'] = 'เราอยากจะขอบคุณ http://bootswatch.com/';
$t['Web site title'] = 'ชื่อเว็บไซต์';
$t['WebCam Streaming'] = 'เว็บแคมสตรีมมิ่ง';
$t['Website'] = 'เว็บไซต์';
$t['What is User Groups'] = 'กลุ่มผู้ใช้คืออะไร';
$t['What is the new name?'] = 'ชื่อใหม่คืออะไร?';
$t['What is this'] = 'นี่คืออะไร';
$t['When autoplay is enabled, a suggested video will automatically play next.'] = 'เมื่อเปิดใช้งานการเล่นอัตโนมัติวิดีโอที่แนะนำจะเล่นต่อไปโดยอัตโนมัติ.';
$t['When'] = 'เมื่อ';
$t['Word Translations'] = 'การแปลคำ';
$t['Yes, delete it!'] = 'ใช่ลบทิ้ง';
$t['You already support this video'] = 'คุณสนับสนุนวิดีโอนี้แล้ว';
$t['You are not allowed see this streaming'] = 'คุณไม่ได้รับอนุญาตให้ดูสตรีมมิงแบบนี้';
$t['You are not logged'] = 'คุณยังไม่ได้ล็อกอิน';
$t['You are not online, loading webcam...'] = 'คุณไม่ได้ออนไลน์กำลังโหลดเว็บแคม ..';
$t['You are online now, web cam is disabled'] = 'คุณออนไลน์ตอนนี้เว็บแคมถูกปิดใช้งาน "';
$t['You are running AVideo version %s!'] = 'คุณใช้งาน Agotube เวอร์ชัน';
$t['You asked for a recover link, click on the provided link'] = 'คุณขอลิงค์กู้คืนคลิกที่ลิงก์ที่มีให้';
$t['You can not Manage This Video'] = 'คุณไม่สามารถจัดการวิดีโอนี้ได้';
$t['You can not do this'] = 'คุณไม่สามารถทำเช่นนี้ได้';
$t['You can not manage ads'] = 'คุณไม่สามารถจัดการโฆษณาได้';
$t['You can not manage categories'] = 'คุณไม่สามารถจัดการหมวดได้';
$t['You can not manage comments'] = 'คุณไม่สามารถจัดการความคิดเห็นได้';
$t['You can not manage plugins'] = 'คุณไม่สามารถจัดการปลั๊กอินได้';
$t['You can not manage subscribes'] = 'คุณไม่สามารถจัดการ subscribes';
$t['You can not manage users'] = 'คุณไม่สามารถจัดการผู้ใช้';
$t['You can not manage videos'] = 'คุณไม่สามารถจัดการวิดีโอได้';
$t['You can not manager payouts'] = 'คุณไม่สามารถจ่ายเงินให้กับผู้จัดการ';
$t['You can not manager plugin PointsSystem'] = 'คุณไม่สามารถจัดการปลั๊กอิน Points System ได้';
$t['You can not manager plugin add logo'] = 'คุณไม่สามารถเพิ่มปลั๊กอินของผู้จัดการได้';
$t['You can not manager plugin customize'] = 'คุณไม่สามารถกำหนดค่าปลั๊กอินผู้จัดการได้';
$t['You can not manager plugin logo overlay'] = 'คุณไม่สามารถจัดการซ้อนทับโลโก้ปลั๊กอินได้';
$t['You can not manager plugin this'] = 'คุณไม่สามารถจัดการปลั๊กอินนี้ได้';
$t['You can not manager plugins'] = 'คุณไม่สามารถจัดการปลั๊กอินได้';
$t['You can not manager wallets'] = 'คุณไม่สามารถจัดการกระเป๋าสตางค์ได้';
$t['You can not notify'] = 'คุณไม่สามารถแจ้งได้';
$t['You can not see history'] = 'คุณไม่สามารถดูประวัติได้';
$t['You can not stream live videos'] = 'คุณไม่สามารถสตรีมวิดีโอสดได้';
$t['You can storage %s minutes of videos!'] = 'คุณสามารถจัดเก็บวิดีโอได้ไม่กี่นาที!';
$t['You can upload max of %s!'] = 'คุณสามารถอัปโหลดได้สูงสุด!';
$t['You can use our public encoder on'] = 'คุณสามารถใช้เครื่องเข้ารหัสสาธารณะของเราได้';
$t['You cannot comment on videos'] = 'คุณไม่สามารถแสดงความคิดเห็นเกี่ยวกับวิดีโอ';
$t['You could not use your balance to watch this video'] = 'คุณไม่สามารถใช้ยอดเงินในการดูวิดีโอนี้ได้';
$t['You do not have an e-mail'] = 'คุณไม่มีอีเมล';
$t["You don't have balance"] = 'คุณไม่มีความสมดุล';
$t['You have %s minutes of videos!'] = 'คุณมีวิดีโอเป็นนาที!';
$t['You have about %s minutes left of video storage!'] = 'คุณเหลือเวลาเก็บวิดีโอไว้ประมาณไม่กี่นาที!';
$t['You have sent the notification'] = 'คุณได้ส่งการแจ้งเตือนแล้ว';
$t['You must be logged'] = 'คุณต้องเข้าสู่ระบบ';
$t['You must fill all fields'] = 'คุณต้องกรอกข้อมูลทั้งหมด';
$t['You must login to be able to comment on videos'] = 'คุณต้องเข้าสู่ระบบเพื่อแสดงความคิดเห็นเกี่ยวกับวิดีโอ';
$t['You must make this video public or select a group to see your video!'] = 'คุณต้องทำให้วิดีโอนี้เป็นแบบสาธารณะหรือเลือกกลุ่มเพื่อดูวิดีโอของคุณ!';
$t['You need a user and passsword to register'] = 'คุณต้องมีผู้ใช้และรหัสผ่านเพื่อลงทะเบียน';
$t['You need a video to generate statistics'] = 'คุณต้องมีวิดีโอเพื่อสร้างสถิติ';
$t['You need to inform what is your user!'] = 'คุณต้องแจ้งผู้ใช้ของคุณว่า!';
$t['You need to install'] = 'คุณต้องติดตั้ง';
$t['You need to make your locale folder writable'] = 'คุณต้องทำให้โฟลเดอร์สามารถเขียนได้';
$t['You need to set up an encoder server'] = 'คุณต้องตั้งค่าเซิร์ฟเวอร์ตัวเข้ารหัส';
$t['You need to tell us the new name?'] = 'คุณจำเป็นต้องแจ้งชื่อใหม่ให้เราทราบหรือไม่?';
$t['You will not be able to recover these videos!'] = 'คุณจะไม่สามารถกู้คืนวิดีโอเหล่านี้ได้หรือ!';
$t['You will not be able to recover this action!'] = 'คุณจะไม่สามารถกู้คืนการดำเนินการนี้ได้';
$t['You will not be able to recover this category!'] = 'คุณจะไม่สามารถกู้คืนหมวดหมู่นี้ได้!';
$t['You will not be able to recover this group!'] = 'คุณจะไม่สามารถกู้คืนกลุ่มนี้ได้!';
$t['You will not be able to recover this user!'] = 'คุณจะไม่สามารถกู้คืนผู้ใช้รายนี้ได้!';
$t['You will not be able to recover this video!'] = 'คุณจะไม่สามารถกู้คืนวิดีโอนี้ได้!';
$t['You will not be able to recover this!'] = 'คุณจะไม่สามารถกู้คืนวิดีโอนี้ได้';
$t['You will request a payout of '] = 'คุณจะขอชำระเงิน';
$t['You will support this video with '] = 'คุณจะสนับสนุนวิดีโอนี้ด้วย';
$t['Your %s locale dir is not writable'] = 'คุณไม่สามารถเขียนไดอารี่ของคุณได้';
$t['Your Logo'] = 'โลโก้ของคุณ';
$t['Your POST data is empty may be your vide file is too big for the host'] = 'ข้อมูลของคุณว่างเปล่าอาจเป็นไฟล์วิดีโอของคุณใหญ่เกินไปสำหรับโฮสต์';
$t['Your Password has been set'] = 'รหัสผ่านของคุณถูกตั้งไว้';
$t['Your Payout request was saved!'] = 'บันทึกการชำระเงินของคุณแล้ว!';
$t['Your Small Logo'] = 'โลโก้ขนาดเล็กของคุณ';
$t['Your ad has NOT been deleted!'] = 'โฆษณาของคุณไม่ถูกลบ!';
$t['Your ad has NOT been saved!'] = 'โฆษณาของคุณยังไม่ได้รับการบันทึก!';
$t['Your ad has been deleted!'] = 'โฆษณาของคุณถูกลบแล้ว!';
$t['Your ad has been saved!'] = 'โฆษณาของคุณได้รับการบันทึก!';
$t['Your balance has NOT been saved!'] = 'ยอดคงเหลือของคุณยังไม่ได้รับการบันทึก!';
$t['Your category has NOT been deleted!'] = 'หมวดหมู่ของคุณไม่ถูกลบ!';
$t['Your category has NOT been saved!'] = 'หมวดหมู่ของคุณยังไม่ได้รับการบันทึก!';
$t['Your category has been deleted!'] = 'หมวดหมู่ของคุณถูกลบแล้ว!';
$t['Your category has been saved!'] = 'หมวดหมู่ของคุณได้รับการบันทึก!';
$t['Your code is not valid'] = 'รหัสของคุณไม่ถูกต้อง';
$t['Your comment has NOT been deleted!'] = 'ความคิดเห็นของคุณไม่ถูกลบ!';
$t['Your comment has NOT been saved!'] = 'ความคิดเห็นของคุณยังไม่ได้รับการบันทึก!';
$t['Your comment has been saved!'] = 'ความคิดเห็นของคุณได้รับการบันทึก!';
$t['Your comment must be bigger then 5 characters!'] = 'ความคิดเห็นของคุณต้องใหญ่กว่า 5 ตัวอักษร!';
$t['Your configurations has NOT been updated!'] = 'การกำหนดค่าของคุณยังไม่ได้รับการอัพเดต!';
$t['Your configurations has been updated!'] = 'การกำหนดค่าของคุณได้รับการอัปเดตแล้ว!';
$t['Your cost has NOT been saved!'] = 'ค่าใช้จ่ายของคุณยังไม่ได้รับการบันทึก!';
$t['Your current balance is %s'] = 'ยอดเงินปัจจุบันของคุณคือ';
$t['Your group has NOT been deleted!'] = 'กลุ่มของคุณไม่ถูกลบ!';
$t['Your group has NOT been saved!'] = 'กลุ่มของคุณไม่ได้รับการบันทึก!';
$t['Your group has been deleted!'] = 'กลุ่มของคุณถูกลบแล้ว!';
$t['Your group has been saved!'] = 'กลุ่มของคุณได้รับการบันทึกแล้ว!';
$t['Your language has been saved!'] = 'ภาษาของคุณได้รับการบันทึก!';
$t['Your maximum file size is:'] = 'ขนาดไฟล์สูงสุดคือ:';
$t['Your message could not be sent!'] = 'ไม่สามารถส่งข้อความของคุณได้!';
$t['Your message has been sent!'] = 'ข้อความของคุณถูกส่งแล้ว!';
$t['Your new password could not be set!'] = 'ไม่สามารถตั้งรหัสผ่านใหม่ได้!';
$t['Your new password has been set!'] = 'ตั้งรหัสผ่านใหม่แล้ว!';
$t['Your password does not match!'] = 'รหัสผ่านของคุณไม่ตรงกัน!';
$t['Your payout status has NOT been saved!'] = 'สถานะการชำระคืนของคุณยังไม่ได้รับการบันทึก!';
$t['Your subtitle has NOT been uploaded!'] = 'คำบรรยายของคุณยังไม่ได้รับการอัปโหลด!';
$t['Your subtitle has been saved!'] = 'คำบรรยายของคุณได้รับการบันทึก!';
$t['Your system is up to date'] = 'ระบบของคุณทันสมัยอยู่เสมอ';
$t['Your update from file %s is done, click continue'] = 'การอัปเดตจากไฟล์เสร็จสิ้นคลิกดำเนินการต่อ "';
$t['Your user has NOT been created!'] = 'ผู้ใช้ของคุณยังไม่ได้สร้าง!';
$t['Your user has NOT been deleted!'] = 'ผู้ใช้ของคุณยังไม่ถูกลบ!';
$t['Your user has NOT been saved!'] = 'ผู้ใช้ของคุณยังไม่ได้รับการบันทึก';
$t['Your user has NOT been updated!'] = 'ผู้ใช้ของคุณยังไม่ได้รับการปรับปรุง!';
$t['Your user has been created!'] = 'ผู้ใช้ของคุณถูกสร้างขึ้นแล้ว';
$t['Your user has been deleted!'] = 'ผู้ใช้ของคุณถูกลบแล้ว!';
$t['Your user has been saved!'] = 'บันทึกผู้ใช้ของคุณแล้ว!';
$t['Your user or password is wrong!'] = 'ผู้ใช้หรือรหัสผ่านของคุณผิด!';
$t['Your video has NOT been deleted!'] = 'การดาวน์โหลดวิดีโอของคุณเสร็จสมบูรณ์แล้วกำลังเข้ารหัสอยู่ในขณะนี้';
$t['Your video has NOT been saved!'] = 'วิดีโอของคุณไม่ถูกลบ!';
$t['Your video is downloading now'] = 'วิดีโอของคุณยังไม่ได้รับการบันทึก!';
$t['Your videos have NOT been deleted!'] = 'วิดีโอของคุณกำลังดาวน์โหลดเดี๋ยวนี้';
$t['Youtube'] = 'วิดีโอของคุณไม่ถูกลบ';
$t['ago'] = 'ที่ผ่านมา';
$t['day'] = 'มาแล้ว';
$t['days'] = 'วัน';
$t['description'] = 'วัน';
$t['hour'] = 'ลักษณะ';
$t['hours'] = 'ชั่วโมง';
$t['is Active'] = 'ชั่วโมง';
$t['is Admin'] = 'ใช้งานอยู่';
$t['is live'] = 'ผู้ดูแลระบบ';
$t['minute'] = 'อยู่แล้ว';
$t['minutes'] = 'นาที';
$t['month'] = 'นาที';
$t['months'] = 'เดือน';
$t['remaining'] = 'เดือน';
$t['second'] = 'ที่เหลืออยู่';
$t['seconds'] = 'วินาที';
$t['week'] = 'วินาที';
$t['weeks'] = 'สัปดาห์';
$t['year'] = 'สัปดาห์';
$t['years'] = 'ปี';
$t['youtube-dl uses Python and some servers do not come with python by default. To install Python type:'] = 'youtube-dl ใช้ Python และเซิร์ฟเวอร์บางเครื่องไม่ได้มาพร้อมกับ python เป็น default เพื่อติดตั้ง Python type:';
// Previously missing from file.
$t[' You can use the Edit Parameters button to rename it to your choosing.<br>We recommend to keep the Program name '] = ' You can use the Edit Parameters button to rename it to your choosing.<br>We recommend to keep the Program name ';
$t[" You'll no longer receive emails from us"] = " You'll no longer receive emails from us";
$t[' and also reset the stream name/key'] = ' and also reset the stream name/key';
$t['%d Users linked'] = '%d Users linked';
$t['— The Team'] = '— The Team';
$t['(filtered from _MAX_ total entries)'] = '(filtered from _MAX_ total entries)';
$t[', where you can edit the ad-options'] = ', where you can edit the ad-options';
$t['-Plugin'] = '-Plugin';
$t['2FA email not sent'] = '2FA email not sent';
$t['2FA login is required'] = '2FA login is required';
$t[': activate to sort column ascending'] = ': activate to sort column ascending';
$t[': activate to sort column descending'] = ': activate to sort column descending';
$t['ADs Editor'] = 'ADs Editor';
$t['ADs plugin'] = 'ADs plugin';
$t['API plugin not enabled'] = 'API plugin not enabled';
$t['API'] = 'API';
$t['About Us'] = 'About Us';
$t['Actions'] = 'Actions';
$t['Active Livestreams'] = 'Active Livestreams';
$t['Active Users'] = 'Active Users';
$t['Ad Overlay Code'] = 'Ad Overlay Code';
$t['Ad Overlay'] = 'Ad Overlay';
$t['Add Article'] = 'Add Article';
$t['Add Location Restriction'] = 'Add Location Restriction';
$t['Add To Serie'] = 'Add To Serie';
$t['Add User Group'] = 'Add User Group';
$t['Add Videos into Campaign'] = 'Add Videos into Campaign';
$t['Add an External a Live Streaming'] = 'Add an External a Live Streaming';
$t['Add an external Live Link'] = 'Add an external Live Link';
$t['Add this playlist in your video library'] = 'Add this playlist in your video library';
$t['Add to Program'] = 'Add to Program';
$t['Add videos'] = 'Add videos';
$t['Add'] = 'Add';
$t['Added On Favorite'] = 'Added On Favorite';
$t['Added On Watch Later'] = 'Added On Watch Later';
$t['Address'] = 'Address';
$t['Admin Panel'] = 'Admin Panel';
$t['Admin Users'] = 'Admin Users';
$t["Admin's manual"] = "Admin's manual";
$t['Administration'] = 'Administration';
$t['Ads Saved!'] = 'Ads Saved!';
$t['Ads deleted!'] = 'Ads deleted!';
$t['Advanced'] = 'Advanced';
$t['After enabling this, you can directly set some options, like the name, linkand active categorie for example.'] = 'After enabling this, you can directly set some options, like the name, linkand active categorie for example.';
$t['After sign up we will automatic send a verification email'] = 'After sign up we will automatic send a verification email';
$t['Agenda 21'] = 'Agenda 21';
$t['Agreement ID'] = 'Agreement ID';
$t['Agreement Id'] = 'Agreement Id';
$t['All Ages Admitted'] = 'All Ages Admitted';
$t['All controls'] = 'All controls';
$t['All lives were marked as finished'] = 'All lives were marked as finished';
$t['All time'] = 'All time';
$t['All you need to do is to verify your e-mail by clicking the link below'] = 'All you need to do is to verify your e-mail by clicking the link below';
$t['All'] = 'All';
$t['Allow Download My Videos'] = 'Allow Download My Videos';
$t['Allow Download This media'] = 'Allow Download This media';
$t['Allow Download'] = 'Allow Download';
$t['Allow Share My Videos'] = 'Allow Share My Videos';
$t['Allow Share This media'] = 'Allow Share This media';
$t['Allow download video'] = 'Allow download video';
$t['Alphabetical'] = 'Alphabetical';
$t['Already verified'] = 'Already verified';
$t['Also, when you activate a plugin and you see a button "Install Tables", press it at least once, if you never press it, this can cause bugs!'] = 'Also, when you activate a plugin and you see a button "Install Tables", press it at least once, if you never press it, this can cause bugs!';
$t['Analytics Code'] = 'Analytics Code';
$t['Approve Ad Code'] = 'Approve Ad Code';
$t['Are you new here?'] = 'Are you new here?';
$t['Arrow'] = 'Arrow';
$t['Articles'] = 'Articles';
$t['As a database increases in size full database backups take more time to complete, and require more storage space. Please be patient'] = 'As a database increases in size full database backups take more time to complete, and require more storage space. Please be patient';
$t['Attach'] = 'Attach';
$t['Attention'] = 'Attention';
$t['Audio-Gallery by Date'] = 'Audio-Gallery by Date';
$t['Australian Dollar = AUD, Brazilian Real = BRL, Canadian Dollar = CAD,Euro =EUR, U.S. Dollar = USD, etc'] = 'Australian Dollar = AUD, Brazilian Real = BRL, Canadian Dollar = CAD,Euro =EUR, U.S. Dollar = USD, etc';
$t['Authenticated users can view chart'] = 'Authenticated users can view chart';
$t['Auto Scroll'] = 'Auto Scroll';
$t['Auto Sort'] = 'Auto Sort';
$t['Auto Transmit Live'] = 'Auto Transmit Live';
$t['Auto record this live'] = 'Auto record this live';
$t['Auto'] = 'Auto';
$t['Automatic Withdraw'] = 'Automatic Withdraw';
$t['Automatic allow new users to use your Livestream Platform'] = 'Automatic allow new users to use your Livestream Platform';
$t['Autoplay ended'] = 'Autoplay ended';
$t['Autoplay next-video-order'] = 'Autoplay next-video-order';
$t['Back to startpage'] = 'Back to startpage';
$t['Back to'] = 'Back to';
$t['Back'] = 'Back';
$t['Background'] = 'Background';
$t['Backing up your video files and databases, running test restores procedureson your backups, and storing copies of backups in a safe, off-site location protects you from potentially catastrophic data loss. Backing up is the only way toprotect your data.'] = 'Backing up your video files and databases, running test restores procedureson your backups, and storing copies of backups in a safe, off-site location protects you from potentially catastrophic data loss. Backing up is the only way toprotect your data.';
$t['Backup Files and Database'] = 'Backup Files and Database';
$t['Backup site'] = 'Backup site';
$t['Backup'] = 'Backup';
$t['Banner Script code'] = 'Banner Script code';
$t['Basic Info'] = 'Basic Info';
$t['Basic info'] = 'Basic info';
$t['Basic'] = 'Basic';
$t['Bible'] = 'Bible';
$t['Bio Hacking'] = 'Bio Hacking';
$t['Block User'] = 'Block User';
$t['Block and hide this user content'] = 'Block and hide this user content';
$t['Broadcast a Live Stream'] = 'Broadcast a Live Stream';
$t['Broken Missing files'] = 'Broken Missing files';
$t['Bubbles Only'] = 'Bubbles Only';
$t['Bulk Embed'] = 'Bulk Embed';
$t['But only admin can download'] = 'But only admin can download';
$t['Buy This Plugin'] = 'Buy This Plugin';
$t['Buy our Backup Plugin Now'] = 'Buy our Backup Plugin Now';
$t['Buy the Customize plugin now'] = 'Buy the Customize plugin now';
$t['Buy this plugin now'] = 'Buy this plugin now';
$t['By name'] = 'By name';
$t['CDN Storage'] = 'CDN Storage';
$t['CDN'] = 'CDN';
$t['CSV File'] = 'CSV File';
$t['Cache Manager'] = 'Cache Manager';
$t['CallbackResponse'] = 'CallbackResponse';
$t['CallbackURL'] = 'CallbackURL';
$t['Can Download'] = 'Can Download';
$t['Can create meet'] = 'Can create meet';
$t['Can edit TopMenu plugin'] = 'Can edit TopMenu plugin';
$t['Can edit and delete user groups'] = 'Can edit and delete user groups';
$t['Can view chart'] = 'Can view chart';
$t['Cancel Agreement'] = 'Cancel Agreement';
$t['Cancel'] = 'Cancel';
$t['Canceled'] = 'Canceled';
$t['Category Icon'] = 'Category Icon';
$t['Category-Gallery'] = 'Category-Gallery';
$t['Challenge Decryptor'] = 'Challenge Decryptor';
$t['Change theme'] = 'Change theme';
$t['Channel Admin'] = 'Channel Admin';
$t['Channel Art'] = 'Channel Art';
$t['Channel Description'] = 'Channel Description';
$t['Channel Name'] = 'Channel Name';
$t['Channel name already exists'] = 'Channel name already exists';
$t['Charts'] = 'Charts';
$t['Chat'] = 'Chat';
$t['Check Code'] = 'Check Code';
$t['Check Meet Servers'] = 'Check Meet Servers';
$t['Check the URL you entered for any mistakes and try again. Alternatively, search for whatever is missing or take a look around the rest of our site.'] = 'Check the URL you entered for any mistakes and try again. Alternatively, search for whatever is missing or take a look around the rest of our site.';
$t['Check this if you will not use embed videos on your site'] = 'Check this if you will not use embed videos on your site';
$t['Check this to stay signed in'] = 'Check this to stay signed in';
$t['Cheers, %s Team.'] = 'Cheers, %s Team.';
$t['Choose a favicon'] = 'Choose a favicon';
$t['Choose a logo'] = 'Choose a logo';
$t['Choose one of our encoders to upload a file or download it from the Internet'] = 'Choose one of our encoders to upload a file or download it from the Internet';
$t['City'] = 'City';
$t['Clear Cache Directory'] = 'Clear Cache Directory';
$t['Clear Chat'] = 'Clear Chat';
$t['Clear First Page Cache'] = 'Clear First Page Cache';
$t['Click to get notified for every new video'] = 'Click to get notified for every new video';
$t['Clone Site'] = 'Clone Site';
$t['Cloud'] = 'Cloud';
$t['Collected Date'] = 'Collected Date';
$t['Collections'] = 'Collections';
$t['Colors'] = 'Colors';
$t['Coming in'] = 'Coming in';
$t['Comment thumbs up - per Person'] = 'Comment thumbs up - per Person';
$t['Comments Admin'] = 'Comments Admin';
$t['Configuration Saved'] = 'Configuration Saved';
$t['Configurations'] = 'Configurations';
$t['Configure your Ads'] = 'Configure your Ads';
$t['Confirm Donation'] = 'Confirm Donation';
$t['Confirm Meet Password'] = 'Confirm Meet Password';
$t['Confirm Password'] = 'Confirm Password';
$t['Confirm Playlist name'] = 'Confirm Playlist name';
$t['Confirm Rating'] = 'Confirm Rating';
$t['Confirm System Admin password'] = 'Confirm System Admin password';
$t['Connected'] = 'Connected';
$t['Contents'] = 'Contents';
$t['Copied!'] = 'Copied!';
$t['Copied'] = 'Copied';
$t['Copy Invitation'] = 'Copy Invitation';
$t['Copy Link'] = 'Copy Link';
$t['Copy embed code'] = 'Copy embed code';
$t['Copy from encripted message'] = 'Copy from encripted message';
$t['Copy from generated'] = 'Copy from generated';
$t['Copy to Clipboard'] = 'Copy to Clipboard';
$t['Copy to clipboard'] = 'Copy to clipboard';
$t['Copy video URL at current time'] = 'Copy video URL at current time';
$t['Copy video URL'] = 'Copy video URL';
$t['Copy'] = 'Copy';
$t['Copyright'] = 'Copyright';
$t['Corona News'] = 'Corona News';
$t['Could not move image file %s => [%s]'] = 'Could not move image file %s => [%s]';
$t['Could not move image file because it does not exits %s => [%s]'] = 'Could not move image file because it does not exits %s => [%s]';
$t['Could not move webp image file [%s.webp]'] = 'Could not move webp image file [%s.webp]';
$t['Country'] = 'Country';
$t['Create Campaign'] = 'Create Campaign';
$t['Create Conference'] = 'Create Conference';
$t['Create Room'] = 'Create Room';
$t['Create Subscription Plans'] = 'Create Subscription Plans';
$t['Create Tag Type'] = 'Create Tag Type';
$t['Create a Meet'] = 'Create a Meet';
$t['Create a New'] = 'Create a New';
$t['Create'] = 'Create';
$t['Created Date'] = 'Created Date';
$t['Culinary'] = 'Culinary';
$t['Current Time'] = 'Current Time';
$t['Custom CSS'] = 'Custom CSS';
$t['Customize Footer, About and Meta Description'] = 'Customize Footer, About and Meta Description';
$t['Customize Your site colors'] = 'Customize Your site colors';
$t['Customize options'] = 'Customize options';
$t['Customize'] = 'Customize';
$t['Daily'] = 'Daily';
$t['Database-update needed'] = 'Database-update needed';
$t['Date To Execute'] = 'Date To Execute';
$t['Date added (newest)'] = 'Date added (newest)';
$t['Date added (oldest)'] = 'Date added (oldest)';
$t['Date added'] = 'Date added';
$t['Days'] = 'Days';
$t['Decrypt Message'] = 'Decrypt Message';
$t['Decrypt'] = 'Decrypt';
$t['Decrypted Text'] = 'Decrypted Text';
$t['Delete All Selected'] = 'Delete All Selected';
$t['Delete files after submit'] = 'Delete files after submit';
$t['Deleted'] = 'Deleted';
$t['Deprecated'] = 'Deprecated';
$t['Design'] = 'Design';
$t['Destination Application Name'] = 'Destination Application Name';
$t['Destination Host'] = 'Destination Host';
$t['Destination Port'] = 'Destination Port';
$t['Detect language from IP'] = 'Detect language from IP';
$t['Device'] = 'Device';
$t['Direct Import Local Videos'] = 'Direct Import Local Videos';
$t['Direct Import all'] = 'Direct Import all';
$t['Disable Youtube-Upload'] = 'Disable Youtube-Upload';
$t['Disable right-click-prevention on video and allow downloading'] = 'Disable right-click-prevention on video and allow downloading';
$t['Disable the My Account personal info like: First and Last Name and address'] = 'Disable the My Account personal info like: First and Last Name and address';
$t['Disapprove Ad Code'] = 'Disapprove Ad Code';
$t['Disapprove and Delete Ad Code'] = 'Disapprove and Delete Ad Code';
$t['Disconnect Livestream'] = 'Disconnect Livestream';
$t['Disconnected'] = 'Disconnected';
$t['Do not allow encode in HD resolution'] = 'Do not allow encode in HD resolution';
$t['Do not allow encode in Low resolution'] = 'Do not allow encode in Low resolution';
$t['Do not allow encode in SD resolution'] = 'Do not allow encode in SD resolution';
$t['Do not show the button to the encoder'] = 'Do not show the button to the encoder';
$t["Do not show user's email on the site"] = "Do not show user's email on the site";
$t["Do not show user's name on the site"] = "Do not show user's name on the site";
$t["Do not show user's username on the site"] = "Do not show user's username on the site";
$t['Do you want to block this user?'] = 'Do you want to block this user?';
$t['Do you want to report this video as inappropriate?'] = 'Do you want to report this video as inappropriate?';
$t['Do you want to report this video? Sign in to make your opinion count.'] = 'Do you want to report this video? Sign in to make your opinion count.';
$t['Do you want to unblock this user?'] = 'Do you want to unblock this user?';
$t['Document'] = 'Document';
$t['Documentaries'] = 'Documentaries';
$t["Don't show again"] = "Don't show again";
$t['Donate from your wallet'] = 'Donate from your wallet';
$t['Donation Link'] = 'Donation Link';
$t['Donation'] = 'Donation';
$t['Done'] = 'Done';
$t['Down'] = 'Down';
$t['Download File'] = 'Download File';
$t['Download The moment'] = 'Download The moment';
$t['Download Video'] = 'Download Video';
$t['Download disabled'] = 'Download disabled';
$t['Download private and public keys'] = 'Download private and public keys';
$t['Download video'] = 'Download video';
$t['Download your videos list'] = 'Download your videos list';
$t['Download'] = 'Download';
$t['Downloading'] = 'Downloading';
$t['E-mail Not Verified'] = 'E-mail Not Verified';
$t['E-mail Verified'] = 'E-mail Verified';
$t['E-mail'] = 'E-mail';
$t['EPG'] = 'EPG';
$t['Edit Ads'] = 'Edit Ads';
$t['Edit Campaigns'] = 'Edit Campaigns';
$t['Edit Live Servers'] = 'Edit Live Servers';
$t['Edit parameters'] = 'Edit parameters';
$t['Edit videos'] = 'Edit videos';
$t['Edit-symbol and enable Create an Advertising'] = 'Edit-symbol and enable Create an Advertising';
$t['Email All Users'] = 'Email All Users';
$t['Email Verified'] = 'Email Verified';
$t['Email already exists'] = 'Email already exists';
$t['Email verification error'] = 'Email verification error';
$t['Embed All'] = 'Embed All';
$t['Embed Codes'] = 'Embed Codes';
$t['Embed Selected'] = 'Embed Selected';
$t['Embed URL for trailer'] = 'Embed URL for trailer';
$t['Embed Video'] = 'Embed Video';
$t['Embed videos/files in your site'] = 'Embed videos/files in your site';
$t['Enable 2FA Login'] = 'Enable 2FA Login';
$t['Enable Ads Plugin'] = 'Enable Ads Plugin';
$t['Enable a small button for show the description'] = 'Enable a small button for show the description';
$t['Encode Video'] = 'Encode Video';
$t['Encoder Network'] = 'Encoder Network';
$t['Encoder URL'] = 'Encoder URL';
$t['Encoder'] = 'Encoder';
$t['Encrypt Message'] = 'Encrypt Message';
$t['Encrypt'] = 'Encrypt';
$t['Encrypted Text'] = 'Encrypted Text';
$t['End of content'] = 'End of content';
$t['End on'] = 'End on';
$t['End'] = 'End';
$t['Enter Broadcast'] = 'Enter Broadcast';
$t['Enter Code'] = 'Enter Code';
$t['Enter Database Password'] = 'Enter Database Password';
$t['Enter System Admin password'] = 'Enter System Admin password';
$t['Enter text'] = 'Enter text';
$t['Error on Upload'] = 'Error on Upload';
$t['Error on block this user'] = 'Error on block this user';
$t['Error on report this video'] = 'Error on report this video';
$t['Error on save video 1'] = 'Error on save video 1';
$t['Error on save video 2'] = 'Error on save video 2';
$t['Error on unblock this user'] = 'Error on unblock this user';
$t['Error!'] = 'Error!';
$t['Events and Holidays'] = 'Events and Holidays';
$t['Executed In'] = 'Executed In';
$t['Executed'] = 'Executed';
$t['Experts Interviews'] = 'Experts Interviews';
$t['Extra Info'] = 'Extra Info';
$t['Extra Permissions'] = 'Extra Permissions';
$t['Fans Only'] = 'Fans Only';
$t['Favicon'] = 'Favicon';
$t['Favorite'] = 'Favorite';
$t['Fewest'] = 'Fewest';
$t['Filter users'] = 'Filter users';
$t['Finish Datetime'] = 'Finish Datetime';
$t['Finish'] = 'Finish';
$t['Finishing Live...'] = 'Finishing Live...';
$t['First Name'] = 'First Name';
$t['First Page Style'] = 'First Page Style';
$t['First step'] = 'First step';
$t['First'] = 'First';
$t['Flat Earth'] = 'Flat Earth';
$t['For Google Analytics code'] = 'For Google Analytics code';
$t['For mature audiences'] = 'For mature audiences';
$t['For mobile a Valid OAuth redirect URIs'] = 'For mobile a Valid OAuth redirect URIs';
$t['For of Him, and through Him, and to Him, are all things: to whom be glory for ever. Amen.'] = 'For of Him, and through Him, and to Him, are all things: to whom be glory for ever. Amen.';
$t['For selected, admin view'] = 'For selected, admin view';
$t['For the best results, please Use this image as a guide to create your Channel Art'] = 'For the best results, please Use this image as a guide to create your Channel Art';
$t['For uploaders'] = 'For uploaders';
$t['Forbidden'] = 'Forbidden';
$t['Format'] = 'Format';
$t['Free Space'] = 'Free Space';
$t['Free'] = 'Free';
$t['Fullscreen'] = 'Fullscreen';
$t['Funds successfully transferred'] = 'Funds successfully transferred';
$t['Gallery'] = 'Gallery';
$t['General Audiences'] = 'General Audiences';
$t['General Settings'] = 'General Settings';
$t['General'] = 'General';
$t['Generate Keys'] = 'Generate Keys';
$t['Generate Sitemap'] = 'Generate Sitemap';
$t['Generate'] = 'Generate';
$t['Geo Engineering'] = 'Geo Engineering';
$t['Get Facebook ID and Key'] = 'Get Facebook ID and Key';
$t['Get Google ID and Key'] = 'Get Google ID and Key';
$t['Get Linkedin ID and Key'] = 'Get Linkedin ID and Key';
$t['Get Twitter ID and Key'] = 'Get Twitter ID and Key';
$t['Get Yahoo ID and Key'] = 'Get Yahoo ID and Key';
$t['Go Back'] = 'Go Back';
$t['Go Live'] = 'Go Live';
$t['Go back to the main page'] = 'Go back to the main page';
$t['Go to your'] = 'Go to your';
$t['Google Ad Sense'] = 'Google Ad Sense';
$t['Google Console API Dashboard'] = 'Google Console API Dashboard';
$t['Google ID and Key'] = 'Google ID and Key';
$t['Group Permissions'] = 'Group Permissions';
$t['Group'] = 'Group';
$t['Groups'] = 'Groups';
$t['Healing Sounds'] = 'Healing Sounds';
$t['Health Check'] = 'Health Check';
$t['Health and Fitness'] = 'Health and Fitness';
$t['Help Page'] = 'Help Page';
$t['Here you can find help, how this platform works.'] = 'Here you can find help, how this platform works.';
$t['Here you find information about how to handle videos.'] = 'Here you find information about how to handle videos.';
$t['Here'] = 'Here';
$t['Hi %s'] = 'Hi %s';
$t['Hide the website to non logged users'] = 'Hide the website to non logged users';
$t['Home'] = 'Home';
$t['Hours'] = 'Hours';
$t['How to setup the Youtube-Upload feature'] = 'How to setup the Youtube-Upload feature';
$t['Human Experiments'] = 'Human Experiments';
$t["I would humbly like to thank God for giving me the necessary knowledge, motivation, resources and idea to be able to execute this project. Without God's permission this would never be possible."] = "I would humbly like to thank God for giving me the necessary knowledge, motivation, resources and idea to be able to execute this project. Without God's permission this would never be possible.";
$t["ID can't be blank"] = "ID can't be blank";
$t['ID'] = 'ID';
$t['IP Address'] = 'IP Address';
$t['IP'] = 'IP';
$t['Icon'] = 'Icon';
$t['If public: your domain, so we can see the error directly'] = 'If public: your domain, so we can see the error directly';
$t['If the system finds a valid public key we will challenge you to decrypt a message so that you can log into the system. so make sure you have the private key equivalent to this public key'] = 'If the system finds a valid public key we will challenge you to decrypt a message so that you can log into the system. so make sure you have the private key equivalent to this public key';
$t['If you are not sure how to configure your email'] = 'If you are not sure how to configure your email';
$t['If you can, clear the log-files, reproduce the error and send them. This helps to reduce old or repeating information.'] = 'If you can, clear the log-files, reproduce the error and send them. This helps to reduce old or repeating information.';
$t['If you change your password the Server URL parameters will be changedtoo.'] = 'If you change your password the Server URL parameters will be changedtoo.';
$t['If you want to tell us, what is not working for you, this is great and helps us, to make the software more stable.'] = 'If you want to tell us, what is not working for you, this is great and helps us, to make the software more stable.';
$t['Image'] = 'Image';
$t['Images'] = 'Images';
$t['Import a MP4 File'] = 'Import a MP4 File';
$t['Import'] = 'Import';
$t['In authorized credentials allow the following URIs redirection'] = 'In authorized credentials allow the following URIs redirection';
$t['In case the login window does not open, check how do I disable the pop-up blocker in your browser'] = 'In case the login window does not open, check how do I disable the pop-up blocker in your browser';
$t['In order to enjoy our login feature, you need to allow our pop-ups inyour browser.'] = 'In order to enjoy our login feature, you need to allow our pop-ups inyour browser.';
$t['In the shell, go to the avideo-folder and type "git pull" there. Or, for copy-paste'] = 'In the shell, go to the avideo-folder and type "git pull" there. Or, for copy-paste';
$t['Inactive Users'] = 'Inactive Users';
$t['Info'] = 'Info';
$t['Information'] = 'Information';
$t['Install tables'] = 'Install tables';
$t['Install'] = 'Install';
$t['Installed Plugins'] = 'Installed Plugins';
$t['Installed'] = 'Installed';
$t['Internet Radio'] = 'Internet Radio';
$t['Invalid Captcha'] = 'Invalid Captcha';
$t['Invalid Email'] = 'Invalid Email';
$t['Invalid ID'] = 'Invalid ID';
$t['Invalid filename'] = 'Invalid filename';
$t['Invitation'] = 'Invitation';
$t['Invoice'] = 'Invoice';
$t['Ip'] = 'Ip';
$t['Is Live'] = 'Is Live';
$t['Is not logged'] = 'Is not logged';
$t['Israel Freedom Radio'] = 'Israel Freedom Radio';
$t['Issues on github'] = 'Issues on github';
$t['Join'] = 'Join';
$t['Json'] = 'Json';
$t['Just a quick note to say a big welcome and an even bigger thank you for registering'] = 'Just a quick note to say a big welcome and an even bigger thank you for registering';
$t['Just like admin, this user will have permission to edit and delete videos from any user, including videos from admin'] = 'Just like admin, this user will have permission to edit and delete videos from any user, including videos from admin';
$t['Keep Key Private, Anyone with key can broadcast on your account'] = 'Keep Key Private, Anyone with key can broadcast on your account';
$t['Key Password'] = 'Key Password';
$t['Key cannot be empty'] = 'Key cannot be empty';
$t['Key is empty'] = 'Key is empty';
$t['Key'] = 'Key';
$t['LOG IN'] = 'LOG IN';
$t['Last 10 Attends'] = 'Last 10 Attends';
$t['Last 15 Days'] = 'Last 15 Days';
$t['Last 90 Days'] = 'Last 90 Days';
$t['Last Clone'] = 'Last Clone';
$t['Last Name'] = 'Last Name';
$t['Last login was on '] = 'Last login was on ';
$t['Last'] = 'Last';
$t['Law'] = 'Law';
$t['Layout'] = 'Layout';
$t['Leave Channel'] = 'Leave Channel';
$t['Leave blank for native code'] = 'Leave blank for native code';
$t['Legal Info'] = 'Legal Info';
$t['Let the encoder network (if configured) choose what is the best encoder to use'] = 'Let the encoder network (if configured) choose what is the best encoder to use';
$t['Let us upload your video to YouTube'] = 'Let us upload your video to YouTube';
$t['Let users request withdrawal from their wallets. The withdrawal must be done manually'] = 'Let users request withdrawal from their wallets. The withdrawal must be done manually';
$t['Link'] = 'Link';
$t['Links'] = 'Links';
$t['List Files'] = 'List Files';
$t['Listed'] = 'Listed';
$t['Live Conference'] = 'Live Conference';
$t['Live Events'] = 'Live Events';
$t['Live Info'] = 'Live Info';
$t['Live Links'] = 'Live Links';
$t['Live Now'] = 'Live Now';
$t['Live Plugin is not enabled'] = 'Live Plugin is not enabled';
$t['Live Restreams'] = 'Live Restreams';
$t['Live Servers'] = 'Live Servers';
$t['Live Stuff'] = 'Live Stuff';
$t['Live URL'] = 'Live URL';
$t['Live Users'] = 'Live Users';
$t['Live Video'] = 'Live Video';
$t['Live plugin is disabled'] = 'Live plugin is disabled';
$t['Live plugin is not enabled'] = 'Live plugin is not enabled';
$t['Live videos'] = 'Live videos';
$t['Live'] = 'Live';
$t['Lives'] = 'Lives';
$t['Loading Server Info'] = 'Loading Server Info';
$t['Loading...'] = 'Loading...';
$t['Local Server'] = 'Local Server';
$t['Local'] = 'Local';
$t['Log file'] = 'Log file';
$t['Log'] = 'Log';
$t['Logged Users Only'] = 'Logged Users Only';
$t['Login Alert'] = 'Login Alert';
$t['Login Control'] = 'Login Control';
$t['Login History'] = 'Login History';
$t['LoginControl'] = 'LoginControl';
$t['Logo and Title'] = 'Logo and Title';
$t['Logs'] = 'Logs';
$t['Loop'] = 'Loop';
$t['MAKE SURE YOU CLICK SAVE'] = 'MAKE SURE YOU CLICK SAVE';
$t['MRSS Feed'] = 'MRSS Feed';
$t['Main Menu'] = 'Main Menu';
$t['Make Stream Publicly Listed'] = 'Make Stream Publicly Listed';
$t['Make sure you click on the Save button after change the photo'] = 'Make sure you click on the Save button after change the photo';
$t['Make sure you have the unzip app on your server'] = 'Make sure you have the unzip app on your server';
$t['Manage Bans'] = 'Manage Bans';
$t['Manage Clones'] = 'Manage Clones';
$t['Mark all as finished'] = 'Mark all as finished';
$t['Matrix Chat'] = 'Matrix Chat';
$t['Max Prints'] = 'Max Prints';
$t['Maybe you need to approve or check something on your video before make it public'] = 'Maybe you need to approve or check something on your video before make it public';
$t['Media Owner'] = 'Media Owner';
$t['Meet Code'] = 'Meet Code';
$t['Meet Invitation'] = 'Meet Invitation';
$t['Meet Join Log'] = 'Meet Join Log';
$t['Meet Link'] = 'Meet Link';
$t['Meet Log'] = 'Meet Log';
$t['Meet Password'] = 'Meet Password';
$t['Meet Schedule Has Users Groups'] = 'Meet Schedule Has Users Groups';
$t['Meet Schedule Id'] = 'Meet Schedule Id';