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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/article-requests.tt (-3 / +3 lines)
Lines 23-29 Link Here
23
        }
23
        }
24
24
25
        function Cancel( id, a ) {
25
        function Cancel( id, a ) {
26
            notes = prompt("Reason for cancelation:");
26
            notes = prompt(_("Reason for cancelation:"));
27
            if ( notes == null ) {
27
            if ( notes == null ) {
28
                return;
28
                return;
29
            }
29
            }
Lines 192-198 Link Here
192
                                            <td class="ar-patron">
192
                                            <td class="ar-patron">
193
                                                <p>
193
                                                <p>
194
                                                    <a href="/cgi-bin/koha/circ/circulation.pl?findborrower=[% ar.borrower.cardnumber %]">
194
                                                    <a href="/cgi-bin/koha/circ/circulation.pl?findborrower=[% ar.borrower.cardnumber %]">
195
                                                        [% ar.borrower.surname %], [% ar.borrower.firstname %] ([% ar.borrower.cardnumber %])
195
                                                        [% ar.borrower.surname %][% IF ar.borrower.firstname %], [% ar.borrower.firstname %][% END %] ([% ar.borrower.cardnumber %])
196
                                                    </a>
196
                                                    </a>
197
                                                </p>
197
                                                </p>
198
198
Lines 317-323 Link Here
317
                                            <td class="ar-patron">
317
                                            <td class="ar-patron">
318
                                                <p>
318
                                                <p>
319
                                                    <a href="/cgi-bin/koha/circ/circulation.pl?findborrower=[% ar.borrower.cardnumber %]">
319
                                                    <a href="/cgi-bin/koha/circ/circulation.pl?findborrower=[% ar.borrower.cardnumber %]">
320
                                                        [% ar.borrower.surname %], [% ar.borrower.firstname %] ([% ar.borrower.cardnumber %])
320
                                                        [% ar.borrower.surname %][% IF ar.borrower.firstname %], [% ar.borrower.firstname %][% END %] ([% ar.borrower.cardnumber %])
321
                                                    </a>
321
                                                    </a>
322
                                                </p>
322
                                                </p>
323
323
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/request-article.tt (-2 / +1 lines)
Lines 38-44 $(document).ready(function() { Link Here
38
        previous_branchcode = this.value;
38
        previous_branchcode = this.value;
39
    }).on('change', function(){
39
    }).on('change', function(){
40
        var branchcode = this.value;
40
        var branchcode = this.value;
41
        var c = confirm("Are you sure you want to change the pickup library from " + previous_branchcode + " to " + branchcode + " for this request?");
41
        var c = confirm(_("Are you sure you want to change the pickup library from %s to %s for this request?").format( previous_branchcode, branchcode ));
42
42
43
        if ( c ) {
43
        if ( c ) {
44
            var id = this.id.split("branchcode-")[1];
44
            var id = this.id.split("branchcode-")[1];
45
- 

Return to bug 14610