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

(-)a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js (-2 / +1 lines)
Lines 557-563 $(document).ready(function() { Link Here
557
                        content += msg;
557
                        content += msg;
558
                        if ( can_renew || can_force_renew ) {
558
                        if ( can_renew || can_force_renew ) {
559
                            content += "<span class='renewals'>(";
559
                            content += "<span class='renewals'>(";
560
                            content + __("%s of %s renewals remaining").format(oObj.renewals_remaining, oObj.renewals_allowed);
560
                            content += __("%s of %s renewals remaining").format(oObj.renewals_remaining, oObj.renewals_allowed);
561
                            if (UnseenRenewals && oObj.unseen_allowed) {
561
                            if (UnseenRenewals && oObj.unseen_allowed) {
562
                                content += __("%s of %s unseen renewals remaining").format(oObj.unseen_remaining, oObj.unseen_allowed);
562
                                content += __("%s of %s unseen renewals remaining").format(oObj.unseen_remaining, oObj.unseen_allowed);
563
                            }
563
                            }
564
- 

Return to bug 24083