Subversion Repositories Applications.wikini

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
63 aurelien 1
<?php
2
/*vim: set expandtab tabstop=4 shiftwidth=4: */
3
// +------------------------------------------------------------------------------------------------------+
4
// | PHP version 5                                                                                        |
5
// +------------------------------------------------------------------------------------------------------+
6
// | Copyright (C) 2012 Outils-Réseaux (accueil@outils-reseaux.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
//
23
/**
24
* Fichier de traduction en francais de l'extension Login
25
*
26
*@package 		templates
27
*@author        Florian Schmitt <florian@outils-reseaux.org>
28
*@copyright     2012 Outils-Réseaux
29
*/
30
define ('LOGIN_SIGNUP', 'S\'inscrire');
31
define ('LOGIN_LOGIN', 'Se connecter');
32
if($wiki->config['use_sso']) {
33
	define ('LOGIN_WIKINAME', 'Courriel ou NomWiki');
34
} else {
35
	define ('LOGIN_WIKINAME', 'NomWiki');
36
}
37
 
38
define ('LOGIN_PASSWORD', 'Mot de passe');
39
define ('LOGIN_MODIFY', 'Modifier');
40
define ('LOGIN_MODIFY_USER', 'Modifier mon inscription');
41
define ('LOGIN_REMEMBER_ME', 'Se souvenir de moi');
42
define ('LOGIN_LOGOUT', 'D&eacute;connexion');
43
define ('LOGIN_NEW_MEMBER', 'Nouveau membre');
44
define ('LOGIN_ALREADY_MEMBER', 'D&eacute;j&agrave; membre');
45
define ('LOGIN_CONNECTED_AS', 'Connect&eacute; en tant que');
46
 
47
?>