Retour [./2.19_3/_config.php]
show/hide
0
1 <?php
2 // Configuration du mot de passe
3 $PASSWORD = "test";
4 // Param�tres divers
5 $LANG = "fr";
6 $CHARSET = "utf-8";
7 $TIME_FORMAT = "%Y/%m/%d %R";
8 $LOCAL_HOUR = "0";
9 $PAGES_DIR = "pages/";
10 $BACKUP_DIR = "historique/"; //historique/
11 // Variables de configuration de langues
12 $WIKI_TITLE = "Wiki de Demo de la fonction Upload";
13 $START_PAGE = "Accueil";
14 $HOME_BUTTON = "Accueil";
15 $HELP_BUTTON = "Aide";
16 $DEFAULT_CONTENT = "La page ".stripslashes($_GET["page"])." est vide."; //La variable au centre correspond au nom de la page demand�e
17 $EDIT_BUTTON = "Éditer";
18 $DONE_BUTTON = "Enregistrer";
19 $PROTECTED_BUTTON = "Page verrouillée";
20 $SEARCH_BUTTON = "Rechercher";
21 $SEARCH_RESULTS = "Résultats de recherche pour";
22 $LIST = "Liste des pages";
23 $RECENT_CHANGES = "Changements récents";
24 $LAST_CHANGES = "Dernière modification";
25 $HISTORY_BUTTON = "Historique";
26 $NO_HISTORY = "Aucun historique existant.";
27 $RESTORE = "Restaurer";
28 $MDP = "Mot de passe";
29 $ERROR = $MDP." spécifié incorrect.";
30 $ERASE_COOKIE = "Eff. cookie";
31 // JJL : RSS
32 $ADR_ACCUEIL = "http://kubuntu.free.fr/TigerWiki/"; // needed for rss plugin ?
33 // JJL : Upload
34 $DATA_DIR = "data/"; // upload files to ...
35 //~ $DATA_DIR = ""; // upload files to ...
36 $NO_DATA = "Page désactivée";
37 $SEND_BUTTON = "Envoyer";
38 $FILE = "Fichier";
39 $UPLOAD_BUTTON = "Upload";
40 $DIR = "Répertoire à créer";
41 ?>
42
43
44