Jump to content
  • 0

Tłumaczenie 1.7.4.2


pawku80

Question

Witam.

Mam problem ze znalezieniem gdzie to zmienić - ciągle pokazuje komunikat po angielsku (proceed to checkout)- w tłumaczeniu z panelu jest zmienione poprawnie ale wyswietla sie dalej tak samo , gdzie moge to na "sztywno zmienic" ? cache wyczyszczone

używam płatnego szablonu revo

problem_checkuot.jpg

Link to comment
Share on other sites

24 answers to this question

Recommended Posts

  • 0

To juz wina tego forum.

Nie wiem jak to prosciej wystlumaczyc - chodzi o okienko które wyskakuje po kliknięciu na "dodaj do koszyka", wyskakuje okienko gdzie widać towar dodany do koszyka i zapytanie czy do zakupów czy przejść do koszykaUntitled-3.thumb.jpg.4bdc49c3f693e90721844d6974cf68b4.jpg

Link to comment
Share on other sites

  • 0

i faktycznie w tym katalogu \var nie ma nic poza :

katalog cache

katalog sessions

katalog logs

.htaccess

bootstrap.php

SymfonyRequirements.php

 

hmmm

sklep zainstalowany z instalatora nic nie zmieniane, szablon wgrany z instalatora - pozatym nic nie zmieniane

Edited by pawku80 (see edit history)
Link to comment
Share on other sites

  • 0

to znalazlem juz sam wczesniej, niestety zadna zmiana nie powoduje zmiany na przycisku

{**
 * 2007-2017 PrestaShop
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License 3.0 (AFL-3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * https://opensource.org/licenses/AFL-3.0
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to [email protected] so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade PrestaShop to newer
 * versions in the future. If you wish to customize PrestaShop for your
 * needs please refer to http://www.prestashop.com for more information.
 *
 * @author    PrestaShop SA <contact@prestashop.com>
 * @copyright 2007-2017 PrestaShop SA
 * @license   https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
 * International Registered Trademark & Property of PrestaShop SA
 *}
<div id="blockcart-modal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
  <div class="modal-dialog" role="document">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-label="Close">
          <span aria-hidden="true">&times;</span>
        </button>
        <h4 class="modal-title h6 text-sm-center" id="myModalLabel"><i class="material-icons">&#xE876;</i>{l s='Product successfully added to your shopping cart' d='Shop.Theme.Checkout'}</h4>
      </div>
      <div class="modal-body">
        <div class="row">
          <div class="col-md-5 divide-right">
            <div class="row">
              <div class="col-md-6">
                <img class="product-image" src="{$product.cover.medium.url}" alt="{$product.cover.legend}" title="{$product.cover.legend}" itemprop="image">
              </div>
              <div class="col-md-6">
                <h6 class="h6 product-name">{$product.name}</h6>
                <p>{$product.price}</p>
                {hook h='displayProductPriceBlock' product=$product type="unit_price"}
                {foreach from=$product.attributes item="property_value" key="property"}
                  <span><strong>{$property}</strong>: {$property_value}</span><br>
                {/foreach}
                <p><strong>{l s='Quantity:' d='Shop.Theme.Checkout'}</strong>&nbsp;{$product.cart_quantity}</p>
              </div>
            </div>
          </div>
          <div class="col-md-7">
            <div class="cart-content">
              {if $cart.products_count > 1}
                <p class="cart-products-count">{l s='There are %products_count% items in your cart.' sprintf=['%products_count%' => $cart.products_count] d='Shop.Theme.Checkout'}</p>
              {else}
                <p class="cart-products-count">{l s='There is %product_count% item in your cart.' sprintf=['%product_count%' =>$cart.products_count] d='Shop.Theme.Checkout'}</p>
              {/if}
              <p><strong>{l s='Total products:' d='Shop.Theme.Checkout'}</strong>&nbsp;{$cart.subtotals.products.value}</p>
              <p><strong>{l s='Total shipping:' d='Shop.Theme.Checkout'}</strong>&nbsp;{$cart.subtotals.shipping.value} {hook h='displayCheckoutSubtotalDetails' subtotal=$cart.subtotals.shipping}</p>
              {if $cart.subtotals.tax}
              	<p><strong>{$cart.subtotals.tax.label}</strong>&nbsp;{$cart.subtotals.tax.value}</p>
              {/if}
              <p><strong>{l s='Total:' d='Shop.Theme.Checkout'}</strong>&nbsp;{$cart.totals.total.value} {$cart.labels.tax_short}</p>
              <div class="cart-content-btn">
                <button type="button" class="btn btn-secondary" data-dismiss="modal">{l s='Continue shopping' d='Shop.Theme.Actions'}</button>
                <a href="{$cart_url}" class="btn btn-primary"><i class="material-icons">&#xE876;</i>{l s='Proceed to checkout' d='Shop.Theme.Actions'}</a>
              </div>
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>
</div>

 

Link to comment
Share on other sites

  • 0

tak , dzisiaj jeszcze przewertuje ręcznie wszystkie pliki sklepu szukając w kodzie wyrażenia "proceed to checkout" może gdzieś jest nadpisywane z wyższym parametrem... w 1.6 miałem kiedy podobny problem ale tam pomogła zmiana tłumaczenia... postawiłbym wszystko od zera ale szkoda mi całej pracy już włożonej w tej projekt...

Link to comment
Share on other sites

  • 0

ok problem rozwiązany, bezinteresownie pomogła mi ekipa firmy Moonfox - jak sie okazało problem był prozaiczny

 

Quote

Problemem był źle zdefiniowany string do przetłumaczenia w pliku modules/spblockcart/modal.tpl. Było: {l s='proceed to checkout' d='Shop.Theme.Actions'} A powinno być: {l s='Proceed to checkout' d='Shop.Theme.Actions’}

 

serdecznie dziekuje!

Link to comment
Share on other sites

  • 0

Mam podobny problem, zmieniłem w pliku Proceed to checkout ( na dużą literkę, bo tylko taka zmiana ) nie pomogło, próbując zmienić w tłumaczeniu nie zapisuje zmian. Ktoś może rozwiązał ten problem? Podobna sytuacja z fazą do sortowania produktów ( tej w ogóle nie znajduje w tłumaczeniach ) Presta 1.7.6.7.
Może ktoś coś? :)

Screenshot_2021-01-2.png

Screenshot_2021-01-23.png

Screenshot_2021-01-23 _.png

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...