Fix: Typo

This commit is contained in:
Laurent Destailleur 2014-05-31 14:22:19 +02:00
parent de10b16090
commit c1431bdf93
2 changed files with 3 additions and 3 deletions

View File

@ -42,7 +42,7 @@ Description: Web based software to manage a company or foundation
Dolibarr was designed to be easy to use. Only the features that you need
are visible, depending on which modules were activated.
.
This is a example of most common used modules:
This is an example of most common used modules:
.
Customers, Suppliers or Prospects directory,
Contacts directory,

View File

@ -154,11 +154,11 @@ class LangTest extends PHPUnit_Framework_TestCase
$result=$tmplangs->trans("SeparatorDecimal");
print __METHOD__." SeparatorDecimal=".$result."\n";
$this->assertContains($result,array('.',',','/',' ','','None'));
$this->assertContains($result,array('.',',','/',' ','','None'), 'Error for code '.$code);
$result=$tmplangs->trans("SeparatorThousand");
print __METHOD__." SeparatorThousand=".$result."\n";
$this->assertContains($result,array('.',',','/',' ','','None','Space'));
$this->assertContains($result, array('.',',','/',' ','','None','Space'), 'Error for code '.$code);
// Test java string contains only d,M,y,/,-,. and not m,...
$result=$tmplangs->trans("FormatDateShortJava");