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

Magento 2 Porto 主题的波兰语扩展

0.9.0 2018-05-22 14:19 UTC

This package is not auto-updated.

Last update: 2024-09-20 02:28:42 UTC


README

安装

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

迷你购物车插件中缺少 '购物车中的商品' 的翻译

  1. 创建文件
app/design/frontend/<theme_folder>/<theme_folder>/Magento_Checkout/web/template/cart-items.html

对于 Porto 主题,是

app/design/frontend/Smartwave/porto/Magento_Checkout/web/template/cart-items.html
  1. 从以下内容复制
vendor/magento/module-checkout/view/web/template/summary/cart-items.html
  1. 替换
<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>

<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. 部署静态内容和清除缓存