forked from WWBN/AVideo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
it.php
1491 lines (1486 loc) · 88.6 KB
/
it.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['%d Users linked'] = '%d utenti collegati';
$t['%s ERROR: You must set a KEY on config'] = '%s ERROR: È necessario impostare una KEY su config';
$t['%s ERROR: You must set an ID on config'] = '%s ERROR: È necessario impostare un ID su config';
$t['(filtered from _MAX_ total entries)'] = '(filtrato da _MAX_ voci totali)';
$t['465 OR 587'] = '465 o 587';
$t[': activate to sort column ascending'] = ': attivare per ordinare la colonna in ordine crescente';
$t[': activate to sort column descending'] = ': attivare per ordinare la colonna in ordine decrescente';
$t['A service error occurred: %s'] = 'Si è verificato un errore di servizio: %s';
$t['About'] = 'Riguardo a';
$t['Activate'] = 'Attivare';
$t['Active'] = 'Attiva';
$t['Ad'] = 'Annuncio';
$t['Ad Title'] = 'Titolo dell\'annuncio';
$t['Add Funds'] = 'Aggiungere fondi';
$t['Add User Group'] = 'Aggiungi un gruppo di utenti';
$t['Add more user Groups'] = 'Aggiungi altri gruppi di utenti';
$t['Add to'] = 'Aggiungi a';
$t['Admin'] = 'Amministratore';
$t['Admin Menu'] = 'Menu di Amministrazione';
$t['Admin Panel'] = 'Pannello di Amministrazione';
$t['Ads'] = 'Annunci';
$t['Ads Form'] = 'Modulo annunci';
$t['Advanced Configuration'] = 'Configurazione Avanzata';
$t['Advanced configuration'] = 'Configurazione avanzata';
$t['Advanced configurations are disabled'] = 'Le configurazioni avanzate sono disabilitate';
$t['Advertising Manager'] = 'Responsabile della pubblicità';
$t['Advertising Title'] = 'Titolo pubblicitario';
$t['Alert'] = 'Attento';
$t['All'] = 'Tutti';
$t['Allow Download My Videos'] = 'Consenti Download dei Miei Video';
$t['Allow Share My Videos'] = 'Consenti Condividi i Miei Video';
$t['Amount'] = 'Quantità';
$t['An client error occurred: %s'] = 'Si è verificato un errore del client: %s';
$t['Analytics Code'] = 'Codice Analitico';
$t['Anyone with this key can watch your live stream.'] = 'Chiunque abbia questa chiave può guardare il tuo live streaming.';
$t['Are you sure?'] = 'Sei sicuro?';
$t['Audio and Video'] = 'Audio e Video';
$t['Audio only'] = 'Solo audio';
$t['Audio-Gallery by Date'] = 'Galleria audio per data';
$t['Authenticated users can comment videos'] = 'Gli utenti autenticati possono commentare video';
$t['Authenticated users can upload videos'] = 'Gli utenti autenticati possono caricare video';
$t['Autoplay'] = 'Riproduzione automatica';
$t['Autoplay Next Video'] = 'Riproduci automaticamente il video successivo';
$t['Autoplay Next Video URL'] = 'Riproduci automaticamente l\'URL del video successivo';
$t['Autoplay Video on Load Page'] = 'Riproduci automaticamente del video sulla pagina di caricamento';
$t['Autoplay ended'] = 'Riproduci automaticamente terminata';
$t['Balance'] = 'Equilibrio';
$t['Balance Form'] = 'Forma di equilibrio';
$t['Basic info'] = 'Informazioni basilari';
$t['Both'] = 'Tutti e due';
$t['Bottom'] = 'Fondo';
$t['Embed'] = 'Incorporare';
$t['Embedded'] = 'Incorporato';
$t['Message'] = 'Messaggio';
$t['Message could not be sent'] = 'Impossibile inviare il messaggio';
$t['Message sent'] = 'Messaggio inviato';
$t['Modified'] = 'Modificato';
$t['Most Popular'] = 'Più Popolari';
$t['Most Watched'] = 'Più Visti';
$t['Most popular'] = 'Più popolari';
$t['Most watched'] = 'Più visti';
$t['My Account'] = 'Mio Conto';
$t['My Channel'] = 'Mio Canale';
$t['My Subscribers'] = 'I Miei Iscritti';
$t['My list'] = 'Mia Lista';
$t['My videos'] = 'Miei Video';
$t['Name'] = 'Nome';
$t['Name can\'t be blank'] = 'Il nome non può essere vuoto';
$t['Only verified users can upload'] = 'Only verified users can upload media';
$t['ago'] = 'fa';
$t['day'] = 'giorno';
$t['days'] = 'giorni';
$t['description'] = 'descrizione';
$t['hour'] = 'ora';
$t['hours'] = 'ore';
$t['installed, but your database is not up to date. This could lead to bugs. Please go to the update site.'] = 'installato, ma il database non è aggiornato. Questo potrebbe portare a bug. Si prega di andare al sito di aggiornamento.';
$t['minute'] = 'minuta';
$t['minutes'] = 'minuti';
$t['month'] = 'mese';
$t['months'] = 'mesi';
$t['remaining'] = 'rimanente';
$t['second'] = 'seconda';
$t['seconds'] = 'secondi';
$t['week'] = 'settimana';
$t['weeks'] = 'settimane';
$t['year'] = 'anno';
$t['years'] = 'anni';
$t['youtube-dl uses Python and some servers does not came with python as default, to install Python type:'] = 'youtube-dl utilizza Python e alcuni server non vengono forniti con Python come impostazione predefinita, per installare Python digitare:';
// 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['— The Team'] = '— The Team';
$t[', where you can edit the ad-options'] = ', where you can edit the ad-options';
$t['-Plugin'] = '-Plugin';
$t['1 Day'] = '1 Day';
$t['1 Month'] = '1 Month';
$t['12 Months'] = '12 Months';
$t['2 Months'] = '2 Months';
$t['2FA email not sent'] = '2FA email not sent';
$t['2FA login is required'] = '2FA login is required';
$t['3 Months'] = '3 Months';
$t['6 Months'] = '6 Months';
$t['7 Day'] = '7 Day';
$t['A service error occurred [1]: %s'] = 'A service error occurred [1]: %s';
$t['ADs Editor'] = 'ADs Editor';
$t['ADs plugin'] = 'ADs plugin';
$t['API'] = 'API';
$t['API plugin not enabled'] = 'API plugin not enabled';
$t['AVideo URL'] = 'AVideo URL';
$t['About Us'] = 'About Us';
$t['Active Livestreams'] = 'Active Livestreams';
$t['Active Users'] = 'Active Users';
$t['Ad Overlay'] = 'Ad Overlay';
$t['Ad Overlay Code'] = 'Ad Overlay Code';
$t['Add'] = 'Add';
$t['Add Article'] = 'Add Article';
$t['Add Location Restriction'] = 'Add Location Restriction';
$t['Add To Serie'] = 'Add To Serie';
$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 videos'] = 'Add videos';
$t['Added On Favorite'] = 'Added On Favorite';
$t['Added On Watch Later'] = 'Added On Watch Later';
$t['Address'] = 'Address';
$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['Ago'] = 'Ago';
$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['Allow Download'] = 'Allow Download';
$t['Allow Download This media'] = 'Allow Download This media';
$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['An client error occurred [2]: %s'] = 'An client error occurred [2]: %s';
$t['Approve Ad Code'] = 'Approve Ad Code';
$t['Are you new here?'] = 'Are you new here?';
$t['Arrow'] = 'Arrow';
$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['Audio'] = 'Audio';
$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'] = 'Auto';
$t['Auto Sort'] = 'Auto Sort';
$t['Auto Transmit Live'] = 'Auto Transmit Live';
$t['Auto record this live'] = 'Auto record this live';
$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 next-video-order'] = 'Autoplay next-video-order';
$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'] = 'Backup';
$t['Backup Files and Database'] = 'Backup Files and Database';
$t['Banner Script code'] = 'Banner Script code';
$t['Basic'] = 'Basic';
$t['Basic Info'] = 'Basic Info';
$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['Broadcast a Live Streaming'] = 'Broadcast a Live Streaming';
$t['Browse'] = 'Browse';
$t['Browse Channels'] = 'Browse Channels';
$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 associating groups with this user, they will be able to see all the videos that are related to this group'] = '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'] = '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['By name'] = 'By name';
$t['CDN'] = 'CDN';
$t['CDN Storage'] = 'CDN Storage';
$t['CSV File'] = 'CSV File';
$t['Cache Manager'] = 'Cache Manager';
$t['CallbackResponse'] = 'CallbackResponse';
$t['CallbackURL'] = 'CallbackURL';
$t['Can Stream Videos'] = 'Can Stream Videos';
$t['Can Upload Videos'] = 'Can Upload Videos';
$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'] = 'Cancel';
$t['Cancel Agreement'] = 'Cancel Agreement';
$t['Canceled'] = 'Canceled';
$t['Categories'] = 'Categories';
$t['Category'] = 'Category';
$t['Category Form'] = 'Category Form';
$t['Category Icon'] = 'Category Icon';
$t['Category to display this Ad'] = 'Category to display this Ad';
$t['Category-Gallery'] = 'Category-Gallery';
$t['Center'] = 'Center';
$t['Challenge Decryptor'] = 'Challenge Decryptor';
$t['Change Playlist Name'] = 'Change Playlist Name';
$t['Change Style'] = 'Change Style';
$t['Channel'] = 'Channel';
$t['Channel Art'] = 'Channel Art';
$t['Channel Name'] = 'Channel Name';
$t['Channel name already exists'] = 'Channel name already exists';
$t['Channels'] = 'Channels';
$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['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['Clean Name'] = 'Clean Name';
$t['Clean Title'] = 'Clean Title';
$t['Clear Cache Directory'] = 'Clear Cache Directory';
$t['Clear First Page Cache'] = 'Clear First Page Cache';
$t['Click here if you agree to continue'] = 'Click here if you agree to continue';
$t['Click to get notified for every new video'] = 'Click to get notified for every new video';
$t['Clicks'] = 'Clicks';
$t['Clone Site'] = 'Clone Site';
$t['Close'] = 'Close';
$t['Collected Date'] = 'Collected Date';
$t['Collections'] = 'Collections';
$t['Color Legend'] = 'Color Legend';
$t['Colors'] = 'Colors';
$t['Coming in'] = 'Coming in';
$t['Comment'] = 'Comment';
$t['Comment Form'] = 'Comment Form';
$t['Comment thumbs up - per Person'] = 'Comment thumbs up - per Person';
$t['Comments'] = 'Comments';
$t['Comming Soon'] = 'Comming Soon';
$t['Compatibility Check'] = 'Compatibility Check';
$t['Configuration'] = 'Configuration';
$t['Configuration Saved'] = 'Configuration Saved';
$t['Configurations'] = 'Configurations';
$t['Configure an Encoder URL'] = 'Configure an Encoder URL';
$t['Configure your Ads'] = 'Configure your Ads';
$t['Confirm'] = 'Confirm';
$t['Confirm Donation'] = 'Confirm Donation';
$t['Confirm Meet Password'] = 'Confirm Meet Password';
$t['Confirm New Password'] = 'Confirm New 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['Confirm!'] = 'Confirm!';
$t['Confirmation password does not match'] = 'Confirmation password does not match';
$t['Congratulations'] = 'Congratulations';
$t['Congratulations!'] = 'Congratulations!';
$t['Connected'] = 'Connected';
$t['Contact'] = 'Contact';
$t['Contact Us Today!'] = 'Contact Us Today!';
$t['Contents'] = 'Contents';
$t['Continue'] = 'Continue';
$t['Copied'] = 'Copied';
$t['Copied!'] = 'Copied!';
$t['Copy'] = 'Copy';
$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'] = 'Copy video URL';
$t['Copy video URL at current time'] = 'Copy video URL at current time';
$t['Cost'] = 'Cost';
$t['Could not move gif image file [%s.gif]'] = 'Could not move gif image file [%s.gif]';
$t['Could not move image file %s => [%s]'] = 'Could not move image file %s => [%s]';
$t['Could not move image file [%s.jpg]'] = 'Could not move image file [%s.jpg]';
$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'] = 'Create';
$t['Create Campaign'] = 'Create Campaign';
$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 a New Play List'] = 'Create a New Play List';
$t['Create an Advertising'] = 'Create an Advertising';
$t['Create more translations'] = 'Create more translations';
$t['Created'] = 'Created';
$t['Created Date'] = 'Created Date';
$t['Current Style & Theme'] = 'Current Style & Theme';
$t['Current Time'] = 'Current Time';
$t['Custom CSS'] = 'Custom CSS';
$t['Customize'] = 'Customize';
$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['Daily'] = 'Daily';
$t['Dashboard'] = 'Dashboard';
$t['Database-update needed'] = 'Database-update needed';
$t['Date'] = 'Date';
$t['Date To Execute'] = 'Date To Execute';
$t['Date added'] = 'Date added';
$t['Date added (newest)'] = 'Date added (newest)';
$t['Date added (oldest)'] = 'Date added (oldest)';
$t['Days'] = 'Days';
$t['Decrypt'] = 'Decrypt';
$t['Decrypt Message'] = 'Decrypt Message';
$t['Decrypted Text'] = 'Decrypted Text';
$t['Default'] = 'Default';
$t['Delete'] = 'Delete';
$t['Delete All Selected'] = 'Delete All Selected';
$t['Delete files after submit'] = 'Delete files after submit';
$t['Deleted'] = 'Deleted';
$t['Description'] = 'Description';
$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['Devices Stream Info'] = 'Devices Stream Info';
$t['Direct Import Local Videos'] = 'Direct Import Local Videos';
$t['Direct Import all'] = 'Direct Import all';
$t['Direct upload'] = 'Direct upload';
$t['Disable AVideo Google Analytics'] = 'Disable AVideo Google Analytics';
$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 forget to save after choose your theme'] = 'Do not forget to save after choose your theme';
$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 inapropriate?'] = 'Do you want to report this video as inapropriate?';
$t['Do you want to unblock this user?'] = 'Do you want to unblock this user?';
$t['Document'] = 'Document';
$t['Donate from your wallet'] = 'Donate from your wallet';
$t['Donation'] = 'Donation';
$t['Donation Link'] = 'Donation Link';
$t['Done'] = 'Done';
$t['Don´t like this video? Sign in to make your opinion count.'] = 'Don´t like this video? Sign in to make your opinion count.';
$t['Down'] = 'Down';
$t['Download'] = 'Download';
$t['Download File'] = 'Download File';
$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['Downloading'] = 'Downloading';
$t['Drag and drop to sort'] = 'Drag and drop to sort';
$t['Drop Here'] = 'Drop Here';
$t['Duration'] = 'Duration';
$t['E-mail'] = 'E-mail';
$t['E-mail Address'] = 'E-mail Address';
$t['E-mail Not Verified'] = 'E-mail Not Verified';
$t['E-mail Verified'] = 'E-mail Verified';
$t['E-mail sent'] = 'E-mail sent';
$t['EPG'] = 'EPG';
$t['Edit'] = 'Edit';
$t['Edit Ads'] = 'Edit Ads';
$t['Edit Campaigns'] = 'Edit Campaigns';
$t['Edit Live Servers'] = 'Edit Live Servers';
$t['Edit Video'] = 'Edit Video';
$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 can not be blank'] = 'Email can not be blank';
$t['Email verification error'] = 'Email verification error';
$t['Embed All'] = 'Embed All';
$t['Embed Selected'] = 'Embed Selected';
$t['Embed Stream'] = 'Embed Stream';
$t['Embed URL for trailer'] = 'Embed URL for trailer';
$t['Embed a video link'] = 'Embed a video link';
$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 SMTP'] = 'Enable SMTP';
$t['Enable SMTP Auth'] = 'Enable SMTP Auth';
$t['Enable WebCam Stream'] = 'Enable WebCam Stream';
$t['Enable a small button for show the description'] = 'Enable a small button for show the description';
$t['Encode video and audio'] = 'Encode video and audio';
$t['Encoder'] = 'Encoder';
$t['Encoder Network'] = 'Encoder Network';
$t['Encoder URL'] = 'Encoder URL';
$t['Encoding'] = 'Encoding';
$t['Encoding mp4 error'] = 'Encoding mp4 error';
$t['Encoding xmp3 error'] = 'Encoding xmp3 error';
$t['Encoding xogg error'] = 'Encoding xogg error';
$t['Encoding xwebm error'] = 'Encoding xwebm error';
$t['Encrypt'] = 'Encrypt';
$t['Encrypt Message'] = 'Encrypt Message';
$t['Encrypted Text'] = 'Encrypted Text';
$t['End'] = 'End';
$t['End of content'] = 'End of content';
$t['End on'] = 'End on';
$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'] = 'Error';
$t['Error on Upload'] = 'Error on Upload';
$t['Error on block this user'] = 'Error on block this user';
$t['Error on re-encoding!'] = 'Error on re-encoding!';
$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['Executed'] = 'Executed';
$t['Executed In'] = 'Executed In';
$t['Extra Info'] = 'Extra Info';
$t['Extra Permissions'] = 'Extra Permissions';
$t['Fans Only'] = 'Fans Only';
$t['Favicon'] = 'Favicon';
$t['Favorite'] = 'Favorite';
$t['Filter users'] = 'Filter users';
$t['Finish'] = 'Finish';
$t['Finish Datetime'] = 'Finish Datetime';
$t['Finish on'] = 'Finish on';
$t['Finishing Live...'] = 'Finishing Live...';
$t['First'] = 'First';
$t['First Name'] = 'First Name';
$t['First Page Mode'] = 'First Page Mode';
$t['First Page Style'] = 'First Page Style';
$t['For Google Analytics code'] = 'For Google Analytics code';
$t['For faster encode, download your own encoder'] = 'For faster encode, download your own encoder';
$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 yourChannel Art'] = 'For the best results, please Use this image as a guide to create yourChannel Art';
$t['For uploaders'] = 'For uploaders';
$t['Forbidden'] = 'Forbidden';
$t['Format'] = 'Format';
$t['Free Space'] = 'Free Space';
$t['From'] = 'From';
$t['Fullscreen'] = 'Fullscreen';
$t['Funds successfully transferred'] = 'Funds successfully transferred';
$t['General Audiences'] = 'General Audiences';
$t['General Settings'] = 'General Settings';
$t['Generate'] = 'Generate';
$t['Generate Keys'] = 'Generate Keys';
$t['Generate Sitemap'] = 'Generate Sitemap';
$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['Get imgage error'] = 'Get imgage error';
$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 manager videos page!'] = 'Go to manager videos 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'] = 'Group';
$t['Group Permissions'] = 'Group Permissions';
$t['Groups That Can See This Stream'] = 'Groups That Can See This Stream';
$t['Groups that can see this video'] = 'Groups that can see this video';
$t['Head Code'] = 'Head Code';
$t['Health Check'] = 'Health Check';
$t['Help'] = 'Help';
$t['Help Page'] = 'Help Page';
$t['Here'] = 'Here';
$t['Here you can find help, how this plattform works.'] = 'Here you can find help, how this plattform works.';
$t['Here you find information about how to handle videos.'] = 'Here you find information about how to handle videos.';
$t['Hi %s'] = 'Hi %s';
$t['Hide Replies'] = 'Hide Replies';
$t['Hide the website to non logged users'] = 'Hide the website to non logged users';
$t['History'] = 'History';
$t['Home'] = 'Home';
$t['Hours'] = 'Hours';
$t['How Much?'] = 'How Much?';
$t['How to setup the Youtube-Upload feature'] = 'How to setup the Youtube-Upload feature';
$t['I forgot my password'] = 'I forgot my password';
$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['I would like to share this video with you:'] = 'I would like to share this video with you:';
$t['ID'] = 'ID';
$t['ID can not be empty'] = 'ID can not be empty';
$t['ID can\'t be blank'] = 'ID can\'t be blank';
$t['IP'] = 'IP';
$t['IP Address'] = 'IP Address';
$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\'t view this video, your browser does not support HTML5 videos'] = 'If you can\'t view this video, your browser does not support HTML5 videos';
$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 changed too.'] = 'If you change your password the Server URL parameters will be changed too.';
$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 do not have curl, you can alternatively use a recent wget: '] = 'If you do not have curl, you can alternatively use a recent wget: ';
$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'] = '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['Inactivate'] = 'Inactivate';
$t['Inactive'] = 'Inactive';
$t['Inactive Users'] = 'Inactive Users';
$t['Info'] = 'Info';
$t['Information'] = 'Information';
$t['Install tables'] = 'Install tables';
$t['Installed'] = 'Installed';
$t['Installed Plugins'] = 'Installed Plugins';
$t['Invalid'] = 'Invalid';
$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 Ad'] = 'Is Ad';
$t['Is Live'] = 'Is Live';
$t['Is not logged'] = 'Is not logged';
$t['Issues on github'] = 'Issues on github';
$t['Join'] = 'Join';
$t['Json'] = 'Json';
$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'] = 'Key';
$t['Key Password'] = 'Key Password';
$t['Key cannot be empty'] = 'Key cannot be empty';
$t['Key is empty'] = 'Key is empty';
$t['LIVE NOW'] = 'LIVE NOW';
$t['Language'] = 'Language';
$t['Last'] = 'Last';
$t['Last 10 Attends'] = 'Last 10 Attends';
$t['Last 15 Days'] = 'Last 15 Days';
$t['Last 30 Days'] = 'Last 30 Days';
$t['Last 7 Days'] = 'Last 7 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['Leave Channel'] = 'Leave Channel';
$t['Leave blank for native code'] = 'Leave blank for native code';
$t['Left'] = 'Left';
$t['Left Menu'] = 'Left Menu';
$t['Let us upload your video to YouTube'] = 'Let us upload your video to YouTube';
$t['Let users request withdraws from his wallet. the withdraw mus be donemanually'] = 'Let users request withdraws from his wallet. the withdraw mus be donemanually';
$t['Like this video? Sign in to make your opinion count.'] = 'Like this video? Sign in to make your opinion count.';
$t['Link'] = 'Link';
$t['List Files'] = 'List Files';
$t['Listed'] = 'Listed';
$t['Listed Transmition'] = 'Listed Transmition';
$t['Live'] = 'Live';
$t['Live Chat'] = 'Live Chat';
$t['Live Events'] = 'Live Events';
$t['Live Info'] = 'Live Info';
$t['Live Links'] = 'Live Links';
$t['Live Plugin is not enabled'] = 'Live Plugin is not enabled';
$t['Live Restreams'] = 'Live Restreams';
$t['Live Servers'] = 'Live Servers';
$t['Live Stream'] = 'Live Stream';
$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['Lives'] = 'Lives';
$t['Loading Server Info'] = 'Loading Server Info';
$t['Loading...'] = 'Loading...';
$t['Local'] = 'Local';
$t['Local File'] = 'Local File';
$t['Local Server'] = 'Local Server';
$t['Log'] = 'Log';
$t['Log file'] = 'Log file';
$t['Logged Users Only'] = 'Logged Users Only';
$t['Login'] = 'Login';
$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['Logoff'] = 'Logoff';
$t['Logs'] = 'Logs';
$t['Loop'] = 'Loop';
$t['MRSS Feed'] = 'MRSS Feed';
$t['Main Menu'] = 'Main Menu';
$t['Make Stream Publicly Listed'] = 'Make Stream Publicly Listed';
$t['Make it public'] = 'Make it public';
$t['Make sure that the video you are going to download has a duration of less than %d minute(s)!'] = 'Make sure that the video you are going to download has a duration of less than %d minute(s)!';
$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 Clones'] = 'Manage Clones';
$t['Manage Payouts'] = 'Manage Payouts';
$t['Manage Wallets'] = 'Manage Wallets';
$t['Mark all as finished'] = 'Mark all as finished';
$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'] = 'Meet';
$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'] = 'Meet Schedule';
$t['Meet Schedule Has Users Groups'] = 'Meet Schedule Has Users Groups';
$t['Meet Schedule Id'] = 'Meet Schedule Id';
$t['Meet Topic'] = 'Meet Topic';
$t['Meeting'] = 'Meeting';
$t['Meetings'] = 'Meetings';
$t['Meetings you can attend'] = 'Meetings you can attend';
$t['Meta Data'] = 'Meta Data';
$t['Minutes'] = 'Minutes';
$t['Miscellaneous'] = 'Miscellaneous';
$t['Monetize'] = 'Monetize';
$t['Monetize User'] = 'Monetize User';
$t['Monthly'] = 'Monthly';
$t['More'] = 'More';
$t['Mou MUST select 2 videos to swap'] = 'Mou MUST select 2 videos to swap';
$t['Moving'] = 'Moving';
$t['My Menu'] = 'My Menu';
$t['Network'] = 'Network';
$t['Never'] = 'Never';
$t['New'] = 'New';
$t['New Category'] = 'New Category';
$t['New Meet'] = 'New Meet';
$t['New Password'] = 'New Password';
$t['New User'] = 'New User';
$t['New User Groups'] = 'New User Groups';
$t['New program'] = 'New program';
$t['Next'] = 'Next';
$t['Next page'] = 'Next page';
$t['Next video'] = 'Next video';
$t['Next video NOT set'] = 'Next video NOT set';
$t['No'] = 'No';
$t['No data available in table'] = 'No data available in table';
$t['No matching records found'] = 'No matching records found';
$t['No more pages to load'] = 'No more pages to load';
$t['No one 17 and under admitted'] = 'No one 17 and under admitted';
$t['No results found!'] = 'No results found!';
$t['No write Access on folder'] = 'No write Access on folder';
$t['Non admin users can NOT download videos'] = 'Non admin users can NOT download videos';
$t['Non admin users can download videos'] = 'Non admin users can download videos';
$t['None (Parent)'] = 'None (Parent)';
$t['Not Admin'] = 'Not Admin';
$t['Not Rated'] = 'Not Rated';
$t['Notes'] = 'Notes';
$t['Notify Subscribers'] = 'Notify Subscribers';
$t['Now'] = 'Now';
$t['Now Playing'] = 'Now Playing';
$t['OFFLINE'] = 'OFFLINE';
$t['ONLINE'] = 'ONLINE';
$t['Off'] = 'Off';
$t['On'] = 'On';
$t['Online Users'] = 'Online Users';
$t['Only Paid Users Can see'] = 'Only Paid Users Can see';
$t['Only direct mp3- or ogg-files - if you download it with the link, it shouldbe a movie-file. No google-drive or stream-hoster. Also, do not mix https and http.'] = 'Only direct mp3- or ogg-files - if you download it with the link, it shouldbe a movie-file. No google-drive or stream-hoster. Also, do not mix https and http.';
$t['Only direct mp4-files - if you download it with the link, it should be a movie-file. No google-drive or stream-hoster. Also, do not mix https and http.'] = 'Only direct mp4-files - if you download it with the link, it should be a movie-file. No google-drive or stream-hoster. Also, do not mix https and http.';
$t['Only you can see this, because you are a admin.'] = 'Only you can see this, because you are a admin.';
$t['Opacity'] = 'Opacity';
$t['Open pop-up Login window'] = 'Open pop-up Login window';
$t['Order'] = 'Order';
$t['Organize'] = 'Organize';
$t['Original words found'] = 'Original words found';
$t['Other'] = 'Other';
$t['Other Files'] = 'Other Files';
$t['Owner'] = 'Owner';
$t['PC'] = 'PC';
$t['PGP 2FA'] = 'PGP 2FA';
$t['PGP Challenge'] = 'PGP Challenge';
$t['PGP Key removed'] = 'PGP Key removed';
$t['PGP Keys'] = 'PGP Keys';
$t['PGP Public Key'] = 'PGP Public Key';
$t['Page'] = 'Page';
$t['Page %d'] = 'Page %d';
$t['Paid Content'] = 'Paid Content';
$t['Parameters'] = 'Parameters';
$t['Parent ID'] = 'Parent ID';
$t['Parent-Category'] = 'Parent-Category';
$t['Parental Guidance Suggested'] = 'Parental Guidance Suggested';
$t['Participants'] = 'Participants';
$t['Password'] = 'Password';
$t['Password Protected'] = 'Password Protected';
$t['Past'] = 'Past';
$t['Paste here the translated words, one each line'] = 'Paste here the translated words, one each line';
$t['Pay Per View'] = 'Pay Per View';
$t['Pay User per Video View'] = 'Pay User per Video View';
$t['PayPal payout email'] = 'PayPal payout email';
$t['PayPalYPT'] = 'PayPalYPT';
$t['PayPalYPT Log'] = 'PayPalYPT Log';
$t['Payment Success'] = 'Payment Success';
$t['Payment complete!'] = 'Payment complete!';
$t['Payments Settings'] = 'Payments Settings';
$t['Payout'] = 'Payout';
$t['Pending Requests'] = 'Pending Requests';
$t['Permanent Link'] = 'Permanent Link';
$t['Permission denied'] = 'Permission denied';
$t['Permission denied to Notify Done: '] = 'Permission denied to Notify Done: ';
$t['Permission denied to edit a video: '] = 'Permission denied to edit a video: ';
$t['Permission denied to receive a file: '] = 'Permission denied to receive a file: ';
$t['Permissions'] = 'Permissions';
$t['Permition denied'] = 'Permition denied';
$t['Personal Info'] = 'Personal Info';
$t['Place a Link to play'] = 'Place a Link to play';
$t['Place here the URL of the site you want to clone'] = 'Place here the URL of the site you want to clone';
$t['Play'] = 'Play';
$t['Play All'] = 'Play All';
$t['Play Live'] = 'Play Live';
$t['Play Video'] = 'Play Video';
$t['Play a Link'] = 'Play a Link';
$t['Play this Program live now'] = 'Play this Program live now';
$t['PlayLists'] = 'PlayLists';
$t['Player Sample'] = 'Player Sample';
$t['Player Skin'] = 'Player Skin';
$t['Player URL'] = 'Player URL';
$t['Playlist is empty or does not exist'] = 'Playlist is empty or does not exist';
$t['Playlist name?'] = 'Playlist name?';
$t['Playlists Schedules'] = 'Playlists Schedules';
$t['Playlists or Program Playlists are identified by default as programs of content on the AVideo Platform.<br>'] = 'Playlists or Program Playlists are identified by default as programs of content on the AVideo Platform.<br>';
$t['Please Login in the window pop up'] = 'Please Login in the window pop up';
$t['Please Verify Your E-mail '] = 'Please Verify Your E-mail ';
$t['Please Wait'] = 'Please Wait';
$t['Please Wait ...'] = 'Please Wait ...';
$t['Please check your email for 2FA confirmation '] = 'Please check your email for 2FA confirmation ';
$t['Please forgive us for bothering you, but unfortunately you do not have thisplugin yet. But do not hesitate to purchase it in our online store'] = 'Please forgive us for bothering you, but unfortunately you do not have thisplugin yet. But do not hesitate to purchase it in our online store';
$t['Please login first'] = 'Please login first';
$t['Please login to donate'] = 'Please login to donate';
$t['Please login to proceed'] = 'Please login to proceed';
$t['Please provide a title'] = 'Please provide a title';
$t['Please sign in'] = 'Please sign in';
$t['Please type your password'] = 'Please type your password';
$t['Please type your username'] = 'Please type your username';
$t['Please, enter your name'] = 'Please, enter your name';
$t['Please, login before join a meeting'] = 'Please, login before join a meeting';
$t['Plugin'] = 'Plugin';
$t['Plugin Form'] = 'Plugin Form';
$t['Plugin Store'] = 'Plugin Store';
$t['Plugin disabled'] = 'Plugin disabled';
$t['Plugins'] = 'Plugins';
$t['Plugins Id'] = 'Plugins Id';
$t['Plugins Store'] = 'Plugins Store';
$t['Portrait Poster'] = 'Portrait Poster';
$t['Position'] = 'Position';
$t['Poster'] = 'Poster';
$t['Poster Image'] = 'Poster Image';
$t['Predefined Category'] = 'Predefined Category';
$t['Premium Featrures'] = 'Premium Featrures';
$t['Prevent Data Loss'] = 'Prevent Data Loss';
$t['Preview'] = 'Preview';
$t['Preview-picture and gif'] = 'Preview-picture and gif';
$t['Previous'] = 'Previous';
$t['Prints'] = 'Prints';
$t['Prints Left'] = 'Prints Left';
$t['Private'] = 'Private';
$t['Private Key'] = 'Private Key';
$t['Process Payment'] = 'Process Payment';
$t['Process Start'] = 'Process Start';
$t['Processing...'] = 'Processing...';
$t['Program'] = 'Program';
$t['Program title'] = 'Program title';
$t['Programs'] = 'Programs';
$t['Programs does not belong to you'] = 'Programs does not belong to you';
$t['Programs id error'] = 'Programs id error';
$t['Programs plugin not enabled'] = 'Programs plugin not enabled';
$t['Public'] = 'Public';
$t['Public Key'] = 'Public Key';
$t['Public Media'] = 'Public Media';
$t['Public Video'] = 'Public Video';
$t['Queue Position'] = 'Queue Position';
$t['R Rating'] = 'R Rating';
$t['RSS Feed'] = 'RSS Feed';
$t['Random'] = 'Random';
$t['Rating'] = 'Rating';
$t['Recover Password'] = 'Recover Password';
$t['Recover password could not be saved!'] = 'Recover password could not be saved!';
$t['Recover password does not match'] = 'Recover password does not match';
$t['Recover password!'] = 'Recover password!';
$t['Recurring Payment Id'] = 'Recurring Payment Id';
$t['Refresh'] = 'Refresh';
$t['Region'] = 'Region';
$t['Regular Configuration'] = 'Regular Configuration';
$t['Regular User'] = 'Regular User';
$t['Reinstall tables'] = 'Reinstall tables';
$t['Remember me'] = 'Remember me';
$t['Remove'] = 'Remove';
$t['Remove Autoplay Next Video'] = 'Remove Autoplay Next Video';
$t['Remove Branding'] = 'Remove Branding';
$t['Remove PGP Key'] = 'Remove PGP Key';
$t['Remove Poster'] = 'Remove Poster';
$t['Remove Serie'] = 'Remove Serie';
$t['Remove Thumbs'] = 'Remove Thumbs';
$t['Remove User Group'] = 'Remove User Group';
$t['Remove Video'] = 'Remove Video';
$t['Rename'] = 'Rename';
$t['Repeat'] = 'Repeat';
$t['Repeat Day Of Month'] = 'Repeat Day Of Month';
$t['Repeat Day Of Week'] = 'Repeat Day Of Week';
$t['Repeat Hour'] = 'Repeat Hour';
$t['Repeat Minute'] = 'Repeat Minute';
$t['Repeat Month'] = 'Repeat Month';
$t['Reply'] = 'Reply';
$t['Report'] = 'Report';
$t['Report this video'] = 'Report this video';
$t['Request Payout'] = 'Request Payout';
$t['Reset Key'] = 'Reset Key';
$t['Reset password'] = 'Reset password';
$t['Reset to Default'] = 'Reset to Default';
$t['Resolution'] = 'Resolution';
$t['Restream'] = 'Restream';
$t['Restricted'] = 'Restricted';
$t['Revert Descriptions to NON-HTML'] = 'Revert Descriptions to NON-HTML';
$t['Right'] = 'Right';
$t['Roku Json'] = 'Roku Json';
$t['Romans 11:36'] = 'Romans 11:36';
$t['Rotate LEFT'] = 'Rotate LEFT';
$t['Rotate RIGHT'] = 'Rotate RIGHT';
$t['S3, B2, FTP settings'] = 'S3, B2, FTP settings';
$t['SMTP Host'] = 'SMTP Host';
$t['SMTP Password'] = 'SMTP Password';
$t['SMTP Port'] = 'SMTP Port';
$t['SMTP Secure'] = 'SMTP Secure';
$t['SMTP Username'] = 'SMTP Username';
$t['Save'] = 'Save';
$t['Save Ad Code'] = 'Save Ad Code';
$t['Save File'] = 'Save File';
$t['Save PGP Key'] = 'Save PGP Key';
$t['Save Stream'] = 'Save Stream';
$t['Save Video'] = 'Save Video';
$t['Save changes'] = 'Save changes';
$t['Saved'] = 'Saved';
$t['Schedule'] = 'Schedule';
$t['Scheduler'] = 'Scheduler';
$t['Scheduler Commands'] = 'Scheduler Commands';
$t['Script Code'] = 'Script Code';
$t['Search'] = 'Search';
$t['Search Channels'] = 'Search Channels';
$t['Search Serie'] = 'Search Serie';
$t['Search User'] = 'Search User';
$t['Search Video'] = 'Search Video';
$t['Search Videos'] = 'Search Videos';
$t['Search for videos in your local disk'] = 'Search for videos in your local disk';
$t['Seasons'] = 'Seasons';
$t['Seconds'] = 'Seconds';
$t['Seconds Left'] = 'Seconds Left';
$t['Select a file to submit!'] = 'Select a file to submit!';
$t['Select a language!'] = 'Select a language!';
$t['Select an icon for the category'] = 'Select an icon for the category';
$t['Select an icon for the menu'] = 'Select an icon for the menu';
$t['Select one Option'] = 'Select one Option';
$t['Select the update'] = 'Select the update';
$t['Self Hosted'] = 'Self Hosted';
$t['Send'] = 'Send';
$t['Send Email'] = 'Send Email';
$t['Sent only to this email'] = 'Sent only to this email';
$t['Serie'] = 'Serie';
$t['Series'] = 'Series';
$t['Server URL'] = 'Server URL';
$t['Server not found or inactive'] = 'Server not found or inactive';
$t['Session Timeout in seconds'] = 'Session Timeout in seconds';
$t['Settings'] = 'Settings';
$t['Settings and plugins'] = 'Settings and plugins';
$t['Share'] = 'Share';
$t['Share Code'] = 'Share Code';
$t['Share Info'] = 'Share Info';
$t['Share Video'] = 'Share Video';
$t['Show Less'] = 'Show Less';
$t['Show More'] = 'Show More';
$t['Show _MENU_ entries'] = 'Show _MENU_ entries';
$t['Show all'] = 'Show all';
$t['Show all programs that are listed in your video library'] = 'Show all programs that are listed in your video library';
$t['Show all that include a list of videos'] = 'Show all that include a list of videos';
$t['Show all that is a collection of programs'] = 'Show all that is a collection of programs';
$t['Show all types'] = 'Show all types';
$t['Show on TV'] = 'Show on TV';
$t['Show/Hide Password'] = 'Show/Hide Password';
$t['Showing 0 to 0 of 0 entries'] = 'Showing 0 to 0 of 0 entries';
$t['Showing _START_ to _END_ of _TOTAL_ entries'] = 'Showing _START_ to _END_ of _TOTAL_ entries';
$t['Showing {{ctx.start}} to {{ctx.end}} of {{ctx.total}} entries'] = 'Showing {{ctx.start}} to {{ctx.end}} of {{ctx.total}} entries';
$t['Sign In'] = 'Sign In';
$t['Sign In/Up'] = 'Sign In/Up';
$t['Sign Out'] = 'Sign Out';
$t['Sign Up'] = 'Sign Up';
$t['Sign Up Disabled'] = 'Sign Up Disabled';
$t['Sign in'] = 'Sign in';
$t['Sign in now!'] = 'Sign in now!';
$t['Sign in to add this video to a playlist.'] = 'Sign in to add this video to a playlist.';
$t['Sign in to subscribe to this channel'] = 'Sign in to subscribe to this channel';
$t['Sign in to your email to verify your account!'] = 'Sign in to your email to verify your account!';
$t['Sign out'] = 'Sign out';
$t['Sign up'] = 'Sign up';
$t['Site Advertisement with VAST Video ads'] = 'Site Advertisement with VAST Video ads';
$t['Site Configurations'] = 'Site Configurations';
$t['Site Maintenance'] = 'Site Maintenance';
$t['Site Map'] = 'Site Map';
$t['Site Settings'] = 'Site Settings';
$t['Size'] = 'Size';
$t['Skip Ad'] = 'Skip Ad';
$t['Skip Button appears after (X) seconds'] = 'Skip Button appears after (X) seconds';
$t['Social Login Settings'] = 'Social Login Settings';
$t['Some material may not be inapropriate for children under 13'] = 'Some material may not be inapropriate for children under 13';
$t['Some material may not be suitable for children'] = 'Some material may not be suitable for children';
$t['Sorry'] = 'Sorry';
$t['Sorry for the inconvenience but we’re performing some maintenance at the moment.'] = 'Sorry for the inconvenience but we’re performing some maintenance at the moment.';
$t['Sorry you do not have any playlist yet'] = 'Sorry you do not have any playlist yet';
$t['Sorry you do not have anything available'] = 'Sorry you do not have anything available';
$t['Sorry you do not have the plugin'] = 'Sorry you do not have the plugin';
$t['Sorry you not able to download videos right now!'] = 'Sorry you not able to download videos right now!';
$t['Sorry!'] = 'Sorry!';
$t['Sorry, this video is private'] = 'Sorry, this video is private';
$t['Sort'] = 'Sort';
$t['Sort Sections'] = 'Sort Sections';
$t['Sort by name'] = 'Sort by name';
$t['Source'] = 'Source';
$t['Specific User Groups'] = 'Specific User Groups';
$t['Specify Amount'] = 'Specify Amount';
$t['Start'] = 'Start';
$t['Start Datetime'] = 'Start Datetime';
$t['Start Live Now'] = 'Start Live Now';
$t['Start Now'] = 'Start Now';
$t['Start Record'] = 'Start Record';
$t['Start video at'] = 'Start video at';
$t['Starts'] = 'Starts';
$t['Starts In'] = 'Starts In';
$t['Starts in'] = 'Starts in';
$t['Starts on'] = 'Starts on';
$t['Statistics'] = 'Statistics';
$t['Status'] = 'Status';
$t['Status not found'] = 'Status not found';
$t['Stop'] = 'Stop';
$t['Stop Live'] = 'Stop Live';
$t['Stop Record'] = 'Stop Record';
$t['Stop ad after (X) clicks'] = 'Stop ad after (X) clicks';
$t['Stop ad after (X) prints'] = 'Stop ad after (X) prints';
$t['Stop getting notified for every new video'] = 'Stop getting notified for every new video';
$t['Stop this Program and start over again'] = 'Stop this Program and start over again';
$t['Storage'] = 'Storage';
$t['Stream Key'] = 'Stream Key';
$t['Stream Meta Data'] = 'Stream Meta Data';
$t['Stream Settings'] = 'Stream Settings';
$t['Stream name/key'] = 'Stream name/key';
$t['Stripe Subscription'] = 'Stripe Subscription';
$t['Style & Themes'] = 'Style & Themes';
$t['Submit Payment'] = 'Submit Payment';
$t['Submit your videos'] = 'Submit your videos';
$t['Subscribe'] = 'Subscribe';
$t['Subscribed'] = 'Subscribed';
$t['Subscribed to'] = 'Subscribed to';
$t['Subscribes'] = 'Subscribes';
$t['Subscriptions'] = 'Subscriptions';
$t['Subtitle Form'] = 'Subtitle Form';
$t['Success'] = 'Success';
$t['Success!'] = 'Success!';
$t['Successfully logged in'] = 'Successfully logged in';
$t['Suggest'] = 'Suggest';
$t['Suggested'] = 'Suggested';
$t['Support Author'] = 'Support Author';
$t['Support value can not be empty'] = 'Support value can not be empty';
$t['Supported'] = 'Supported';
$t['Swap Disabled'] = 'Swap Disabled';
$t['Swap Video File'] = 'Swap Video File';
$t['TV'] = 'TV';
$t['Table of content'] = 'Table of content';
$t['Tag Types'] = 'Tag Types';
$t['Tags'] = 'Tags';
$t['Test Email'] = 'Test Email';
$t['Test Server'] = 'Test Server';
$t['Test Stats'] = 'Test Stats';
$t['Test your email'] = 'Test your email';
$t['Text to Decrypt'] = 'Text to Decrypt';
$t['Text to Encrypt'] = 'Text to Encrypt';
$t['Thank you'] = 'Thank you';