forked from WWBN/AVideo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathes.php
1706 lines (1701 loc) · 97.2 KB
/
es.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'] = 'Hace %s';
$t['%s ago'] = 'hace %s';
$t['465 OR 587'] = '465 o 587';
$t['A client error occurred [2]: %s'] = 'Se produjo un error del cliente [2]: %s';
$t['A client error occurred: %s'] = 'Se produjo un error del cliente: %s';
$t['A service error occurred [1]: %s'] = 'Se produjo un error de servicio. [1]: %s';
$t['A service error occurred: %s'] = 'Se produjo un error de servicio.: %s';
$t['About'] = 'Acerca de';
$t['Activate'] = 'Activar';
$t['Active'] = 'Activo';
$t['Add Article'] = 'Añadir Artículo';
$t['Add Funds'] = 'Añadir fondos';
$t['Add to'] = 'añadir';
$t['Admin Menu'] = 'Administración';
$t['Admin Panel'] = 'Panel de Admin.';
$t['Ago'] = 'Hace';
$t['All'] = 'Todos';
$t['Are you sure?'] = '¿Estás seguro?';
$t['Audio and Video'] = 'Audio y Videos';
$t['Audio-Gallery by Date'] = 'Galería de audio por fecha';
$t['Autoplay Next Video'] = 'Reproducción automática Siguiente video';
$t['Autoplay'] = 'Auto-reproducción';
$t['Back to'] = 'Atrás hasta';
$t['Browse Channels'] = 'Buscar Canales';
$t['Browse'] = 'Vistazo';
$t['CSV File'] = 'Fichero CSV';
$t['Categories'] = 'Categorías';
$t['Category Form'] = 'Formulario de Categoría';
$t['Category'] = 'Categoría';
$t['Category-Gallery'] = 'Galería de categorías';
$t['Channel Name'] = 'Nombre del Canal';
$t['Channel name already exists'] = 'El nombre del canal ya existe';
$t['Channel'] = 'Canal';
$t['Channels'] = 'Canales';
$t['Clean Name'] = 'Nombre limpio';
$t['Clean Title'] = 'Título limpio';
$t['Close'] = 'Cerrar';
$t['Color Legend'] = 'Lista de color';
$t['Coming soon'] = 'Próximamente';
$t['Comment thumbs up - per Person'] = 'Comentario pulgares arriba - por persona';
$t['Comment'] = 'Comentario';
$t['Comments'] = 'Comentarios';
$t['Configuration'] = 'Configuración';
$t['Confirm New Password'] = 'Confirmar nueva contraseña';
$t['Congratulations!'] = '¡Felicitaciones!';
$t['Congratulations'] = 'Felicitaciones';
$t['Contact Us Today!'] = '¡Póngase en contacto con nosotros hoy!';
$t['Contact'] = 'Contacto';
$t['Continue'] = 'Continuar';
$t['Copy to Clipboard'] = 'Copiar al portapapeles';
$t['Copy'] = 'Copiar';
$t['Create a New Play List'] = 'Crea una nueva lista de reproducción';
$t['Create an Advertising'] = 'Crea una Publicidad';
$t['Created'] = 'Creado';
$t['Dashboard'] = 'Tablero';
$t['Date added (newest)'] = 'Más recientes';
$t['Date added'] = 'Fecha Agregada';
$t['Delete'] = 'Borrar';
$t['Description'] = 'Descripción';
$t['Direct upload'] = 'Subir video';
$t['Down'] = 'Abajo';
$t['Download video'] = 'Descargar video';
$t['Download'] = 'Descargar';
$t['Drop Here'] = 'Traer aquí';
$t['Duration'] = 'Duración';
$t['E-mail Address'] = 'Dirección de correo electrónico';
$t['E-mail Not Verified'] = 'Correo NO verificado';
$t['E-mail Verified'] = 'Correo verificado';
$t['E-mail'] = 'Email';
$t['Edit Video'] = 'editar video';
$t['Edit'] = 'Editar';
$t['Encode video and audio'] = 'Subir Vídeo (encoder)';
$t['Fewest'] = 'menos';
$t['First'] = 'Primero';
$t['From'] = 'De';
$t['Help'] = 'Ayuda';
$t['History'] = 'Historial';
$t['I forgot my password'] = 'Olvidé mi contraseña';
$t["If you can't view this video, your browser does not support HTML5 videos"] = 'Si no puede ver este video, su navegador no admite videos HTML5';
$t['Inactivate'] = 'Desactivar';
$t['Inactive'] = 'Desactivado';
$t['Info'] = 'Información';
$t['Is Ad'] = 'Es Ad';
$t['Language'] = 'Idioma';
$t['Last 30 Days'] = 'Últimos 30 días';
$t['Last 7 Days'] = 'Los últimos 7 días';
$t['Last'] = 'Último';
$t['Loading...'] = 'Cargando...';
$t['Login'] = 'Iniciar sesión';
$t['Logoff'] = 'Cerrar Sesión';
$t['Make it public'] = 'Hazlo público';
$t['Message could not be sent'] = 'No se pudo enviar el mensaje.';
$t['Message sent'] = 'Mensaje enviado';
$t['Message'] = 'Mensaje';
$t['Modified'] = 'Modificado';
$t['Most Popular'] = 'Más Populares';
$t['Most Watched'] = 'Más Vistos';
$t['Most popular'] = 'Más populares';
$t['Most watched'] = 'Más vistos';
$t['Most'] = 'Más';
$t['My Account'] = 'Mi cuenta';
$t['My Channel'] = 'Mi Canal';
$t['My Menu'] = 'Mi Menú';
$t['My Subscribers'] = 'Mis suscriptores';
$t['My list'] = 'Mi lista';
$t['My videos'] = 'Mis videos';
$t['Name'] = 'Nombre';
$t['New Category'] = 'Nueva categoría';
$t['New Password'] = 'Nueva contraseña';
$t['New User Groups'] = 'Nuevos grupos de usuarios';
$t['New User'] = 'Nuevo usuario';
$t['Next'] = 'Siguiente';
$t['No data available in table'] = 'No hay datos disponibles en la tabla';
$t['No results found!'] = 'No se han encontrado resultados!';
$t['Notify Subscribers'] = 'Notificar a los suscriptores';
$t['Only verified users can upload'] = 'Solo usarios verificados pueden subir medios';
$t['Original words found'] = 'Palabras originales encontradas';
$t['Password'] = 'Contraseña';
$t['Permission denied'] = 'Permiso denegado';
$t['Play'] = 'Reproducir';
$t['Please sign in'] = 'Por Favor regístrese';
$t['Preview'] = 'Avance';
$t['Previous'] = 'Anterior';
$t['Processing...'] = 'Tratamiento...';
$t['Public Video'] = 'Video público';
$t['Public'] = 'Publico';
$t['Refresh'] = 'Refrescar';
$t['Remember me'] = 'Recuerdame';
$t['Remove Autoplay Next Video'] = 'Eliminar reproducción automática Siguiente video';
$t['Save changes'] = 'Guardar cambios';
$t['Save'] = 'Guardar';
$t['Search'] = 'Buscar';
$t['Select the update'] = 'Seleccione la actualización';
$t['Send'] = 'Enviar';
$t['Share Video'] = 'Compartir video';
$t['Share'] = 'Compartir';
$t['Show _MENU_ entries'] = 'Mostrar _MENU_ entradas';
$t['Showing 0 to 0 of 0 entries'] = 'Mostrando 0 a 0 de 0 entradas';
$t['Showing _START_ to _END_ of _TOTAL_ entries'] = 'Mostrando _START_ a _END_ de _TOTAL_ entradas';
$t['Showing {{ctx.start}} to {{ctx.end}} of {{ctx.total}} entries'] = 'Mostrando {{ctx.start}} a {{ctx.end}} de {{ctx.total}} entradas';
$t['Sign In'] = 'Entrar';
$t['Sign in to add this video to a playlist.'] = 'Inicia sesión para agregar este video a una lista de reproducción.';
$t['Sign in'] = 'Inicia Sesion';
$t['Sign out'] = 'Salir';
$t['Sign up'] = 'Regístrate';
$t['Site Configurations'] = 'Configuraciones del sitio';
$t['Sorry!'] = '¡Lo siento!';
$t['Sorry'] = 'Lo siento';
$t['Sort by name'] = 'Ordenar por nombre';
$t['Status'] = 'Estado';
$t['Sub-Category-Gallery'] = 'Subcategoría-Galería';
$t['Subscribe'] = 'Suscribete';
$t['Subscriptions'] = 'Suscripciones';
$t['The original file for this video does not exists anymore'] = 'El archivo original para este video ya no existe';
$t['This e-mail will be used for this web site notifications'] = 'Este correo electrónico se utilizará para las notificaciones de este sitio web';
$t['This is where you can create groups and associate them with your videos and users. This will make your videos private. Only users who are in the same group as the videos can view them'] = 'Aquí es donde puede crear grupos y asociarlos con sus videos y usuario. Esto hará que tus videos sean privados. Solo los usuarios que están en el mismo grupo que los videos pueden verlos.';
$t['This value must match with the language files on'] = 'Este valor debe coincidir con los archivos';
$t['Thumbs Down'] = 'Pulgares abajo';
$t['Thumbs Up'] = 'Pulgares arriba';
$t['Timeline'] = 'Cronología';
$t['Title'] = 'Título';
$t['To'] = 'A';
$t['Today Views'] = 'Vistas de hoy';
$t['Total Duration Videos (Minutes)'] = 'Duración total de los videos (minutos)';
$t['Total Subscriptions'] = 'Total Suscripciones';
$t['Total Users'] = 'Total usuarios';
$t['Total Video Comments'] = 'Total Comentarios de videos';
$t['Total Videos Dislikes'] = 'Total de videos No me gusta';
$t['Total Videos Likes'] = 'Total de videos Me gusta';
$t['Total Videos Views'] = 'Total Visualizaciones de videos';
$t['Total Videos'] = 'Total de Videos';
$t['Total Views Today'] = 'Total Visualizaciones hoy';
$t['Total Views'] = 'Total Visualizaciones';
$t['Translated Array'] = 'Matriz traducida';
$t['Trending'] = 'Tendencias';
$t['Type the code'] = 'Escribe el código';
$t['Type'] = 'Escribe';
$t['Up Next'] = 'Hasta la próxima';
$t['Up'] = 'Arriba';
$t['Update AVideo System'] = 'Actualizar el sistema AVideo';
$t['Update Now'] = 'Actualizar ahora';
$t['Update the site configuration'] = 'Actualizar la configuración del sitio';
$t['Update version'] = 'Versión actualizada';
$t['Update your user'] = 'Actualiza tu usuario';
$t['Upload a Background'] = 'cargar un fondo';
$t['Upload a Photo'] = 'sube una foto';
$t['Upload your file'] = 'Sube tu archivo';
$t['User Form'] = 'Formulario de Usuario';
$t['User Groups'] = 'Grupos de Usuarios';
$t['User'] = 'Usuario';
$t['Users Groups'] = 'Grupos y Ususarios';
$t['Users'] = 'Usuarios';
$t['Verify e-mail'] = 'Verificar';
$t['Video Form'] = 'Formulario de video';
$t['Video re-encoding!'] = 'Re-codificación de video!';
$t['Video thumbs up - per Channel'] = 'Video pulgares arriba - por canal';
$t['Video views - per Channel'] = 'Vistas de video: por canal';
$t['View Details'] = 'Ver detalles';
$t['View'] = 'Ver';
$t['Views'] = 'Visitas';
$t['Want to watch this again later?'] = '¿Quieres ver esto de nuevo más tarde?';
$t['Warning'] = 'Advertencia';
$t['We could not notify anyone (%s), but we marked it as inappropriate'] = 'No pudimos notificar a nadie (%s), pero lo marcamos como inapropiado';
$t['We could not notify the video owner %s, but we marked it as inappropriate'] = 'No pudimos notificar al propietario del video %s, pero lo marcamos como inapropiado';
$t['We have not found any videos or audios to show'] = 'No hemos encontrado videos ni audios para mostrar';
$t['Web site title'] = 'Título de la página';
$t['Website'] = 'Sitio web';
$t['What is User Groups'] = '¿Qué son los grupos de usuarios?';
$t['Word Translations'] = 'Palabras traducidas';
$t['Yes, delete it!'] = 'Sí, borrarlo!';
$t['You are running AVideo version %s!'] = 'Estás ejecutando la versión de AVideo %s!';
$t['You can not manage categories'] = 'No puedes administrar categorías';
$t['You can not manage users'] = 'No puedes administrar usuarios';
$t['You can not manage videos'] = 'No se pueden administrar videos';
$t['You cannot comment on videos'] = 'No puedes comentar videos';
$t['You must login to be able to comment on videos'] = 'Debes iniciar sesión para poder comentar videos';
$t['You need a user and passsword to register'] = 'Necesitas un usuario y contraseña para registrarte';
$t['You will not be able to recover this category!'] = '¡No puedes recuperar esta categoría!';
$t['You will not be able to recover this user!'] = '¡No puedes recuperar este usuario!';
$t['You will not be able to recover this video!'] = '¡No puedes recuperar este video!';
$t['Your %s locale dir is not writable'] = 'Su dir %s locale no puede escribirse';
$t['Your category has NOT been deleted!'] = '¡Su categoría NO ha sido eliminada!';
$t['Your category has NOT been saved!'] = '¡Su categoría NO ha sido guardada!';
$t['Your category has been deleted!'] = '¡Su categoría ha sido eliminada!';
$t['Your category has been saved!'] = '¡Su categoría ha sido guardada!';
$t['Your code is not valid'] = 'Su código no es válido';
$t['Your comment has NOT been saved!'] = '¡Tu comentario no ha sido guardado!';
$t['Your comment has been saved!'] = '¡Su comentario ha sido guardado!';
$t['Your comment must be bigger then 5 characters!'] = '¡Su comentario debe tener más de 5 caracteres!';
$t['Your configurations has NOT been updated!'] = '¡Sus configuraciones NO han sido actualizadas!';
$t['Your configurations has been updated!'] = '¡Se han actualizado sus configuraciones!';
$t['Your encode video resolution is set to %s !'] = '¡Su resolución de vídeo de codificación se establece en %s!';
$t['Your language has been saved!'] = '¡Su idioma ha sido guardado!';
$t['Your maximum file size is:'] = 'El tamaño máximo de su archivo es:';
$t['Your message could not be sent!'] = '¡Su mensaje no pudo ser enviado!';
$t['Your message has been sent!'] = '¡Tu mensaje ha sido enviado!';
$t['Your password does not match!'] = '¡Su contraseña no coincide!';
$t['Your system is up to date'] = 'Tu sistema esta actualizado';
$t['Your update from file %s is done, click continue'] = 'Se ha realizado la actualización del archivo %s, haga clic en continuar';
$t['Your user has NOT been deleted!'] = '¡Su usuario NO ha sido eliminado!';
$t['Your user has NOT been saved!'] = '¡Tu usuario NO ha sido guardado!';
$t['Your user has NOT been updated!'] = '¡Tu usuario NO ha sido actualizado!';
$t['Your user has been deleted!'] = '¡Su usuario ha sido eliminado!';
$t['Your user has been saved!'] = '¡Su usuario ha sido guardado!';
$t['Your user or password is wrong!'] = 'Su usuario o contraseña está mal!';
$t['Your video has NOT been deleted!'] = '¡Tu video NO ha sido borrado!';
$t['Your video has NOT been saved!'] = '¡Tu video NO ha sido guardado!';
$t['ago'] = 'hace';
$t['day'] = 'día';
$t['days'] = 'días';
$t['is Admin'] = 'es admin';
$t['is live'] = 'es en vivo';
$t['minute'] = 'minuto';
$t['minutes'] = 'minutos';
$t['month'] = 'mes';
$t['months'] = 'meses';
$t['newest'] = 'el más nuevo';
$t['oldest'] = 'más antiguo';
$t['remaining'] = 'restante';
$t['second'] = 'segundo';
$t['seconds'] = 'segundos';
$t['subscribes'] = 'suscribete';
$t['tls OR ssl'] = 'tls O ssl';
$t['user'] = 'usuario';
$t['users'] = 'usuarios';
$t['week'] = 'semana';
$t['weeks'] = 'semanas';
$t['year'] = 'año';
$t['years'] = 'años';
// 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['%s ERROR: You must set a KEY on config'] = '%s ERROR: You must set a KEY on config';
$t['%s ERROR: You must set an ID on config'] = '%s ERROR: You must set an ID on config';
$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['AVideo URL'] = 'AVideo URL';
$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['Ad Title'] = 'Ad Title';
$t['Ad'] = 'Ad';
$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 more user Groups'] = 'Add more user Groups';
$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 Users'] = 'Admin Users';
$t['Admin'] = 'Admin';
$t["Admin's manual"] = "Admin's manual";
$t['Administration'] = 'Administration';
$t['Ads Form'] = 'Ads Form';
$t['Ads Saved!'] = 'Ads Saved!';
$t['Ads deleted!'] = 'Ads deleted!';
$t['Ads'] = 'Ads';
$t['Advanced Configuration'] = 'Advanced Configuration';
$t['Advanced configuration'] = 'Advanced configuration';
$t['Advanced configurations are disabled'] = 'Advanced configurations are disabled';
$t['Advanced'] = 'Advanced';
$t['Advertising Manager'] = 'Advertising Manager';
$t['Advertising Title'] = 'Advertising Title';
$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['Alert'] = 'Alert';
$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['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['Amount'] = 'Amount';
$t['Analytics Code'] = 'Analytics Code';
$t['Anyone with this key can watch your live stream.'] = 'Anyone with this key can watch your live stream.';
$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 only'] = 'Audio only';
$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 comment videos'] = 'Authenticated users can comment videos';
$t['Authenticated users can upload videos'] = 'Authenticated users can upload videos';
$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 Next Video URL'] = 'Autoplay Next Video URL';
$t['Autoplay Video on Load Page'] = 'Autoplay Video on Load Page';
$t['Autoplay ended'] = 'Autoplay ended';
$t['Autoplay next-video-order'] = 'Autoplay next-video-order';
$t['Back to startpage'] = 'Back to startpage';
$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['Balance Form'] = 'Balance Form';
$t['Balance'] = 'Balance';
$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['Both'] = 'Both';
$t['Bottom'] = 'Bottom';
$t['Broadcast a Live Stream'] = 'Broadcast a Live Stream';
$t['Broadcast a Live Streaming'] = 'Broadcast a Live Streaming';
$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 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 Storage'] = 'CDN Storage';
$t['CDN'] = 'CDN';
$t['Cache Manager'] = 'Cache Manager';
$t['CallbackResponse'] = 'CallbackResponse';
$t['CallbackURL'] = 'CallbackURL';
$t['Can Download'] = 'Can Download';
$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 Agreement'] = 'Cancel Agreement';
$t['Cancel'] = 'Cancel';
$t['Canceled'] = 'Canceled';
$t['Category Icon'] = 'Category Icon';
$t['Category to display this Ad'] = 'Category to display this Ad';
$t['Center'] = 'Center';
$t['Challenge Decryptor'] = 'Challenge Decryptor';
$t['Change Playlist Name'] = 'Change Playlist Name';
$t['Change Style'] = 'Change Style';
$t['Change theme'] = 'Change theme';
$t['Channel Admin'] = 'Channel Admin';
$t['Channel Art'] = 'Channel Art';
$t['Channel Description'] = 'Channel Description';
$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 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['Cloud'] = 'Cloud';
$t['Collected Date'] = 'Collected Date';
$t['Collections'] = 'Collections';
$t['Colors'] = 'Colors';
$t['Coming in'] = 'Coming in';
$t['Comment Form'] = 'Comment Form';
$t['Comments Admin'] = 'Comments Admin';
$t['Compatibility Check'] = 'Compatibility Check';
$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 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['Confirm!'] = 'Confirm!';
$t['Confirm'] = 'Confirm';
$t['Confirmation password does not match'] = 'Confirmation password does not match';
$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 video URL at current time'] = 'Copy video URL at current time';
$t['Copy video URL'] = 'Copy video URL';
$t['Copyright'] = 'Copyright';
$t['Corona News'] = 'Corona News';
$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 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 more translations'] = 'Create more translations';
$t['Create'] = 'Create';
$t['Created Date'] = 'Created Date';
$t['Culinary'] = 'Culinary';
$t['Current Style & Theme'] = 'Current Style & Theme';
$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 (oldest)'] = 'Date added (oldest)';
$t['Date'] = 'Date';
$t['Days'] = 'Days';
$t['Decrypt Message'] = 'Decrypt Message';
$t['Decrypt'] = 'Decrypt';
$t['Decrypted Text'] = 'Decrypted Text';
$t['Default'] = 'Default';
$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['Devices Stream Info'] = 'Devices Stream Info';
$t['Direct Import Local Videos'] = 'Direct Import Local Videos';
$t['Direct Import all'] = 'Direct Import all';
$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 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['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['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 your videos list'] = 'Download your videos list';
$t['Downloading'] = 'Downloading';
$t['Drag and drop to sort'] = 'Drag and drop to sort';
$t['E-mail sent'] = 'E-mail sent';
$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 can not be blank'] = 'Email can not be blank';
$t['Email verification error'] = 'Email verification error';
$t['Embed All'] = 'Embed All';
$t['Embed Codes'] = 'Embed Codes';
$t['Embed Selected'] = 'Embed Selected';
$t['Embed Stream'] = 'Embed Stream';
$t['Embed URL for trailer'] = 'Embed URL for trailer';
$t['Embed Video'] = 'Embed Video';
$t['Embed a video link'] = 'Embed a video link';
$t['Embed videos/files in your site'] = 'Embed videos/files in your site';
$t['Embed'] = 'Embed';
$t['Embedded'] = 'Embedded';
$t['Enable 2FA Login'] = 'Enable 2FA Login';
$t['Enable Ads Plugin'] = 'Enable Ads Plugin';
$t['Enable SMTP Auth'] = 'Enable SMTP Auth';
$t['Enable SMTP'] = 'Enable SMTP';
$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'] = 'Encode Video';
$t['Encoder Network'] = 'Encoder Network';
$t['Encoder URL'] = 'Encoder URL';
$t['Encoder'] = 'Encoder';
$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['Encoding'] = 'Encoding';
$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 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['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['Filter users'] = 'Filter users';
$t['Finish Datetime'] = 'Finish Datetime';
$t['Finish on'] = 'Finish on';
$t['Finish'] = 'Finish';
$t['Finishing Live...'] = 'Finishing Live...';
$t['First Name'] = 'First Name';
$t['First Page Mode'] = 'First Page Mode';
$t['First Page Style'] = 'First Page Style';
$t['First step'] = 'First step';
$t['Flat Earth'] = 'Flat Earth';
$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 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['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 Permissions'] = 'Group Permissions';
$t['Group'] = 'Group';
$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['Groups'] = 'Groups';
$t['Head Code'] = 'Head Code';
$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 Replies'] = 'Hide Replies';
$t['Hide the website to non logged users'] = 'Hide the website to non logged users';
$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['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['I would like to share this video with you:'] = 'I would like to share this video with you:';
$t['ID can not be empty'] = 'ID can not be empty';
$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 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 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['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['Invalid'] = 'Invalid';
$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['Law'] = 'Law';
$t['Layout'] = 'Layout';
$t['Leave Channel'] = 'Leave Channel';
$t['Leave blank for native code'] = 'Leave blank for native code';
$t['Left Menu'] = 'Left Menu';
$t['Left'] = 'Left';
$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['Like this video? Sign in to make your opinion count.'] = 'Like this video? Sign in to make your opinion count.';
$t['Link'] = 'Link';
$t['Links'] = 'Links';
$t['List Files'] = 'List Files';
$t['Listed Transmition'] = 'Listed Transmition';
$t['Listed'] = 'Listed';
$t['Live Chat'] = 'Live Chat';
$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['Local File'] = 'Local File';
$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 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 Bans'] = 'Manage Bans';
$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['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';
$t['Meet Schedule'] = 'Meet Schedule';
$t['Meet Topic'] = 'Meet Topic';
$t['Meet'] = 'Meet';
$t['Meeting'] = 'Meeting';
$t['Meetings you can attend'] = 'Meetings you can attend';
$t['Meetings'] = 'Meetings';
$t['Meta Data'] = 'Meta Data';
$t['Minutes'] = 'Minutes';
$t['Miscellaneous'] = 'Miscellaneous';
$t['Mobile'] = 'Mobile';
$t['Monetization'] = 'Monetization';
$t['Monetize User'] = 'Monetize User';
$t['Monetize'] = 'Monetize';
$t['Monthly'] = 'Monthly';
$t['More Chat Rooms'] = 'More Chat Rooms';
$t['More Info'] = 'More Info';
$t['More'] = 'More';
$t['Most Recent'] = 'Most Recent';
$t['Mou MUST select 2 videos to swap'] = 'Mou MUST select 2 videos to swap';
$t['Moving'] = 'Moving';
$t['Music'] = 'Music';
$t['Mute'] = 'Mute';
$t["Name can't be blank"] = "Name can't be blank";
$t['Netflix'] = 'Netflix';
$t['Network Encoders'] = 'Network Encoders';
$t['Network'] = 'Network';
$t['Never'] = 'Never';
$t['New Meet'] = 'New Meet';
$t['New program'] = 'New program';
$t['New'] = 'New';
$t['Next page'] = 'Next page';
$t['Next video NOT set'] = 'Next video NOT set';
$t['Next video order'] = 'Next video order';
$t['Next video'] = 'Next video';
$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 write Access on folder'] = 'No write Access on folder';
$t['No'] = 'No';
$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['Not loaded yet'] = 'Not loaded yet';
$t['Not ready'] = 'Not ready';
$t['Notes'] = 'Notes';
$t['Now Playing'] = 'Now Playing';
$t['Now'] = 'Now';
$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 in a new Tab'] = 'Open in a new Tab';
$t['Open pop-up Login window'] = 'Open pop-up Login window';
$t['Order'] = 'Order';
$t['Organize'] = 'Organize';
$t['Other Chats'] = 'Other Chats';
$t['Other Files'] = 'Other Files';
$t['Other Services SIGN UP'] = 'Other Services SIGN UP';
$t['Other'] = 'Other';
$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['PODCAST'] = 'PODCAST';
$t['Page %d'] = 'Page %d';
$t['Page'] = 'Page';
$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 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 Log'] = 'PayPalYPT Log';
$t['PayPalYPT'] = 'PayPalYPT';
$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 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['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 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['Player'] = 'Player';
$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 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 Form'] = 'Plugin Form';
$t['Plugin Store'] = 'Plugin Store';
$t['Plugin disabled'] = 'Plugin disabled';
$t['Plugin not enabled'] = 'Plugin not enabled';
$t['Plugin'] = 'Plugin';
$t['Plugins Id'] = 'Plugins Id';
$t['Plugins Store'] = 'Plugins Store';
$t['Plugins'] = 'Plugins';
$t['Populare'] = 'Populare';
$t['Portrait Poster'] = 'Portrait Poster';
$t['Position'] = 'Position';
$t['Poster Image'] = 'Poster Image';
$t['Poster'] = 'Poster';
$t['Predefined Category'] = 'Predefined Category';
$t['Premium Featrures'] = 'Premium Featrures';
$t['Premium'] = 'Premium';
$t['Prevent Data Loss'] = 'Prevent Data Loss';
$t['Preview-picture and gif'] = 'Preview-picture and gif';
$t['Prints Left'] = 'Prints Left';
$t['Prints'] = 'Prints';
$t['Privacy'] = 'Privacy';
$t['Private Key'] = 'Private Key';
$t['Private'] = 'Private';
$t['Pro Active'] = 'Pro Active';
$t['Process Payment'] = 'Process Payment';
$t['Process Start'] = 'Process Start';
$t['Program title'] = 'Program title';
$t['Program'] = 'Program';
$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';