forked from Bittoco/BitView-Translations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjk-DL.php
1509 lines (1458 loc) · 87.5 KB
/
jk-DL.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'] = 'Brizzle Dialect';
$LANGS['languageenglish'] = 'Brizzle Dialect';
$LANGS['languagecode'] = 'dl_BS.UTF-8';
$LANGS['languagechange'] = "yews language’ been set to Brizzle mind.";
$LANGS['numberformat'] = 1; /* If yews language uses comma separatawls (example: 1,000,000), valuawl 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'] = 'Yews Suggested Language (we av set yews preference to dis mind):';
$LANGS['languagesuggestiondesc1'] = 'To change yews language preference, please use the language selectawl in the footer (end of the page).';
$LANGS['languagesuggestiondesc2'] = 'Click "OK" to accept this setting, or click "Cancawl" to view the site in Brizzle Dialect.';
/* 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['ago1'] = ''; /* Explanation: Text before "x seconds/minutes/hours..." Example: "hace (1 día)" in Spanish. If yews language doesn't use this, leave it empty like dis: ''*/
$LANGS['ago2'] = ' ago'; /* Explanation: ago2 -> Text after "x seconds/minutes/hours..." Example: "(1 day) ago" in English, "(1 anno) fa" in Italian. If your language doesn't use this, leave it empty like this: ''*/
$LANGS['january'] = 'January';
$LANGS['february'] = 'February';
$LANGS['march'] = 'March';
$LANGS['april'] = 'Aprawl';
$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'] = '%e %b %Y';
$LANGS['videotimeformat'] = '%e %B %Y';
$LANGS['longtimeformat'] = '%e %B %Y';
$LANGS['timehourformat'] = '%e %B %Y %I:%M %p';
$LANGS['myvideostimeformat'] = '%A, %e %b %Y, %I:%M:%S %p';
$LANGS['blogpostformat'] = '%A, %e %B %Y';
$LANGS['monthformat'] = '%B %Y';
$LANGS['timenumberformat'] = 'd/m/Y';
/* Header */
$LANGS['home'] = 'Ome';
$LANGS['videos'] = 'Vidjoes';
$LANGS['channels'] = 'Channawls';
$LANGS['community'] = 'Communitee';
$LANGS['search'] = 'Search';
$LANGS['login'] = 'Sign In';
$LANGS['or'] = 'or';
$LANGS['signup'] = 'Create Yews Account';
$LANGS['logout'] = 'Sign Out';
$LANGS['upload'] = 'Upload';
$LANGS['subscriptions'] = 'Subscriptions';
$LANGS['history'] = 'Historee';
$LANGS['account'] = 'Account';
$LANGS['myvideos'] = 'My Videos';
$LANGS['favorites'] = 'Favourites';
$LANGS['playlists'] = 'Playlists';
$LANGS['help'] = 'Elp';
$LANGS['suggestions'] = 'Suggestions';
$LANGS['quicklist'] = 'QuickList';
$LANGS['browse'] = 'Browse';
/* Homepage */
$LANGS['viewall'] = 'view all';
$LANGS['videoviews'] = 'views';
$LANGS['beingwatched'] = 'Vidjoes Being Watched Now';
$LANGS['featured'] = 'Gert Lush Vidjoes';
$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'] = 'Vidjoe Responses';
$LANGS['videoresponse'] = 'Vidjoe Response';
$LANGS['friendinvites'] = 'Babber Invites';
$LANGS['friendinvite'] = 'Babber 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 mind';
$LANGS['videocontest'] = 'Vidjoe Contest';
$LANGS['joincontest'] = 'Join the contest now!';
$LANGS['personalize'] = 'Want to customise this homepage?';
$LANGS['signinnow'] = '<a href="/login">Sign In</a> or <a href="/signup">Sign Up</a> now!';
$LANGS['nowconverting'] = "Dis vidjoe converting, wait a few moments love.";
$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 babbers the actions that you're publicly broacasting in your recent activity history. For example, if you favourite a vidjoe, then your new favourite vidjoe might show up in your channel's Recent Activity box, as well as on your babbers' homepages.";
$LANGS['feedfeatured'] = "Featured Vidjoe";
$LANGS['feedbeingwatched'] = "Vidjoe Being Watched Now";
$LANGS['feedrecommended'] = "Recommended Vidjoe";
$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 babbers haven't been active lately.";
$LANGS['homenofriendactivitydesc'] = "You can try adding some babbers. 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['homepretitle'] = ""; /* Explanation: Use if "BitView" goes before the username. Example: "BitView de username" in Spanish. If your language doesn't use this, leave it empty like this: ''*/
$LANGS['homeposttitle'] = "'s BitView"; /* Explanation: Use if "BitView" goes after the username. Example: "username's BitView" in English. If your language doesn't use this, leave it empty like this: '' */
$LANGS['chpretitle'] = "Channawl"; /* Explanation: Use if "channel" goes before the username. Example: "Canal de username" in Spanish. If your language doesn't use this, leave it empty like this: ''*/
$LANGS['chposttitle'] = "'s Channawl"; /* Explanation: Use if "channel" goes after the username. Example: "username's Channel" in English. If your language doesn't use this, leave it empty like this: '' */
$LANGS['signintitle'] = "Sign In";
$LANGS['historytitle'] = "Viewing History";
$LANGS['favtitle'] = "Favourites";
$LANGS['pltitle'] = "Playlists";
$LANGS['partnerprogram'] = "Partner Programme";
/* Notifications */
$LANGS['searcherror'] = 'Yew search query much be at least 2 characters long mind!';
$LANGS['addvideoplaylist1'] = "Yew’s added";
$LANGS['addvideoplaylist2'] = 'videos to yew playlist!';
$LANGS['addfavorite1'] = "Yew favourited";
$LANGS['addfavorite2'] = 'videos!';
$LANGS['groupdoesnotexist'] = "This group doesn't exist!";
$LANGS['uploaddisabled'] = 'Uploading has been disabled for maintenance mind.';
$LANGS['10vidsday'] = 'Yew can not upload more than 10 videos a day! Please try uploading tomorrow.';
$LANGS['3mins'] = 'Wait 3 minutes until you upload a new video!';
$LANGS['backgroundsuccess'] = 'Background as been successfully uploaded!';
$LANGS['backgrounderror'] = 'Background image must be under 2MB and be an image file!';
$LANGS['backgrounddeleted'] = 'Background as been successfully deleted!';
$LANGS['bannersuccess'] = 'Banner as been successfully uploaded!';
$LANGS['bannererror'] = 'Banner image must be under 2MB and be an image file!';
$LANGS['bannerdeleted'] = 'Your banner as been successfully deleted!';
$LANGS['minibannersuccess'] = 'Mini banner as been successfully uploaded!';
$LANGS['minibannererror'] = 'Mini banner image must be under 2MB and be an image file!';
$LANGS['minibannerdeleted'] = 'Your mini banner as been successfully deleted!';
$LANGS['sideimagesuccess'] = 'Side image as been successfully uploaded!';
$LANGS['sideimageerror'] = 'Side image must be under 2MB and be an image file!';
$LANGS['sideimagedeleted'] = 'Side image as been successfully deleted!';
$LANGS['avatarsuccess'] = 'Avatar as been successfully uploaded!';
$LANGS['avatarerror'] = 'Avatar image must be under 1MB and be an image file!';
$LANGS['avatardeleted'] = '"Avatar as been successfully deleted!';
$LANGS['changessaved'] = 'Changes were successfully saved!';
$LANGS['profilesdisabled'] = 'Profiles have been disabled for maintenance.';
$LANGS['bulletinposted'] = 'Bulletin as been posted!';
$LANGS['channelcommentsent'] = 'Channawl comment as been submitted!';
$LANGS['somethingwentwrong'] = 'Something went wrong!';
$LANGS['replysubmitted'] = 'Reply as been submitted!';
$LANGS['onlyonecomment'] = 'Yew can only leave one comment!';
$LANGS['vpnbrowser'] = "Yew can't use a VPN to create a BitView account!";
$LANGS['torbrowser'] = "Yew can't use TOR to create a BitView account!";
$LANGS['captchaincorrect'] = "yew didn't type in the code correctly.";
$LANGS['toomanyaccounts'] = 'Yew ave a lot of accounts!';
$LANGS['banned2times'] = "Yews been banned 2 times already. Yew cannot create more accounts!";
$LANGS['nohistory'] = "Yew aven't watched any vidjoes during this session yet!";
$LANGS['historycleared'] = 'Yew viewing historee has been cleared.';
$LANGS['watchdisabled'] = 'Vidjoe watching as been disabled for maintenance.';
$LANGS['videonotexist'] = 'This vidjoe din’t exist or as been removed due to Terms of Service violation.';
$LANGS['responseerror'] = 'Something went wrong with yews vidjoe response! Please check URL again.';
$LANGS['responseexist'] = 'Vidjoe as been already requested!';
$LANGS['responseadded'] = 'Vidjoe response added successfully!';
$LANGS['responseaccepted'] = 'Accepted new Vidjoe 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'] = "Vidjoe's position changed!";
$LANGS['invalidurl'] = 'Invalid URL!';
$LANGS['videopladded'] = 'Vidjoe successfully added!';
$LANGS['videoalreadyinpl'] = 'This vidjoe is already in this playlist!';
$LANGS['plvideoremoved'] = 'Vidjoe as been removed!';
$LANGS['plinfochanged'] = 'Playlist information got successfully changed!';
$LANGS['pltitleneeded'] = 'Yew 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'] = "Yew don't meet the required criteria!";
$LANGS['alreadypartner'] = 'Yews already been accepted into the parnters programme!';
$LANGS['alreadyapplied'] = 'Yews already applied!';
$LANGS['applicationsent'] = 'Yews applications submitted love!';
$LANGS['joinedgroup'] = 'Yew successfully joined the group!';
$LANGS['leftgroup'] = 'Yew successfully left the group!';
$LANGS['grouprequest'] = 'Yew successfully sent a group request! Now yew must wait for it to be accepted.';
$LANGS['groupdeleted'] = 'Group has successfully been deleted!';
$LANGS['groupvideoadded'] = 'Vidjoeas been submitted!';
$LANGS['groupvideoalreadyadded'] = 'Yew already submitted this vidjoe!';
$LANGS['groupvideonotowned'] = "Yew don't own this vidjoe!";
$LANGS['3groups'] = 'Yew 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'] = 'Yew must upload an image for your group!';
$LANGS['groupimageerror'] = 'Group images must be under 1MB and be an image file!';
$LANGS['groupcreated'] = 'Group as succesfully been created!';
$LANGS['urlnotvalid'] = "This din’t a valid video URL!";
$LANGS['discussiondeleted'] = 'Topic successfully deleted!';
$LANGS['videodeleted'] = 'Vidjoe as successfully been deleted!';
$LANGS['pldeleted'] = 'Playlist as successfully been deleted!';
$LANGS['invitesent'] = 'Friend Invite as successfully been sent!';
$LANGS['descriptionchanged'] = 'The description has been changed!';
$LANGS['emptymessage'] = "You can’t send empty messages!";
$LANGS['styleupdated'] = 'Group styling as been successfully updated!';
$LANGS['imageupdated'] = 'Group image as been successfully updated!';
$LANGS['plcreated'] = 'Playlist as been successfully created!';
$LANGS['discussiontitle2chars'] = 'Title must be over 2 characters!';
$LANGS['discussiondesc10chars'] = 'Descriptions must be over 10 characters!';
$LANGS['5discussionsday'] = 'Yew 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 vidjoe was successfully accepted!';
$LANGS['bulletindeleted'] = 'Bulletin successfully deleted!';
$LANGS['messagedeleted'] = 'Message successfully deleted!';
$LANGS['responsedeleted'] = 'Successfully deleted Vidjoe Response!';
$LANGS['flagmod'] = "Yew can’t report user that have moderator permissions!";
$LANGS['userflagged'] = "Report been sent!";
$LANGS['discussionreplysubmitted'] = 'Reply been sent!';
$LANGS['discussionreplyempty'] = "A reply can’t 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 Vidjoe';
$LANGS['subscribe'] = 'Subscribe';
$LANGS['unsubscribe'] = 'Unsubscribe';
$LANGS['nodesc'] = 'No Description...';
$LANGS['logintosub'] = 'Please log in to subscribe!';
$LANGS['logintosubbox'] = 'Wanna Subscribe?';
$LANGS['subyourself'] = "Yew can’t subscribe to yewself!";
$LANGS['videoowner'] = 'Vidjoe Owner Options';
$LANGS['editvideo'] = 'Edit Vidjoe';
$LANGS['insight'] = 'Insight';
$LANGS['morefrom'] = 'More From:';
$LANGS['relatedvideos'] = 'Related Vidjoes';
$LANGS['novideosfound'] = 'No Vidjoes Found...';
$LANGS['morevideos'] = 'See awl vidjoes';
$LANGS['changeplayersize'] = 'Change Player Size';
$LANGS['newwindow'] = 'Watch this vidjoe in a new window';
$LANGS['featuredtext'] = 'This vidjoe as been Featured like. Wanna see more Featured videos? <a href="/browse?t=2">Click here</a>.';
$LANGS['ratings'] = 'ratings';
$LANGS['rating'] = 'rating';
$LANGS['favorite'] = 'Favourite';
$LANGS['addtofav'] = 'Add to Favourites';
$LANGS['removefav'] = 'Remove from Favourites';
$LANGS['favadded'] = 'This vidjoe has been <strong>added</strong> to your <a href="/my_favorites">Favourites</a>.';
$LANGS['favremoved'] = 'This vidjoe has been <strong>removed</strong> from your <a href="/my_favorites">Favourites</a>.';
$LANGS['undo'] = 'Undo';
$LANGS['thanksforrating'] = 'Thanks for rating me babber!';
$LANGS['playlistdesc'] = 'To add a new vidjoe to yew playlist, go to the <a href="/my_playlists">"My Playlists"</a> page.';
$LANGS['addtoplaylist'] = 'Add To Playlist';
$LANGS['addtoplaylistsuccess'] = 'The vidjoe has been added to your playlist me love.';
$LANGS['share'] = 'Share';
$LANGS['flag'] = 'Flag';
$LANGS['flagthisvid'] = 'Flag This Vidjoe';
$LANGS['removeflag'] = 'Remove Flag';
$LANGS['flagnote'] = "Before reporting: please make sure that vidjoe break any rule. Don't report just because yew don't like that vidjoe, otherwise yews be hindering moderators' job.";
$LANGS['statadded'] = 'Added';
$LANGS['statviews'] = 'Views';
$LANGS['statratings'] = 'Ratings';
$LANGS['statresponses'] = 'Responses';
$LANGS['statcomments'] = 'Comments';
$LANGS['statfavorited'] = 'Favourited';
$LANGS['statsdata'] = 'Statistics & Datawl';
$LANGS['honors'] = 'Onours for this vidjoe';
$LANGS['mostviewed'] = 'Most Viewed';
$LANGS['topfavorited'] = 'Top Favourited';
$LANGS['times'] = 'times';
$LANGS['mostdiscussed'] = 'Most Discussed';
$LANGS['toprated'] = 'Top Rated';
$LANGS['videolinks'] = 'Sites linking to this vidjoe';
$LANGS['clicksfrom'] = 'clicks from';
$LANGS['responses'] = 'Vidjoe Responses';
$LANGS['responsespost'] = 'Post a Vidjoe Response';
$LANGS['textcomments'] = 'Text Comments';
$LANGS['commentpost'] = 'Post a Text Comment';
$LANGS['commentonthisvideo'] = 'Comment on this vidjoe';
$LANGS['postcomment'] = 'Post Comment';
$LANGS['remainingcounter'] = 'Remaining character count';
$LANGS['nocomments'] = 'This vidjoe as <b>no Comments</b>.';
$LANGS['noresponses'] = 'This vidjoe as <b>no Responses</b>.';
$LANGS['commviewall'] = 'View Awl';
$LANGS['delete'] = 'Delete';
$LANGS['reply'] = 'Reply';
$LANGS['commentlogin'] = 'Would yew 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 Vidjoe Response';
$LANGS['logintocomment'] = 'Sign in to post a Comment';
$LANGS['logintofav'] = 'Wanna add to Favourites? <a href="/login">Sign In</a> or <a href="/signup">Sign Up</a> now!';
$LANGS['logintopl'] = 'Wanna add to Playlists? <a href="/login">Sign In</a> or <a href="/signup">Sign Up</a> now!';
$LANGS['logintoflag'] = 'Wanna flag a vidjoe? <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 vidjoe.';
$LANGS['ratingsdisabled'] = 'Ratings disabled';
$LANGS['rating1'] = 'Crap';
$LANGS['rating2'] = 'Rubbish';
$LANGS['rating3'] = 'Good';
$LANGS['rating4'] = 'Lush';
$LANGS['rating5'] = 'Gurt Lush!';
$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.";
/* Watch comments */
$LANGS['allcomments'] = 'All Comments';
/* Sign In */
$LANGS['username'] = "Username";
$LANGS['password'] = "Password";
$LANGS['logindesc'] = "Sign in to BitView with yews account";
$LANGS['forgot'] = "Can't access yews 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 vidjoe-sharing communitee!";
$LANGS['signindesc2'] = "BitView is a way to get yews vidjoes to the people who matter to yew. With BitView yew can:";
$LANGS['signindesc3'] = "Show yews favourite vidjoes to the world or Barry down ";
$LANGS['signindesc4'] = "Blog the vidjoes yew take with yews digital camera or mobile like";
$LANGS['signindesc5'] = "Securelee and privatelee show vidjoes to yews babbers and familee around the world";
$LANGS['notallowed'] = "Yews been banned 3 times already. Yew aren't allowed to use BitView anymore!";
$LANGS['wrongpassword'] = 'Wrong password! Please try again.';
$LANGS['staysigned'] = "Stay signed in";
/* Sign Up */
$LANGS['email'] = "Emawl Address";
$LANGS['passwordstrength'] = "Password strength";
$LANGS['psnone'] = "None";
$LANGS['psweak'] = "Rubbish";
$LANGS['psfair'] = "Alright";
$LANGS['psgood'] = "Fine";
$LANGS['psstrong'] = "Loverly";
$LANGS['repassword'] = "Re-type Password";
$LANGS['usernamedesc'] = "Yews username can only contain le’ers A-Z or numbers 0-9.";
$LANGS['captcha'] = "Captchawl";
$LANGS['acceptterms'] = 'I agree to the <a href="/terms">Terms of Service</a> and <a href="/privacy">Privacy Policy</a>.';
$LANGS['copyrighttext'] = "Uploading materials that yews don’t own is a copyright violation and against the law. If yews upload material yew do not own, yews account will be deleted.";
$LANGS['mustaccept'] = 'Yews must agree to the Terms of Use and Privacy Policy to create yews account.';
$LANGS['createaccount'] = 'Create my account';
$LANGS['signuperror'] = "There’s an error while creating yews account.";
$LANGS['sameemail'] = 'This username or emawl 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 yews account';
/* Videos Page */
$LANGS['recentvideos'] = 'Recent Vidjoes';
$LANGS['random'] = 'Random';
$LANGS['dropdownmore'] = 'more';
$LANGS['allcatin'] = 'in';
$LANGS['allcat'] = 'All Categories';
$LANGS['categories'] = 'Categories';
$LANGS['nomorevideos'] = 'No more vidjoes 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'] = 'Vidjoes';
$LANGS['cstatsubs'] = 'Subscribers';
$LANGS['nochannels'] = 'No more channels were found...';
/* Video Categories */
$LANGS['cat1'] = "Film & Animation";
$LANGS['cat2'] = "Autos & Vehicawls";
$LANGS['cat3'] = "Education & Instructionawls";
$LANGS['cat4'] = "Entertainment";
$LANGS['cat5'] = "Events & Weddings";
$LANGS['cat6'] = "Familee";
$LANGS['cat7'] = "For Sale & Auctions";
$LANGS['cat8'] = "Obbies & Interests";
$LANGS['cat9'] = "Umour";
$LANGS['cat10'] = "Music";
$LANGS['cat11'] = "News & Politics";
$LANGS['cat12'] = "Odd & Outragous";
$LANGS['cat13'] = "Peopawl & Blogs";
$LANGS['cat14'] = "Personawls & Dating";
$LANGS['cat15'] = "Pets & Animawls";
$LANGS['cat16'] = "Science & Technology";
$LANGS['cat17'] = "Short Films";
$LANGS['cat18'] = "Sport";
$LANGS['cat19'] = "Travawl & Events";
$LANGS['cat20'] = "Gaming";
$LANGS['cat21'] = "Vidjoeblogging";
/* Channel Types */
$LANGS['type0'] = "None";
$LANGS['type1'] = "Member";
$LANGS['type1p'] = "Members";
$LANGS['type2'] = "Comedian";
$LANGS['type2p'] = "Comedians";
$LANGS['type3'] = "Directawl";
$LANGS['type3p'] = "Directawls";
$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'] = "Albaniawl";
$LANGS['cat_DZ'] = "Algeriawl";
$LANGS['cat_AS'] = "Americawl Samoa";
$LANGS['cat_AD'] = "Andorrawl";
$LANGS['cat_AO'] = "Angolawl";
$LANGS['cat_AI'] = "Anguillawl";
$LANGS['cat_AQ'] = "Antarcticawl";
$LANGS['cat_AG'] = "Antiguawl and Barbudawl";
$LANGS['cat_AR'] = "Argentinawl";
$LANGS['cat_AM'] = "Armeniawl";
$LANGS['cat_AW'] = "Arubawl";
$LANGS['cat_AU'] = "Australiawl";
$LANGS['cat_AT'] = "Austriawl";
$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'] = "Bosniawl and Herzegovina";
$LANGS['cat_BW'] = "Botswanawl";
$LANGS['cat_BV'] = "Bouvet Island";
$LANGS['cat_BR'] = "Brazil";
$LANGS['cat_IO'] = "British Indian Ocean Territory";
$LANGS['cat_BN'] = "Brunei Darussalam";
$LANGS['cat_BG'] = "Bulgariawl";
$LANGS['cat_BF'] = "Burkina Faso";
$LANGS['cat_BI'] = "Burundi";
$LANGS['cat_KH'] = "Cambodiawl";
$LANGS['cat_CM'] = "Cameroon";
$LANGS['cat_CA'] = "Canadawl";
$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'] = "Chinawl";
$LANGS['cat_CX'] = "Christmas Island";
$LANGS['cat_CC'] = "Cocos (Keeling) Islands";
$LANGS['cat_CO'] = "Colombiawl";
$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'] = "Costawl Ricawl";
$LANGS['cat_CI'] = "Côte d'Ivoire";
$LANGS['cat_HR'] = "Croatiawl";
$LANGS['cat_CU'] = "Cubawl";
$LANGS['cat_CW'] = "Curaçao";
$LANGS['cat_CY'] = "Cyprus";
$LANGS['cat_CZ'] = "Czech Republic";
$LANGS['cat_DK'] = "Demmark";
$LANGS['cat_DJ'] = "Djibouti";
$LANGS['cat_DM'] = "Dominicawl";
$LANGS['cat_DO'] = "Dominicawl Republic";
$LANGS['cat_EC'] = "Ecuador";
$LANGS['cat_EG'] = "Egypt";
$LANGS['cat_SV'] = "El Salvador";
$LANGS['cat_GQ'] = "Equatorial Guinea";
$LANGS['cat_ER'] = "Eritreawl";
$LANGS['cat_EE'] = "Estoniawl";
$LANGS['cat_ET'] = "Ethiopiawl";
$LANGS['cat_FK'] = "Falkland Islands (Malvinawl)";
$LANGS['cat_FO'] = "Faroe Islands";
$LANGS['cat_FJ'] = "Fiji";
$LANGS['cat_FI'] = "Finland";
$LANGS['cat_FR'] = "France";
$LANGS['cat_GF'] = "French Guianawls";
$LANGS['cat_FG'] = "French Guianawls";
$LANGS['cat_PF'] = "French Polynesiawls";
$LANGS['cat_TF'] = "French Southern Territories";
$LANGS['cat_GA'] = "Gabon";
$LANGS['cat_GM'] = "Gambiawl";
$LANGS['cat_GE'] = "Georgiawl";
$LANGS['cat_DE'] = "Germany";
$LANGS['cat_GH'] = "Ghanawl";
$LANGS['cat_GI'] = "Gibraltar";
$LANGS['cat_GR'] = "Greece";
$LANGS['cat_GL'] = "Greenland";
$LANGS['cat_GD'] = "Grenadawl";
$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 McDonawld 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'] = "Indiawl";
$LANGS['cat_ID'] = "Indonesiawl";
$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'] = "Jamaicawl";
$LANGS['cat_JP'] = "Japan";
$LANGS['cat_JE'] = "Jersey";
$LANGS['cat_JO'] = "Jordan";
$LANGS['cat_KZ'] = "Kazakhstan";
$LANGS['cat_KE'] = "Kenyawl";
$LANGS['cat_KI'] = "Kiribati";
$LANGS['cat_XK'] = "Kosovo";
$LANGS['cat_KP'] = "North Koreawl";
$LANGS['cat_KR'] = "South Koreawl";
$LANGS['cat_KW'] = "Kuwait";
$LANGS['cat_KG'] = "Kyrgyzstan";
$LANGS['cat_LA'] = "Laos";
$LANGS['cat_LV'] = "Latviawl";
$LANGS['cat_LB'] = "Lebanon";
$LANGS['cat_LS'] = "Lesotho";
$LANGS['cat_LR'] = "Liberiawl";
$LANGS['cat_LY'] = "Libya";
$LANGS['cat_LI'] = "Liechtenstein";
$LANGS['cat_LT'] = "Lithuaniawl";
$LANGS['cat_LU'] = "Luxembourg";
$LANGS['cat_MO'] = "Macao";
$LANGS['cat_MK'] = "North Macedonia";
$LANGS['cat_MG'] = "Madagascar";
$LANGS['cat_MW'] = "Malawi";
$LANGS['cat_MY'] = "Malaysiawl";
$LANGS['cat_MV'] = "Maldives";
$LANGS['cat_ML'] = "Mali";
$LANGS['cat_MT'] = "Maltawl";
$LANGS['cat_MH'] = "Marshawl Islands";
$LANGS['cat_MQ'] = "Martinique";
$LANGS['cat_MR'] = "Mauritaniawl";
$LANGS['cat_MU'] = "Mauritius";
$LANGS['cat_YT'] = "Mayotte";
$LANGS['cat_MX'] = "Mexico";
$LANGS['cat_FM'] = "Micronesiawl";
$LANGS['cat_MD'] = "Moldova";
$LANGS['cat_MC'] = "Monaco";
$LANGS['cat_MN'] = "Mongoliawl";
$LANGS['cat_ME'] = "Montenegro";
$LANGS['cat_MS'] = "Montserrat";
$LANGS['cat_MA'] = "Morocco";
$LANGS['cat_MZ'] = "Mozambique";
$LANGS['cat_MM'] = "Myanmar";
$LANGS['cat_NA'] = "Namibiawl";
$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 Guineawl";
$LANGS['cat_PY'] = "Paraguay";
$LANGS['cat_PE'] = "Peru";
$LANGS['cat_PH'] = "Philippines";
$LANGS['cat_PN'] = "Pitcairn";
$LANGS['cat_PL'] = "Poland";
$LANGS['cat_PT'] = "Portugawl";
$LANGS['cat_PR'] = "Puertawl Ricawl";
$LANGS['cat_QA'] = "Qatar";
$LANGS['cat_RE'] = "Réunion";
$LANGS['cat_RO'] = "Romaniawl";
$LANGS['cat_RU'] = "Russiawl";
$LANGS['cat_RW'] = "Rwandawl";
$LANGS['cat_BL'] = "Saint Barthélemy";
$LANGS['cat_SH'] = "Saint Helenawl";
$LANGS['cat_KN'] = "Saint Kitts and Nevis";
$LANGS['cat_LC'] = "Saint Luciawl";
$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'] = "Samoawl";
$LANGS['cat_SM'] = "San Marino";
$LANGS['cat_ST'] = "Sao Tome and Principe";
$LANGS['cat_SA'] = "Saudi Arabiawl";
$LANGS['cat_SN'] = "Senegawl";
$LANGS['cat_RS'] = "Serbiawl";
$LANGS['cat_SC'] = "Seychelles";
$LANGS['cat_SL'] = "Sierrawl Leone";
$LANGS['cat_SG'] = "Singapore";
$LANGS['cat_SX'] = "Sint Maarten";
$LANGS['cat_SK'] = "Slovakiawl";
$LANGS['cat_SI'] = "Sloveniawl";
$LANGS['cat_SB'] = "Solomon Islands";
$LANGS['cat_SO'] = "Somaliawl";
$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'] = "Syriawl";
$LANGS['cat_TW'] = "Taiwan";
$LANGS['cat_TJ'] = "Tajikistan";
$LANGS['cat_TZ'] = "Tanzaniawl";
$LANGS['cat_TH'] = "Thailand";
$LANGS['cat_TL'] = "Timor-Leste";
$LANGS['cat_TG'] = "Togo";
$LANGS['cat_TK'] = "Tokelau";
$LANGS['cat_TO'] = "Tongawl";
$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'] = "Ugandawl";
$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'] = "Venezuelawl";
$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'] = "Zambiawl";
$LANGS['cat_ZW'] = "Zimbabwe";
/* My Subscriptions */
$LANGS['newvideos'] = "New Videos";
/* Account */
$LANGS['myaccount'] = "My Account";
$LANGS['vidsfavs'] = "Vidjoes, Favourites 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'] = "Vidjoe Upload";
$LANGS['nosubvideos'] = "Yew have no subscriptions...";
$LANGS['nofavvideos'] = "yew haven't favourited any vidjoe...";
/* My Videos */
$LANGS['sortby'] = "Sort by";
$LANGS['sorttitle'] = "Titawl";
$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 Vidjoes to";
$LANGS['play'] = "Play";
$LANGS['edit'] = "Edit";
$LANGS['setasavatar'] = "Set Thumbnail as Avatar";
$LANGS['downloadmp4'] = "Download MP4";
$LANGS['deleteconfirmation'] = "Are yew sure yew want to delete this video?";
$LANGS['novideos'] = "Yew avn’t uploaded any vidjoes. <a href='/my_videos_upload'>Start uploading a vidjoe now</a>!";
$LANGS['nomyvideosresults'] = "No results. Check if yews spelling is correct.";
/* Edit Video */
$LANGS['title'] = "Titawl";
$LANGS['desc'] = "Description";
$LANGS['privacy'] = "Privacy";
$LANGS['saveinfo'] = "Save Info";
$LANGS['saveinfoconfirm'] = "Are yew sure yew want to change the video information?";
$LANGS['viewchart'] = "View Chart";
$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 babbers can comment";
$LANGS['disablecomments'] = "Don't allow comments";
$LANGS['dateandmap'] = "Date and Map";
$LANGS['clear'] = "Clear";
$LANGS['allowratings'] = "Yes, allow this vidjoe to be rated by others.";
$LANGS['dontallowratings'] = "No, don't allow this vidjoe to be rated.";
/* My Playlists */
$LANGS['addedpl'] = "Added";
$LANGS['frompl'] = "From";
$LANGS['nopl'] = "No Playlists were found....";
/* My Playlist */
$LANGS['playlistedit'] = "Edit Playlist";
$LANGS['videourl'] = "Vidjoe URL";
$LANGS['add'] = "Add";
$LANGS['editinfo'] = "Edit Info";
/* Edit Playlist */
$LANGS['pledittitle'] = "Edit Playlist";
$LANGS['pleditdesc'] = "Playlists are collection of videos which yew can set up the way yew want.";
$LANGS['cancel'] = "Cancel";
/* Create Playlist */
$LANGS['createplaylisttitle'] = "Create Vidjoe Playlist";
$LANGS['createplaylist'] = "Create Playlist";
/* View Playlist */
$LANGS['plpermalink'] = "Playlist/URL (Permalink):";
$LANGS['sortcomments'] = "Comments";
$LANGS['unsorted'] = "Unsorted";
$LANGS['playallvideos'] = "Play All Vidjoes";
/* 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'] = "Vidjoe Responses";
$LANGS['sent'] = "Sent";
$LANGS['attachvideo'] = "Attach Vidjoe";
$LANGS['msgchannelcomment'] = "Comment on your channel";
$LANGS['msgcomment'] = "Comment on your vidjoe";
$LANGS['msgvideoresponse'] = "Video response on your vidjoe";
$LANGS['msgmention'] = "Mention on a vidjoe";
$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 Vidjoes";
$LANGS['summary'] = "Summary";
$LANGS['demographics'] = "Demographics";
$LANGS['viewsdesc'] = "How many views are my vidjoes getting?";
$LANGS['demodesc'] = "Who is subscribed to my channel?";
$LANGS['commdesc'] = "Where are my subscribers located?";
$LANGS['video'] = "Video";
$LANGS['topvideos'] = "Top vidjoes";
$LANGS['viewspercentage'] = "Views (% of total)";
$LANGS['percentoftotalviews'] = "% of total views";
$LANGS['searchmyvideos'] = "Search My Vidjoes";
$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 vidjoes";
$LANGS['engagements'] = "Community engagements";
$LANGS['dailysubs'] = "Daily subscribers";
$LANGS['daily'] = "Daily";
$LANGS['total'] = "Total";
$LANGS['insightvideodesc'] = "How many times has this vidjoe 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 Vidjoes";
$LANGS['groupmostdiscussed'] = "Most Discussed";
$LANGS['createagroup'] = "Create a Group";
$LANGS['groupvideos'] = "Vidjoes";
$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 Vidjoes";
$LANGS['addvideo'] = "Add Vidjoe";
$LANGS['novideos'] = "No Vidjoes...";
$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";
$LANGS['approvevideos'] = "Approve Vidjoes";
$LANGS['yes'] = "Yes";
$LANGS['no'] = "No";
$LANGS['changeinfo'] = "Change Info";
$LANGS['changeimage'] = "Change Image";
$LANGS['image'] = "Image";
$LANGS['styling'] = "Styling";
$LANGS['cssdesc'] = "Having backgrounds or graphics that do or show illegal things will result in yews termination.";
$LANGS['updatecss'] = "Update CSS";
$LANGS['groupmessage'] = "Message";
$LANGS['sendmessagetomembers'] = "Send Message to Members";
$LANGS['delgroup'] = "Delete Group";
/* Submit Group Video */
$LANGS['submitvideotitle'] = "Submit Vidjoe to Group";
$LANGS['submitvideo'] = "Submit Vidjoe";
/* Create Group */
$LANGS['groupname'] = "Group Name";
$LANGS['groupimage'] = "Group Image";
$LANGS['creategroup'] = "Create Group";
$LANGS['creategroupdesc'] = "Groups allow yew to create discussions with other members and easily share yews vidjoes with others.";
/* Create Group Discussion */
$LANGS['discussiontitle'] = "Discussion Title";
$LANGS['creatediscussiondesc'] = "Discussions are parts of groups in which yew discuss the set topic.";
/* Search Results */
$LANGS['resultspre'] = ""; /* Explanation: Use if the search query goes before "results". Example: "Resultados para search" in Spanish. If yews language doesn't use this, leave it empty like this: ''*/
$LANGS['resultspost'] = "results"; /* Explanation: Use if "BitView" goes after the username. Example: "search results" in English. If yews language doesn't use this, leave it empty like this: '' */
$LANGS['relevance'] = 'Relevance';
$LANGS['viewcount'] = 'View Count';
$LANGS['searchrating'] = 'Rating';
$LANGS['newest'] = 'Newest';
$LANGS['nochannelsfound'] = 'No channawls Found...';
$LANGS['noplfound'] = 'No Playlists Found...';
$LANGS['nogroupsfound'] = 'No Groups Found...';
$LANGS['uploaded'] = 'Uploaded';
$LANGS['anytime'] = 'Anytime';
$LANGS['partnervideos'] = 'Partner Vidjoes';
$LANGS['resultcount'] = 'results {r} of about {t}';
$LANGS['searchoptions'] = 'Search options';
$LANGS['resulttype'] = 'Result type';
$LANGS['duration'] = 'Duration';
$LANGS['durshort'] = 'Short (~4 minutes)';
$LANGS['durlong'] = 'Long (15~ minutes)';
$LANGS['features'] = 'Features';
$LANGS['novideosfoundfor'] = 'No vidjoes found for';
$LANGS['noresultsfoundfor'] = 'No results found for';
/* Profile */
$LANGS['channelsuspended'] = 'This account is suspended.';
$LANGS['accountnotfound'] = "This account can’t be found.";
$LANGS['channel'] = 'Channawl';
$LANGS['friends'] = 'Babbers';
$LANGS['channelsubscribers'] = 'Subscribers';
$LANGS['linkcomments'] = 'Comments';
$LANGS['bulletins'] = 'Bulletins';
$LANGS['editchannel'] = 'Edit Channawl';
$LANGS['type'] = 'Type';
$LANGS['joined'] = 'Joined';
$LANGS['videoswatched'] = 'Vidjoes Watched';
$LANGS['channelviews'] = 'Channawl Views';
$LANGS['age'] = 'Age';
$LANGS['gender'] = 'Gender';
$LANGS['male'] = 'Mayawl';
$LANGS['female'] = 'Femayawl';
$LANGS['status'] = 'Status';
$LANGS['single_m'] = 'Singawl';
$LANGS['single_f'] = 'Singawl';
$LANGS['taken_m'] = 'Taken';
$LANGS['taken_f'] = 'Taken';
$LANGS['married_m'] = 'Married';
$LANGS['married_f'] = 'Married';
$LANGS['country'] = 'Countree';
$LANGS['website'] = 'Website';
$LANGS['hobbies'] = 'Interests and Obbies';
$LANGS['music'] = 'Music';
$LANGS['movies'] = 'Films and Shows';
$LANGS['books'] = 'Books';
$LANGS['mostsub'] = 'Most Subscribed';
$LANGS['report'] = 'Report';
$LANGS['pfpviolation'] = 'profile image violation';
$LANGS['connectwith'] = 'Connect with';
$LANGS['profilesendmessage'] = 'Send Message';
$LANGS['messagetoyourself'] = "Yew can’t send messages to yourself!";
$LANGS['logintomessage'] = 'Please log in to send messages!';