Subversion Repositories Applications.papyrus

Rev

Rev 754 | Rev 1047 | 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
// +------------------------------------------------------------------------------------------------------+
846 jp_milcent 24
// CVS : $Id: more_langue_fr.inc.php,v 1.6 2006-05-19 10:04:55 jp_milcent 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
846 jp_milcent 37
*@version       $Revision: 1.6 $ $Date: 2006-05-19 10:04:55 $
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');
373 jpm 52
define('MORE_LG_FORM_ACCESSKEY', '4');
217 jpm 53
define('MORE_LG_FORM_MOTIF', 'Rechercher : ');
54
define('MORE_LG_FORM_MOTIF_REGLE', 'Une chaine doit être saisie pour pouvoir lancer la recherche !');
55
define('MORE_LG_FORM_MOTIF_VALUE', 'Rechercher');
56
define('MORE_LG_FORM_VALIDER', 'ok');
57
define('MORE_LG_FORM_SYMBOLE_OBLIGATOIRE', '*');
754 ddelon 58
define('MORE_LG_TITRE', 'Résultat de la recherche de : ');
59
define('MORE_LG_USURPATION', 'Recherche de : ');
217 jpm 60
 
61
// Les résultats de la recherche :
846 jp_milcent 62
define('MORE_LG_RESULTAT_TITRE', 'Résultats de la recherche : %s page trouvée');
63
define('MORE_LG_RESULTAT_TITRE_PLURIEL', 'Résultats de la recherche : %s pages trouvées');
339 jpm 64
define('MORE_LG_RESULTAT_RACCOURCI', 'Raccourci : ');
65
define('MORE_LG_RESULTAT_DESCRIPTION', 'Description : ');
66
define('MORE_LG_RESULTAT_DATE_CREATION', 'Date de création : ');
217 jpm 67
define('MORE_LG_RESULTAT_POIDS', 'Poids : ');
576 jp_milcent 68
define('MORE_LG_RESULTAT_SCORE', 'Pertinence : ');
217 jpm 69
define('MORE_LG_RESULTAT_SEPARATEUR', '-');
339 jpm 70
define('MORE_LG_RESULTAT_POURCENT', '%');
71
define('MORE_LG_RESULTAT_CADRE_OUVRIR', '(');
72
define('MORE_LG_RESULTAT_CADRE_FERMER', ')');
73
define('MORE_LG_RESULTAT_POINT', '.');
373 jpm 74
define('MORE_LG_RESULTAT_VIDE', 'Aucun résultat pour cette recherche!');
339 jpm 75
 
217 jpm 76
// +------------------------------------------------------------------------------------------------------+
77
// |                                            PIED du PROGRAMME                                         |
78
// +------------------------------------------------------------------------------------------------------+
79
 
80
 
81
/* +--Fin du code ----------------------------------------------------------------------------------------+
82
*
83
* $Log: not supported by cvs2svn $
846 jp_milcent 84
* Revision 1.5  2006/03/02 10:49:49  ddelon
85
* Fusion branche multilinguisme dans branche principale
86
*
754 ddelon 87
* Revision 1.4.2.1  2005/12/27 15:56:00  ddelon
88
* Fusion Head vers multilinguisme (wikini double clic)
89
*
90
* Revision 1.4  2005/10/26 08:14:51  jp_milcent
91
* Changement du terme "score" en "pertinence".
92
*
576 jp_milcent 93
* Revision 1.3  2005/05/25 13:49:22  jpm
94
* Corection erreur pour la recherche dans le contenu.
95
*
373 jpm 96
* Revision 1.2  2005/04/14 17:39:34  jpm
97
* Amélioration du moteur de rechercher :
98
*  - pourcentage
99
*  - ajout d'info
100
*
339 jpm 101
* Revision 1.1  2004/12/07 10:24:16  jpm
102
* Moteur de recherche version de départ.
217 jpm 103
*
339 jpm 104
*
217 jpm 105
* +-- Fin du code ----------------------------------------------------------------------------------------+
106
*/
107
?>