Bug 29050: (follow-up) Replace & with and
authorDavid Nind <david@davidnind.com>
Fri, 8 Jul 2022 11:10:34 +0000 (11:10 +0000)
committerTomas Cohen Arazi <tomascohen@theke.io>
Fri, 8 Jul 2022 18:09:54 +0000 (15:09 -0300)
See the terminology list https://wiki.koha-community.org/wiki/Terminology

Signed-off-by: David Nind <david@davidnind.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
koha-tmpl/intranet-tmpl/prog/js/checkouts.js

index a40190e..e35d377 100644 (file)
@@ -590,7 +590,7 @@ $(document).ready(function() {
                             content += "<span class='renewals-info'>(";
                             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 += ")</span>";
                         }