diff --git a/htdocs/langs/hr_HR/main.lang b/htdocs/langs/hr_HR/main.lang index bf9b2718a5d..4b88140bf74 100644 --- a/htdocs/langs/hr_HR/main.lang +++ b/htdocs/langs/hr_HR/main.lang @@ -7,7 +7,7 @@ DIRECTION=ltr FONTFORPDF=helvetica FONTSIZEFORPDF=10 SeparatorDecimal=, -SeparatorThousand=, +SeparatorThousand=Space FormatDateShort=%m/%d/%Y FormatDateShortInput=%m/%d/%Y FormatDateShortJava=MM/dd/yyyy diff --git a/test/phpunit/LangTest.php b/test/phpunit/LangTest.php index 77c4e87931d..4c3cf745d85 100755 --- a/test/phpunit/LangTest.php +++ b/test/phpunit/LangTest.php @@ -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");