Skip to content

Commit 1ae4aa6

Browse files
author
Stanislav Idolov
authored
ENGCOM-1855: [Backport 2.2]Fix translations #15782
2 parents 56b585a + c0670a7 commit 1ae4aa6

File tree

1 file changed

+6
-2
lines changed
  • app/code/Magento/Checkout/view/frontend/web/template/minicart

1 file changed

+6
-2
lines changed

app/code/Magento/Checkout/view/frontend/web/template/minicart/content.html

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,12 @@
3030
<span class="count" if="maxItemsToDisplay < getCartLineItemsCount()" text="maxItemsToDisplay"/>
3131
<translate args="'of'" if="maxItemsToDisplay < getCartLineItemsCount()"/>
3232
<span class="count" text="getCartLineItemsCount()"/>
33-
<translate args="'Item in Cart'" if="getCartLineItemsCount() === 1"/>
34-
<translate args="'Items in Cart'" if="getCartLineItemsCount() > 1"/>
33+
<!-- ko if: (getCartLineItemsCount() === 1) -->
34+
<span translate="'Item in Cart'"/>
35+
<!--/ko-->
36+
<!-- ko if: (getCartLineItemsCount() > 1) -->
37+
<span translate="'Items in Cart'"/>
38+
<!--/ko-->
3539
</div>
3640

3741
<each args="getRegion('subtotalContainer')" render=""/>

0 commit comments

Comments
 (0)