wizzaro / magento2-porto-theme-language-pl-pl
Polish language extension for Magento 2 Porto Theme
Package info
github.com/Wizzaro/magento2-porto-theme-language-pl-pl
Type:magento2-language
pkg:composer/wizzaro/magento2-porto-theme-language-pl-pl
0.9.0
2018-05-22 14:19 UTC
This package is not auto-updated.
Last update: 2026-03-20 09:29:40 UTC
README
Install
composer require wizzaro/magento2-porto-theme-language-pl-pl
Translations for 'Item in Cart' missing in mini cart hack
- Create file:
app/design/frontend/<theme_folder>/<theme_folder>/Magento_Checkout/web/template/cart-items.html
For porto theme is:
app/design/frontend/Smartwave/porto/Magento_Checkout/web/template/cart-items.html
- Copy content from:
vendor/magento/module-checkout/view/web/template/summary/cart-items.html
- Replace:
<div class="title" data-role="title"> <strong role="heading"> <translate args="maxCartItemsToDisplay" if="maxCartItemsToDisplay < getCartLineItemsCount()"/> <translate args="'of'" if="maxCartItemsToDisplay < getCartLineItemsCount()"/> <span data-bind="text: getCartLineItemsCount()"></span> <translate args="'Item in Cart'" if="getCartLineItemsCount() === 1"/> <translate args="'Items in Cart'" if="getCartLineItemsCount() > 1"/> </strong> </div>
to:
<div class="title" data-role="title"> <strong role="heading"><span data-bind="text: getItemsQty()"></span> <!-- ko if: getItemsQty() == 1 --> <!-- ko i18n: 'Item in Cart' --><!-- /ko --> <!-- /ko --> <!-- ko if: getItemsQty() > 1 --> <!-- ko i18n: 'Items in Cart' --><!-- /ko --> <!-- /ko --> </strong> </div>
- Deploy static content and clear cache