Fix: translation for vi_VN

This commit is contained in:
Laurent Destailleur
2014-10-11 15:46:37 +02:00
parent cd8936a224
commit a804fe62b4
2 changed files with 18 additions and 18 deletions

View File

@@ -163,10 +163,10 @@ class LangTest extends PHPUnit_Framework_TestCase
// Test java string contains only d,M,y,/,-,. and not m,...
$result=$tmplangs->trans("FormatDateShortJava");
print __METHOD__." FormatDateShortJava=".$result."\n";
$this->assertRegExp('/^[dMy\/\-\.]+$/',$result,'FormatDateShortJava');
$this->assertRegExp('/^[dMy\/\-\.]+$/',$result,'FormatDateShortJava KO for lang code '.$code);
$result=$tmplangs->trans("FormatDateShortJavaInput");
print __METHOD__." FormatDateShortJavaInput=".$result."\n";
$this->assertRegExp('/^[dMy\/\-\.]+$/',$result,'FormatDateShortJavaInput');
$this->assertRegExp('/^[dMy\/\-\.]+$/',$result,'FormatDateShortJavaInput KO for lang code '.$code);
unset($tmplangs);
}