- functions : fonction tr() ajout du support de la traduction d'une simple chaîne.

This commit is contained in:
Benjamin Renard 2009-03-19 18:08:59 +00:00
parent d8975aff0b
commit 8fe237627c

View file

@ -431,6 +431,8 @@ function LSdebugDefined() {
function tr($msg,$key=null) {
$val = $GLOBALS['Smarty']->get_template_vars($msg);
if (!$val)
$val=$msg;
if (is_array($val)) {
echo __($val[$key]);
}