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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/virtualshelves-toolbar.inc (-1 / +1 lines)
Lines 4-10 Link Here
4
    [% IF ( can_add_biblios ) %]
4
    [% IF ( can_add_biblios ) %]
5
        <div class="btn-group">
5
        <div class="btn-group">
6
            <button type="button" class="btn btn-default" data-toggle="modal" data-target="#addToList">
6
            <button type="button" class="btn btn-default" data-toggle="modal" data-target="#addToList">
7
                <i class="fa fa-plus"></i> Add items
7
                <i class="fa fa-plus"></i> Add records
8
            </button>
8
            </button>
9
        </div>
9
        </div>
10
    [% END %]
10
    [% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt (-1 / +1 lines)
Lines 7-13 Link Here
7
[% BLOCK controls %]
7
[% BLOCK controls %]
8
    <p class="cart-controls">
8
    <p class="cart-controls">
9
        <a id="CheckAll" href="#"><i class="fa fa-check"></i> Select all</a> <a id="CheckNone" href="#"><i class="fa fa-times"></i> Clear all</a>
9
        <a id="CheckAll" href="#"><i class="fa fa-check"></i> Select all</a> <a id="CheckNone" href="#"><i class="fa fa-times"></i> Clear all</a>
10
        | <strong>Selected items:</strong>
10
        | <strong>Selected records:</strong>
11
        <a href="#" id="remove_from_cart">Remove</a>
11
        <a href="#" id="remove_from_cart">Remove</a>
12
12
13
        [% IF ( loggedinusername ) %]
13
        [% IF ( loggedinusername ) %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt (-6 / +5 lines)
Lines 151-157 Link Here
151
                        <span>An error occurred when deleting this list.</span>
151
                        <span>An error occurred when deleting this list.</span>
152
                    [% CASE 'error_on_add_biblio' %]
152
                    [% CASE 'error_on_add_biblio' %]
153
                        [% IF m.item_barcode %]
153
                        [% IF m.item_barcode %]
154
                            <span>The item ([% m.item_barcode | html %]) has not been added to the list. Please verify it is not already in the list.</span>
154
                            <span>The record for this item ([% m.item_barcode | html %]) has not been added to the list. Please verify it is not already in the list.</span>
155
                        [% ELSE %]
155
                        [% ELSE %]
156
                            <span>The record ([% m.bibnum | html %]) has not been added to the list. Please verify it is not already in the list.</span>
156
                            <span>The record ([% m.bibnum | html %]) has not been added to the list. Please verify it is not already in the list.</span>
157
                        [% END %]
157
                        [% END %]
Lines 163-174 Link Here
163
                        <span>List deleted.</span>
163
                        <span>List deleted.</span>
164
                    [% CASE 'success_on_add_biblio' %]
164
                    [% CASE 'success_on_add_biblio' %]
165
                        [% IF m.item_barcode %]
165
                        [% IF m.item_barcode %]
166
                            <span>The item ([% m.item_barcode | html %]) has been added to the list.</span>
166
                            <span>The record for this item ([% m.item_barcode | html %]) has been added to the list.</span>
167
                        [% ELSE %]
167
                        [% ELSE %]
168
                            <span>The record ([% m.bibnum | html %]) has been added to the list.</span>
168
                            <span>The record ([% m.bibnum | html %]) has been added to the list.</span>
169
                        [% END %]
169
                        [% END %]
170
                    [% CASE 'success_on_remove_biblios' %]
170
                    [% CASE 'success_on_remove_biblios' %]
171
                        <span>The item has been removed from the list.</span>
171
                        <span>The record has been removed from the list.</span>
172
                    [% CASE 'does_not_exist' %]
172
                    [% CASE 'does_not_exist' %]
173
                        <span>This list does not exist.</span>
173
                        <span>This list does not exist.</span>
174
                    [% CASE 'item_does_not_exist' %]
174
                    [% CASE 'item_does_not_exist' %]
Lines 572-578 Link Here
572
                <div class="modal-content">
572
                <div class="modal-content">
573
                    <div class="modal-header">
573
                    <div class="modal-header">
574
                        <button type="button" class="closebtn" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
574
                        <button type="button" class="closebtn" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
575
                        <h4 class="modal-title" id="addToListLabel">Add items</h4>
575
                        <h4 class="modal-title" id="addToListLabel">Add records</h4>
576
                    </div>
576
                    </div>
577
                    <div class="modal-body">
577
                    <div class="modal-body">
578
                        <fieldset class="brief">
578
                        <fieldset class="brief">
Lines 624-630 Link Here
624
    [% END %]
624
    [% END %]
625
    <script>
625
    <script>
626
        var MSG_NO_ITEM_SELECTED = _("Nothing is selected.");
626
        var MSG_NO_ITEM_SELECTED = _("Nothing is selected.");
627
        var MSG_REMOVE_FROM_LIST = _("Are you sure you want to remove these items from the list?");
627
        var MSG_REMOVE_FROM_LIST = _("Are you sure you want to remove these records from the list?");
628
        var MSG_CONFIRM_DELETE_LIST = _("Are you sure you want to remove this list?");
628
        var MSG_CONFIRM_DELETE_LIST = _("Are you sure you want to remove this list?");
629
629
630
        [% IF op == 'list' %]
630
        [% IF op == 'list' %]
631
- 

Return to bug 37177