-
Notifications
You must be signed in to change notification settings - Fork 30
/
en-US.php
1668 lines (1612 loc) · 94.5 KB
/
en-US.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
/* General stuff */
$LANGS['language'] = 'English (US)';
$LANGS['languageenglish'] = 'English (US)';
$LANGS['languagecode'] = 'en_US.UTF-8'; /* Leave the ".UTF-8" in the end as-is, as it might break some dates */
$LANGS['languagechange'] = 'Language has been set to English (US).';
$LANGS['numberformat'] = 1; /* If your language uses comma separators (example: 1,000,000), value will be 1. If it uses dots (example: 1.000.000) or doesn't use separators, value will be 0.*/
/* Language window */
$LANGS['welcometobitview'] = 'Welcome to BitView!';
$LANGS['languagesuggestion'] = 'Suggested Language (we have set your preference to this):';
$LANGS['languagesuggestiondesc1'] = 'To change your language preference, please use the language selector in the footer (end of the page).';
$LANGS['languagesuggestiondesc2'] = 'Click "OK" to accept this setting, or click "Cancel" to view the site in English.';
/* Time, dates, etc */
$LANGS['second'] = 'second';
$LANGS['minute'] = 'minute';
$LANGS['hour'] = 'hour';
$LANGS['day'] = 'day';
$LANGS['week'] = 'week';
$LANGS['month'] = 'month';
$LANGS['year'] = 'year';
$LANGS['seconds'] = 'seconds';
$LANGS['minutes'] = 'minutes';
$LANGS['hours'] = 'hours';
$LANGS['days'] = 'days';
$LANGS['weeks'] = 'weeks';
$LANGS['months'] = 'months';
$LANGS['years'] = 'years';
$LANGS['ago'] = '{t} ago';
$LANGS['january'] = 'January';
$LANGS['february'] = 'February';
$LANGS['march'] = 'March';
$LANGS['april'] = 'April';
$LANGS['may'] = 'May';
$LANGS['june'] = 'June';
$LANGS['july'] = 'July';
$LANGS['august'] = 'August';
$LANGS['september'] = 'September';
$LANGS['october'] = 'October';
$LANGS['november'] = 'November';
$LANGS['december'] = 'December';
$LANGS['shorttimeformat'] = '%b %e, %Y';
$LANGS['videotimeformat'] = '%b %e, %Y';
$LANGS['longtimeformat'] = '%B %e, %Y';
$LANGS['timehourformat'] = '%b %e, %Y %I:%M %p';
$LANGS['myvideostimeformat'] = '%A, %b %e %Y, %I:%M:%S %p';
$LANGS['blogpostformat'] = '%A, %B %e, %Y';
$LANGS['monthformat'] = '%B %Y';
$LANGS['timenumberformat'] = 'm.d.Y';
/* Header */
$LANGS['home'] = 'Home';
$LANGS['videos'] = 'Videos';
$LANGS['channels'] = 'Channels';
$LANGS['community'] = 'Community';
$LANGS['search'] = 'Search';
$LANGS['login'] = 'Sign In';
$LANGS['or'] = 'or';
$LANGS['signup'] = 'Create Account';
$LANGS['logout'] = 'Sign Out';
$LANGS['upload'] = 'Upload';
$LANGS['subscriptions'] = 'Subscriptions';
$LANGS['history'] = 'History';
$LANGS['account'] = 'Account';
$LANGS['myvideos'] = 'My Videos';
$LANGS['favorites'] = 'Favorites';
$LANGS['playlists'] = 'Playlists';
$LANGS['help'] = 'Help';
$LANGS['suggestions'] = 'Suggestions';
$LANGS['quicklist'] = 'QuickList';
$LANGS['browse'] = 'Browse';
$LANGS['messagesmenu'] = 'Messages';
/* Homepage */
$LANGS['viewall'] = 'view all';
$LANGS['videoviews'] = 'views';
$LANGS['beingwatched'] = 'Videos Being Watched Now';
$LANGS['featured'] = 'Featured Videos';
$LANGS['recommendedforyou'] = 'Recommended for You';
$LANGS['mostpopular'] = 'Most Popular';
$LANGS['inboxstats'] = 'Inbox & Statistics';
$LANGS['profilesettings'] = 'account settings';
$LANGS['messages'] = 'Messages';
$LANGS['message'] = 'Message';
$LANGS['comments'] = 'Comments';
$LANGS['comment'] = 'Comment';
$LANGS['sharedwithyou'] = 'Shared with You';
$LANGS['sharedwithyousingular'] = 'Shared with You';
$LANGS['videoresponses'] = 'Video Responses';
$LANGS['videoresponse'] = 'Video Response';
$LANGS['friendinvites'] = 'Friend Invites';
$LANGS['friendinvite'] = 'Friend Invite';
$LANGS['subscribers'] = 'Subscribers';
$LANGS['subscriber'] = 'Subscriber';
$LANGS['totalviews'] = 'Total views';
$LANGS['sendmessage'] = 'send message';
$LANGS['whatsnew'] = "What's New";
$LANGS['readmore'] = 'Read more in our Blog';
$LANGS['videocontest'] = 'Video Contest';
$LANGS['joincontest'] = 'Join the contest now!';
$LANGS['personalize'] = 'Want to personalize this homepage?';
$LANGS['signinnow'] = '<a href="/login">Sign In</a> or <a href="/signup">Sign Up</a> now!';
$LANGS['nowconverting'] = "This video is converting, wait a few minutes.";
$LANGS['modules'] = "Add / Remove Modules";
$LANGS['friendactivity'] = "Friend Activity";
$LANGS['customizehomepage'] = "Customize Homepage";
$LANGS['customizethehomepage'] = "Customize the Homepage";
$LANGS['customizehomepagedesc'] = "Select the modules you want to see on your customized homepage.";
$LANGS['displaypreferences'] = "Display Preferences";
$LANGS['thefeed'] = "The Feed";
$LANGS['thefeeddesc'] = "Combine all of your modules into a single feed.";
$LANGS['friendactivitytitle'] = "Friend Activity - Can people see what I do?";
$LANGS['friendactivitydesc'] = "This section shows your confirmed friends the actions that you're publicly broacasting in your recent activity history. For example, if you favorite a video, then your new favorite video might show up in your channel's Recent Activity box, as well as on your friends' homepages.";
$LANGS['feedfeatured'] = "Featured Video";
$LANGS['feedbeingwatched'] = "Video Being Watched Now";
$LANGS['feedrecommended'] = "Recommended Video";
$LANGS['homenosubscriptions'] = "You haven't subscribed to any channel yet.";
$LANGS['homenosubscriptionsdesc'] = "When you add new subscriptions, we'll show their uploads here on this page.";
$LANGS['homenofriendactivity'] = "Your friends haven't been active lately.";
$LANGS['homenofriendactivitydesc'] = "You can try adding some friends. Then, we'll show their activity here on this page.";
$LANGS['homeediting'] = "Editing";
$LANGS['homedisplay'] = "Display as";
$LANGS['homerows'] = "Number of rows to display";
$LANGS['gridview'] = "Grid View";
$LANGS['listview'] = "List View";
/* Page title */
$LANGS['hometitle'] = "{n}'s BitView";
$LANGS['channeltitle'] = "{n}'s Channel";
$LANGS['signintitle'] = "Sign In";
$LANGS['historytitle'] = "Viewing History";
$LANGS['favtitle'] = "Favorites";
$LANGS['pltitle'] = "Playlists";
$LANGS['partnerprogram'] = "Partner Program";
/* Notifications */
$LANGS['searcherror'] = 'Your search query much be at least 2 characters long!';
$LANGS['addvideoplaylist1'] = "You've added";
$LANGS['addvideoplaylist2'] = 'videos to your playlist!';
$LANGS['addfavorite1'] = "You favorited";
$LANGS['addfavorite2'] = 'videos!';
$LANGS['groupdoesnotexist'] = "This group doesn't exist!";
$LANGS['uploaddisabled'] = 'Uploading has been disabled for maintenance.';
$LANGS['10vidsday'] = 'You can not upload more than 10 videos per day! Please try uploading tomorrow.';
$LANGS['3mins'] = 'Wait 3 minutes until you upload a new video!';
$LANGS['backgroundsuccess'] = 'Background has been successfully uploaded!';
$LANGS['backgrounderror'] = 'Background image must be under 2MB and be an image file!';
$LANGS['backgrounddeleted'] = 'Background has been successfully deleted!';
$LANGS['bannersuccess'] = 'Banner has been successfully uploaded!';
$LANGS['bannererror'] = 'Banner image must be under 2MB and be an image file!';
$LANGS['bannerdeleted'] = 'Your banner has been successfully deleted!';
$LANGS['minibannersuccess'] = 'Mini banner has been successfully uploaded!';
$LANGS['minibannererror'] = 'Mini banner image must be under 2MB and be an image file!';
$LANGS['minibannerdeleted'] = 'Your mini banner has been successfully deleted!';
$LANGS['sideimagesuccess'] = 'Side image has been successfully uploaded!';
$LANGS['sideimageerror'] = 'Side image must be under 2MB and be an image file!';
$LANGS['sideimagedeleted'] = 'Side image has been successfully deleted!';
$LANGS['avatarsuccess'] = 'Avatar has been successfully uploaded!';
$LANGS['avatarerror'] = 'Avatar image must be under 1MB and be an image file!';
$LANGS['avatardeleted'] = '"Avatar has been successfully deleted!';
$LANGS['changessaved'] = 'Changes were successfully saved!';
$LANGS['profilesdisabled'] = 'Profiles have been disabled for maintenance.';
$LANGS['bulletinposted'] = 'Bulletin has been posted!';
$LANGS['channelcommentsent'] = 'Channel comment has been submitted!';
$LANGS['somethingwentwrong'] = 'Something went wrong!';
$LANGS['replysubmitted'] = 'Reply has been submitted!';
$LANGS['onlyonecomment'] = 'You can only leave one comment!';
$LANGS['vpnbrowser'] = "You can't use a VPN to create a BitView account!";
$LANGS['torbrowser'] = "You can't use TOR to create a BitView account!";
$LANGS['captchaincorrect'] = "You didn't type in the code correctly.";
$LANGS['toomanyaccounts'] = 'You have too many accounts!';
$LANGS['banned2times'] = "You've been banned 2 times already. You cannot create more accounts!";
$LANGS['nohistory'] = "You haven't watched any videos during this session yet!";
$LANGS['historycleared'] = 'Your viewing history has been cleared.';
$LANGS['watchdisabled'] = 'Video watching has been disabled for maintenance.';
$LANGS['videonotexist'] = 'This video does not exist or has been removed due to Terms of Use violation.';
$LANGS['responseerror'] = 'Something went wrong with your video response! Please check URL again.';
$LANGS['responseexist'] = 'Video has been already requested!';
$LANGS['responseadded'] = 'Video response added successfully!';
$LANGS['responseaccepted'] = 'Accepted new Video Response!';
$LANGS['60secscomment'] = 'Please wait 60 seconds before adding a new comment!';
$LANGS['plnotexist'] = "This playlist doesn't exist!";
$LANGS['positionnotexist'] = "This position doesn't exist!";
$LANGS['positionchanged'] = "Video's position changed!";
$LANGS['invalidurl'] = 'Invalid URL!';
$LANGS['videopladded'] = 'Video successfully added!';
$LANGS['videoalreadyinpl'] = 'This video is already in this playlist!';
$LANGS['plvideoremoved'] = 'Video has been removed!';
$LANGS['plinfochanged'] = 'Playlist information got successfully changed!';
$LANGS['pltitleneeded'] = 'You must set a title for the playlist!';
$LANGS['flashenabled'] = 'Adobe Flash Player enabled!';
$LANGS['flashdisabled'] = 'Adobe Flash Player disabled!';
$LANGS['messagesent'] = 'Message has been successfully sent!';
$LANGS['usernotexist'] = "This user doesn't exist!";
$LANGS['nocriteria'] = "You don't meet the required criteria!";
$LANGS['alreadypartner'] = 'You have already been accepted into the partners program!';
$LANGS['alreadyapplied'] = 'You have already applied!';
$LANGS['applicationsent'] = 'Your application has been submitted!';
$LANGS['joinedgroup'] = 'You successfully joined the group!';
$LANGS['leftgroup'] = 'You successfully left the group!';
$LANGS['grouprequest'] = 'You successfully sent a group request! Now you must wait for it to be accepted.';
$LANGS['groupdeleted'] = 'Group has successfully been deleted!';
$LANGS['groupvideoadded'] = 'Video has been submitted!';
$LANGS['groupvideoalreadyadded'] = 'You already submitted this video!';
$LANGS['groupvideonotowned'] = "You don't own this video!";
$LANGS['3groups'] = 'You can only own up to 3 groups!';
$LANGS['groupnameempty'] = 'Group name cannot be left empty!';
$LANGS['groupdescempty'] = 'Group description cannot be left empty!';
$LANGS['groupnoimage'] = 'You must upload an image for your group!';
$LANGS['groupimageerror'] = 'Group images must be under 1MB and be an image file!';
$LANGS['groupcreated'] = 'Group has succesfully been created!';
$LANGS['urlnotvalid'] = "This isn't a valid video URL!";
$LANGS['discussiondeleted'] = 'Topic successfully deleted!';
$LANGS['videodeleted'] = 'Video has successfully been deleted!';
$LANGS['pldeleted'] = 'Playlist has successfully been deleted!';
$LANGS['invitesent'] = 'Friend Invite has successfully been sent!';
$LANGS['descriptionchanged'] = 'The description has been changed!';
$LANGS['emptymessage'] = 'You cannot send empty messages!';
$LANGS['styleupdated'] = 'Group styling has been successfully updated!';
$LANGS['imageupdated'] = 'Group image has been successfully updated!';
$LANGS['plcreated'] = 'Playlist has been successfully created!';
$LANGS['discussiontitle2chars'] = 'Title must be over 2 characters!';
$LANGS['discussiondesc10chars'] = 'Descriptions must be over 10 characters!';
$LANGS['5discussionsday'] = 'You can only make up to 5 discussions a day!';
$LANGS['discussionsuccess'] = 'Discussion successfully created!';
$LANGS['memberaccepted1'] = '';
$LANGS['memberaccepted2'] = 'was successfully accepted!';
$LANGS['memberdeclined1'] = '';
$LANGS['memberdeclined2'] = 'was successfully declined!';
$LANGS['videoaccepted'] = 'The video was successfully accepted!';
$LANGS['bulletindeleted'] = 'Bulletin successfully deleted!';
$LANGS['messagedeleted'] = 'Message successfully deleted!';
$LANGS['responsedeleted'] = 'Successfully deleted Video Response!';
$LANGS['flagmod'] = 'You cannot report user that have moderator permissions!';
$LANGS['userflagged'] = 'Report has been submitted!';
$LANGS['discussionreplysubmitted'] = 'Reply has been successfully sent!';
$LANGS['discussionreplyempty'] = 'A reply cannot be left empty!';
/* Watch */
$LANGS['moreinfo'] = 'more info';
$LANGS['lessinfo'] = 'less info';
$LANGS['category'] = 'Category';
$LANGS['recordedon'] = 'Recorded on';
$LANGS['location'] = 'Location';
$LANGS['tags'] = 'Tags';
$LANGS['embed'] = 'Embed';
$LANGS['partnervideo'] = 'Partner Video';
$LANGS['subscribe'] = 'Subscribe';
$LANGS['unsubscribe'] = 'Unsubscribe';
$LANGS['nodesc'] = 'No Description...';
$LANGS['logintosub'] = 'Please log in to subscribe!';
$LANGS['logintosubbox'] = 'Want to Subscribe?';
$LANGS['subyourself'] = 'You cannot subscribe to yourself!';
$LANGS['videoowner'] = 'Video Owner Options';
$LANGS['editvideo'] = 'Edit Video';
$LANGS['insight'] = 'Insight';
$LANGS['morefrom'] = 'More From:';
$LANGS['relatedvideos'] = 'Related Videos';
$LANGS['novideosfound'] = 'No Videos Found...';
$LANGS['morevideos'] = 'See all videos';
$LANGS['changeplayersize'] = 'Change Player Size';
$LANGS['newwindow'] = 'Watch this video in a new window';
$LANGS['featuredtext'] = 'This video has been Featured. Want to see more Featured videos? <a href="/browse?t=2">Click here</a>.';
$LANGS['ratings'] = 'ratings';
$LANGS['rating'] = 'rating';
$LANGS['favorite'] = 'Favorite';
$LANGS['addtofav'] = 'Add to Favorites';
$LANGS['removefav'] = 'Remove from Favorites';
$LANGS['favadded'] = 'This video has been <strong>added</strong> to your <a href="/my_favorites">Favorites</a>.';
$LANGS['favremoved'] = 'This video has been <strong>removed</strong> from your <a href="/my_favorites">Favorites</a>.';
$LANGS['undo'] = 'Undo';
$LANGS['thanksforrating'] = 'Thanks for rating!';
$LANGS['playlistdesc'] = 'To add a new video to your playlist, go to the <a href="/my_playlists">"My Playlists"</a> page.';
$LANGS['addtoplaylist'] = 'Add To Playlist';
$LANGS['addtoplaylistsuccess'] = 'The video has been added to your playlist.';
$LANGS['share'] = 'Share';
$LANGS['flag'] = 'Flag';
$LANGS['flagthisvid'] = 'Flag This Video';
$LANGS['removeflag'] = 'Remove Flag';
$LANGS['flagnote'] = "Before reporting: please make sure that video break any rule. Don't report just because you don't like that video, otherwise you'll be be hindering moderators' job.";
$LANGS['statadded'] = 'Added';
$LANGS['statviews'] = 'Views';
$LANGS['statratings'] = 'Ratings';
$LANGS['statresponses'] = 'Responses';
$LANGS['statcomments'] = 'Comments';
$LANGS['statfavorited'] = 'Favorited';
$LANGS['statsdata'] = 'Statistics & Data';
$LANGS['honors'] = 'Honors for this video';
$LANGS['mostviewed'] = 'Most Viewed';
$LANGS['topfavorited'] = 'Top Favorited';
$LANGS['times'] = 'times';
$LANGS['mostdiscussed'] = 'Most Discussed';
$LANGS['toprated'] = 'Top Rated';
$LANGS['videolinks'] = 'Sites linking to this video';
$LANGS['clicksfrom'] = 'clicks from';
$LANGS['responses'] = 'Video Responses';
$LANGS['responsespost'] = 'Post a Video Response';
$LANGS['textcomments'] = 'Text Comments';
$LANGS['commentpost'] = 'Post a Text Comment';
$LANGS['commentonthisvideo'] = 'Comment on this video';
$LANGS['postcomment'] = 'Post Comment';
$LANGS['remainingcounter'] = 'Remaining character count';
$LANGS['nocomments'] = 'This video has <b>no Comments</b>.';
$LANGS['noresponses'] = 'This video has <b>no Responses</b>.';
$LANGS['commviewall'] = 'View All';
$LANGS['delete'] = 'Delete';
$LANGS['reply'] = 'Reply';
$LANGS['commentlogin'] = 'Would you like to Comment?';
$LANGS['commentlogindesc'] = '<a href="/signup">Join BitView</a> for a free account or <a href="/login">sign in</a> if you are already a member.';
$LANGS['logintoresponse'] = 'Sign in to post a Video Response';
$LANGS['logintocomment'] = 'Sign in to post a Comment';
$LANGS['logintofav'] = 'Want to add to Favorites? <a href="/login">Sign In</a> or <a href="/signup">Sign Up</a> now!';
$LANGS['logintopl'] = 'Want to add to Playlists? <a href="/login">Sign In</a> or <a href="/signup">Sign Up</a> now!';
$LANGS['logintoflag'] = 'Want to flag a video? <a href="/login">Sign In</a> or <a href="/signup">Sign Up</a> now!';
$LANGS['close'] = 'close';
$LANGS['addresponse'] = 'Add Response';
$LANGS['recentlyrated'] = 'Recently rated';
$LANGS['commentsdisabled'] = 'Adding comments has been disabled for this video.';
$LANGS['ratingsdisabled'] = 'Ratings disabled';
$LANGS['rating1'] = 'Poor';
$LANGS['rating2'] = 'Nothing special';
$LANGS['rating3'] = 'Worth watching';
$LANGS['rating4'] = 'Pretty cool';
$LANGS['rating5'] = 'Awesome!';
$LANGS['saving'] = 'Saving...';
$LANGS['signintorate'] = '<a href="/login">Sign in</a> to rate';
$LANGS['addingcomment'] = "Adding comment...";
$LANGS['commentposted'] = "Comment Posted!";
$LANGS['commentspammsg'] = "Posting the same comment again is considered spam. Try again later.";
$LANGS['commentspammsg2'] = "Posting more than 5 comments consecutively is considered spam. Try again later.";
$LANGS['emptycomment'] = "Your comment can't be empty.";
$LANGS['spambutton'] = "Spam";
$LANGS['notspambutton'] = "Not Spam";
$LANGS['commentsspam'] = "Comment(s) marked as spam";
$LANGS['marked'] = "Marked as spam";
$LANGS['spamshow'] = "Show";
$LANGS['spamhide'] = "Hide";
$LANGS['poorcomment'] = "Poor comment";
$LANGS['goodcomment'] = "Good comment";
$LANGS['pleasesignin'] = "Please sign in";
$LANGS['showmorecomments'] = "Show More Comments";
$LANGS['showingamount'] = "<strong>Showing {number}</strong> of {total} comments";
$LANGS['customize'] = "Customize";
$LANGS['customizedesc'] = "After making your selection, copy and paste the embed code above. The code changes based on your selection.";
$LANGS['editvideodetail'] = "Edit Video Detail";
$LANGS['editannotations'] = "Edit annotations";
$LANGS['insightstats'] = "Insight stats";
$LANGS['allowratingscheck'] = "Allow this video to be <b>rated</b> by others.";
$LANGS['thisvideoispublic'] = "This video is public.";
$LANGS['thisvideoisprivate'] = "This video is private.";
$LANGS['thisvideois'] = "This video is";
$LANGS['like'] = "Like";
$LANGS['saveto'] = "Save to";
$LANGS['uservideoamount'] = "{n} videos";
$LANGS['respondvideo'] = "Respond to this video...";
$LANGS['signinnowcomment'] = '<a href="/login">Sign In</a> or <a href="/signup">Sign Up</a> now to post a comment!';
$LANGS['charactersremaining'] = 'characters remaining';
$LANGS['attachavideo'] = 'Attach a video';
$LANGS['commentok'] = 'OK';
$LANGS['commenterror'] = 'Error';
$LANGS['highestratedcomments'] = 'Highest Rated Comments';
$LANGS['options'] = 'Options';
$LANGS['openplaylist'] = 'Open Playlist';
$LANGS['autoplayon'] = 'Autoplay (on)';
$LANGS['autoplayoff'] = 'Autoplay (off)';
$LANGS['playlistposition'] = '<b>{n1}</b> of {n2}';
$LANGS['nextin'] = 'Next in {n}';
$LANGS['subscribetooltip'] = "Click to be notified of new videos from this channel";
$LANGS['unsubscribetooltip'] = "Click to stop being notified of new videos from this channel";
$LANGS['liketooltip'] = "I like this";
$LANGS['disliketooltip'] = "I dislike this";
$LANGS['likeratiotooltip'] = "{l} likes, {d} dislikes";
$LANGS['savetotooltip'] = "Save to favorites or playlist";
$LANGS['sharetooltip'] = "Share this video";
$LANGS['embedtooltip'] = "Get video embed code";
$LANGS['flagtooltip'] = "Flag as inappropriate";
$LANGS['voteuptooltip'] = "Vote Up";
$LANGS['votedowntooltip'] = "Vote Down";
$LANGS['flagspamtooltip'] = "Flag for spam";
$LANGS['removetooltip'] = "Remove";
$LANGS['likemessage'] = "You like this video. Thanks for the feedback!<br>See more <a href='/my_liked_videos'>videos you liked</a>.";
$LANGS['dislikemessage'] = "You like this video. Thanks for the feedback!";
$LANGS['ratingsforthisvideo'] = "Ratings for this video";
$LANGS['liketotal'] = "{l} total";
/* Watch comments */
$LANGS['allcomments'] = 'All Comments';
/* Player */
$LANGS['fullscreen'] = "Full screen";
$LANGS['expand'] = "Expand";
$LANGS['shrink'] = "Shrink";
$LANGS['popout'] = "Pop out";
$LANGS['mute'] = "Mute";
$LANGS['unmute'] = "Unmute";
/* Sign In */
$LANGS['username'] = "Username";
$LANGS['password'] = "Password";
$LANGS['logindesc'] = "Sign in to BitView with your account";
$LANGS['forgot'] = "Can't access your account?";
$LANGS['forgotmsg'] = 'Please contact us on Twitter (@BitView_) or send a message to the Moderators on the Discord. (link in footer)';
$LANGS['noaccount'] = "Don't have an account?";
$LANGS['signuptobv'] = "Sign up for BitView!";
$LANGS['signintobv'] = "Sign in to BitView!";
$LANGS['signindesc1'] = "Join the largest worldwide video-sharing community!";
$LANGS['signindesc2'] = "BitView is a way to get your videos to the people who matter to you. With BitView you can:";
$LANGS['signindesc3'] = "Show off your favorite videos to the world";
$LANGS['signindesc4'] = "Blog the videos you take with your digital camera or cell phone";
$LANGS['signindesc5'] = "Securely and privately show videos to your friends and family around the world";
$LANGS['notallowed'] = "You've been banned 3 times already. You aren't allowed to use BitView anymore!";
$LANGS['wrongpassword'] = 'Wrong password! Please try again.';
$LANGS['staysigned'] = "Stay signed in";
/* Sign Up */
$LANGS['email'] = "Email Address";
$LANGS['passwordstrength'] = "Password strength";
$LANGS['psnone'] = "None";
$LANGS['psweak'] = "Weak";
$LANGS['psfair'] = "Fair";
$LANGS['psgood'] = "Good";
$LANGS['psstrong'] = "Strong";
$LANGS['repassword'] = "Re-type Password";
$LANGS['usernamedesc'] = "Your username can only contain letters A-Z or numbers 0-9.";
$LANGS['captcha'] = "Captcha";
$LANGS['acceptterms'] = 'I agree to the <a href="/terms">Terms of Use</a> and <a href="/privacy">Privacy Policy</a>.';
$LANGS['copyrighttext'] = 'Uploading materials that you do not own is a copyright violation and against the law. If you upload material you do not own, your account will be deleted.';
$LANGS['mustaccept'] = 'You must accept the Terms of Use and Privacy Policy to create your account';
$LANGS['createaccount'] = 'Create my account';
$LANGS['signuperror'] = 'There was an error while creating your account.';
$LANGS['sameemail'] = 'This username or email is already in use!';
$LANGS['usernamechar'] = 'Usernames can only contain characters and numbers!';
$LANGS['required'] = 'All text fields are required!';
$LANGS['notmatch'] = "The passwords don't match!";
$LANGS['signuphead'] = 'Get started with your account';
/* Videos Page */
$LANGS['recentvideos'] = 'Recent Videos';
$LANGS['random'] = 'Random';
$LANGS['dropdownmore'] = 'more';
$LANGS['allcatin'] = 'in';
$LANGS['allcat'] = 'All Categories';
$LANGS['categories'] = 'Categories';
$LANGS['nomorevideos'] = 'No more videos were found...';
$LANGS['timetoday'] = 'Today';
$LANGS['timeweek'] = 'This Week';
$LANGS['timemonth'] = 'This Month';
$LANGS['alltime'] = 'All Time';
$LANGS['when'] = 'When';
$LANGS['videofavorites'] = 'favorites';
$LANGS['videocomments'] = 'comments';
$LANGS['trendingtopics'] = 'Trending Topics';
/* Channels Page */
$LANGS['mostsubscribed'] = 'Most Subscribed';
$LANGS['lastlogin'] = 'Last Sign In';
$LANGS['cstatviews'] = 'Views';
$LANGS['cstatvideos'] = 'Videos';
$LANGS['cstatsubs'] = 'Subscribers';
$LANGS['nochannels'] = 'No more channels were found...';
/* Video Categories */
$LANGS['cat1'] = "Film & Animation";
$LANGS['cat2'] = "Autos & Vehicles";
$LANGS['cat3'] = "Education & Instructional";
$LANGS['cat4'] = "Entertainment";
$LANGS['cat5'] = "Events & Weddings";
$LANGS['cat6'] = "Family";
$LANGS['cat7'] = "For Sale & Auctions";
$LANGS['cat8'] = "Hobbies & Interests";
$LANGS['cat9'] = "Humor";
$LANGS['cat10'] = "Music";
$LANGS['cat11'] = "News & Politics";
$LANGS['cat12'] = "Odd & Outragous";
$LANGS['cat13'] = "People & Blogs";
$LANGS['cat14'] = "Personals & Dating";
$LANGS['cat15'] = "Pets & Animals";
$LANGS['cat16'] = "Science & Technology";
$LANGS['cat17'] = "Short Movies";
$LANGS['cat18'] = "Sports";
$LANGS['cat19'] = "Travel & Events";
$LANGS['cat20'] = "Gaming";
$LANGS['cat21'] = "Videoblogging";
/* Channel Types */
$LANGS['type0'] = "None";
$LANGS['type1'] = "Member";
$LANGS['type1p'] = "Members";
$LANGS['type2'] = "Comedian";
$LANGS['type2p'] = "Comedians";
$LANGS['type3'] = "Director";
$LANGS['type3p'] = "Directors";
$LANGS['type4'] = "Guru";
$LANGS['type4p'] = "Gurus";
$LANGS['type5'] = "Musician";
$LANGS['type5p'] = "Musicians";
$LANGS['type6'] = "Reporter";
$LANGS['type6p'] = "Reporters";
/* Countries */
$LANGS['cat_AF'] = "Afghanistan";
$LANGS['cat_AX'] = "Åland Islands";
$LANGS['cat_AL'] = "Albania";
$LANGS['cat_DZ'] = "Algeria";
$LANGS['cat_AS'] = "American Samoa";
$LANGS['cat_AD'] = "Andorra";
$LANGS['cat_AO'] = "Angola";
$LANGS['cat_AI'] = "Anguilla";
$LANGS['cat_AQ'] = "Antarctica";
$LANGS['cat_AG'] = "Antigua and Barbuda";
$LANGS['cat_AR'] = "Argentina";
$LANGS['cat_AM'] = "Armenia";
$LANGS['cat_AW'] = "Aruba";
$LANGS['cat_AU'] = "Australia";
$LANGS['cat_AT'] = "Austria";
$LANGS['cat_AZ'] = "Azerbaijan";
$LANGS['cat_BS'] = "Bahamas";
$LANGS['cat_BH'] = "Bahrain";
$LANGS['cat_BD'] = "Bangladesh";
$LANGS['cat_BB'] = "Barbados";
$LANGS['cat_BY'] = "Belarus";
$LANGS['cat_BE'] = "Belgium";
$LANGS['cat_BZ'] = "Belize";
$LANGS['cat_BJ'] = "Benin";
$LANGS['cat_BM'] = "Bermuda";
$LANGS['cat_BT'] = "Bhutan";
$LANGS['cat_BO'] = "Bolivia";
$LANGS['cat_BQ'] = "Caribbean Netherlands";
$LANGS['cat_BA'] = "Bosnia and Herzegovina";
$LANGS['cat_BW'] = "Botswana";
$LANGS['cat_BV'] = "Bouvet Island";
$LANGS['cat_BR'] = "Brazil";
$LANGS['cat_IO'] = "British Indian Ocean Territory";
$LANGS['cat_BN'] = "Brunei Darussalam";
$LANGS['cat_BG'] = "Bulgaria";
$LANGS['cat_BF'] = "Burkina Faso";
$LANGS['cat_BI'] = "Burundi";
$LANGS['cat_KH'] = "Cambodia";
$LANGS['cat_CM'] = "Cameroon";
$LANGS['cat_CA'] = "Canada";
$LANGS['cat_CV'] = "Cape Verde";
$LANGS['cat_KY'] = "Cayman Islands";
$LANGS['cat_CF'] = "Central African Republic";
$LANGS['cat_TD'] = "Chad";
$LANGS['cat_CL'] = "Chile";
$LANGS['cat_CN'] = "China";
$LANGS['cat_CX'] = "Christmas Island";
$LANGS['cat_CC'] = "Cocos (Keeling) Islands";
$LANGS['cat_CO'] = "Colombia";
$LANGS['cat_KM'] = "Comoros";
$LANGS['cat_CG'] = "Republic of the Congo";
$LANGS['cat_CD'] = "Democratic Republic of the Congo";
$LANGS['cat_CK'] = "Cook Islands";
$LANGS['cat_CR'] = "Costa Rica";
$LANGS['cat_CI'] = "Côte d'Ivoire";
$LANGS['cat_HR'] = "Croatia";
$LANGS['cat_CU'] = "Cuba";
$LANGS['cat_CW'] = "Curaçao";
$LANGS['cat_CY'] = "Cyprus";
$LANGS['cat_CZ'] = "Czech Republic";
$LANGS['cat_DK'] = "Denmark";
$LANGS['cat_DJ'] = "Djibouti";
$LANGS['cat_DM'] = "Dominica";
$LANGS['cat_DO'] = "Dominican Republic";
$LANGS['cat_EC'] = "Ecuador";
$LANGS['cat_EG'] = "Egypt";
$LANGS['cat_SV'] = "El Salvador";
$LANGS['cat_GQ'] = "Equatorial Guinea";
$LANGS['cat_ER'] = "Eritrea";
$LANGS['cat_EE'] = "Estonia";
$LANGS['cat_ET'] = "Ethiopia";
$LANGS['cat_FK'] = "Falkland Islands (Malvinas)";
$LANGS['cat_FO'] = "Faroe Islands";
$LANGS['cat_FJ'] = "Fiji";
$LANGS['cat_FI'] = "Finland";
$LANGS['cat_FR'] = "France";
$LANGS['cat_GF'] = "French Guiana";
$LANGS['cat_FG'] = "French Guiana";
$LANGS['cat_PF'] = "French Polynesia";
$LANGS['cat_TF'] = "French Southern Territories";
$LANGS['cat_GA'] = "Gabon";
$LANGS['cat_GM'] = "Gambia";
$LANGS['cat_GE'] = "Georgia";
$LANGS['cat_DE'] = "Germany";
$LANGS['cat_GH'] = "Ghana";
$LANGS['cat_GI'] = "Gibraltar";
$LANGS['cat_GR'] = "Greece";
$LANGS['cat_GL'] = "Greenland";
$LANGS['cat_GD'] = "Grenada";
$LANGS['cat_GP'] = "Guadalupe";
$LANGS['cat_GU'] = "Guam";
$LANGS['cat_GT'] = "Guatemala";
$LANGS['cat_GG'] = "Guernsey";
$LANGS['cat_GN'] = "Guinea";
$LANGS['cat_GW'] = "Guinea-Bissau";
$LANGS['cat_GY'] = "Guyana";
$LANGS['cat_HT'] = "Haiti";
$LANGS['cat_HM'] = "Heard Island and McDonald Islands";
$LANGS['cat_VA'] = "Holy See (Vatican City State)";
$LANGS['cat_HN'] = "Honduras";
$LANGS['cat_HK'] = "Hong Kong";
$LANGS['cat_HU'] = "Hungary";
$LANGS['cat_IS'] = "Iceland";
$LANGS['cat_IN'] = "India";
$LANGS['cat_ID'] = "Indonesia";
$LANGS['cat_IR'] = "Iran";
$LANGS['cat_IQ'] = "Iraq";
$LANGS['cat_IE'] = "Ireland";
$LANGS['cat_IM'] = "Isle of Man";
$LANGS['cat_IL'] = "Israel";
$LANGS['cat_IT'] = "Italy";
$LANGS['cat_JM'] = "Jamaica";
$LANGS['cat_JP'] = "Japan";
$LANGS['cat_JE'] = "Jersey";
$LANGS['cat_JO'] = "Jordan";
$LANGS['cat_KZ'] = "Kazakhstan";
$LANGS['cat_KE'] = "Kenya";
$LANGS['cat_KI'] = "Kiribati";
$LANGS['cat_XK'] = "Kosovo";
$LANGS['cat_KP'] = "North Korea";
$LANGS['cat_KR'] = "South Korea";
$LANGS['cat_KW'] = "Kuwait";
$LANGS['cat_KG'] = "Kyrgyzstan";
$LANGS['cat_LA'] = "Laos";
$LANGS['cat_LV'] = "Latvia";
$LANGS['cat_LB'] = "Lebanon";
$LANGS['cat_LS'] = "Lesotho";
$LANGS['cat_LR'] = "Liberia";
$LANGS['cat_LY'] = "Libya";
$LANGS['cat_LI'] = "Liechtenstein";
$LANGS['cat_LT'] = "Lithuania";
$LANGS['cat_LU'] = "Luxembourg";
$LANGS['cat_MO'] = "Macao";
$LANGS['cat_MK'] = "North Macedonia";
$LANGS['cat_MG'] = "Madagascar";
$LANGS['cat_MW'] = "Malawi";
$LANGS['cat_MY'] = "Malaysia";
$LANGS['cat_MV'] = "Maldives";
$LANGS['cat_ML'] = "Mali";
$LANGS['cat_MT'] = "Malta";
$LANGS['cat_MH'] = "Marshall Islands";
$LANGS['cat_MQ'] = "Martinique";
$LANGS['cat_MR'] = "Mauritania";
$LANGS['cat_MU'] = "Mauritius";
$LANGS['cat_YT'] = "Mayotte";
$LANGS['cat_MX'] = "Mexico";
$LANGS['cat_FM'] = "Micronesia";
$LANGS['cat_MD'] = "Moldova";
$LANGS['cat_MC'] = "Monaco";
$LANGS['cat_MN'] = "Mongolia";
$LANGS['cat_ME'] = "Montenegro";
$LANGS['cat_MS'] = "Montserrat";
$LANGS['cat_MA'] = "Morocco";
$LANGS['cat_MZ'] = "Mozambique";
$LANGS['cat_MM'] = "Myanmar";
$LANGS['cat_NA'] = "Namibia";
$LANGS['cat_NR'] = "Nauru";
$LANGS['cat_NP'] = "Nepal";
$LANGS['cat_NL'] = "Netherlands";
$LANGS['cat_AN'] = "Netherlands Antilles";
$LANGS['cat_NC'] = "New Caledonia";
$LANGS['cat_NZ'] = "New Zealand";
$LANGS['cat_NI'] = "Nicaragua";
$LANGS['cat_NE'] = "Niger";
$LANGS['cat_NG'] = "Nigeria";
$LANGS['cat_NU'] = "Niue";
$LANGS['cat_NF'] = "Norfolk Island";
$LANGS['cat_MP'] = "Northern Mariana Islands";
$LANGS['cat_NO'] = "Norway";
$LANGS['cat_OM'] = "Oman";
$LANGS['cat_PK'] = "Pakistan";
$LANGS['cat_PW'] = "Palau";
$LANGS['cat_PS'] = "Palestine";
$LANGS['cat_PA'] = "Panama";
$LANGS['cat_PG'] = "Papua New Guinea";
$LANGS['cat_PY'] = "Paraguay";
$LANGS['cat_PE'] = "Peru";
$LANGS['cat_PH'] = "Philippines";
$LANGS['cat_PN'] = "Pitcairn";
$LANGS['cat_PL'] = "Poland";
$LANGS['cat_PT'] = "Portugal";
$LANGS['cat_PR'] = "Puerto Rico";
$LANGS['cat_QA'] = "Qatar";
$LANGS['cat_RE'] = "Réunion";
$LANGS['cat_RO'] = "Romania";
$LANGS['cat_RU'] = "Russia";
$LANGS['cat_RW'] = "Rwanda";
$LANGS['cat_BL'] = "Saint Barthélemy";
$LANGS['cat_SH'] = "Saint Helena";
$LANGS['cat_KN'] = "Saint Kitts and Nevis";
$LANGS['cat_LC'] = "Saint Lucia";
$LANGS['cat_MF'] = "Saint Martin (French part)";
$LANGS['cat_PM'] = "Saint Pierre and Miquelon";
$LANGS['cat_VC'] = "Saint Vincent and the Grenadines";
$LANGS['cat_WS'] = "Samoa";
$LANGS['cat_SM'] = "San Marino";
$LANGS['cat_ST'] = "Sao Tome and Principe";
$LANGS['cat_SA'] = "Saudi Arabia";
$LANGS['cat_SN'] = "Senegal";
$LANGS['cat_RS'] = "Serbia";
$LANGS['cat_SC'] = "Seychelles";
$LANGS['cat_SL'] = "Sierra Leone";
$LANGS['cat_SG'] = "Singapore";
$LANGS['cat_SX'] = "Sint Maarten";
$LANGS['cat_SK'] = "Slovakia";
$LANGS['cat_SI'] = "Slovenia";
$LANGS['cat_SB'] = "Solomon Islands";
$LANGS['cat_SO'] = "Somalia";
$LANGS['cat_ZA'] = "South Africa";
$LANGS['cat_GS'] = "South Georgia and the South Sandwich Islands";
$LANGS['cat_ES'] = "Spain";
$LANGS['cat_LK'] = "Sri Lanka";
$LANGS['cat_SD'] = "Sudan";
$LANGS['cat_SR'] = "Suriname";
$LANGS['cat_SJ'] = "Svalbard and Jan Mayen";
$LANGS['cat_SZ'] = "Swaziland";
$LANGS['cat_SE'] = "Sweden";
$LANGS['cat_CH'] = "Switzerland";
$LANGS['cat_SS'] = "South Sudan";
$LANGS['cat_SY'] = "Syria";
$LANGS['cat_TW'] = "Taiwan";
$LANGS['cat_TJ'] = "Tajikistan";
$LANGS['cat_TZ'] = "Tanzania";
$LANGS['cat_TH'] = "Thailand";
$LANGS['cat_TL'] = "Timor-Leste";
$LANGS['cat_TG'] = "Togo";
$LANGS['cat_TK'] = "Tokelau";
$LANGS['cat_TO'] = "Tonga";
$LANGS['cat_TT'] = "Trinidad and Tobago";
$LANGS['cat_TN'] = "Tunisia";
$LANGS['cat_TR'] = "Turkey";
$LANGS['cat_TM'] = "Turkmenistan";
$LANGS['cat_TC'] = "Turks and Caicos Islands";
$LANGS['cat_TV'] = "Tuvalu";
$LANGS['cat_UG'] = "Uganda";
$LANGS['cat_UA'] = "Ukraine";
$LANGS['cat_AE'] = "United Arab Emirates";
$LANGS['cat_GB'] = "United Kingdom";
$LANGS['cat_US'] = "United States";
$LANGS['cat_UM'] = "United States Minor Outlying Islands";
$LANGS['cat_UY'] = "Uruguay";
$LANGS['cat_UZ'] = "Uzbekistan";
$LANGS['cat_VU'] = "Vanatu";
$LANGS['cat_VE'] = "Venezuela";
$LANGS['cat_VN'] = "Vietnam";
$LANGS['cat_VG'] = "Virgin Islands, British";
$LANGS['cat_VI'] = "Virgin Islands, U.S.";
$LANGS['cat_WF'] = "Wallis and Futuna";
$LANGS['cat_EH'] = "Western Sahara";
$LANGS['cat_YE'] = "Yemen";
$LANGS['cat_ZM'] = "Zambia";
$LANGS['cat_ZW'] = "Zimbabwe";
/* My Subscriptions */
$LANGS['newvideos'] = "New Videos";
$LANGS['addselectedto'] = "Add the selected videos to:";
$LANGS['addtoplaylists'] = "Add to Playlists";
/* Account */
$LANGS['myaccount'] = "My Account";
$LANGS['vidsfavs'] = "Videos, Favorites and Playlists";
$LANGS['accountsettings'] = "Account Settings";
$LANGS['viewinghistory'] = "History";
$LANGS['mychannel'] = "My Channel";
$LANGS['uploadedvideos'] = "Uploaded Videos";
$LANGS['new'] = "New";
$LANGS['playlist'] = "Playlist";
$LANGS['videoupload'] = "Video Upload";
$LANGS['nosubvideos'] = "You have no subscriptions...";
$LANGS['nofavvideos'] = "You haven't favorited any video...";
/* My Videos */
$LANGS['sortby'] = "Sort by";
$LANGS['sorttitle'] = "Title";
$LANGS['sorttime'] = "Time";
$LANGS['sortdateadded'] = "Date Added";
$LANGS['sortviews'] = "Views";
$LANGS['sortrating'] = "Rating";
$LANGS['stattime'] = "Time";
$LANGS['statrating'] = "Rating";
$LANGS['statbroadcast'] = "Broadcast";
$LANGS['statrawfile'] = "Raw File";
$LANGS['public'] = "Public";
$LANGS['private'] = "Private";
$LANGS['live'] = "Live!";
$LANGS['converting'] = "Converting...";
$LANGS['uploading'] = "Uploading...";
$LANGS['addvidsto'] = "Add Videos to";
$LANGS['play'] = "Play";
$LANGS['edit'] = "Edit";
$LANGS['setasavatar'] = "Set Thumbnail as Avatar";
$LANGS['downloadmp4'] = "Download MP4";
$LANGS['deleteconfirmation'] = "Are you sure you want to delete this video?";
$LANGS['novideos'] = 'You have not uploaded any videos. <a href="/my_videos_upload">Start uploading a video now</a>!';
$LANGS['nomyvideosresults'] = "No results. Check if your spelling is correct.";
/* Edit Video */
$LANGS['infoandsettings'] = "Info and Settings";
$LANGS['annotations'] = "Annotations";
$LANGS['captionsandsubtitles'] = "Captions and Subtitles";
$LANGS['viewonvideopage'] = "View on video page »";
$LANGS['title'] = "Title";
$LANGS['title'] = "Title";
$LANGS['desc'] = "Description";
$LANGS['privacy'] = "Privacy";
$LANGS['saveinfo'] = "Save Info";
$LANGS['saveinfoconfirm'] = "Are you sure you want to change the video information?";
$LANGS['viewchart'] = "View Chart";
$LANGS['videodetails'] = "Video Details";
$LANGS['backtopreviouspage'] = "Back to Previous Page";
$LANGS['editsavechanges'] = "Save Changes";
$LANGS['editcancel'] = "cancel";
$LANGS['videoinfo'] = "Video Information";
$LANGS['videothumbnail'] = "Video Thumbnail";
$LANGS['uploadthumbnail'] = "Upload Thumbnail";
$LANGS['customthumbdesc'] = 'To set a custom thumbnail, click the thumbnail on the left side and select your desired image file. Then, click "Upload Thumbnail".';
$LANGS['customthumbtitle'] = 'Do you want to change this thumbnail?';
$LANGS['customthumbinfo'] = 'Custom thumbnails are exclusive to partners. To read more about the advantages of joining the partner program and its requirements, click the button below.';
$LANGS['partnerreadmore'] = 'Read more';
$LANGS['broadcastingoptions'] = 'Broadcasting and Sharing Options';
$LANGS['publicdesc'] = "anyone can search for and view - recommended";
$LANGS['privatedesc'] = "only specific BitView users can view";
$LANGS['allowcomments'] = "Allow comments automatically";
$LANGS['allowfriendcomments'] = "Only friends can comment";
$LANGS['disablecomments'] = "Don't allow comments";
$LANGS['dateandmap'] = "Date and Map";
$LANGS['clear'] = "Clear";
$LANGS['allowratings'] = "Yes, allow this video to be rated by others.";
$LANGS['dontallowratings'] = "No, don't allow this video to be rated.";
$LANGS['updatevideo'] = "Update Video";
$LANGS['updatevideofilesize'] = "(maximum file size: 100MB)";
/* Edit Video Annotations */
$LANGS['publish'] = "Publish";
$LANGS['published'] = "Published";
$LANGS['saved'] = "Saved";
$LANGS['notvaliddate'] = "You have entered an unvalid timestamp!";
$LANGS['outsiderange'] = "You have entered a timestamp outside of the video duration range!";
$LANGS['video_pl'] = "Paste a link to a Video";
$LANGS['playlist_pl'] = "Paste a link to a Playlist";
$LANGS['channel_pl'] = "Enter an username";
$LANGS['group_pl'] = "Paste a link to a Group";
$LANGS['search_pl'] = "Enter your search query";
$LANGS['entertext'] = "Enter your text here";
$LANGS['loading'] = "Loading...";
$LANGS['addlink'] = "Add link";
$LANGS['linktype'] = "Link Type";
$LANGS['group'] = "Group";
$LANGS['composemessage'] = "Compose Message";
$LANGS['videoresponseupload'] = "Video Response Upload";
$LANGS['searchquery'] = "BitView Search Query";
$LANGS['entervalidurl'] = "Please enter a valid URL";
/* My Playlists */
$LANGS['addedpl'] = "Added";
$LANGS['frompl'] = "From";
$LANGS['nopl'] = "No Playlists were found....";
/* My Playlist */
$LANGS['playlistedit'] = "Edit Playlist";
$LANGS['videourl'] = "Video URL";
$LANGS['add'] = "Add";
$LANGS['editinfo'] = "Edit Info";
$LANGS['editdetails'] = "Edit details";
$LANGS['deleteplaylist'] = "Delete playlist";
$LANGS['addvideostoplaylist'] = "Add videos to playlist";
$LANGS['novideoswerefound'] = "No videos were found.";
$LANGS['position'] = "Position";
$LANGS['move'] = "Move";
$LANGS['deleteplaylistconfirmdesc'] = "Are you sure you want to delete <strong>{p}</strong>?<br><br>Note: Deleting playlists is a permanent action and cannot be undone.";
$LANGS['deleteplaylistconfirm'] = "Yes, delete it";
$LANGS['titledesctags'] = "Title, description, tags";
$LANGS['savechangespl'] = "Save changes";
/* Edit Playlist */
$LANGS['pledittitle'] = "Edit Playlist";
$LANGS['pleditdesc'] = "Playlists are collection of videos which you can set up the way you want.";
$LANGS['cancel'] = "Cancel";
/* Create Playlist */
$LANGS['createplaylisttitle'] = "Create Video Playlist";
$LANGS['createplaylist'] = "Create Playlist";
/* View Playlist */
$LANGS['plpermalink'] = "Playlist/URL (Permalink):";
$LANGS['sortcomments'] = "Comments";
$LANGS['unsorted'] = "Unsorted";
$LANGS['playallvideos'] = "Play All Videos";
/* Inbox */
$LANGS['compose'] = "Compose";
$LANGS['from'] = "From";
$LANGS['subject'] = "Subject";
$LANGS['date'] = "Date";
$LANGS['allmsg'] = "All Messages";
$LANGS['msgcom'] = "Comments";
$LANGS['sentmsg'] = "Sent Messages";
$LANGS['nomsg'] = "You have no Messages...";
$LANGS['personalmessages'] = "Personal Messages";
$LANGS['sharedwithyouinbox'] = "Shared with You";
$LANGS['friendinvitesinbox'] = "Friend Invites";
$LANGS['videoresponsesinbox'] = "Video Responses";
$LANGS['sent'] = "Sent";
$LANGS['attachvideo'] = "Attach Video";
$LANGS['msgchannelcomment'] = "Comment on your channel";
$LANGS['msgcomment'] = "Comment on your video";
$LANGS['msgvideoresponse'] = "Video response on your video";
$LANGS['msgmention'] = "Mention on a video";
$LANGS['msgmentionchannel'] = "Mention on {channel}'s channel";
/* Address Book */
$LANGS['addressbook'] = "Address Book";
$LANGS['allcontacts'] = "All Contacts";
$LANGS['selectedcontacts'] = "Selected Contacts";
$LANGS['choosecontacts'] = "Choose from your list of contacts";
$LANGS['friendssince'] = "Friends since";
$LANGS['friendsinvitenot'] = "Friend invite not accepted yet";
$LANGS['friendstatus'] = "Friend Status";
$LANGS['unselect'] = "Unselect";
$LANGS['unselectall'] = "Unselect All";
$LANGS['nocontacts'] = "No contacts...";
$LANGS['selectacontact'] = "Please select at least a contact to delete!";
$LANGS['selectacontactmsg'] = "Please select at least a contact to message!";
$LANGS['selectonecompose'] = "You can not compose to multiple contacts at once!<br>Please, select the contact you wish to send a message.";
/* Insight */
$LANGS['insighttitle'] = "Insight: Statistics and Data";
$LANGS['allvideos'] = "All Videos";
$LANGS['summary'] = "Summary";
$LANGS['demographics'] = "Demographics";
$LANGS['viewsdesc'] = "How many views are my videos getting?";
$LANGS['demodesc'] = "Who is subscribed to my channel?";
$LANGS['commdesc'] = "Where are my subscribers located?";
$LANGS['video'] = "Video";
$LANGS['topvideos'] = "Top videos";
$LANGS['viewspercentage'] = "Views (% of total)";
$LANGS['percentoftotalviews'] = "% of total views";
$LANGS['searchmyvideos'] = "Search My Videos";
$LANGS['insufdemo'] = "There is insufficient data to display Demographics. Try selecting a different time range.";
$LANGS['ageranges'] = "Age ranges for both genders";
$LANGS['genderranges'] = "Genders for all age groups";
$LANGS['engdesc'] = "Number of users that have commented, favorited or rated your videos";
$LANGS['engagements'] = "Community engagements";
$LANGS['dailysubs'] = "Daily subscribers";
$LANGS['daily'] = "Daily";
$LANGS['total'] = "Total";
$LANGS['insightvideodesc'] = "How many times has this video been watched?";
$LANGS['videototalviews'] = "Total views";
$LANGS['dailyviews'] = "Daily views";
/* Send Message */
$LANGS['messagecont'] = "Message";
$LANGS['to'] = "To";
$LANGS['sendmessagebutton'] = "Send Message";
/* Groups */
$LANGS['groups'] = "Groups";
$LANGS['joinedgroups'] = "Joined Groups";
$LANGS['recentgroups'] = "Recent Groups";
$LANGS['mostmembers'] = "Most Members";
$LANGS['mostvideos'] = "Most Videos";
$LANGS['groupmostdiscussed'] = "Most Discussed";
$LANGS['createagroup'] = "Create a Group";
$LANGS['groupvideos'] = "Videos";
$LANGS['groupmembers'] = "Members";
$LANGS['discussions'] = "Discussions";
$LANGS['groupcreated'] = "Created";
$LANGS['nogroups'] = "No Groups found...";
/* Group */
$LANGS['jointhisgroup'] = "Join This Group";
$LANGS['removerequest'] = "Remove Request";
$LANGS['leavegroup'] = "Leave Group";
$LANGS['moderation'] = "Moderation";
$LANGS['viewallvideos'] = "View All Videos";
$LANGS['addvideo'] = "Add Video";
$LANGS['novideos'] = "No Videos...";
$LANGS['nodiscussions'] = "No Discussions...";
$LANGS['creatediscussion'] = "Create Discussion";
$LANGS['topostatopic'] = "to post a topic.";
$LANGS['topic'] = "Topic";
$LANGS['author'] = "Author";
$LANGS['replies'] = "Replies";
$LANGS['lastpost'] = "Last Post";
$LANGS['viewallmembers'] = "View All Members";
$LANGS['owner'] = "Owner";
$LANGS['grouptype'] = "Type";
$LANGS['instantjoin'] = "Instant Join";
$LANGS['approvalrequired'] = "Approval Required";
$LANGS['groupurl'] = "URL";
$LANGS['deletediscussion'] = "Delete Discussion";
$LANGS['postreply'] = "Post Reply";
$LANGS['post'] = "Post";
$LANGS['accept'] = "Accept";
$LANGS['decline'] = "Decline";
/* Group Moderation */
$LANGS['groupmoderation'] = "Group Moderation";
$LANGS['approvemembers'] = "Approve Members";