2017 © Pedro Peláez
 

magento2-language magento2-porto-theme-language-pl-pl

Polish language extension for Magento 2 Porto Theme

image

wizzaro/magento2-porto-theme-language-pl-pl

Polish language extension for Magento 2 Porto Theme

  • Tuesday, May 22, 2018
  • by przemyslawdziadek
  • Repository
  • 0 Watchers
  • 0 Stars
  • 1 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Polish language extension for Magento 2 Porto Theme

Install

composer require wizzaro/magento2-porto-theme-language-pl-pl

Translations for 'Item in Cart' missing in mini cart hack

  1. Create file:
app/design/frontend/<theme_folder>/<theme_folder>/Magento_Checkout/web/template/cart-items.html

For porto theme is:, (*1)

app/design/frontend/Smartwave/porto/Magento_Checkout/web/template/cart-items.html
  1. Copy content from:
vendor/magento/module-checkout/view/web/template/summary/cart-items.html
  1. 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:, (*2)

<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>
  1. Deploy static content and clear cache

The Versions

22/05 2018

dev-master

9999999-dev

Polish language extension for Magento 2 Porto Theme

  Sources   Download

MIT

22/05 2018

0.9.0

0.9.0.0

Polish language extension for Magento 2 Porto Theme

  Sources   Download

MIT