Skip to content

Commit bf1335c

Browse files
author
Nick de Kleijn
authored
Fix missing 'out of' translation on search results page (#1139)
1 parent 91dd5ca commit bf1335c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

i18n/en_US.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ Go,Go
3636
"See products in","See products in"
3737
"All departments","All departments"
3838
"or in","or in"
39+
"out of","out of"
3940
"
4041

4142
Algolia Search

view/frontend/templates/instant/stats.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{{#hasOneResult}}<strong>1</strong> <?php echo $block->escapeHtml(__('result')); ?> found{{/hasOneResult}}
33

44
{{#hasManyResults}}
5-
{{^hasNoResults}}{{first}}-{{last}} out of{{/hasNoResults}}
5+
{{^hasNoResults}}{{first}}-{{last}} <?php echo $block->escapeHtml(__('out of')); ?>{{/hasNoResults}}
66
<strong>
77
<span itemprop="numberOfItems">{{nbHits}}</span>
88
<?php echo $block->escapeHtml(__('results found')); ?>

0 commit comments

Comments
 (0)