From a1133afefb2f2f2219564421a6d687bf1492b58b Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Wed, 9 Dec 2009 12:39:01 +0000 Subject: [PATCH] Fix: Pb with amount with it_IT and fr_BE languages. --- htdocs/translate.class.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/htdocs/translate.class.php b/htdocs/translate.class.php index ecf3adea163..6b7967f82b3 100644 --- a/htdocs/translate.class.php +++ b/htdocs/translate.class.php @@ -329,6 +329,9 @@ class Translate { if (empty($this->tab_loaded[$newdomain])) $this->tab_loaded[$newdomain]=2; // Marque ce fichier comme non trouve } + // Clear SeparatorDecimal, SeparatorThousand + if ($this->tab_translate["SeparatorDecimal"] == $this->tab_translate["SeparatorThousand"]) $this->tab_translate["SeparatorThousand"]=''; + return 1; }