1331 |
florian |
1 |
<?php
|
|
|
2 |
/*vim: set expandtab tabstop=4 shiftwidth=4: */
|
|
|
3 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
4 |
// | PHP version 4.1 |
|
|
|
5 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
6 |
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org) |
|
|
|
7 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
8 |
// | This library is free software; you can redistribute it and/or |
|
|
|
9 |
// | modify it under the terms of the GNU Lesser General Public |
|
|
|
10 |
// | License as published by the Free Software Foundation; either |
|
|
|
11 |
// | version 2.1 of the License, or (at your option) any later version. |
|
|
|
12 |
// | |
|
|
|
13 |
// | This library is distributed in the hope that it will be useful, |
|
|
|
14 |
// | but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
|
|
15 |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
|
|
16 |
// | Lesser General Public License for more details. |
|
|
|
17 |
// | |
|
|
|
18 |
// | You should have received a copy of the GNU Lesser General Public |
|
|
|
19 |
// | License along with this library; if not, write to the Free Software |
|
|
|
20 |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
|
|
21 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
22 |
// CVS : $Id: questionnaire.langue.fr.inc.php,v 1.1 2007-04-19 14:51:10 florian Exp $
|
|
|
23 |
/**
|
|
|
24 |
* Fichier de traduction en français de l'application contact
|
|
|
25 |
*
|
|
|
26 |
*@package contact
|
|
|
27 |
//Auteur original :
|
|
|
28 |
*@author Florian SCHMITT <florian@ecole-et-nature.org>
|
|
|
29 |
//Autres auteurs :
|
|
|
30 |
*@author Aucun
|
|
|
31 |
*@copyright Ecole et Nature 2005
|
|
|
32 |
*@version $Revision: 1.1 $ $Date: 2007-04-19 14:51:10 $
|
|
|
33 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
34 |
*/
|
|
|
35 |
define ('QUESTIONNAIRE', 'Questionnaire') ;
|
|
|
36 |
define ('QUESTIONNAIRE_REPONSE_AU', 'Réponse au questionnaire') ;
|
|
|
37 |
define ('QUESTIONNAIRE_CONFIG', 'Configuration du questionnaire') ;
|
|
|
38 |
define ('QUESTIONNAIRE_ENVOYER', 'Envoyer') ;
|
|
|
39 |
define ('QUESTIONNAIRE_CHOIX', 'Choix du questionnaire') ;
|
|
|
40 |
define ('QUESTIONNAIRE_MAIL', 'Adresse de messagerie pour la réponse au formulaire') ;
|
|
|
41 |
define ('QUESTIONNAIRE_ANNULER', 'Annuler') ;
|
|
|
42 |
define ('QUESTIONNAIRE_ENREGISTRER_ET_QUITTER', 'Enregistrer et quitter') ;
|
|
|
43 |
define ('QUESTIONNAIRE_TEXTE_MESSAGE_ENVOYE', 'Texte apparaissant une fois le questionnaire rempli et envoyé');
|
|
|
44 |
|
|
|
45 |
define ('CON_VOTRE_MESSAGE', 'Votre message');
|
|
|
46 |
define ('CON_A_ETE_ENVOYE', 'a bien été envoyé.');
|
|
|
47 |
|
|
|
48 |
define ('CON_EMAIL_REQUIS','veuillez saisir votre adresse mail pour que l\'on puisse vous répondre');
|
|
|
49 |
define ('CON_EMAIL_INCORRECT','adresse mail incorrecte (elle doit etre de la forme nom@domaine.ext)');
|
|
|
50 |
define ('CON_DESTINATAIRE', 'Destinataire : ') ;
|
|
|
51 |
define ('CON_SUJET', 'Sujet : ') ;
|
|
|
52 |
define ('CON_SUJET_REQUIS', 'veuillez saisir un sujet pour le message');
|
|
|
53 |
define ('CON_MESSAGE', 'Message : ') ;
|
|
|
54 |
define ('CON_MESSAGE_REQUIS', 'veuillez saisir le message');
|
|
|
55 |
|
|
|
56 |
define ('CON_ENVOYER_NOUS_MAIL', 'Envoyez-nous un message électronique (courriel):');
|
|
|
57 |
define ('CON_CHAMPS_REQUIS','champs obligatoires');
|
|
|
58 |
define ('CON_ERREUR_SAISIE','Erreur de saisie des champs:');
|
|
|
59 |
define ('CON_VEUILLEZ_CORRIGER','Veuillez corriger, SVP.');
|
|
|
60 |
|
|
|
61 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
|
|
62 |
*
|
|
|
63 |
* $Log: not supported by cvs2svn $
|
|
|
64 |
* Revision 1.2 2006/01/19 10:24:37 florian
|
|
|
65 |
* champs obligatoires pour le formulaire de saisie
|
|
|
66 |
*
|
|
|
67 |
* Revision 1.1 2005/09/22 13:28:50 florian
|
|
|
68 |
* Application de contact, pour envoyer des mails. Reste a faire: configuration pour choisir les destinataires dans l'annuaire.
|
|
|
69 |
*
|
|
|
70 |
*
|
|
|
71 |
* +-- Fin du code ----------------------------------------------------------------------------------------+
|
|
|
72 |
*/
|
|
|
73 |
?>
|