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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/bookings/list.tt (-1 / +1 lines)
Lines 90-96 Link Here
90
                for (item of items[0]) {
90
                for (item of items[0]) {
91
                    itemsSet.add({
91
                    itemsSet.add({
92
                        id: item.item_id,
92
                        id: item.item_id,
93
                        content: _("Item") + " " + item.external_id,
93
                        content: _("Item %s").format(item.external_id),
94
                    });
94
                    });
95
                }
95
                }
96
96
(-)a/koha-tmpl/intranet-tmpl/prog/js/cancel_booking_modal.js (-2 / +1 lines)
Lines 28-33 $("#cancelBookingForm").on('submit', function(e) { Link Here
28
    });
28
    });
29
29
30
    deleting.fail(function(data) {
30
    deleting.fail(function(data) {
31
        $('#cancel_booking_result').replaceWith('<div id="booking_result" class="alert alert-danger">'+_("Failure")+'</div>');
31
        $('#cancel_booking_result').replaceWith('<div id="booking_result" class="alert alert-danger">'+__("Failure")+'</div>');
32
    });
32
    });
33
});
33
});
34
- 

Return to bug 35475