Skip to content

Commit

Permalink
Translation in adminhtml Import form
Browse files Browse the repository at this point in the history
use built-in __() method
  • Loading branch information
Nolwennig authored Mar 28, 2017
1 parent a4a9c2f commit 31bf43d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ protected function _prepareForm()
'class' => $behaviorCode,
'disabled' => true,
'values' => [
ProcessingErrorAggregatorInterface::VALIDATION_STRATEGY_STOP_ON_ERROR => 'Stop on Error',
ProcessingErrorAggregatorInterface::VALIDATION_STRATEGY_SKIP_ERRORS => 'Skip error entries'
ProcessingErrorAggregatorInterface::VALIDATION_STRATEGY_STOP_ON_ERROR => __('Stop on Error'),
ProcessingErrorAggregatorInterface::VALIDATION_STRATEGY_SKIP_ERRORS => __('Skip error entries')
],
'after_element_html' => $this->getDownloadSampleFileHtml(),
]
Expand Down

0 comments on commit 31bf43d

Please sign in to comment.