Skip to content

Commit

Permalink
ENGCOM-1763: Fix translations #15623
Browse files Browse the repository at this point in the history
  • Loading branch information
Stanislav Idolov authored Jun 2, 2018
2 parents 025dc7e + 405563a commit fa6c6b5
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 fa6c6b5

Please sign in to comment.