|
Lines 590-596
$(document).ready(function() {
Link Here
|
| 590 |
content += "<span class='renewals-info'>("; |
590 |
content += "<span class='renewals-info'>("; |
| 591 |
content += __("%s of %s renewals remaining").format(oObj.renewals_remaining, oObj.renewals_allowed); |
591 |
content += __("%s of %s renewals remaining").format(oObj.renewals_remaining, oObj.renewals_allowed); |
| 592 |
if (UnseenRenewals && oObj.unseen_allowed) { |
592 |
if (UnseenRenewals && oObj.unseen_allowed) { |
| 593 |
content += __("%s of %s unseen renewals remaining").format(oObj.unseen_remaining, oObj.unseen_allowed); |
593 |
content += __(" & %s of %s unseen renewals remaining").format(oObj.unseen_remaining, oObj.unseen_allowed); |
| 594 |
} |
594 |
} |
| 595 |
content += ")</span>"; |
595 |
content += ")</span>"; |
| 596 |
} |
596 |
} |
| 597 |
- |
|
|