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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/strings.inc (+1 lines)
Lines 17-22 Link Here
17
    var NOT_RENEWABLE = _("Not renewable");
17
    var NOT_RENEWABLE = _("Not renewable");
18
    var NOT_RENEWABLE_TOO_SOON = _("No renewal before %s");
18
    var NOT_RENEWABLE_TOO_SOON = _("No renewal before %s");
19
    var NOT_RENEWABLE_AUTO_TOO_SOON = _("Scheduled for automatic renewal");
19
    var NOT_RENEWABLE_AUTO_TOO_SOON = _("Scheduled for automatic renewal");
20
    var NOT_RENEWABLE_AUTO_TOO_LATE = _("Scheduled for automatic renewal");
20
    var NOT_RENEWABLE_AUTO_RENEW = _("Scheduled for automatic renewal");
21
    var NOT_RENEWABLE_AUTO_RENEW = _("Scheduled for automatic renewal");
21
    var RENEWALS_REMAINING = _("%s of %s renewals remaining");
22
    var RENEWALS_REMAINING = _("%s of %s renewals remaining");
22
    var HOLD_IS_SUSPENDED = _("Hold is <strong>suspended</strong>");
23
    var HOLD_IS_SUSPENDED = _("Hold is <strong>suspended</strong>");
(-)a/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js (-1 / +7 lines)
Lines 348-353 $(document).ready(function() { Link Here
348
348
349
                            span_style = "display: none";
349
                            span_style = "display: none";
350
                            span_class = "renewals-allowed";
350
                            span_class = "renewals-allowed";
351
                        } else if ( oObj.can_renew_error == "auto_too_late" ) {
352
                            content += "<span class='renewals-disabled'>"
353
                                    + NOT_RENEWABLE_AUTO_TOO_LATE
354
                                    + "</span>";
355
356
                            span_style = "display: none";
357
                            span_class = "renewals-allowed";
351
                        } else if ( oObj.can_renew_error == "auto_renew" ) {
358
                        } else if ( oObj.can_renew_error == "auto_renew" ) {
352
                            content += "<span class='renewals-disabled'>"
359
                            content += "<span class='renewals-disabled'>"
353
                                    + NOT_RENEWABLE_AUTO_RENEW
360
                                    + NOT_RENEWABLE_AUTO_RENEW
354
- 

Return to bug 15581