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 410-419 function updateBasket(updated_value,target) { Link Here
410
    }
410
    }
411
    if(target){
411
    if(target){
412
        target.$('#basketcount').html(bcount);
412
        target.$('#basketcount').html(bcount);
413
        target.$('.cart-message').html(MSG_IN_YOUR_CART+updated_value);
414
    } else {
413
    } else {
415
        $('#basketcount').html(bcount);
414
        $('#basketcount').html(bcount);
416
        $('.cart-message').html(MSG_IN_YOUR_CART+updated_value);
417
    }
415
    }
418
}
416
}
419
417
420
- 

Return to bug 21174