From 1f088796ba0dfbce05a1d368a84408d24f80391d 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 Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 4a9d5dd9a1cc34a9445221b1feb7d5f91ae2efb6) Signed-off-by: Lucas Gass (cherry picked from commit 37bdef736d00edebf7e7013a8ca500a010a52f46) Signed-off-by: Arthur Suzuki --- 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 651045b36e..f31f253ea5 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js +++ b/koha-tmpl/intranet-tmpl/prog/js/checkouts.js @@ -579,7 +579,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.20.1