From 0398a0be2bc479d1ed13ca5d3ab64ea88ea972e2 Mon Sep 17 00:00:00 2001 From: Cerdic <cedric@yterium.com> Date: Mon, 2 May 2011 08:56:06 +0000 Subject: [PATCH] =?UTF-8?q?quand=20le=20signalement=20des=20chaines=20non?= =?UTF-8?q?=20traduites=20est=20demand=C3=A9,=20garder=20intact=20le=20mod?= =?UTF-8?q?ule=20et=20l'id=20de=20la=20chaine,=20et=20signaler=20d'un=20bl?= =?UTF-8?q?ink?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ecrire/inc/utils.php | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/ecrire/inc/utils.php b/ecrire/inc/utils.php index 1779432ac4..81adc17332 100644 --- a/ecrire/inc/utils.php +++ b/ecrire/inc/utils.php @@ -452,11 +452,15 @@ function _T($texte, $args=array(), $class='') { } $text = $traduire($texte, $lang); - if (!strlen($text)) + if (!strlen($text)){ + $text = $texte; // pour les chaines non traduites, assurer un service minimum - $text = str_replace('_', ' ', - (($n = strpos($texte,':')) === false ? $texte : - substr($texte, $n+1))); + if (!isset($GLOBALS['test_i18n'])) + $text = str_replace('_', ' ', + (($n = strpos($text,':')) === false ? $texte : + substr($texte, $n+1))); + $class=null; + } return _L($text, $args, $class); @@ -465,7 +469,7 @@ function _T($texte, $args=array(), $class='') { // Remplacer les variables @....@ par leur valeur dans une chaine de langue. // Aussi appelee quand une chaine n'est pas encore dans les fichiers de langue // http://doc.spip.org/@_L -function _L($text, $args=array(), $class=NULL) { +function _L($text, $args=array(), $class=null) { $f = $text; if (is_array($args)) { foreach ($args as $name => $value) { @@ -479,8 +483,8 @@ function _L($text, $args=array(), $class=NULL) { if ($args) spip_log("$f: variables inutilisees " . join(', ', array_keys($args)),_LOG_DEBUG); } - if ($GLOBALS['test_i18n'] AND $class===NULL) - return "<span style='color:red;'>$text</span>"; + if ($GLOBALS['test_i18n'] AND $class===null) + return "<blink style='color:red;'>$text</blink>"; else return $text; } -- GitLab