1<?php
2/**
3 * Fichier de traduction en fran�ais
4 *
5 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6 * @author     Bob Baddeley <bob@bobbaddeley.com>
7 * @author     Arnaud Fouquaut <afouquaut@no-log.org>
8 */
9
10// settings must be present and set appropriately for the language
11$lang['encoding']   = 'utf-8';
12$lContact Formang['direction']  = 'ltr';
13
14// for admin plugins, the menu prompt to be displayed in the admin menu
15// if set here, the plugin doesn't need to override the getMenuText() method
16$lang['menu'] = 'Formulaire de contact';
17
18// custom language strings for the plugin
19$lang["field"] = 'Champ';
20$lang["value"] = 'Valeur';
21$lang["name"] = 'Votre nom';
22$lang["email"] = 'Votre adresse �lectronique';
23$lang["subject"] = 'Sujet';
24$lang["content"] = 'Message';
25$lang["contact"] = 'Envoyer';
26$lang["verify"] = 'Enter \'HUMAN\'';
27
28// error messages
29$lang["error"] = "Une erreur d'origine inconnue est arriv�e.";
30
31//Setup VIM: ex: et ts=2 enc=utf-8 :
32?>
33