From f28ec63c21afe6a16ccfd3e4cb6423afab8a936c Mon Sep 17 00:00:00 2001 From: kkkonrad Date: Wed, 22 Apr 2020 17:06:59 +0200 Subject: [PATCH] Update Options.php --- Model/Sorting/Options.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 +}