Subversion Repositories Applications.papyrus

Rev

Rev 217 | Rev 373 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
217 jpm 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 file is part of Papyrus.                                                                        |
9
// |                                                                                                      |
10
// | Foobar is free software; you can redistribute it and/or modify                                       |
11
// | it under the terms of the GNU General Public License as published by                                 |
12
// | the Free Software Foundation; either version 2 of the License, or                                    |
13
// | (at your option) any later version.                                                                  |
14
// |                                                                                                      |
15
// | Foobar is distributed in the hope that it will be useful,                                            |
16
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
17
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                                        |
18
// | GNU General Public License for more details.                                                         |
19
// |                                                                                                      |
20
// | You should have received a copy of the GNU General Public License                                    |
21
// | along with Foobar; if not, write to the Free Software                                                |
22
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
23
// +------------------------------------------------------------------------------------------------------+
339 jpm 24
// CVS : $Id: more_langue_fr.inc.php,v 1.2 2005-04-14 17:39:34 jpm Exp $
217 jpm 25
/**
26
* Gestion des langues de l'applette Moteur_Recherche
27
*
28
* Contient les constantes pour la langue française de l'applette MORE.
29
*
30
*@package Applette
31
*@subpackage Moteur_Recherche
32
//Auteur original :
33
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
34
//Autres auteurs :
35
*@author        Aucun
36
*@copyright     Tela-Botanica 2000-2004
339 jpm 37
*@version       $Revision: 1.2 $ $Date: 2005-04-14 17:39:34 $
217 jpm 38
// +------------------------------------------------------------------------------------------------------+
39
*/
40
 
41
// +------------------------------------------------------------------------------------------------------+
42
// |                                            ENTETE du PROGRAMME                                       |
43
// +------------------------------------------------------------------------------------------------------+
44
 
45
 
46
 
47
// +------------------------------------------------------------------------------------------------------+
48
// |                                            CORPS du PROGRAMME                                        |
49
// +------------------------------------------------------------------------------------------------------+
50
// Le formulaire de sélection du site dont les menus doivent être administrer :
51
define('MORE_LG_FORM_TITRE', 'Moteur de recherche');
52
define('MORE_LG_FORM_MOTIF', 'Rechercher : ');
53
define('MORE_LG_FORM_MOTIF_REGLE', 'Une chaine doit être saisie pour pouvoir lancer la recherche !');
54
define('MORE_LG_FORM_MOTIF_VALUE', 'Rechercher');
55
define('MORE_LG_FORM_VALIDER', 'ok');
56
define('MORE_LG_FORM_SYMBOLE_OBLIGATOIRE', '*');
57
 
58
// Les résultats de la recherche :
59
define('MORE_LG_RESULTAT_TITRE', 'Résultats de la recherche');
339 jpm 60
define('MORE_LG_RESULTAT_RACCOURCI', 'Raccourci : ');
61
define('MORE_LG_RESULTAT_DESCRIPTION', 'Description : ');
62
define('MORE_LG_RESULTAT_DATE_CREATION', 'Date de création : ');
217 jpm 63
define('MORE_LG_RESULTAT_POIDS', 'Poids : ');
339 jpm 64
define('MORE_LG_RESULTAT_SCORE', 'Score : ');
217 jpm 65
define('MORE_LG_RESULTAT_SEPARATEUR', '-');
339 jpm 66
define('MORE_LG_RESULTAT_POURCENT', '%');
67
define('MORE_LG_RESULTAT_CADRE_OUVRIR', '(');
68
define('MORE_LG_RESULTAT_CADRE_FERMER', ')');
69
define('MORE_LG_RESULTAT_POINT', '.');
70
 
217 jpm 71
// +------------------------------------------------------------------------------------------------------+
72
// |                                            PIED du PROGRAMME                                         |
73
// +------------------------------------------------------------------------------------------------------+
74
 
75
 
76
/* +--Fin du code ----------------------------------------------------------------------------------------+
77
*
78
* $Log: not supported by cvs2svn $
339 jpm 79
* Revision 1.1  2004/12/07 10:24:16  jpm
80
* Moteur de recherche version de départ.
217 jpm 81
*
339 jpm 82
*
217 jpm 83
* +-- Fin du code ----------------------------------------------------------------------------------------+
84
*/
85
?>