},
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 '<div class="cart-empty">' + this.fluidbook.l10n.__('your cart is empty') + '</div>';
+ return '<div class="cart-empty">Votre liste est vide</div>';
}
var $this = this;
content += '<tr data-pseudolink-href="' + item.Lien + '" data-pseudolink-target="_blank">';
content += '<td class="categorie"><span>' + item.Categorie + '</span></td>';
content += '<td class="marque"><span>' + item.Marque + '</span></td>';
- content += '<td class="produit"><span>' + item.Produit + '</span></td>';
+ content += '<td class="produit"><span style="text-decoration: underline">' + item.Produit + '</span></td>';
content += '<td class="prix"><span>' + item.Prix + '</span></td>';
var image = '';
if (item['zoom_image']) {