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

(-)a/koha-tmpl/opac-tmpl/bootstrap/js/modals/checkout.js (-2 / +13 lines)
Lines 24-30 $(document).ready(function() { Link Here
24
            result += _("Item will be renewed").format(data);
24
            result += _("Item will be renewed").format(data);
25
        }
25
        }
26
        else if ( code == 'OTHER_CHARGES' ) {
26
        else if ( code == 'OTHER_CHARGES' ) {
27
            result += _("Your account current has outstanding charges of '%s'").format(data);
27
            result += _("Your account currently has outstanding charges of '%s'").format(data);
28
        }
29
        else if ( code == 'ISSUED_TO_ANOTHER' ) {
30
            result += _("This item appears to be checked out to another patron, please return it to the desk");
31
        }
32
        else if ( code == 'RESERVED' ) {
33
            result += _("This item appears to be reserved for another patron, please return it to the desk");
34
        }
35
        else if ( code == 'NOT_FOR_LOAN' ) {
36
            result += _("This item is not normally for loan, please select another or ask at the desk");
37
        }
38
        else if ( code == 'WTHDRAWN' ) }
39
            result += _("This item is marked withdrawn, please select another or ask at the desk");
28
        }
40
        }
29
        else {
41
        else {
30
            result += _("Message code '%s' with data '%s'").format(code,data);
42
            result += _("Message code '%s' with data '%s'").format(code,data);
31
- 

Return to bug 30979