Translations Supports was fixed and solve multiples bugs: 6137, 6474, 6476, 6513, 6560, 6597, 6599

This commit is contained in:
Erik Amaru Ortiz
2011-03-30 12:08:38 -04:00
parent 0fb7ae29dd
commit c028d2a145
5 changed files with 63 additions and 64 deletions

View File

@@ -75,7 +75,13 @@ try {
$result->msg = G::LoadTranslation('IMPORT_LANGUAGE_SUCCESS') . "\n";
$result->msg .= "PO File num. records: " . $importResults->recordsCount . "\n";
$result->msg .= "Records registered successfully : " . $importResults->recordsCountSuccess . "\n";
$result->msg .= "Success Records: " . $importResults->recordsCountSuccess . "\n";
$result->msg .= "Failed Records: " . ($importResults->recordsCount-$importResults->recordsCountSuccess) . "\n";
if( $importResults->errMsg != '' ){
$result->msg .= "Errors registered: \n" . $importResults->errMsg . "\n";
}
//$result->msg = htmlentities($result->msg);
$result->success = true;