Bug 36615: Terminology: use 'on hold' instead of 'reserved' in OPAC self checkout

This patch changes the term 'reserved' to 'on hold' in the OPAC self
checkout feature.

To test:
1. Apply patch
2. Place a hold for a patron
3. Enable OpacTrustedCheckout
4. Log into the OPAC as another patron
5. Click Self checkout at the top of the page
6. Paste the item's barcode in the text input
7. Click 'Submit'
8. Make sure the warning sentence is correct and there are no spelling
   errors

Signed-off-by: Owen Leonard <oleonard@myacpl.org>
Signed-off-by: Emily Lamancusa <emily.lamancusa@montgomerycountymd.gov>
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
This commit is contained in:
Caroline Cyr La Rose 2024-04-16 17:19:13 -04:00 committed by Katrin Fischer
parent f49cf32238
commit d9fd2ec226
Signed by: kfischer
GPG key ID: 0EF6E2C03357A834

View file

@ -26,7 +26,7 @@ $(document).ready(function() {
} else if (code == 'ISSUED_TO_ANOTHER') {
result += _("This item appears to be checked out to another patron, please return it to the desk");
} else if (code == 'RESERVED' || code == 'RESERVED_WAITING') {
result += _("This item appears to be reserved for another patron, please return it to the desk");
result += _("This item appears to be on hold for another patron, please return it to the desk");
} else if (code == 'TOO_MANY') {
result += _("You have reached the maximum number of checkouts allowed on your account");
} else if (code == 'AGE_RESTRICTION') {