Skip to content
Snippets Groups Projects
Commit 2035e6e6 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

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

use "Space". This solve a lot of problem into translation process.
parent 29534b4e
No related branches found
No related tags found
No related merge requests found
......@@ -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");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment