1<?php 2/** 3 * French language file 4 * 5 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 6 * @author Raphael Wils <info@r-wils.fr> 7 * @author Bellière Ludovic <xrogaan@gmail.com> 8 * @author Benjamin HKB <http://benjamin.hkb.free.fr> 9 * @author iDo <iLoveiDo@gmail.com> 10 */ 11 12// settings must be present and set appropriately for the language 13$lang['encoding'] = 'utf-8'; 14$lang['direction'] = 'ltr'; 15 16// for admin plugins, the menu prompt to be displayed in the admin menu 17// if set here, the plugin doesn't need to override the getMenuText() method 18$lang['menu'] = 'Voir les discussions...'; 19 20$lang['discussion'] = 'Discussion'; 21$lang['comment'] = 'Commentaire'; 22$lang['comments'] = 'Commentaires'; 23$lang['nocomments'] = 'Pas de commentaires'; 24 25$lang['url'] = 'Site web'; 26$lang['address'] = 'Adresse'; 27$lang['date'] = 'Date'; 28$lang['entercomment'] = 'Entrer votre commentaire'; 29$lang['wikisyntax'] = 'La syntaxe wiki est autorisée'; 30$lang['older'] = 'Anciennes discussions'; 31$lang['newer'] = 'Nouvelle discussion'; 32$lang['btn_reply'] = 'Répondre'; 33$lang['btn_hide'] = 'Cacher'; 34$lang['btn_show'] = 'Montrer'; 35$lang['btn_change'] = 'Modifier'; 36$lang['statuschanged'] = 'Statut de discussion modifié'; 37$lang['wordblock'] = 'Votre commentaire a été détécté comme spam.'; 38$lang['moderation'] = 'votre commentaire a été ajouté et est en attente de validation.'; 39$lang['mail_newcomment'] = 'Nouveau commentaire'; 40$lang['subscribe'] = 'Suivre les commentaires'; 41$lang['noguests'] = 'Vous pourriez laisser un commentaire si vous étiez connecté.'; 42 43$lang['status'] = 'Statut'; 44$lang['off'] = 'désactivé'; 45$lang['open'] = 'ouvert'; 46$lang['closed'] = 'fermé'; 47 48$lang['reply'] = 'Réponse'; 49$lang['replies'] = 'Réponses'; 50$lang['newthread'] = 'Nouvelle discussion'; 51$lang['threads'] = 'Discussions'; 52 53//Setup VIM: ex: et ts=2 enc=utf-8 : 54