Skip to content
Extraits de code Groupes Projets
Valider 085d17f3 rédigé par Fil's avatar Fil
Parcourir les fichiers

langue de l'aide

parent d463b3a8
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
<?php <?php
include ("inc_version.php3"); include ("inc_version.php3");
include_ecrire ("inc_lang.php3");
utiliser_langue_visiteur();
// Recuperer les infos de langue (preferences auteur), si possible // Recuperer les infos de langue (preferences auteur), si possible
if (file_exists("inc_connect.php3")) { if (file_exists("inc_connect.php3")) {
include_ecrire ("inc_auth.php3"); include_ecrire ("inc_auth.php3");
} }
include_ecrire ("inc_lang.php3");
utiliser_langue_visiteur();
include_ecrire ("inc_texte.php3"); include_ecrire ("inc_texte.php3");
include_ecrire ("inc_filtres.php3"); include_ecrire ("inc_filtres.php3");
// Selection du fichier d'aide correspondant a la langue
$lang_aide = $GLOBALS['spip_lang'];
if (!file_exists($fichier_aide = "AIDE/$lang_aide/aide")) {
$fichier_aide = "AIDE/fr/aide";
$lang_aide = 'fr';
changer_langue('fr');
}
?> ?>
<HTML> <HTML>
...@@ -90,10 +84,13 @@ if (!$aide) { ...@@ -90,10 +84,13 @@ if (!$aide) {
} }
// Analyser le fichier d'aide // Selection du fichier d'aide correspondant a la langue
$html = join('', file($fichier_aide)); $lang_aide = $GLOBALS['spip_lang'];
$html = substr($html, strpos($html,"<$aide>") + strlen("<$aide>")); if (@file_exists($fichier_aide = "AIDE/$lang_aide/aide")) {
$html = substr($html, 0, strpos($html, "</$aide>")); $html = join('', file($fichier_aide));
$html = substr($html, strpos($html,"<$aide>") + strlen("<$aide>"));
$html = substr($html, 0, strpos($html, "</$aide>"));
}
if (!$html) if (!$html)
$html = _T('aide_non_disponible'); $html = _T('aide_non_disponible');
......
<?php <?php
include ("inc_version.php3"); include ("inc_version.php3");
include_ecrire("inc_lang.php3");
utiliser_langue_visiteur();
if (file_exists($flag_ecrire ? "inc_connect.php3" : "ecrire/inc_connect.php3")) { if (file_exists($flag_ecrire ? "inc_connect.php3" : "ecrire/inc_connect.php3")) {
include_ecrire("inc_auth.php3"); include_ecrire("inc_auth.php3");
...@@ -10,6 +8,9 @@ if (file_exists($flag_ecrire ? "inc_connect.php3" : "ecrire/inc_connect.php3")) ...@@ -10,6 +8,9 @@ if (file_exists($flag_ecrire ? "inc_connect.php3" : "ecrire/inc_connect.php3"))
} }
else $aide_statut = 'admin'; else $aide_statut = 'admin';
include_ecrire("inc_lang.php3");
utiliser_langue_visiteur();
?> ?>
<HTML> <HTML>
<HEAD> <HEAD>
......
...@@ -268,17 +268,17 @@ function gerer_menu_langues() { ...@@ -268,17 +268,17 @@ function gerer_menu_langues() {
// //
// Selection de langue haut niveau // Selection de langue haut niveau
// //
function utiliser_langue_site() {
changer_langue($GLOBALS['langue_site']);
}
function utiliser_langue_visiteur() { function utiliser_langue_visiteur() {
if (!regler_langue_navigateur()) if (!regler_langue_navigateur())
changer_langue($GLOBALS['langue_site']); utiliser_langue_site();
if ($GLOBALS['auteur_session']['lang']) if ($GLOBALS['auteur_session']['lang'])
changer_langue($GLOBALS['auteur_session']['lang']); changer_langue($GLOBALS['auteur_session']['lang']);
} }
function utiliser_langue_site() {
changer_langue($GLOBALS['langue_site']);
}
// //
// Initialisation // Initialisation
// //
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter