View | Details | Raw Unified | Return to bug 21174
Collapse All | Expand All

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-bottom.inc (-1 lines)
Lines 156-162 $.widget.bridge('uitooltip', $.ui.tooltip); Link Here
156
        var MSG_CONFIRM_DEL_BASKET = _("Are you sure you want to empty your cart?");
156
        var MSG_CONFIRM_DEL_BASKET = _("Are you sure you want to empty your cart?");
157
        var MSG_CONFIRM_DEL_RECORDS = _("Are you sure you want to remove the selected items?");
157
        var MSG_CONFIRM_DEL_RECORDS = _("Are you sure you want to remove the selected items?");
158
        var MSG_ITEM_IN_CART = _("In your cart");
158
        var MSG_ITEM_IN_CART = _("In your cart");
159
        var MSG_IN_YOUR_CART = _("Items in your cart: ");
160
        var MSG_ITEM_NOT_IN_CART = _("Add to your cart");
159
        var MSG_ITEM_NOT_IN_CART = _("Add to your cart");
161
    [% END %]
160
    [% END %]
162
    [% IF ( Koha.Preference( 'opacuserlogin' ) == 1 ) && ( Koha.Preference( 'TagsEnabled' ) == 1 ) %]
161
    [% IF ( Koha.Preference( 'opacuserlogin' ) == 1 ) && ( Koha.Preference( 'TagsEnabled' ) == 1 ) %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/js/basket.js (-3 lines)
Lines 407-416 function updateBasket(updated_value,target) { Link Here
407
    }
407
    }
408
    if(target){
408
    if(target){
409
        target.$('#basketcount').html(bcount);
409
        target.$('#basketcount').html(bcount);
410
        target.$('.cart-message').html(MSG_IN_YOUR_CART+updated_value);
411
    } else {
410
    } else {
412
        $('#basketcount').html(bcount);
411
        $('#basketcount').html(bcount);
413
        $('.cart-message').html(MSG_IN_YOUR_CART+updated_value);
414
    }
412
    }
415
}
413
}
416
414
417
- 

Return to bug 21174