From 2a6ecda81d80e4774dc82dcc40ad76ae367e85ab Mon Sep 17 00:00:00 2001 From: David Nind Date: Fri, 8 Jul 2022 11:10:34 +0000 Subject: [PATCH] Bug 29050: (follow-up) Replace & with and See the terminology list https://wiki.koha-community.org/wiki/Terminology Signed-off-by: David Nind --- koha-tmpl/intranet-tmpl/prog/js/checkouts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js b/koha-tmpl/intranet-tmpl/prog/js/checkouts.js index a40190e49e..e35d377a58 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js +++ b/koha-tmpl/intranet-tmpl/prog/js/checkouts.js @@ -590,7 +590,7 @@ $(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 += __(" and %s of %s unseen renewals remaining").format(oObj.unseen_remaining, oObj.unseen_allowed); } content += ")"; } -- 2.30.2