From ff2026fe77954cdf675f34442215a03b59e979b5 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Wed, 26 May 2021 12:22:09 +0200 Subject: [PATCH] wait #4447 @0.25 --- 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 86c6e5e9..91c51849 100644 --- a/js/libs/fluidbook/cart/fluidbook.cart.flexipan.js +++ b/js/libs/fluidbook/cart/fluidbook.cart.flexipan.js @@ -22,7 +22,7 @@ FluidbookCartFlexipan.prototype = { this.save(); } - return true; + return this.fluidbook.l10n.__("the item has been added to your selection"); }, removeFromCart: function (key) { @@ -81,7 +81,7 @@ FluidbookCartFlexipan.prototype = { getCartContent: function () { if (this.getItemsNumbers() == 0) { - return '
'+this.fluidbook.l10n.__('your selection is empty')+'
'; + return '
' + this.fluidbook.l10n.__('your selection is empty') + '
'; } var $this = this; @@ -89,10 +89,10 @@ FluidbookCartFlexipan.prototype = { content += ''; content += ''; content += ''; - content += ''+this.fluidbook.l10n.__('product name')+''; - content += ''+this.fluidbook.l10n.__('product code')+''; - content += ''+this.fluidbook.l10n.__('product range')+''; - content += ''+this.fluidbook.l10n.__('category')+''; + 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