1658 |
alexandre_ |
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: formulaire.langue.en.inc.php,v 1.1 2007-10-22 09:13:51 alexandre_tb Exp $
|
|
|
23 |
/**
|
|
|
24 |
* Formulaire
|
|
|
25 |
*
|
|
|
26 |
* Les fonctions de mise en page des formulaire
|
|
|
27 |
*
|
|
|
28 |
*@package bazar
|
|
|
29 |
//Auteur original :
|
|
|
30 |
*@author Florian SCHMITT <florian@ecole-et-nature.org>
|
|
|
31 |
//Autres auteurs :
|
|
|
32 |
*@author Aleandre GRANIER <alexandre@tela-botanica.org>
|
|
|
33 |
*@copyright Tela-Botanica 2000-2004
|
|
|
34 |
*@version $Revision: 1.1 $ $Date: 2007-10-22 09:13:51 $
|
|
|
35 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
36 |
*/
|
|
|
37 |
|
|
|
38 |
|
|
|
39 |
define ('LIEN', 'Link');
|
|
|
40 |
define ('SUPPRIMER', 'Delete');
|
|
|
41 |
define ('CONFIRMATION_SUPPRESSION_LIEN', 'Do you really want to delete this link?');
|
|
|
42 |
define ('URL_LIEN', 'URL');
|
|
|
43 |
define ('URL_LIEN_REQUIS', 'Specify URL');
|
|
|
44 |
define ('URL_TEXTE', 'Text of the link');
|
|
|
45 |
define ('URL_TEXTE_REQUIS', 'Specify text of the link');
|
|
|
46 |
define ('CHOISIR', 'Choose...');
|
|
|
47 |
define ('INDIFFERENT', 'Any...');
|
|
|
48 |
define ('IMAGE', 'Picture');
|
|
|
49 |
define ('IMAGE_VALIDE_REQUIS', 'Add a picture');
|
|
|
50 |
define ('VERIFIER_MON_ADRESSE', 'Check my adress with the map');
|
|
|
51 |
define ('LATITUDE', 'Latitude');
|
|
|
52 |
define ('LONGITUDE', 'Longitude');
|
|
|
53 |
|
|
|
54 |
|
|
|
55 |
|
|
|
56 |
|
|
|
57 |
|
|
|
58 |
?>
|