From 02f7b9f2ded742c522d691b91bb43e6e4305b192 Mon Sep 17 00:00:00 2001 From: Caroline Cyr La Rose Date: Tue, 16 Apr 2024 17:19:13 -0400 Subject: [PATCH] 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 --- koha-tmpl/opac-tmpl/bootstrap/js/modals/checkout.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/js/modals/checkout.js b/koha-tmpl/opac-tmpl/bootstrap/js/modals/checkout.js index 09bea14da03..e1bfe78b2ba 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/js/modals/checkout.js +++ b/koha-tmpl/opac-tmpl/bootstrap/js/modals/checkout.js @@ -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') { -- 2.39.2