From b6230b1ad7e5b778cbf0031ca012b52628eadbf1 Mon Sep 17 00:00:00 2001 From: Mario Trojan <mario.trojan@googlemail.com> Date: Wed, 18 Oct 2017 14:41:57 +0200 Subject: [PATCH] Fixed missing label translation in TopFacets --- themes/bootstrap3/templates/Recommend/TopFacets.phtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/bootstrap3/templates/Recommend/TopFacets.phtml b/themes/bootstrap3/templates/Recommend/TopFacets.phtml index 58ff1d326ce..1ba9bc0022c 100644 --- a/themes/bootstrap3/templates/Recommend/TopFacets.phtml +++ b/themes/bootstrap3/templates/Recommend/TopFacets.phtml @@ -9,7 +9,7 @@ <? $moreClass = ' NarrowGroupHidden_'.$this->escapeHtml($title).' hidden'; ?> <? $allowExclude = $this->recommend->excludeAllowed($title); ?> <div class="top-facets"> - <strong><?=$this->transEsc('top_facet_label', ['%%label%%' => $cluster['label']]) ?></strong><br /> + <strong><?=$this->transEsc('top_facet_label', ['%%label%%' => $this->translate($cluster['label'])]) ?></strong><br /> <? $limit = $topFacetSettings['rows'] * $topFacetSettings['cols']; ?> <? foreach($cluster['list'] as $index => $thisFacet): ?> <span class="facet <?=$index > $limit ? $moreClass : '' ?>"> -- GitLab