From c350f03e06c23cff344de0c498585d076e63ea13 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Fri, 13 Nov 2020 17:47:52 +0100 Subject: [PATCH] wip #4047 @0.5 --- js/libs/fluidbook/cart/fluidbook.cart.mif.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/libs/fluidbook/cart/fluidbook.cart.mif.js b/js/libs/fluidbook/cart/fluidbook.cart.mif.js index 7c059865..d0ab9b53 100644 --- a/js/libs/fluidbook/cart/fluidbook.cart.mif.js +++ b/js/libs/fluidbook/cart/fluidbook.cart.mif.js @@ -67,14 +67,14 @@ FluidbookCartMIF.prototype = { }, openCart: function (p2, callback) { - this._endMenu('my cart', this.getCartContent(), function () { + this._endMenu('Ma liste', this.getCartContent(), function () { callback(); }); }, getCartContent: function () { if (this.getItemsNumbers() == 0) { - return '
' + this.fluidbook.l10n.__('your cart is empty') + '
'; + return '
Votre liste est vide
'; } var $this = this; @@ -96,7 +96,7 @@ FluidbookCartMIF.prototype = { content += ''; content += '' + item.Categorie + ''; content += '' + item.Marque + ''; - content += '' + item.Produit + ''; + content += '' + item.Produit + ''; content += '' + item.Prix + ''; var image = ''; if (item['zoom_image']) { -- 2.39.5