@@ -, +, @@ content --- koha-tmpl/intranet-tmpl/prog/js/checkouts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js +++ a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js @@ -557,7 +557,7 @@ $(document).ready(function() { content += msg; if ( can_renew || can_force_renew ) { content += "("; - content + __("%s of %s renewals remaining").format(oObj.renewals_remaining, oObj.renewals_allowed); + 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); } --