Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Copyedit: change "coping" to "copying" #39307

Open
wants to merge 1 commit into
base: 2.4-develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/code/Magento/ImportExport/Model/Import.php
Original file line number Diff line number Diff line change
Expand Up @@ -904,7 +904,7 @@ protected function createHistoryReport($sourceFileRelative, $entity, $extension
$this->_varDirectory->writeFile($copyFile, $content);
}
} catch (FileSystemException $e) {
throw new LocalizedException(__('Source file coping failed'));
throw new LocalizedException(__('Source file copying failed'));
}
$this->importHistoryModel->addReport($copyName);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1011,7 +1011,7 @@ public function testCreateHistoryReportExtensionIsSet()
public function testCreateHistoryReportThrowException()
{
$this->expectException(LocalizedException::class);
$this->expectExceptionMessage('Source file coping failed');
$this->expectExceptionMessage('Source file copying failed');
$sourceFileRelative = null;
$entity = '';
$extension = '';
Expand Down
2 changes: 1 addition & 1 deletion app/code/Magento/ImportExport/i18n/en_US.csv
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ Status,Status
"Import data validation is complete.","Import data validation is complete."
"The behavior token for %1 is invalid.","The behavior token for %1 is invalid."
"Please enter a correct entity model","Please enter a correct entity model"
"Source file coping failed","Source file coping failed"
"Source file copying failed","Source file copying failed"
"The source is not set.","The source is not set."
"The adapter type must be a non-empty string.","The adapter type must be a non-empty string."
"'%1' file extension is not supported","'%1' file extension is not supported"
Expand Down