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

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

Return to bug 24083