Skip to content

Commit ca39c3d

Browse files
committed
change "coping" to "copying"
1 parent 5a2037c commit ca39c3d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/code/Magento/ImportExport/Model/Import.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -904,7 +904,7 @@ protected function createHistoryReport($sourceFileRelative, $entity, $extension
904904
$this->_varDirectory->writeFile($copyFile, $content);
905905
}
906906
} catch (FileSystemException $e) {
907-
throw new LocalizedException(__('Source file coping failed'));
907+
throw new LocalizedException(__('Source file copying failed'));
908908
}
909909
$this->importHistoryModel->addReport($copyName);
910910
}

app/code/Magento/ImportExport/Test/Unit/Model/ImportTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1011,7 +1011,7 @@ public function testCreateHistoryReportExtensionIsSet()
10111011
public function testCreateHistoryReportThrowException()
10121012
{
10131013
$this->expectException(LocalizedException::class);
1014-
$this->expectExceptionMessage('Source file coping failed');
1014+
$this->expectExceptionMessage('Source file copying failed');
10151015
$sourceFileRelative = null;
10161016
$entity = '';
10171017
$extension = '';

app/code/Magento/ImportExport/i18n/en_US.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Status,Status
8989
"Import data validation is complete.","Import data validation is complete."
9090
"The behavior token for %1 is invalid.","The behavior token for %1 is invalid."
9191
"Please enter a correct entity model","Please enter a correct entity model"
92-
"Source file coping failed","Source file coping failed"
92+
"Source file copying failed","Source file copying failed"
9393
"The source is not set.","The source is not set."
9494
"The adapter type must be a non-empty string.","The adapter type must be a non-empty string."
9595
"'%1' file extension is not supported","'%1' file extension is not supported"

0 commit comments

Comments
 (0)