Fix: The " " is not more allowed as value for SeparatorThousand. We must

use "Space". This solve a lot of problem into translation process.
This commit is contained in:
Laurent Destailleur 2014-04-07 13:08:04 +02:00
parent 29534b4ef5
commit 2035e6e648

View File

@ -158,7 +158,7 @@ class LangTest extends PHPUnit_Framework_TestCase
$result=$tmplangs->trans("SeparatorThousand");
print __METHOD__." SeparatorThousand=".$result."\n";
$this->assertContains($result,array('.',',','/',' ','','None','SeparatorThousand')); // SeparatorThousand is returned when SeparatorThousand=Space
$this->assertContains($result,array('.',',','/',' ','','None','Space'));
// Test java string contains only d,M,y,/,-,. and not m,...
$result=$tmplangs->trans("FormatDateShortJava");