forked from Bittoco/BitView-Translations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfr-FR.php
1515 lines (1463 loc) · 90.5 KB
/
fr-FR.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'] = 'Français';
$LANGS['languageenglish'] = 'French';
$LANGS['languagecode'] = 'fr_FR.UTF-8';
$LANGS['languagechange'] = 'La langue a bien été changée en français.';
$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'] = 'Bienvenue sur BitView !';
$LANGS['languagesuggestion'] = 'Langue suggérée (nous avons définis ceci dans vos préférences) :';
// $LANGS['languagesuggestiondesc1'] = 'To change your language preference, please use the language selector in the footer (end of the page).';
$LANGS['languagesuggestiondesc1'] = 'Pour changer votre préférence de langue, utilisez le sélécteur de langue à la fin de la page.';
$LANGS['languagesuggestiondesc2'] = 'Cliquez sur "OK" pour accepter cette préférence, ou cliquez sur "Annuler" pour voir la page en Anglais.';
/* Time, dates, etc */
$LANGS['second'] = 'seconde';
$LANGS['minute'] = 'minute';
$LANGS['hour'] = 'heure';
$LANGS['day'] = 'jour';
$LANGS['week'] = 'semaine';
$LANGS['month'] = 'mois';
$LANGS['year'] = 'an';
$LANGS['seconds'] = 'secondes';
$LANGS['minutes'] = 'minutes';
$LANGS['hours'] = 'heures';
$LANGS['days'] = 'jours';
$LANGS['weeks'] = 'semaines';
$LANGS['months'] = 'mois';
$LANGS['years'] = 'ans';
$LANGS['ago1'] = 'il y a '; /* Explanation: Text before "x seconds/minutes/hours..." Example: "hace (1 día)" in Spanish. If your language doesn't use this, leave it empty like this: ''*/
$LANGS['ago2'] = ''; /* 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'] = 'Janvier';
$LANGS['february'] = 'Février';
$LANGS['march'] = 'Mars';
$LANGS['april'] = 'Avril';
$LANGS['may'] = 'Mai';
$LANGS['june'] = 'Juin';
$LANGS['july'] = 'Juillet';
$LANGS['august'] = 'Août';
$LANGS['september'] = 'Septembre';
$LANGS['october'] = 'Octobre';
$LANGS['november'] = 'Novembre';
$LANGS['december'] = 'Décembre';
// je sais pas vraiment quoi faire ici
$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'] = 'd.m.Y';
/* Header */
$LANGS['home'] = 'Accueil';
$LANGS['videos'] = 'Vidéos';
$LANGS['channels'] = 'Chaînes';
$LANGS['community'] = 'Communauté';
$LANGS['search'] = 'Chercher';
$LANGS['login'] = 'Se connecter';
$LANGS['or'] = 'ou';
$LANGS['signup'] = 'Créer un compte';
$LANGS['logout'] = 'Se déconnecter';
$LANGS['upload'] = 'Mettre en ligne';
$LANGS['subscriptions'] = 'Abonnements';
$LANGS['history'] = 'Historique';
$LANGS['account'] = 'Compte';
$LANGS['myvideos'] = 'Mes vidéos';
$LANGS['favorites'] = 'Favoris';
$LANGS['playlists'] = 'Playlists';
$LANGS['help'] = 'Aide';
$LANGS['suggestions'] = 'Suggestions';
$LANGS['quicklist'] = 'QuickList';
$LANGS['browse'] = 'Browse';
/* Homepage */
$LANGS['viewall'] = 'tout voir';
$LANGS['videoviews'] = 'vues';
$LANGS['beingwatched'] = 'Vidéos regardées en ce moment';
$LANGS['featured'] = 'Vidéos à la une';
$LANGS['recommendedforyou'] = 'Recommended for You';
$LANGS['mostpopular'] = 'Les plus populaires';
$LANGS['inboxstats'] = 'Messagerie & Statistiques';
$LANGS['profilesettings'] = 'paramètres du compte';
$LANGS['messages'] = 'Messages';
$LANGS['message'] = 'Message';
$LANGS['comments'] = 'Commentaires';
$LANGS['comment'] = 'Commentaire';
$LANGS['sharedwithyou'] = 'Shared with You';
$LANGS['sharedwithyousingular'] = 'Shared with You';
$LANGS['videoresponses'] = 'Video Responses';
$LANGS['videoresponse'] = 'Video Response';
$LANGS['friendinvites'] = 'Invitations d\'amis';
$LANGS['friendinvite'] = 'Invitation d\'un ami';
$LANGS['subscribers'] = 'Abonnés';
$LANGS['subscriber'] = 'Abonné';
$LANGS['totalviews'] = 'Vues totals';
$LANGS['sendmessage'] = 'envoyer le message';
$LANGS['whatsnew'] = "Quoi de neuf, docteur ?";
$LANGS['readmore'] = 'Tout lire dans le Blog';
$LANGS['videocontest'] = 'Concours vidéo';
$LANGS['joincontest'] = 'Rejoindre le concours !';
$LANGS['personalize'] = 'Souhaitez-vous personnaliser cette page d\'accueil ?';
$LANGS['signinnow'] = '<a href="/login">Connectez-vous</a> ou <a href="/signup">Inscrivez-vous</a> maintenant !';
$LANGS['nowconverting'] = "Cette vidéo est en conversion, veuillez patienter...";
$LANGS['modules'] = "Add / Remove Modules";
$LANGS['friendactivity'] = "Friend Activity";
$LANGS['customizehomepage'] = "Customize Homepage";
$LANGS['customizethehomepage'] = "Customize the Homepage";
$LANGS['customizehomepagedesc'] = "Select the modules you want to see on your customized homepage.";
$LANGS['displaypreferences'] = "Display Preferences";
$LANGS['thefeed'] = "The Feed";
$LANGS['thefeeddesc'] = "Combine all of your modules into a single feed.";
$LANGS['friendactivitytitle'] = "Friend Activity - Can people see what I do?";
$LANGS['friendactivitydesc'] = "This section shows your confirmed friends the actions that you're publicly broacasting in your recent activity history. For example, if you favorite a video, then your new favorite video might show up in your channel's Recent Activity box, as well as on your friends' homepages.";
$LANGS['feedfeatured'] = "Featured Video";
$LANGS['feedbeingwatched'] = "Video Being Watched Now";
$LANGS['feedrecommended'] = "Recommended Video";
$LANGS['homenosubscriptions'] = "You haven't subscribed to any channel yet.";
$LANGS['homenosubscriptionsdesc'] = "When you add new subscriptions, we'll show their uploads here on this page.";
$LANGS['homenofriendactivity'] = "Your friends haven't been active lately.";
$LANGS['homenofriendactivitydesc'] = "You can try adding some friends. Then, we'll show their activity here on this page.";
$LANGS['homeediting'] = "Editing";
$LANGS['homedisplay'] = "Display as";
$LANGS['homerows'] = "Number of rows to display";
$LANGS['gridview'] = "Grid View";
$LANGS['listview'] = "List View";
/* Page title */
$LANGS['homepretitle'] = "BitView de "; /* 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'] = ""; /* 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'] = "La chaîne de "; /* 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'] = ""; /* 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'] = "Se connecter";
$LANGS['historytitle'] = "Historique de visionnage";
$LANGS['favtitle'] = "Favoris";
$LANGS['pltitle'] = "Playlists";
$LANGS['partnerprogram'] = "Programme de partenaires";
/* Notifications */
$LANGS['searcherror'] = 'Votre recherche doit-être d\'au moins 2 caractères !';
$LANGS['addvideoplaylist1'] = "Vous avez ajouté";
$LANGS['addvideoplaylist2'] = 'vidéos dans votre playlist !';
$LANGS['addfavorite1'] = "Vous avez favori";
$LANGS['addfavorite2'] = 'vidéos !';
$LANGS['groupdoesnotexist'] = "Ce groupe est inexistant !";
$LANGS['uploaddisabled'] = 'La mise en ligne a été désactivée pour maintenance.';
//$LANGS['10vidsday'] = 'You can not upload more than 10 videos per day! Please try uploading tomorrow.';
$LANGS['10vidsday'] = 'Vous ne pouvez pas mettre en ligne plus de 10 vidéos par jour ! Essayez demain.';
$LANGS['3mins'] = 'Attendez 3 minutes avant de mettre une nouvelle vidéo en ligne !';
$LANGS['backgroundsuccess'] = 'L\'arrière-plan a été téléchargé avec succès !';
//$LANGS['backgrounderror'] = 'Background image must be under 2MB and be an image file!';
$LANGS['backgrounderror'] = 'L\'image d\'arrière-plan doit être en dessous de 2 mo et doit être un fichier d\'image !';
$LANGS['backgrounddeleted'] = 'L\'arrière-plan a bien été supprimé !';
//$LANGS['bannersuccess'] = 'Banner has been successfully uploaded!';
$LANGS['bannersuccess'] = 'La bannière a été téléchargée avec succès !';
$LANGS['bannererror'] = 'L\'image de bannière doit être en dessous de 2 mo et doit être un fichier d\'image !';
$LANGS['bannerdeleted'] = 'Votre bannière a bien été supprimée !';
$LANGS['minibannersuccess'] = 'La mini-bannière a été téléchargée avec succès !';
$LANGS['minibannererror'] = 'L\'image de mini-bannière doit être en dessous de 2 mo et doit être un fichier d\'image !';
$LANGS['minibannerdeleted'] = 'Votre mini-bannière a bien été supprimée !';
$LANGS['sideimagesuccess'] = 'L\'image latérale a été téléchargée avec succès !';
$LANGS['sideimageerror'] = 'L\'image latérale doit être en dessous de 2 mo et doit être un fichier d\'image !';
$LANGS['sideimagedeleted'] = 'L\'image latérale a bien été supprimée !';
$LANGS['avatarsuccess'] = 'L\'avatar a été téléchargé avec succès !';
$LANGS['avatarerror'] = 'L\'avatar doit être en dessous de 1 mo et doit être un fichier d\'image !';
$LANGS['avatardeleted'] = '"L\'avatar a bien été supprimé !';
$LANGS['changessaved'] = 'Les modifications ont été enregistrées avec succès !';
$LANGS['profilesdisabled'] = 'Les profils ont étés désactivés pour maintenance.';
$LANGS['bulletinposted'] = 'Le bulletin a été publié !';
$LANGS['channelcommentsent'] = 'Le commentaire de chaîne a été publié !';
$LANGS['somethingwentwrong'] = 'Quelque chose s\'est mal passé !';
$LANGS['replysubmitted'] = 'La réponse a été publié !';
$LANGS['onlyonecomment'] = 'Vous ne pouvez publier qu\'un seul commentaire !';
$LANGS['vpnbrowser'] = "Vous ne pouvez pas utiliser un VPN pour créer un compte BitView !";
$LANGS['torbrowser'] = "Vous ne pouvez pas utiliser TOR pour créer un compte BitView !";
$LANGS['captchaincorrect'] = "Vous n'avez pas entré le code correctement.";
$LANGS['toomanyaccounts'] = 'Vous avez trop de comptes !';
$LANGS['banned2times'] = "Vous avez déjà été banni deux fois. Vous ne pouvez pas créer plus de comptes !";
$LANGS['nohistory'] = "Vous n'avez pas encore regardé de vidéos au cours de cette session !";
$LANGS['historycleared'] = 'Votre historique de visionnage a été vidé.';
//$LANGS['watchdisabled'] = 'Video watching has been disabled for maintenance.';
$LANGS['watchdisabled'] = 'Le visionnage de vidéos est désactivé pour maintenance.';
$LANGS['videonotexist'] = 'Cette vidéo n\'existe pas ou a été supprimée en raison d\'une violation des conditions d\'utilisation.';
$LANGS['responseerror'] = 'Quelque chose s\'est mal passé avec votre vidéo-réponse ! Veuillez revérifier l\'URL.';
$LANGS['responseexist'] = 'La vidéo a déjà été demandée !';
$LANGS['responseadded'] = 'Vidéo-réponse ajoutée avec succès !';
$LANGS['responseaccepted'] = 'Nouvelle vidéo-réponse acceptée !';
$LANGS['60secscomment'] = 'Veuillez patienter 60 secondes avant d\'ajouter un nouveau commentaire !';
$LANGS['plnotexist'] = "Cette playlist n'existe pas !";
$LANGS['positionnotexist'] = "Cette position n'existe pas !";
$LANGS['positionchanged'] = "La position de la vidéo a été changée !";
$LANGS['invalidurl'] = 'URL invalide !';
$LANGS['videopladded'] = 'Vidéo ajoutée avec succès !';
$LANGS['videoalreadyinpl'] = 'Cette vidéo est déjà dans cette playlist !';
$LANGS['plvideoremoved'] = 'Cette vidéo a été supprimée !';
$LANGS['plinfochanged'] = 'Les informations de la playlist ont été modifiées avec succès !';
$LANGS['pltitleneeded'] = 'Vous devez définir un titre pour la playlist !';
$LANGS['flashenabled'] = 'Adobe Flash Player activé !';
$LANGS['flashdisabled'] = 'Adobe Flash Player desactivé !';
$LANGS['messagesent'] = 'Le message a été envoyé avec succès !';
$LANGS['usernotexist'] = "Cet utilisateur n'existe pas !";
$LANGS['nocriteria'] = "Vous ne remplissez pas les critères requis !";
$LANGS['alreadypartner'] = 'Vous avez déjà été accepté dans le programme partenaire !';
$LANGS['alreadyapplied'] = 'Vous avez déjà postulé !';
$LANGS['applicationsent'] = 'Votre candidature a été soumise !';
$LANGS['joinedgroup'] = 'Vous avez rejoint le groupe avec succès !';
$LANGS['leftgroup'] = 'Vous avez quitté le groupe avec succès !';
$LANGS['grouprequest'] = 'Vous avez envoyé une demande de groupe avec succès ! Maintenant, vous devez attendre qu\'il soit accepté.';
$LANGS['groupdeleted'] = 'Le groupe a été supprimé avec succès !';
$LANGS['groupvideoadded'] = 'La vidéo a été soumise !';
$LANGS['groupvideoalreadyadded'] = 'Vous avez déjà soumis cette vidéo !';
$LANGS['groupvideonotowned'] = "Vous n'êtes pas propriétaire de cette vidéo !";
$LANGS['3groups'] = 'Vous ne pouvez posséder que 3 groupes au maximum !';
$LANGS['groupnameempty'] = 'Le nom du groupe ne peut pas être vide !';
$LANGS['groupdescempty'] = 'La description du groupe ne peut pas être vide !';
$LANGS['groupnoimage'] = 'Vous devez télécharger une image pour votre groupe !';
$LANGS['groupimageerror'] = 'Les images de groupe doivent avoir une taille inférieure à 1 Mo et être un fichier image !';
$LANGS['groupcreated'] = 'Le groupe a été créé avec succès !';
$LANGS['urlnotvalid'] = "Cette URL de vidéo n'est pas valide !";
$LANGS['discussiondeleted'] = 'Le sujet a été supprimé avec succès !';
$LANGS['videodeleted'] = 'La vidéo a été supprimée avec succès !';
$LANGS['pldeleted'] = 'La playlist a été supprimée avec succès !';
$LANGS['invitesent'] = "L'invitation d'ami a été envoyée avec succès !";
$LANGS['descriptionchanged'] = 'La description a été modifiée !';
$LANGS['emptymessage'] = 'Vous ne pouvez pas envoyer de messages vides !';
$LANGS['styleupdated'] = 'Le style du groupe a été mis à jour avec succès !';
$LANGS['imageupdated'] = "L'image du groupe a été mise à jour avec succès !";
$LANGS['plcreated'] = 'La playlist a été créée avec succès !';
$LANGS['discussiontitle2chars'] = 'Le titre doit comporter plus de 2 caractères !';
$LANGS['discussiondesc10chars'] = 'Les descriptions doivent comporter plus de 10 caractères !';
$LANGS['5discussionsday'] = 'Vous ne pouvez créer que 5 discussions par jour !';
$LANGS['discussionsuccess'] = 'La discussion a été créée avec succès !';
$LANGS['memberaccepted1'] = '';
$LANGS['memberaccepted2'] = 'a été accepté avec succès !';
$LANGS['memberdeclined1'] = '';
$LANGS['memberdeclined2'] = 'a été refusé avec succès !';
$LANGS['videoaccepted'] = 'La vidéo a été acceptée avec succès !';
$LANGS['bulletindeleted'] = 'Le bulletin a été supprimé avec succès !';
$LANGS['messagedeleted'] = 'Le message a été supprimé avec succès !';
$LANGS['responsedeleted'] = 'La réponse vidéo a été supprimée avec succès !';
$LANGS['flagmod'] = "Vous ne pouvez pas signaler un utilisateur qui a des permissions de modérateur !";
$LANGS['userflagged'] = 'Le signalement a été soumis !';
$LANGS['discussionreplysubmitted'] = 'La réponse a été envoyée avec succès !';
$LANGS['discussionreplyempty'] = 'Une réponse ne peut pas être vide !';
$LANGS['moreinfo'] = 'plus d\'informations';
$LANGS['lessinfo'] = 'moins d\'informations';
$LANGS['category'] = 'Catégorie';
$LANGS['recordedon'] = 'Enregistré le';
$LANGS['location'] = 'Lieu';
$LANGS['tags'] = 'Tags';
$LANGS['embed'] = 'Intégrer';
$LANGS['partnervideo'] = 'Vidéo du partenaire';
$LANGS['subscribe'] = 'S\'abonner';
$LANGS['unsubscribe'] = 'Se désabonner';
$LANGS['nodesc'] = 'Pas de description...';
$LANGS['logintosub'] = 'Veuillez vous connecter pour vous abonner !';
$LANGS['logintosubbox'] = 'Vous voulez vous abonner ?';
$LANGS['subyourself'] = 'Vous ne pouvez pas vous abonner à vous-même !';
$LANGS['videoowner'] = 'Options du propriétaire de la vidéo';
$LANGS['editvideo'] = 'Modifier la vidéo';
$LANGS['insight'] = 'Statistiques';
$LANGS['morefrom'] = 'Plus de :';
$LANGS['relatedvideos'] = 'Vidéos similaires';
$LANGS['novideosfound'] = 'Aucune vidéo trouvée...';
$LANGS['morevideos'] = 'Voir toutes les vidéos';
$LANGS['changeplayersize'] = 'Modifier la taille du lecteur';
$LANGS['newwindow'] = 'Regarder cette vidéo dans une nouvelle fenêtre';
$LANGS['featuredtext'] = 'Cette vidéo a été mise en avant. Vous voulez voir plus de vidéos mises en avant ? <a href="/browse?t=2">Cliquez ici</a>.';
$LANGS['ratings'] = 'évaluations';
$LANGS['rating'] = 'évaluation';
$LANGS['favorite'] = 'Favori';
$LANGS['addtofav'] = 'Ajouter aux favoris';
$LANGS['removefav'] = 'Supprimer des favoris';
$LANGS['favadded'] = 'Cette vidéo a été <strong>ajoutée</strong> à vos <a href="/my_favorites">favoris</a>.';
$LANGS['favremoved'] = 'Cette vidéo a été <strong>supprimée</strong> de vos <a href="/my_favorites">favoris</a>.';
$LANGS['undo'] = 'Annuler';
$LANGS['thanksforrating'] = 'Merci d\'avoir évalué !';
$LANGS['playlistdesc'] = 'Pour ajouter une nouvelle vidéo à votre playlist, rendez-vous sur la page <a href="/my_playlists">"Mes Playlists"</a>.';
$LANGS['addtoplaylist'] = 'Ajouter à la playlist';
$LANGS['addtoplaylistsuccess'] = 'La vidéo a été ajoutée à votre playlist.';
$LANGS['share'] = 'Partager';
$LANGS['flag'] = 'Signaler';
$LANGS['flagthisvid'] = 'Signaler cette vidéo';
$LANGS['removeflag'] = 'Retirer le signalement';
$LANGS['flagnote'] = "Avant de signaler : assurez-vous que la vidéo enfreint une règle. Ne signalez pas simplement parce que vous n'aimez pas cette vidéo, sinon vous entraverez le travail des modérateurs.";
$LANGS['statadded'] = 'Ajoutée';
$LANGS['statviews'] = 'Vues';
$LANGS['statratings'] = 'Évaluations';
$LANGS['statresponses'] = 'Réponses';
$LANGS['statcomments'] = 'Commentaires';
$LANGS['statfavorited'] = 'Favoris';
$LANGS['statsdata'] = 'Statistiques et données';
$LANGS['honors'] = 'Distinctions pour cette vidéo';
$LANGS['mostviewed'] = 'Les plus regardées';
$LANGS['topfavorited'] = 'Les plus favorisées';
$LANGS['times'] = 'fois';
$LANGS['mostdiscussed'] = 'Les plus commentées';
$LANGS['toprated'] = 'Les mieux notées';
$LANGS['videolinks'] = 'Sites qui font un lien vers cette vidéo';
$LANGS['clicksfrom'] = 'clics depuis';
$LANGS['responses'] = 'Réponses vidéo';
$LANGS['responsespost'] = 'Publier une réponse vidéo';
$LANGS['textcomments'] = 'Commentaires textuels';
$LANGS['commentpost'] = 'Publier un commentaire textuel';
$LANGS['commentonthisvideo'] = 'Commenter cette vidéo';
$LANGS['postcomment'] = 'Publier un commentaire';
$LANGS['remainingcounter'] = 'Compteur de caractères restants';
$LANGS['nocomments'] = 'Cette vidéo n\'a <b>aucun commentaire</b>.';
$LANGS['noresponses'] = 'Cette vidéo n\'a <b>aucune réponse</b>.';
$LANGS['commviewall'] = 'Voir tout';
$LANGS['delete'] = 'Supprimer';
$LANGS['reply'] = 'Répondre';
$LANGS['commentlogin'] = 'Voulez-vous commenter ?';
$LANGS['commentlogindesc'] = '<a href="/signup">Inscrivez-vous à BitView</a> gratuitement ou <a href="/login">connectez-vous</a> si vous êtes déjà membre.';
$LANGS['logintoresponse'] = 'Connectez-vous pour poster une réponse vidéo';
$LANGS['logintocomment'] = 'Connectez-vous pour poster un commentaire';
$LANGS['logintofav'] = 'Voulez-vous ajouter aux favoris ? <a href="/login">Connectez-vous</a> ou <a href="/signup">inscrivez-vous</a> maintenant !';
$LANGS['logintopl'] = 'Voulez-vous ajouter à une playlist ? <a href="/login">Connectez-vous</a> ou <a href="/signup">inscrivez-vous</a> maintenant !';
$LANGS['logintoflag'] = 'Voulez-vous signaler une vidéo ? <a href="/login">Connectez-vous</a> ou <a href="/signup">inscrivez-vous</a> maintenant !';
$LANGS['close'] = 'fermer';
$LANGS['addresponse'] = 'Ajouter une réponse';
$LANGS['recentlyrated'] = 'Recently rated';
$LANGS['commentsdisabled'] = 'Adding comments has been disabled for this video.';
$LANGS['ratingsdisabled'] = 'Ratings disabled';
$LANGS['rating1'] = 'Poor';
$LANGS['rating2'] = 'Nothing special';
$LANGS['rating3'] = 'Worth watching';
$LANGS['rating4'] = 'Pretty cool';
$LANGS['rating5'] = 'Awesome!';
$LANGS['saving'] = 'Saving...';
$LANGS['signintorate'] = '<a href="/login">Sign in</a> to rate';
$LANGS['addingcomment'] = "Adding comment...";
$LANGS['commentposted'] = "Comment Posted!";
$LANGS['commentspammsg'] = "Posting the same comment again is considered spam. Try again later.";
$LANGS['commentspammsg2'] = "Posting more than 5 comments consecutively is considered spam. Try again later.";
$LANGS['emptycomment'] = "Your comment can't be empty.";
$LANGS['spambutton'] = "Spam";
$LANGS['notspambutton'] = "Not Spam";
$LANGS['commentsspam'] = "Comment(s) marked as spam";
$LANGS['marked'] = "Marked as spam";
$LANGS['spamshow'] = "Show";
$LANGS['spamhide'] = "Hide";
$LANGS['poorcomment'] = "Poor comment";
$LANGS['goodcomment'] = "Good comment";
$LANGS['pleasesignin'] = "Please sign in";
$LANGS['showmorecomments'] = "Show More Comments";
$LANGS['showingamount'] = "<strong>Showing {number}</strong> of {total} comments";
$LANGS['customize'] = "Customize";
$LANGS['customizedesc'] = "After making your selection, copy and paste the embed code above. The code changes based on your selection.";
/* Watch comments */
$LANGS['allcomments'] = 'Tout les commentaires';
/* Sign In */
$LANGS['username'] = "Nom d'utilisateur";
$LANGS['password'] = "Mot de passe";
$LANGS['logindesc'] = "Connectez-vous à BitView avec votre compte";
$LANGS['forgot'] = "Impossible d'accéder à votre compte ?";
$LANGS['forgotmsg'] = 'Veuillez nous contacter sur Twitter (@BitView_) ou envoyer un message aux modérateurs sur Discord (lien dans le pied de page).';
$LANGS['noaccount'] = "Vous n'avez pas de compte ?";
$LANGS['signuptobv'] = "Inscrivez-vous sur BitView !";
$LANGS['signintobv'] = "Connectez-vous à BitView !";
$LANGS['signindesc1'] = "Rejoignez la plus grande communauté mondiale de partage de vidéos !";
$LANGS['signindesc2'] = "BitView vous permet de :";
$LANGS['signindesc3'] = "Montrer vos vidéos préférées au monde entier";
$LANGS['signindesc4'] = "Bloguer les vidéos que vous prenez avec votre appareil photo numérique ou votre téléphone portable";
$LANGS['signindesc5'] = "Montrer vos vidéos de manière sécurisée et privée à vos amis et à votre famille partout dans le monde";
$LANGS['notallowed'] = "Vous avez déjà été banni 3 fois. Vous n'êtes plus autorisé à utiliser BitView !";
$LANGS['wrongpassword'] = 'Mauvais mot de passe ! Veuillez réessayer.';
$LANGS['staysigned'] = "Stay signed in";
/* Sign Up */
$LANGS['email'] = "Adresse e-mail";
$LANGS['passwordstrength'] = "Force du mot de passe";
$LANGS['psnone'] = "Aucune";
$LANGS['psweak'] = "Faible";
$LANGS['psfair'] = "Moyenne";
$LANGS['psgood'] = "Bonne";
$LANGS['psstrong'] = "Solide";
$LANGS['repassword'] = "Retapez le mot de passe";
$LANGS['usernamedesc'] = "Votre nom d'utilisateur ne peut contenir que des lettres de A à Z ou des chiffres de 0 à 9.";
$LANGS['captcha'] = "Captcha";
$LANGS['acceptterms'] = "J'accepte les <a href='/terms'>Conditions d'utilisation</a> et la <a href='/privacy'>Politique de confidentialité</a>.";
$LANGS['copyrighttext'] = "Le téléchargement de matériel que vous ne possédez pas constitue une violation du droit d'auteur et est illégal. Si vous téléchargez du matériel que vous ne possédez pas, votre compte sera supprimé.";
$LANGS['mustaccept'] = "Vous devez accepter les Conditions d'utilisation et la Politique de confidentialité pour créer votre compte.";
$LANGS['createaccount'] = "Créer mon compte";
$LANGS['signuperror'] = "Une erreur s'est produite lors de la création de votre compte.";
$LANGS['sameemail'] = "Ce nom d'utilisateur ou cette adresse e-mail est déjà utilisé(e) !";
$LANGS['usernamechar'] = "Les noms d'utilisateur ne peuvent contenir que des lettres et des chiffres !";
$LANGS['required'] = "Tous les champs de texte sont obligatoires !";
$LANGS['notmatch'] = "Les mots de passe ne correspondent pas !";
$LANGS['signuphead'] = "Commencez avec votre compte";
/* Videos Page */
$LANGS['recentvideos'] = 'Vidéos récentes';
$LANGS['random'] = 'Aléatoire';
$LANGS['dropdownmore'] = 'plus';
$LANGS['allcatin'] = 'dans';
$LANGS['allcat'] = 'Toutes les catégories';
$LANGS['categories'] = 'Catégories';
$LANGS['nomorevideos'] = 'Aucune autre vidéo n\'a été trouvée...';
$LANGS['timetoday'] = 'Aujourd\'hui';
$LANGS['timeweek'] = 'Cette semaine';
$LANGS['timemonth'] = 'Ce mois-ci';
$LANGS['alltime'] = 'Tout le temps';
$LANGS['when'] = 'When';
$LANGS['videofavorites'] = 'favorites';
$LANGS['videocomments'] = 'comments';
$LANGS['trendingtopics'] = 'Trending Topics';
/* Channels Page */
$LANGS['mostsubscribed'] = 'Les plus abonnés';
$LANGS['lastlogin'] = 'Dernière connexion';
$LANGS['cstatviews'] = 'Vues';
$LANGS['cstatvideos'] = 'Vidéos';
$LANGS['cstatsubs'] = 'Abonnés';
$LANGS['nochannels'] = 'Aucune autre chaîne n\'a été trouvée...';
/* Video Categories */
$LANGS['cat1'] = "Films et animations";
$LANGS['cat2'] = "Voitures et véhicules";
$LANGS['cat3'] = "Éducation et enseignement";
$LANGS['cat4'] = "Divertissement";
$LANGS['cat5'] = "Événements et mariages";
$LANGS['cat6'] = "Famille";
$LANGS['cat7'] = "Vente et enchères";
$LANGS['cat8'] = "Loisirs et intérêts";
$LANGS['cat9'] = "Humour";
$LANGS['cat10'] = "Musique";
$LANGS['cat11'] = "Actualités et politique";
$LANGS['cat12'] = "Insolite et scandaleux";
$LANGS['cat13'] = "Personnes et blogs";
$LANGS['cat14'] = "Rencontres et rencontres";
$LANGS['cat15'] = "Animaux et animaux domestiques";
$LANGS['cat16'] = "Science et technologie";
$LANGS['cat17'] = "Courts métrages";
$LANGS['cat18'] = "Sports";
$LANGS['cat19'] = "Voyages et événements";
$LANGS['cat20'] = "Jeux vidéo";
$LANGS['cat21'] = "Videoblogging";
/* Channel Types */
$LANGS['type0'] = "Aucun";
$LANGS['type1'] = "Membre";
$LANGS['type1p'] = "Membres";
$LANGS['type2'] = "Humoriste";
$LANGS['type2p'] = "Humoristes";
$LANGS['type3'] = "Réalisateur";
$LANGS['type3p'] = "Réalisateurs";
$LANGS['type4'] = "Gourou";
$LANGS['type4p'] = "Gourous";
$LANGS['type5'] = "Musicien";
$LANGS['type5p'] = "Musiciens";
$LANGS['type6'] = "Journaliste";
$LANGS['type6p'] = "Journalistes";
/* Countries */
$LANGS['cat_AF'] = "Afghanistan";
$LANGS['cat_AX'] = "Îles Åland";
$LANGS['cat_AL'] = "Albanie";
$LANGS['cat_DZ'] = "Algérie";
$LANGS['cat_AS'] = "Samoa américaines";
$LANGS['cat_AD'] = "Andorre";
$LANGS['cat_AO'] = "Angola";
$LANGS['cat_AI'] = "Anguilla";
$LANGS['cat_AQ'] = "Antarctique";
$LANGS['cat_AG'] = "Antigua-et-Barbuda";
$LANGS['cat_AR'] = "Argentine";
$LANGS['cat_AM'] = "Arménie";
$LANGS['cat_AW'] = "Aruba";
$LANGS['cat_AU'] = "Australie";
$LANGS['cat_AT'] = "Autriche";
$LANGS['cat_AZ'] = "Azerbaïdjan";
$LANGS['cat_BS'] = "Bahamas";
$LANGS['cat_BH'] = "Bahreïn";
$LANGS['cat_BD'] = "Bangladesh";
$LANGS['cat_BB'] = "Barbade";
$LANGS['cat_BY'] = "Biélorussie";
$LANGS['cat_BE'] = "Belgique";
$LANGS['cat_BZ'] = "Belize";
$LANGS['cat_BJ'] = "Bénin";
$LANGS['cat_BM'] = "Bermudes";
$LANGS['cat_BT'] = "Bhoutan";
$LANGS['cat_BO'] = "Bolivie";
$LANGS['cat_BQ'] = "Pays-Bas caribéens";
$LANGS['cat_BA'] = "Bosnie-Herzégovine";
$LANGS['cat_BW'] = "Botswana";
$LANGS['cat_BV'] = "Île Bouvet";
$LANGS['cat_BR'] = "Brésil";
$LANGS['cat_IO'] = "Territoire britannique de l'océan Indien";
$LANGS['cat_BN'] = "Brunéi Darussalam";
$LANGS['cat_BG'] = "Bulgarie";
$LANGS['cat_BF'] = "Burkina Faso";
$LANGS['cat_BI'] = "Burundi";
$LANGS['cat_KH'] = "Cambodge";
$LANGS['cat_CM'] = "Cameroun";
$LANGS['cat_CA'] = "Canada";
$LANGS['cat_CV'] = "Cap-Vert";
$LANGS['cat_KY'] = "Îles Caïmans";
$LANGS['cat_CF'] = "République centrafricaine";
$LANGS['cat_TD'] = "Tchad";
$LANGS['cat_CL'] = "Chili";
$LANGS['cat_CN'] = "Chine";
$LANGS['cat_CX'] = "Île Christmas";
$LANGS['cat_CC'] = "Îles Cocos (Keeling)";
$LANGS['cat_CO'] = "Colombie";
$LANGS['cat_KM'] = "Comores";
$LANGS['cat_CG'] = "République du Congo";
$LANGS['cat_CD'] = "République démocratique du Congo";
$LANGS['cat_CK'] = "Îles Cook";
$LANGS['cat_CR'] = "Costa Rica";
$LANGS['cat_CI'] = "Côte d'Ivoire";
$LANGS['cat_HR'] = "Croatie";
$LANGS['cat_CU'] = "Cuba";
$LANGS['cat_CW'] = "Curaçao";
$LANGS['cat_CY'] = "Chypre";
$LANGS['cat_CZ'] = "République tchèque";
$LANGS['cat_DK'] = "Danemark";
$LANGS['cat_DJ'] = "Djibouti";
$LANGS['cat_DM'] = "Dominique";
$LANGS['cat_DO'] = "République dominicaine";
$LANGS['cat_EC'] = "Équateur";
$LANGS['cat_EG'] = "Égypte";
$LANGS['cat_SV'] = "Salvador";
$LANGS['cat_GQ'] = "Guinée équatoriale";
$LANGS['cat_ER'] = "Érythrée";
$LANGS['cat_EE'] = "Estonie";
$LANGS['cat_ET'] = "Éthiopie";
$LANGS['cat_FK'] = "Îles Malouines";
$LANGS['cat_FO'] = "Îles Féroé";
$LANGS['cat_FJ'] = "Fidji";
$LANGS['cat_FI'] = "Finlande";
$LANGS['cat_FR'] = "France";
$LANGS['cat_GF'] = "Guyane française";
$LANGS['cat_FG'] = "Guyane française";
$LANGS['cat_PF'] = "Polynésie française";
$LANGS['cat_TF'] = "Terres australes françaises";
$LANGS['cat_GA'] = "Gabon";
$LANGS['cat_GM'] = "Gambie";
$LANGS['cat_GE'] = "Géorgie";
$LANGS['cat_DE'] = "Allemagne";
$LANGS['cat_GH'] = "Ghana";
$LANGS['cat_GI'] = "Gibraltar";
$LANGS['cat_GR'] = "Grèce";
$LANGS['cat_GL'] = "Groenland";
$LANGS['cat_GD'] = "Grenade";
$LANGS['cat_GP'] = "Guadeloupe";
$LANGS['cat_GU'] = "Guam";
$LANGS['cat_GT'] = "Guatemala";
$LANGS['cat_GG'] = "Guernesey";
$LANGS['cat_GN'] = "Guinée";
$LANGS['cat_GW'] = "Guinée-Bissau";
$LANGS['cat_GY'] = "Guyana";
$LANGS['cat_HT'] = "Haïti";
$LANGS['cat_HM'] = "Îles Heard-et-MacDonald";
$LANGS['cat_VA'] = "Saint-Siège (État de la Cité du Vatican)";
$LANGS['cat_HN'] = "Honduras";
$LANGS['cat_HK'] = "Hong Kong";
$LANGS['cat_HU'] = "Hongrie";
$LANGS['cat_IS'] = "Islande";
$LANGS['cat_IN'] = "Inde";
$LANGS['cat_ID'] = "Indonésie";
$LANGS['cat_IR'] = "Iran";
$LANGS['cat_IQ'] = "Irak";
$LANGS['cat_IE'] = "Irlande";
$LANGS['cat_IM'] = "Île de Man";
$LANGS['cat_IL'] = "Israël";
$LANGS['cat_IT'] = "Italie";
$LANGS['cat_JM'] = "Jamaïque";
$LANGS['cat_JP'] = "Japon";
$LANGS['cat_JE'] = "Jersey";
$LANGS['cat_JO'] = "Jordanie";
$LANGS['cat_KZ'] = "Kazakhstan";
$LANGS['cat_KE'] = "Kenya";
$LANGS['cat_KI'] = "Kiribati";
$LANGS['cat_XK'] = "Kosovo";
$LANGS['cat_KP'] = "Corée du Nord";
$LANGS['cat_KR'] = "Corée du Sud";
$LANGS['cat_KW'] = "Koweït";
$LANGS['cat_KG'] = "Kirghizistan";
$LANGS['cat_LA'] = "Laos";
$LANGS['cat_LV'] = "Lettonie";
$LANGS['cat_LB'] = "Liban";
$LANGS['cat_LS'] = "Lesotho";
$LANGS['cat_LR'] = "Libéria";
$LANGS['cat_LY'] = "Libye";
$LANGS['cat_LI'] = "Liechtenstein";
$LANGS['cat_LT'] = "Lituanie";
$LANGS['cat_LU'] = "Luxembourg";
$LANGS['cat_MO'] = "Macao";
$LANGS['cat_MK'] = "Macédoine du Nord";
$LANGS['cat_MG'] = "Madagascar";
$LANGS['cat_MW'] = "Malawi";
$LANGS['cat_MY'] = "Malaisie";
$LANGS['cat_MV'] = "Maldives";
$LANGS['cat_ML'] = "Mali";
$LANGS['cat_MT'] = "Malte";
$LANGS['cat_MH'] = "Îles Marshall";
$LANGS['cat_MQ'] = "Martinique";
$LANGS['cat_MR'] = "Mauritanie";
$LANGS['cat_MU'] = "Maurice";
$LANGS['cat_YT'] = "Mayotte";
$LANGS['cat_MX'] = "Mexique";
$LANGS['cat_FM'] = "Micronésie";
$LANGS['cat_MD'] = "Moldavie";
$LANGS['cat_MC'] = "Monaco";
$LANGS['cat_MN'] = "Mongolie";
$LANGS['cat_ME'] = "Monténégro";
$LANGS['cat_MS'] = "Montserrat";
$LANGS['cat_MA'] = "Maroc";
$LANGS['cat_MZ'] = "Mozambique";
$LANGS['cat_MM'] = "Myanmar";
$LANGS['cat_NA'] = "Namibie";
$LANGS['cat_NR'] = "Nauru";
$LANGS['cat_NP'] = "Népal";
$LANGS['cat_NL'] = "Pays-Bas";
$LANGS['cat_AN'] = "Antilles néerlandaises";
$LANGS['cat_NC'] = "Nouvelle-Calédonie";
$LANGS['cat_NZ'] = "Nouvelle-Zélande";
$LANGS['cat_NI'] = "Nicaragua";
$LANGS['cat_NE'] = "Niger";
$LANGS['cat_NG'] = "Nigéria";
$LANGS['cat_NU'] = "Niue";
$LANGS['cat_NF'] = "Île Norfolk";
$LANGS['cat_MP'] = "Îles Mariannes du Nord";
$LANGS['cat_NO'] = "Norvège";
$LANGS['cat_OM'] = "Oman";
$LANGS['cat_PK'] = "Pakistan";
$LANGS['cat_PW'] = "Palaos";
$LANGS['cat_PS'] = "Palestine";
$LANGS['cat_PA'] = "Panama";
$LANGS['cat_PG'] = "Papouasie-Nouvelle-Guinée";
$LANGS['cat_PY'] = "Paraguay";
$LANGS['cat_PE'] = "Pérou";
$LANGS['cat_PH'] = "Philippines";
$LANGS['cat_PN'] = "Îles Pitcairn";
$LANGS['cat_PL'] = "Pologne";
$LANGS['cat_PT'] = "Portugal";
$LANGS['cat_PR'] = "Porto Rico";
$LANGS['cat_QA'] = "Qatar";
$LANGS['cat_RE'] = "Réunion";
$LANGS['cat_RO'] = "Roumanie";
$LANGS['cat_RU'] = "Russie";
$LANGS['cat_RW'] = "Rwanda";
$LANGS['cat_BL'] = "Saint-Barthélémy";
$LANGS['cat_SH'] = "Sainte-Hélène";
$LANGS['cat_KN'] = "Saint-Christophe-et-Niévès";
$LANGS['cat_LC'] = "Sainte-Lucie";
$LANGS['cat_MF'] = "Saint-Martin (partie française)";
$LANGS['cat_PM'] = "Saint-Pierre-et-Miquelon";
$LANGS['cat_VC'] = "Saint-Vincent-et-les-Grenadines";
$LANGS['cat_WS'] = "Samoa";
$LANGS['cat_SM'] = "Saint-Marin";
$LANGS['cat_ST'] = "Sao Tomé-et-Principe";
$LANGS['cat_SA'] = "Arabie saoudite";
$LANGS['cat_SN'] = "Sénégal";
$LANGS['cat_RS'] = "Serbie";
$LANGS['cat_SC'] = "Seychelles";
$LANGS['cat_SL'] = "Sierra Leone";
$LANGS['cat_SG'] = "Singapour";
$LANGS['cat_SX'] = "Saint-Martin";
$LANGS['cat_SK'] = "Slovaquie";
$LANGS['cat_SI'] = "Slovénie";
$LANGS['cat_SB'] = "Îles Salomon";
$LANGS['cat_SO'] = "Somalie";
$LANGS['cat_ZA'] = "Afrique du Sud";
$LANGS['cat_GS'] = "Géorgie du Sud-et-les îles Sandwich du Sud";
$LANGS['cat_ES'] = "Espagne";
$LANGS['cat_LK'] = "Sri Lanka";
$LANGS['cat_SD'] = "Soudan";
$LANGS['cat_SR'] = "Suriname";
$LANGS['cat_SJ'] = "Svalbard et Jan Mayen";
$LANGS['cat_SZ'] = "Eswatini";
$LANGS['cat_SE'] = "Suède";
$LANGS['cat_CH'] = "Suisse";
$LANGS['cat_SS'] = "Soudan du Sud";
$LANGS['cat_SY'] = "Syrie";
$LANGS['cat_TW'] = "Taïwan";
$LANGS['cat_TJ'] = "Tadjikistan";
$LANGS['cat_TZ'] = "Tanzanie";
$LANGS['cat_TH'] = "Thaïlande";
$LANGS['cat_TL'] = "Timor oriental";
$LANGS['cat_TG'] = "Togo";
$LANGS['cat_TK'] = "Tokelau";
$LANGS['cat_TO'] = "Tonga";
$LANGS['cat_TT'] = "Trinité-et-Tobago";
$LANGS['cat_TN'] = "Tunisie";
$LANGS['cat_TR'] = "Turquie";
$LANGS['cat_TM'] = "Turkménistan";
$LANGS['cat_TC'] = "Îles Turks-et-Caïcos";
$LANGS['cat_TV'] = "Tuvalu";
$LANGS['cat_UG'] = "Ouganda";
$LANGS['cat_UA'] = "Ukraine";
$LANGS['cat_AE'] = "Émirats arabes unis";
$LANGS['cat_GB'] = "Royaume-Uni";
$LANGS['cat_US'] = "États-Unis";
$LANGS['cat_UM'] = "Îles mineures éloignées des États-Unis";
$LANGS['cat_UY'] = "Uruguay";
$LANGS['cat_UZ'] = "Ouzbékistan";
$LANGS['cat_VU'] = "Vanuatu";
$LANGS['cat_VE'] = "Venezuela";
$LANGS['cat_VN'] = "Vietnam";
$LANGS['cat_VG'] = "Îles Vierges britanniques";
$LANGS['cat_VI'] = "Îles Vierges des États-Unis";
$LANGS['cat_WF'] = "Wallis-et-Futuna";
$LANGS['cat_EH'] = "Sahara occidental";
$LANGS['cat_YE'] = "Yémen";
$LANGS['cat_ZM'] = "Zambie";
$LANGS['cat_ZW'] = "Zimbabwe";
/* My Subscriptions */
$LANGS['newvideos'] = "Nouvelles vidéos";
/* Account */
$LANGS['myaccount'] = "Mon compte";
$LANGS['vidsfavs'] = "Vidéos, Favoris et Listes de lecture";
$LANGS['accountsettings'] = "Paramètres du compte";
$LANGS['viewinghistory'] = "Historique";
$LANGS['mychannel'] = "Ma chaîne";
$LANGS['uploadedvideos'] = "Vidéos téléchargées";
$LANGS['new'] = "Nouveau";
$LANGS['playlist'] = "Liste de lecture";
$LANGS['videoupload'] = "Téléchargement de vidéos";
$LANGS['nosubvideos'] = "Vous n'avez aucune inscription...";
$LANGS['nofavvideos'] = "Vous n'avez pas ajouté de vidéos en favoris...";
/* My Videos */
$LANGS['sortby'] = "Trier par";
$LANGS['sorttitle'] = "Titre";
$LANGS['sorttime'] = "Temps";
$LANGS['sortdateadded'] = "Date d'ajout";
$LANGS['sortviews'] = "Vues";
$LANGS['sortrating'] = "Évaluation";
$LANGS['stattime'] = "Temps";
$LANGS['statrating'] = "Évaluation";
$LANGS['statbroadcast'] = "Diffusion";
$LANGS['statrawfile'] = "Fichier brut";
$LANGS['public'] = "Public";
$LANGS['private'] = "Privé";
$LANGS['live'] = "En direct !";
$LANGS['converting'] = "Conversion en cours...";
$LANGS['uploading'] = "Téléchargement en cours...";
$LANGS['addvidsto'] = "Ajouter des vidéos à";
$LANGS['play'] = "Lire";
$LANGS['edit'] = "Modifier";
$LANGS['setasavatar'] = "Définir comme image de profil";
$LANGS['downloadmp4'] = "Télécharger MP4";
$LANGS['deleteconfirmation'] = "Êtes-vous sûr(e) de vouloir supprimer cette vidéo ?";
$LANGS['novideos'] = 'Vous n\'avez téléchargé aucune vidéo. <a href="/my_videos_upload">Commencez à télécharger une vidéo maintenant</a> !';
$LANGS['nomyvideosresults'] = "Aucun résultat. Vérifiez l'orthographe de votre recherche.";
/* Edit Video */
$LANGS['title'] = "Titre";
$LANGS['desc'] = "Description";
$LANGS['privacy'] = "Confidentialité";
$LANGS['saveinfo'] = "Enregistrer les informations";
$LANGS['saveinfoconfirm'] = "Êtes-vous sûr(e) de vouloir modifier les informations de la vidéo ?";
$LANGS['viewchart'] = "Voir le graphique";
$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.";
/* My Playlists */
$LANGS['addedpl'] = "Ajouté";
$LANGS['frompl'] = "De";
$LANGS['nopl'] = "Pas de playlist à été trouvé....";
/* My Playlist */
$LANGS['playlistedit'] = "Modifier la playlist";
$LANGS['videourl'] = "URL de la vidéo";
$LANGS['add'] = "Ajouter";
$LANGS['editinfo'] = "Modifer l'info";
/* Edit Playlist */
$LANGS['pledittitle'] = "Modifier la playlist";
$LANGS['pleditdesc'] = "Les playlists sont des collections de vidéos que vous pouvez organiser selon vos préférences.";
$LANGS['cancel'] = "Annuler";
/* 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";
$LANGS['approvevideos'] = "Approve Videos";
$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 your termination.";
$LANGS['updatecss'] = "Update CSS";
$LANGS['groupmessage'] = "Message";
$LANGS['sendmessagetomembers'] = "Send Message to Members";
$LANGS['delgroup'] = "Delete Group";
/* Submit Group Video */
$LANGS['submitvideotitle'] = "Submit Video to Group";
$LANGS['submitvideo'] = "Submit Video";
/* Create Group */
$LANGS['groupname'] = "Group Name";
$LANGS['groupimage'] = "Group Image";
$LANGS['creategroup'] = "Create Group";
$LANGS['creategroupdesc'] = "Groups allow you to create discussions with other members and easily share your videos with others.";
/* Create Group Discussion */
$LANGS['discussiontitle'] = "Discussion Title";
$LANGS['creatediscussiondesc'] = "Discussions are parts of groups in which you discuss the set topic.";
/* Search Results */
$LANGS['resultspre'] = ""; /* Explanation: Use if the search query goes before "results". Example: "Resultados para search" in Spanish. If your 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 your 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 Channels Found...';
$LANGS['noplfound'] = 'No Playlists Found...';
$LANGS['nogroupsfound'] = 'No Groups Found...';
$LANGS['uploaded'] = 'Uploaded';
$LANGS['anytime'] = 'Anytime';
$LANGS['partnervideos'] = 'Partner Videos';
$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 videos found for';
$LANGS['noresultsfoundfor'] = 'No results found for';
/* Profile */
$LANGS['channelsuspended'] = 'This account is suspended.';
$LANGS['accountnotfound'] = 'This account could not be found.';
$LANGS['channel'] = 'Channel';
$LANGS['friends'] = 'Friends';
$LANGS['channelsubscribers'] = 'Subscribers';
$LANGS['linkcomments'] = 'Comments';
$LANGS['bulletins'] = 'Bulletins';
$LANGS['editchannel'] = 'Edit Channel';
$LANGS['type'] = 'Type';
$LANGS['joined'] = 'Joined';
$LANGS['videoswatched'] = 'Videos Watched';
$LANGS['channelviews'] = 'Channel Views';
$LANGS['age'] = 'Age';
$LANGS['gender'] = 'Gender';
$LANGS['male'] = 'Male';
$LANGS['female'] = 'Female';
$LANGS['status'] = 'Status';
$LANGS['single_m'] = 'Single';
$LANGS['single_f'] = 'Single';
$LANGS['taken_m'] = 'Taken';
$LANGS['taken_f'] = 'Taken';
$LANGS['married_m'] = 'Married';
$LANGS['married_f'] = 'Married';
$LANGS['country'] = 'Country';
$LANGS['website'] = 'Website';
$LANGS['hobbies'] = 'Interests and Hobbies';
$LANGS['music'] = 'Music';
$LANGS['movies'] = 'Movies and Shows';
$LANGS['books'] = 'Books';
$LANGS['mostsub'] = 'Most Subscribed';