@@ -, +, @@ --- koha-tmpl/intranet-tmpl/prog/js/checkouts.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js +++ a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js @@ -554,13 +554,11 @@ $(document).ready(function() { content += "("; content + __("%s of %s renewals remaining").format(oObj.renewals_remaining, oObj.renewals_allowed); if (UnseenRenewals && oObj.unseen_allowed) { - content += __(" / %s of %s unseen renewals remaining").format(oObj.unseen_remaining, oObj.unseen_allowed); + content += __("%s of %s unseen renewals remaining").format(oObj.unseen_remaining, oObj.unseen_allowed); } - + ")"; + content += ")"; } - content += ""; - return content; } }, --