diff --git a/Model/Sorting/Options.php b/Model/Sorting/Options.php index bb28eb9..fb537fa 100644 --- a/Model/Sorting/Options.php +++ b/Model/Sorting/Options.php @@ -29,8 +29,8 @@ public function getOptions() ]; foreach ($this->catalogConfig->getAttributesUsedForSortBy() as $attribute) { - $ascendingLabel = __($attribute['frontend_label'].' - Ascending'); - $descendingLabel = __($attribute['frontend_label'].' - Descending'); + $ascendingLabel = $attribute['frontend_label'] . __(' - Ascending'); + $descendingLabel = $attribute['frontend_label'] . __(' - Descending'); $options[] = [ 'label' => $ascendingLabel, @@ -45,4 +45,4 @@ public function getOptions() return $options; } -} \ No newline at end of file +}