Bug 29050: (follow-up) Replace & with and

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>
(cherry picked from commit 4a9d5dd9a1)

Signed-off-by: Lucas Gass <lucas@bywatersolutions.com>
This commit is contained in:
David Nind 2022-07-08 11:10:34 +00:00 committed by Lucas Gass
parent f983ad9b22
commit 37bdef736d

View file

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