From 7fa9562644c9d6b3d88fb0474582f8c0ac745faa Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Wed, 26 May 2021 11:45:06 +0200 Subject: [PATCH] wip #4447 @0.5 --- js/libs/fluidbook/cart/fluidbook.cart.flexipan.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/js/libs/fluidbook/cart/fluidbook.cart.flexipan.js b/js/libs/fluidbook/cart/fluidbook.cart.flexipan.js index a8c23d0e..86c6e5e9 100644 --- a/js/libs/fluidbook/cart/fluidbook.cart.flexipan.js +++ b/js/libs/fluidbook/cart/fluidbook.cart.flexipan.js @@ -74,14 +74,14 @@ FluidbookCartFlexipan.prototype = { }, openCart: function (p2, callback) { - this._endMenu('Ma sélection', this.getCartContent(), function () { + this._endMenu(this.fluidbook.l10n.__('my selection'), this.getCartContent(), function () { callback(); }); }, getCartContent: function () { if (this.getItemsNumbers() == 0) { - return '
Votre sélection est vide
'; + return '
'+this.fluidbook.l10n.__('your selection is empty')+'
'; } var $this = this; @@ -89,10 +89,10 @@ FluidbookCartFlexipan.prototype = { content += ''; content += ''; content += ''; - content += 'Dénomination produit'; - content += 'Code produit'; - content += 'Gamme'; - content += 'Catégorie'; + content += ''+this.fluidbook.l10n.__('product name')+''; + content += ''+this.fluidbook.l10n.__('product code')+''; + content += ''+this.fluidbook.l10n.__('product range')+''; + content += ''+this.fluidbook.l10n.__('category')+''; content += ''; content += ''; content += ''; @@ -112,7 +112,7 @@ FluidbookCartFlexipan.prototype = { content += ''; content += ''; content += ''; return content; -- 2.39.5