12615 - change UPS product in cart warning msg in french and english

This commit is contained in:
Rodney Figaro 2017-03-17 15:57:12 +01:00
parent 865186b44d
commit dd052d38b7

View File

@ -31,10 +31,10 @@ class OrderController extends OrderControllerCore
$restricted_product = $this->context->cart->getExcludedUPSProductNameForUPSDelivery();
if (is_array($restricted_product)) {
if ($this->context->language->id == 1) {
$txt = sprintf('"%s" est un soin qui ne peut malheureusement pas être transporté par voie aérienne. Afin de poursuivre votre commande, nous vous conseillons de le retirer de votre panier.', trim($restricted_product['name']));
$txt = sprintf('"%s" est un soin qui ne peut malheureusement pas être transporté par voie aérienne. Afin de poursuivre votre commande, il sera retiré de votre panier à l\'étape "Ma livraison".', trim($restricted_product['name']));
}
else {
$txt = sprintf('"%s" cannot be carried by plane. Please remove the product from your cart so that you can resume your order.', trim($restricted_product['name']));
$txt = sprintf('"%s" cannot be carried by plane. In order to continue your order, it will be removed from your basket at the step "My Delivery".', trim($restricted_product['name']));
}
$this->context->smarty->assign('restricted_product_txt', $txt);
$this->context->smarty->assign('restricted_product_id', $restricted_product['id_product']);
@ -46,10 +46,10 @@ class OrderController extends OrderControllerCore
$restricted_product = $this->context->cart->getExcludedUPSProductNameForUPSDelivery();
if (is_array($restricted_product)) {
if ($this->context->language->id == 1) {
$txt = sprintf('"%s" est un soin qui ne peut malheureusement pas être transporté par voie aérienne. Afin de poursuivre votre commande, nous l\'avons retiré de votre panier.', trim($restricted_product['name']));
$txt = sprintf('"%s" est un soin qui ne peut malheureusement pas être transporté par voie aérienne. Afin de poursuivre votre commande, nous l\'avons retiré de votre panier. Si vous changez de pays de livraison, il vous faudra remettre "%s" dans votre panier.', trim($restricted_product['name']), trim($restricted_product['name']));
}
else {
$txt = sprintf('"%s" cannot be carried by plane. We remove the product from your cart so that you can resume your order.', trim($restricted_product['name']));
$txt = sprintf('"%s" cannot be carried by plane. We remove the product from your basket so that you can resume your order. If you change the delivery country, you have to include again "%s" in your basket.', trim($restricted_product['name']), trim($restricted_product['name']));
}
$this->addCookieRestrictedProductText($txt);
$this->context->smarty->assign('restricted_product_txt', $txt);