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['url'] = 'Site web'; 24$lang['address'] = 'Adresse'; 25$lang['date'] = 'Date'; 26$lang['entercomment'] = 'Entrer votre commentaire'; 27$lang['wikisyntax'] = 'La syntaxe wiki est autorisée'; 28$lang['older'] = 'Anciennes discussions'; 29$lang['newer'] = 'Nouvelle discussion'; 30$lang['btn_reply'] = 'Répondre'; 31$lang['btn_hide'] = 'Cacher'; 32$lang['btn_show'] = 'Montrer'; 33$lang['btn_change'] = 'Modifier'; 34$lang['statuschanged'] = 'Statut de discussion modifié'; 35$lang['wordblock'] = 'Votre commentaire a été détécté comme spam.'; 36$lang['mail_newcomment'] = 'Nouveau commentaire'; 37 38$lang['status'] = 'Statut'; 39$lang['off'] = 'désactivé'; 40$lang['open'] = 'ouvert'; 41$lang['closed'] = 'fermé'; 42 43$lang['reply'] = 'Réponse'; 44$lang['replies'] = 'Réponses'; 45$lang['newthread'] = 'Nouvelle discussion'; 46$lang['threads'] = 'Discussions'; 47 48//Setup VIM: ex: et ts=2 enc=utf-8 : 49