4 |
david |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
/***************************************************************************\
|
|
|
4 |
* SPIP, Systeme de publication pour l'internet *
|
|
|
5 |
* *
|
|
|
6 |
* Copyright (c) 2001-2005 *
|
|
|
7 |
* Arnaud Martin, Antoine Pitrou, Philippe Riviere, Emmanuel Saint-James *
|
|
|
8 |
* *
|
|
|
9 |
* Ce programme est un logiciel libre distribue sous licence GNU/GPL. *
|
|
|
10 |
* Pour plus de details voir le fichier COPYING.txt ou l'aide en ligne. *
|
|
|
11 |
\***************************************************************************/
|
|
|
12 |
|
|
|
13 |
|
|
|
14 |
include ("inc.php3");
|
|
|
15 |
|
|
|
16 |
|
|
|
17 |
|
|
|
18 |
if (!$module) $module = "public";
|
|
|
19 |
|
|
|
20 |
|
|
|
21 |
debut_page(_T('module_fichier_langue').": $module", "administration", "langues");
|
|
|
22 |
|
|
|
23 |
echo "<br><br><br>";
|
|
|
24 |
gros_titre(_T('module_fichier_langue').": $module");
|
|
|
25 |
|
|
|
26 |
barre_onglets("config_lang", "fichiers");
|
|
|
27 |
|
|
|
28 |
|
|
|
29 |
|
|
|
30 |
debut_gauche();
|
|
|
31 |
|
|
|
32 |
$modules = array();
|
|
|
33 |
|
|
|
34 |
if (!$d = @opendir(_DIR_LANG)) return;
|
|
|
35 |
while ($f = readdir($d)) {
|
|
|
36 |
if (ereg('^([a-z_]+)\.php3?$', $f, $regs))
|
|
|
37 |
$nom_module = $regs[1];
|
|
|
38 |
if (!ereg('^(spip|ecrire)\_', $nom_module) && ereg("^([a-zA-Z]+)\_".$spip_lang."$", $nom_module, $reps))
|
|
|
39 |
$modules[] = $reps[1];
|
|
|
40 |
}
|
|
|
41 |
closedir($d);
|
|
|
42 |
|
|
|
43 |
if (count($modules) > 1) {
|
|
|
44 |
echo debut_cadre_relief();
|
|
|
45 |
echo "<div class='verdana3' style='background-color: $couleur_foncee; color: white; padding: 3px;'><b>"._T('module_fichiers_langues').":</b></div><br>\n";
|
|
|
46 |
|
|
|
47 |
reset($modules);
|
|
|
48 |
while (list(, $nom_module) = each($modules)) {
|
|
|
49 |
if ($nom_module == $module) echo "<div style='padding-$spip_lang_left: 10px;' class='verdana3'><b>$nom_module</b></div>";
|
|
|
50 |
else echo "<div style='padding-$spip_lang_left: 10px;' class='verdana3'><a href='lang_raccourcis.php3?module=$nom_module'>$nom_module</a></div>";
|
|
|
51 |
}
|
|
|
52 |
echo fin_cadre_relief();
|
|
|
53 |
}
|
|
|
54 |
|
|
|
55 |
|
|
|
56 |
debut_droite();
|
|
|
57 |
|
|
|
58 |
|
|
|
59 |
function afficher_raccourcis($module = "public") {
|
|
|
60 |
global $spip_lang;
|
|
|
61 |
global $couleur_foncee;
|
|
|
62 |
|
|
|
63 |
$lang = $module.'_'.$spip_lang;
|
|
|
64 |
$fichier_lang = $lang.'.php3';
|
|
|
65 |
|
|
|
66 |
if (@file_exists(_DIR_LANG . $fichier_lang)) {
|
|
|
67 |
$GLOBALS['idx_lang'] = 'i18n_' . $lang;
|
|
|
68 |
include_lang($fichier_lang);
|
|
|
69 |
|
|
|
70 |
$tableau = $GLOBALS['i18n_' . $lang];
|
|
|
71 |
ksort($tableau);
|
|
|
72 |
|
|
|
73 |
if ($module != "public" AND $module != "local") $aff_nom_module = "$module:";
|
|
|
74 |
|
|
|
75 |
echo "<div class='arial2'>"._T('module_texte_explicatif')."</div>";
|
|
|
76 |
echo "<div> </div>";
|
|
|
77 |
|
|
|
78 |
if (!$d = @opendir(_DIR_LANG)) return;
|
|
|
79 |
while ($f = readdir($d)) {
|
|
|
80 |
if (ereg("^".$module."\_([a-z_]+)\.php3?$", $f, $regs))
|
|
|
81 |
$langue_module[$regs[1]] = traduire_nom_langue($regs[1]);
|
|
|
82 |
}
|
|
|
83 |
if ($langue_module) {
|
|
|
84 |
ksort($langue_module);
|
|
|
85 |
echo "<div class='arial2'>"._T('module_texte_traduction', array('module' => $module));
|
|
|
86 |
echo " ".join(", ", $langue_module).".";
|
|
|
87 |
echo "</div><div> </div>";
|
|
|
88 |
}
|
|
|
89 |
|
|
|
90 |
closedir($d);
|
|
|
91 |
|
|
|
92 |
echo "<table cellpadding='3' cellspacing='1' border='0'>";
|
|
|
93 |
echo "<tr bgcolor='$couleur_foncee' style='color:white;'><td class='verdana1'><b>"._T('module_raccourci')."</b></td><td class='verdana2'><b>"._T('module_texte_affiche')."</b></td></tr>\n";
|
|
|
94 |
|
|
|
95 |
for (reset($tableau); $raccourci = key($tableau); next($tableau)) {
|
|
|
96 |
if ($i == 1) {
|
|
|
97 |
$i = 0;
|
|
|
98 |
$bgcolor = '#eeeeee';
|
|
|
99 |
} else {
|
|
|
100 |
$i = 1;
|
|
|
101 |
$bgcolor= 'white';
|
|
|
102 |
}
|
|
|
103 |
|
|
|
104 |
$texte = pos($tableau);
|
|
|
105 |
echo "<tr bgcolor='$bgcolor'><td class='verdana2'><b><:$aff_nom_module$raccourci:></b></td><td class='arial2'>$texte</td></tr>\n";
|
|
|
106 |
}
|
|
|
107 |
echo "</table>";
|
|
|
108 |
}
|
|
|
109 |
}
|
|
|
110 |
|
|
|
111 |
|
|
|
112 |
afficher_raccourcis($module);
|
|
|
113 |
|
|
|
114 |
|
|
|
115 |
fin_page();
|
|
|
116 |
|
|
|
117 |
?>
|
|
|
118 |
|