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
27// error messages
28$lang["error"]["unknown"] = 'Mail not sent. Please contact the administrator.';
29$lang["error"]["name"] = 'Please enter a name. Should be at least 2 characters.';
30$lang["error"]["email"] = 'Please enter your email address. It must be valid.';
31$lang["error"]["content"] = 'Please add a comment. Should be at least 10 characters.';
32$lang["error"]["captcha"] = 'Mail not sent. You could not be verified as a human.';
33$lang["error"]["valid_name"] = 'Name has invalid input.';
34$lang["error"]["valid_email"] = 'Email address has invalid input.';
35$lang["error"]["valid_subject"] = 'Subject has invalid input.';
36$lang["error"]["valid_to"] = 'Destination address has invalid input.';
37$lang["error"]["valid_content"] = 'Comment has invalid input.';
38$lang["success"] = 'Mail sent successfully.';
39
40//Setup VIM: ex: et ts=2 enc=utf-8 :
41?>
42