-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathtr.lang.php
1668 lines (1612 loc) · 95.1 KB
/
tr.lang.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'] = 'Türkçe';
$LANGS['languageenglish'] = 'Turkish';
$LANGS['languagecode'] = 'tr_TR.UTF-8'; /* Leave the ".UTF-8" in the end as-is, as it might break some dates */
$LANGS['languagechange'] = 'Dil Türkçey\'e çevirildi.';
$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'] = 'BitView\'e hoş geldiniz!';
$LANGS['languagesuggestion'] = 'Önerilen dil (tercihinizi buna ayarladık):';
$LANGS['languagesuggestiondesc1'] = 'Dil terchinizi değiştirmek için, lütfen aşağıdaki dil seçicisini kullanın (sayfanın en sonunda).';
$LANGS['languagesuggestiondesc2'] = 'Bu ayarı kabul etmek için Tamama basın, ya da siteyi İngilizce olarak görüntülemeye devam etmek için "İptal" diyin.';
/* Time, dates, etc */
$LANGS['second'] = 'saniye';
$LANGS['minute'] = 'dakika';
$LANGS['hour'] = 'saat';
$LANGS['day'] = 'gün';
$LANGS['week'] = 'hafta';
$LANGS['month'] = 'ay';
$LANGS['year'] = 'yıl';
$LANGS['seconds'] = 'saniye';
$LANGS['minutes'] = 'dakika';
$LANGS['hours'] = 'saat';
$LANGS['days'] = 'gün';
$LANGS['weeks'] = 'hafta';
$LANGS['months'] = 'ay';
$LANGS['years'] = 'yıl';
$LANGS['ago'] = '{t} önce';
$LANGS['january'] = 'Ocak';
$LANGS['february'] = 'Şubat';
$LANGS['march'] = 'Mart';
$LANGS['april'] = 'Nisan';
$LANGS['may'] = 'Mayıs';
$LANGS['june'] = 'Haziran';
$LANGS['july'] = 'Temmuz';
$LANGS['august'] = 'Ağustos';
$LANGS['september'] = 'Eylül';
$LANGS['october'] = 'Ekim';
$LANGS['november'] = 'Kasım';
$LANGS['december'] = 'Aralık';
$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'] = 'Ana Sayfa';
$LANGS['videos'] = 'Videolar';
$LANGS['channels'] = 'Kanallar';
$LANGS['community'] = 'Topluluk';
$LANGS['search'] = 'Ara';
$LANGS['login'] = 'Giriş yap';
$LANGS['or'] = 'ya da';
$LANGS['signup'] = 'Hesap oluştur';
$LANGS['logout'] = 'Çıkış yap';
$LANGS['upload'] = 'Yeni Video';
$LANGS['subscriptions'] = 'Abonelikler';
$LANGS['history'] = 'Geçmiş';
$LANGS['account'] = 'Hesap';
$LANGS['myvideos'] = 'Videolarım';
$LANGS['favorites'] = 'Favoriler';
$LANGS['playlists'] = 'Oynatma listelerim';
$LANGS['help'] = 'Yardım';
$LANGS['suggestions'] = 'Öneriler';
$LANGS['quicklist'] = 'QuickList';
$LANGS['browse'] = 'Gözat';
$LANGS['messagesmenu'] = 'Mesajlar';
/* Homepage */
$LANGS['viewall'] = 'tümünü göster';
$LANGS['videoviews'] = 'izlenme';
$LANGS['beingwatched'] = 'Şu Anda İzlenen Videolar';
$LANGS['featured'] = 'Önerilen Videolar';
$LANGS['recommendedforyou'] = 'Sizin İçin Önerilenler';
$LANGS['mostpopular'] = 'En Popüler';
$LANGS['inboxstats'] = 'Gelen Kutusu ve İstatistikler';
$LANGS['profilesettings'] = 'hesap ayarlar';
$LANGS['messages'] = 'Mesajlar';
$LANGS['message'] = 'Mesaj';
$LANGS['comments'] = 'Yorumlar';
$LANGS['comment'] = 'Yorum';
$LANGS['sharedwithyou'] = 'Sizinle paylaşılanlar';
$LANGS['sharedwithyousingular'] = 'Sizinle paylaşılanlar';
$LANGS['videoresponses'] = 'Video yanıtlar';
$LANGS['videoresponse'] = 'Video yanıtlar';
$LANGS['friendinvites'] = 'Arkadaş davetleri';
$LANGS['friendinvite'] = 'Arkadaş daveti';
$LANGS['subscribers'] = 'Aboneler';
$LANGS['subscriber'] = 'Abone';
$LANGS['totalviews'] = 'Toplam izlenme';
$LANGS['sendmessage'] = 'mesaj gönder';
$LANGS['whatsnew'] = "Ne var ne yok";
$LANGS['readmore'] = 'Bloğumuzda daha fazlasını okuyun';
$LANGS['videocontest'] = 'Video yarışması';
$LANGS['joincontest'] = 'Yarışmaya hemen katılın!';
$LANGS['personalize'] = 'Ana sayfanızı özelleştirmek ister misiniz?';
$LANGS['signinnow'] = '<a href="/login">Giriş yapın</a> ya da <a href="/signup">Kayıt olun</a> !';
$LANGS['nowconverting'] = "Bu video işleniyor, lütfen bir kaç dakika bekleyin";
$LANGS['modules'] = "Modül ekle/kaldır";
$LANGS['friendactivity'] = "Arkadaş aktivitesi";
$LANGS['customizehomepage'] = "Ana sayfayı özelleştir";
$LANGS['customizethehomepage'] = "Ana sayfayı özelleştir";
$LANGS['customizehomepagedesc'] = "Ana sayfada görmek sitediğiniz modülleri seçin.";
$LANGS['displaypreferences'] = "Görüntüleme ayarları";
$LANGS['thefeed'] = "Akış";
$LANGS['thefeeddesc'] = "Tüm modülleri ana sayfanızda birleştirin.";
$LANGS['friendactivitytitle'] = "Arkadaş aktivitesi - Kullanıcılar benim ne yaptığımı görebilir mi?";
$LANGS['friendactivitydesc'] = "Bu bölüm, onaylanmış arkadaşlarınıza son etkinlik geçmişinizde herkese açık olarak yayınladığınız eylemleri gösterir. Örneğin, bir videoyu favorilere eklerseniz, yeni favori videonuz kanalınızın Son Etkinlik kutusunda ve arkadaşlarınızın ana sayfalarında görünebilir.";
$LANGS['feedfeatured'] = "Önerilen video";
$LANGS['feedbeingwatched'] = "Şu An İzlenen Video";
$LANGS['feedrecommended'] = "Önerilen Video";
$LANGS['homenosubscriptions'] = "Henüz hiç bir kanala abone olmadın.";
$LANGS['homenosubscriptionsdesc'] = "Birilerine abone olduğunuzda bu alanda onların videoları gözükecek.";
$LANGS['homenofriendactivity'] = "Arkadaşlarınız son dönemde aktif olmadı.";
$LANGS['homenofriendactivitydesc'] = "Bir kaç arkadaş eklemeyi deneyebilirsiniz, aktiviteleri burada gözükecek";
$LANGS['homeediting'] = "Düzenleme";
$LANGS['homedisplay'] = "Olarak göster";
$LANGS['homerows'] = "Görüntülenecek satır sayısı";
$LANGS['gridview'] = "Izgara Görünümü";
$LANGS['listview'] = "Liste Görünümü";
/* Page title */
$LANGS['hometitle'] = "{n}'in BitView'ı";
$LANGS['channeltitle'] = "{n}'in Kanalı";
$LANGS['signintitle'] = "Giriş yap";
$LANGS['historytitle'] = "İzleme geçmişi";
$LANGS['favtitle'] = "Favoriler";
$LANGS['pltitle'] = "Oynatma listeleri";
$LANGS['partnerprogram'] = "Partnerlik Programı";
/* Notifications */
$LANGS['searcherror'] = 'Yaptığınız aratma en az 2 harfden/rakamdan oluşmalıdır!';
$LANGS['addvideoplaylist1'] = "Oynatma listene";
$LANGS['addvideoplaylist2'] = 'video ekledin!';
$LANGS['addfavorite1'] = "";
$LANGS['addfavorite2'] = 'video favoriledin!';
$LANGS['groupdoesnotexist'] = "Böyle bir grup yok!";
$LANGS['uploaddisabled'] = 'Video yükleme geçici olarak devre dışı.';
$LANGS['10vidsday'] = 'Günde 10\'dan fazla video yükleyemezsin! Lütfen yarın tekrar yüklemeyi dene.';
$LANGS['3mins'] = 'Yeni bir video yüklemeden önce 3 dakika bekle!';
$LANGS['backgroundsuccess'] = 'Arkaplan resmi başarıyla güncellendi!';
$LANGS['backgrounderror'] = 'Arkaplan resmi bir resim olmalıdır ve 2MB\'ın altında olmalıdır!';
$LANGS['backgrounddeleted'] = 'Arkaplan resmi başarıyla silindi!';
$LANGS['bannersuccess'] = 'Banner fotoğrafı başarıyla değiştirildi!';
$LANGS['bannererror'] = 'Banner fotoğrafı bir resim olmalıdır ve 2MB\'ın altında olmalıdır!';
$LANGS['bannerdeleted'] = 'Banner fotoğrafı resmi başarıyla silindi!';
$LANGS['minibannersuccess'] = 'Mini banner fotoğrafı başarıyla yüklendi!';
$LANGS['minibannererror'] = 'Mini banner fotoğrafı bir resim olmalıdır ve 2MB\'ın altında olmalıdır!';
$LANGS['minibannerdeleted'] = 'Mini banner başarıyla silindi!';
$LANGS['sideimagesuccess'] = 'Yan resim başarıyla yüklendi!';
$LANGS['sideimageerror'] = 'Yan görsel 2MB\'ın altında olmalı ve bir resim dosyası olmalıdır!';
$LANGS['sideimagedeleted'] = 'Yan görüntü başarıyla silindi!';
$LANGS['avatarsuccess'] = 'Profil fotoğrafın başarıyla değiştirildi!';
$LANGS['avatarerror'] = 'Profil fotoğrafı en fazla 1MB ve bir resim olmalıdır!';
$LANGS['avatardeleted'] = '"Profil fotoğrafın başarıyla kaldırıldı!';
$LANGS['changessaved'] = 'Değişiklikler başarıyla kaydedildi!';
$LANGS['profilesdisabled'] = 'Profilller geçici olarak kapatılmıştır.';
$LANGS['bulletinposted'] = 'Bulletin has been posted!';
$LANGS['channelcommentsent'] = 'Kanal yorumu başarıyla oluşturuldu!';
$LANGS['somethingwentwrong'] = 'Bir şeyler yanlış gitti.';
$LANGS['replysubmitted'] = 'Yanıt başarıyla gönderildi!';
$LANGS['onlyonecomment'] = 'Sadece bir yorum yazabilirsin!';
$LANGS['vpnbrowser'] = "BitView hesabı açarken VPN kullanamazsın!";
$LANGS['torbrowser'] = "BitView hesabı açarken TOR kullanamazsın!";
$LANGS['captchaincorrect'] = "Kodu yanlış girdin.";
$LANGS['toomanyaccounts'] = 'Çok fazla hesabın var!';
$LANGS['banned2times'] = "Hesapların 2 kere yasaklandı. Daha fazla hesap açamazsın!";
$LANGS['nohistory'] = "Bu oturum boyunca bir video izlemedin!";
$LANGS['historycleared'] = 'İzleme geçmişin temizlendi';
$LANGS['watchdisabled'] = 'Videolar geçici olarak kapatılmıştır.';
$LANGS['videonotexist'] = 'Bu video ya yok ya da kullanım koşullarını ihlal ettiğinden kaldırıldı.';
$LANGS['responseerror'] = 'Video yanıtınızda bir sorun oluştu! Lütfen URL\'yi tekrar kontrol edin.';
$LANGS['responseexist'] = 'Video zaten istendi!';
$LANGS['responseadded'] = 'Video yanıtı başarıyla eklendi!';
$LANGS['responseaccepted'] = 'Yeni Video Yanıtı kabul edildi!';
$LANGS['60secscomment'] = 'Yeni yorum eklemeden önce lütfen 60 saniye bekleyin!';
$LANGS['plnotexist'] = "Böyle bir oynatma listesi yok!";
$LANGS['positionnotexist'] = "Böyle bir pozisyon yok!";
$LANGS['positionchanged'] = "Video'nun pozisyonu değiştirildi!";
$LANGS['invalidurl'] = 'Gerçersiz URL!';
$LANGS['videopladded'] = 'Video başarıyla eklendi!';
$LANGS['videoalreadyinpl'] = 'Bu video zaten oynatma listesinde!';
$LANGS['plvideoremoved'] = 'Video kaldırıldı!';
$LANGS['plinfochanged'] = 'Oynatma listesi bilgili başarıyla değiştirildi!';
$LANGS['pltitleneeded'] = 'Oynatma listesi için bir başlık koyman gerekli!';
$LANGS['flashenabled'] = 'Adobe Flash Player aktif!';
$LANGS['flashdisabled'] = 'Adobe Flash Player devre dışı!';
$LANGS['messagesent'] = 'Mesaj başarıyla gönderildi!';
$LANGS['usernotexist'] = "Böyle bir kullanıcı yok!";
$LANGS['nocriteria'] = "Gerekli kriterleri karşılamıyorsunuz!";
$LANGS['alreadypartner'] = 'Zaten ortak programına kabul edildiniz!';
$LANGS['alreadyapplied'] = 'Zaten başvurdunuz!';
$LANGS['applicationsent'] = 'Başvurunuz gönderildi!';
$LANGS['joinedgroup'] = 'Gruba başarıyla katıldınız!';
$LANGS['leftgroup'] = 'Gruptan başarıyla ayrıldınız!';
$LANGS['grouprequest'] = 'Grup isteğini başarıyla gönderdiniz! Şimdi kabul edilmesini beklemelisiniz.';
$LANGS['groupdeleted'] = 'Grup başarıyla silindi!';
$LANGS['groupvideoadded'] = 'Video gönderildi!';
$LANGS['groupvideoalreadyadded'] = 'Bu videoyu zaten gönderdiniz!';
$LANGS['groupvideonotowned'] = "Bu video sizin değil!";
$LANGS['3groups'] = 'En fazla 3 grubun sahibi olabilirsiniz!';
$LANGS['groupnameempty'] = 'Grup ismi boş olamaz!';
$LANGS['groupdescempty'] = 'Gurup açıklaması boş olamaz!';
$LANGS['groupnoimage'] = 'Grubunuz için bir resim yüklemelisiniz!';
$LANGS['groupimageerror'] = 'Grup resmi en fazla 1MB ve bir resim olmalıdır';
$LANGS['groupcreated'] = 'Grup başarıyla oluşturuldu!';
$LANGS['urlnotvalid'] = "Bu geçerli bir video URL\'si değil!";
$LANGS['discussiondeleted'] = 'Konu başarıyla silindi!';
$LANGS['videodeleted'] = 'Video başarıyla silindi!';
$LANGS['pldeleted'] = 'Oynatma listesi başarıyla silindi!';
$LANGS['invitesent'] = 'Arkadaşlık isteği başarıyla gönderildi!';
$LANGS['descriptionchanged'] = 'Açıklama değiştirildi!';
$LANGS['emptymessage'] = 'Boş mesaj gönderemezsiniz!';
$LANGS['styleupdated'] = 'Grup stili başarıyla güncellendi!';
$LANGS['imageupdated'] = 'Grup resmi başarıyla güncellendi!';
$LANGS['plcreated'] = 'Oynatma listesi başarıyla oluşturuldu!';
$LANGS['discussiontitle2chars'] = 'Başlık 2 karakterin üstünde olmalıdır!';
$LANGS['discussiondesc10chars'] = 'Açıklama 10 karakterin üstünde olmalıdır!';
$LANGS['5discussionsday'] = 'Bir günde en az 5 konuşma başlatabilirsin!';
$LANGS['discussionsuccess'] = 'Konuşma başarıyla oluşturuldu!';
$LANGS['memberaccepted1'] = '';
$LANGS['memberaccepted2'] = 'başarıyla kabul edildi!';
$LANGS['memberdeclined1'] = '';
$LANGS['memberdeclined2'] = 'başarıyla reddedildi!';
$LANGS['videoaccepted'] = 'Bu video başarıyla kabul edildi!';
$LANGS['bulletindeleted'] = 'Bulletin successfully deleted!';
$LANGS['messagedeleted'] = 'Mesaj başarıyla silindi!';
$LANGS['responsedeleted'] = 'Başarıyla bu video yanıtı silindi!';
$LANGS['flagmod'] = 'Moderatörleri bildiremezsiniz!';
$LANGS['userflagged'] = 'Video bildirildi!';
$LANGS['discussionreplysubmitted'] = 'Yanıt başarıyla gönderildi!';
$LANGS['discussionreplyempty'] = 'Yanıt boş olamaz!';
/* Watch */
$LANGS['moreinfo'] = 'daha fazla bilgi';
$LANGS['lessinfo'] = 'daha az bilgi';
$LANGS['category'] = 'Kategori';
$LANGS['recordedon'] = 'Kaydedilme';
$LANGS['location'] = 'Konum';
$LANGS['tags'] = 'Etiketler';
$LANGS['embed'] = 'Embed';
$LANGS['partnervideo'] = 'Partner Videosu';
$LANGS['subscribe'] = 'Abone Ol';
$LANGS['unsubscribe'] = 'Abonelikten Çık';
$LANGS['nodesc'] = 'Açıklama yok...';
$LANGS['logintosub'] = 'Lütfen abone olmak için giriş yap!';
$LANGS['logintosubbox'] = 'Abone olmak mı istiyorsun?';
$LANGS['subyourself'] = 'Kendine abone olamazsın!';
$LANGS['videoowner'] = 'Video Sahibi Seçenekleri';
$LANGS['editvideo'] = 'Videoyu düzenle';
$LANGS['insight'] = 'Insight';
$LANGS['morefrom'] = 'Daha fazla';
$LANGS['relatedvideos'] = 'İlgili Videolar';
$LANGS['novideosfound'] = 'Video bulunamadı...';
$LANGS['morevideos'] = 'Tüm videoları gör';
$LANGS['changeplayersize'] = 'Oynatıcı boyutunu değiştir';
$LANGS['newwindow'] = 'Bu videyu yeni bir pencerede izle.';
$LANGS['featuredtext'] = 'Bu video Önerildi. Daha çok Önerilmiş video görmek ister misiniz? <a href="/browse?t=2">Buraya tıklayın.</a>.';
$LANGS['ratings'] = 'ratings';
$LANGS['rating'] = 'rating';
$LANGS['favorite'] = 'Favori';
$LANGS['addtofav'] = 'Favorilere ekle';
$LANGS['removefav'] = 'Favorilerden kaldır';
$LANGS['favadded'] = 'Bu video <a href="/my_favorites">Favori</a> videolara <strong>eklendi</strong>.';
$LANGS['favremoved'] = 'Bu video <a href="/my_favorites">Favori</a> videolardan <strong>kaldırıldı</strong>.';
$LANGS['undo'] = 'Geri al';
$LANGS['thanksforrating'] = 'Puanladığınız için teşekkürler!';
$LANGS['playlistdesc'] = 'Oynatma listenize yeni bir video eklemek için <a href="/my_playlists">"Oynatma listelerim"</a> sayfasına gidin.';
$LANGS['addtoplaylist'] = 'Oynatma listesine ekle';
$LANGS['addtoplaylistsuccess'] = 'Bu video oynatma listenize eklendi';
$LANGS['share'] = 'Paylaş';
$LANGS['flag'] = 'Bildir';
$LANGS['flagthisvid'] = 'Bu videoyu bildir';
$LANGS['removeflag'] = 'Bildiriyi geri çek';
$LANGS['flagnote'] = "Bildirmeden önce: Lütfen videonun bir kuralı çiğnediğinden emin olun. Videoyu sadece beğenmediğiniz için bildirmeyin. Yoksa moderatörleri boşuna uğraştırırsınız.";
$LANGS['statadded'] = 'Eklendi';
$LANGS['statviews'] = 'Görüntülemeler';
$LANGS['statratings'] = 'Puanlamalar';
$LANGS['statresponses'] = 'Yanıtlar';
$LANGS['statcomments'] = 'Yorumlar';
$LANGS['statfavorited'] = 'Favorilenme';
$LANGS['statsdata'] = 'İstatistikler & veri';
$LANGS['honors'] = 'Honors for this video';
$LANGS['mostviewed'] = 'En çok izlenen';
$LANGS['topfavorited'] = 'En çok favorilenen';
$LANGS['times'] = 'kere';
$LANGS['mostdiscussed'] = 'En Çok Konuşulan';
$LANGS['toprated'] = 'En İyi Puanlamalılar';
$LANGS['videolinks'] = 'Sites linking to this video';
$LANGS['clicksfrom'] = 'clicks from';
$LANGS['responses'] = 'Videolu Yanıtlar';
$LANGS['responsespost'] = 'Bir videolu yanıt ekleyin';
$LANGS['textcomments'] = 'Yorumlar';
$LANGS['commentpost'] = 'Yorumlar';
$LANGS['commentonthisvideo'] = 'Bu videoya yorum yapın';
$LANGS['postcomment'] = 'Yorumu paylaş';
$LANGS['remainingcounter'] = 'Kalan karakter sayısı';
$LANGS['nocomments'] = 'Bu videoda <b>yorum yok</b>.';
$LANGS['noresponses'] = 'Bu videoda <b>yanıt yok</b>.';
$LANGS['commviewall'] = 'Tümü gör';
$LANGS['delete'] = 'Sil';
$LANGS['reply'] = 'Yanıtla';
$LANGS['commentlogin'] = 'Yorum yapmak ister misiniz?';
$LANGS['commentlogindesc'] = '<a href="/signup">Bitview\'e ücretsiz olarak üye olun</a> ya da eğer zaten hesabınız varsa <a href="/login">giriş yapın</a>.';
$LANGS['logintoresponse'] = 'Videolu yanıt paylaşmak için giriş yapın';
$LANGS['logintocomment'] = 'Yorum yapmak için giriş yapın';
$LANGS['logintofav'] = 'Favorilere eklemek mi istiyorsunuz? <a href="/login">Kayıt Olun</a> ya da <a href="/signup">Giriş Yapın</a>!';
$LANGS['logintopl'] = 'Oynatma listesine eklmek mi istyiorsunuz? <a href="/login">Kayıt Olun</a> ya da <a href="/signup">Giriş Yapın</a>!!';
$LANGS['logintoflag'] = 'Bir videoyu bildirmek mi istediniz? Hemen <a href="/login">Kayıt olun/a> ya da <a href="/signup">Giriş yapın</a>!';
$LANGS['close'] = 'close';
$LANGS['addresponse'] = 'Yanıt Ekle';
$LANGS['recentlyrated'] = 'Recently rated';
$LANGS['commentsdisabled'] = 'Yorumlar kapalı.';
$LANGS['ratingsdisabled'] = 'Puanlamalar kapalı';
$LANGS['rating1'] = 'Berbat';
$LANGS['rating2'] = 'Havalı bir şey yok';
$LANGS['rating3'] = 'İzlemeye değer';
$LANGS['rating4'] = 'Baya iyi';
$LANGS['rating5'] = 'Harika!';
$LANGS['saving'] = 'Kaydediliyor...';
$LANGS['signintorate'] = 'Puanlamak için <a href="/login">Kayıt olun</a>';
$LANGS['addingcomment'] = "Yorum ekleniyor...";
$LANGS['commentposted'] = "Yorum eklendi!";
$LANGS['commentspammsg'] = "Aynı yorumu tekrar atmak spam sayılmaktadır. Daha sonra tekrar deneyin.";
$LANGS['commentspammsg2'] = "5 kere art arda yorum atmak spam sayılmaktadır. Daha sonra tekrar deneyin.";
$LANGS['emptycomment'] = "Yorumun boş olamaz.";
$LANGS['spambutton'] = "Spam";
$LANGS['notspambutton'] = "Spam değil";
$LANGS['commentsspam'] = "Yorum(lar) spam olarak işaretlendi";
$LANGS['marked'] = "Spam olarak işaretlendi";
$LANGS['spamshow'] = "Göster";
$LANGS['spamhide'] = "Gizle";
$LANGS['poorcomment'] = "Kötü yorum";
$LANGS['goodcomment'] = "İyi yorum";
$LANGS['pleasesignin'] = "Lütfen kayıt olun";
$LANGS['showmorecomments'] = "Daha Fazl Yorum Göster";
$LANGS['showingamount'] = "<strong>Showing {number}</strong> of {total} comments";
$LANGS['customize'] = "Özelleştir";
$LANGS['customizedesc'] = "After making your selection, copy and paste the embed code above. The code changes based on your selection.";
$LANGS['editvideodetail'] = "Video Detaylarını Düzenle";
$LANGS['editannotations'] = "Ek Açıklamaları Düzenle";
$LANGS['insightstats'] = "Insight stats";
$LANGS['allowratingscheck'] = "Allow this video to be <b>rated</b> by others.";
$LANGS['thisvideoispublic'] = "Bu video herkese açık.";
$LANGS['thisvideoisprivate'] = "Bu video gizli.";
$LANGS['thisvideois'] = "This video is";
$LANGS['like'] = "Beğen";
$LANGS['saveto'] = "Kaydet";
$LANGS['uservideoamount'] = "{n} videolar";
$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'] = 'TAMAM';
$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'] = "Bunu beğendim";
$LANGS['disliketooltip'] = "Bunu beğenmedim";
$LANGS['likeratiotooltip'] = "{l} beğeni, {d} beğenmeme";
$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'] = "Kullanıcı adı";
$LANGS['password'] = "Şifre";
$LANGS['logindesc'] = "BitView hesabınıza giriş yapın";
$LANGS['forgot'] = "Hesabınıza erişemiyor musunuz?";
$LANGS['forgotmsg'] = 'Lütfen bizimle Twitter\'da iletişime geçin (@BitView_) ya da Discord sunucusunda moderatörlerle iletişime geçin. (Bağlantı aşağı kısımda)';
$LANGS['noaccount'] = "Hesabınız yok mu?";
$LANGS['signuptobv'] = "Kayıt ol!";
$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'] = 'Hatalı şifre.';
$LANGS['staysigned'] = "Oturumumu açık tut.";
/* Sign Up */
$LANGS['email'] = "Eposta Adresi";
$LANGS['passwordstrength'] = "Şifre gücü";
$LANGS['psnone'] = "Yok";
$LANGS['psweak'] = "Düşük";
$LANGS['psfair'] = "Orta";
$LANGS['psgood'] = "Güzel";
$LANGS['psstrong'] = "Güçlü";
$LANGS['repassword'] = "Şifreyi tekrar gir";
$LANGS['usernamedesc'] = "İsminiz sadece A-Z harfleri veya 0-9 rakamlarını içerebilir.";
$LANGS['captcha'] = "Robot Doğrulaması";
$LANGS['acceptterms'] = '<a href="/terms">Kullanım Koşulları</a> ve <a href="/privacy">Gizlilik politikası</a>\'nı kabul ediyorum.';
$LANGS['copyrighttext'] = 'Sahibi olmadığınız materyalleri yüklemek telif hakkı ihlalidir ve yasalara aykırıdır. Sahibi olmadığınız materyali yüklerseniz hesabınız silinir.';
$LANGS['mustaccept'] = 'Hesabınızı oluşturmak için Kullanım Koşullarını ve Gizlilik Politikasını kabul etmelisiniz';
$LANGS['createaccount'] = 'Hesabımı oluştur';
$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";