Fix minor typos

This commit is contained in:
Florian Dupret
2020-05-24 09:59:34 +02:00
parent 2df390065b
commit 2c9ac0982a
8 changed files with 12 additions and 12 deletions

View File

@@ -282,10 +282,10 @@ function reportOnErrors(data) {
if (data.errors.length === 1) {
$('#import-status-error-intro').text(langImportSingleError);
//'An error has occured during the import. The import can continue, however.'
//'An error has occurred during the import. The import can continue, however.'
}
if (data.errors.length > 1) {
// 'Errors have occured during the import. The import can continue, however.'
// 'Errors have occurred during the import. The import can continue, however.'
$('#import-status-error-intro').text(langImportMultiError);
}
$('.info_errors').show();
@@ -298,4 +298,4 @@ function reportOnErrors(data) {
$('#import-status-error-list').append(item);
}
}
}
}