Skip to content

Commit

Permalink
ENGCOM-1763: Fix translations #15623
Browse files Browse the repository at this point in the history
 - Merge Pull Request #15623 from cherednichenkoa/magento2:cherednichenkoa-patch-3
 - Merged commits:
   1. 4f1b50b
  • Loading branch information
magento-engcom-team committed Jun 1, 2018
2 parents c2b4657 + 4f1b50b commit 405563a
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,12 @@
<span class="count" if="maxItemsToDisplay < getCartLineItemsCount()" text="maxItemsToDisplay"/>
<translate args="'of'" if="maxItemsToDisplay < getCartLineItemsCount()"/>
<span class="count" text="getCartLineItemsCount()"/>
<translate args="'Item in Cart'" if="getCartLineItemsCount() === 1"/>
<translate args="'Items in Cart'" if="getCartLineItemsCount() > 1"/>
<!-- ko if: (getCartLineItemsCount() === 1) -->
<span translate="'Item in Cart'"/>
<!--/ko-->
<!-- ko if: (getCartLineItemsCount() > 1) -->
<span translate="'Items in Cart'"/>
<!--/ko-->
</div>

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

0 comments on commit 405563a

Please sign in to comment.