From 23a7dcd494e175e04ae432fb294be56a3dcbfb8a Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Thu, 18 Dec 2025 22:40:45 +0000 Subject: [PATCH] Bug 41484: Clarify strings in checkouts.js To test: 1. APPLY PATCH, clear browser cache. 2. Turn on UseRecalls 3. Turn on EnableBookings, make the item type bookable via item type administration. 4. Check 3 things out to a paton. 5. Put one item on hold, recall one, and book one. 6. Look at the renew and checkin columns on the issues table. They should now read: -Item on hold for another patron -Item booked for another patron -Item recalled by another patron Signed-off-by: David Nind --- koha-tmpl/intranet-tmpl/prog/js/checkouts.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js b/koha-tmpl/intranet-tmpl/prog/js/checkouts.js index 222b39a781..ecf8409c02 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js +++ b/koha-tmpl/intranet-tmpl/prog/js/checkouts.js @@ -388,7 +388,7 @@ function LoadIssuesTable() { "" + - __("Recalled") + + __("Item recalled by another patron") + "" + ""; @@ -400,7 +400,7 @@ function LoadIssuesTable() { "" + - __("Booked") + + __("Item booked for another patron") + "" + ""; span_style = "display: none"; @@ -411,7 +411,7 @@ function LoadIssuesTable() { "" + - __("On hold") + + __("Item on hold for another patron") + "" + ""; @@ -592,7 +592,7 @@ function LoadIssuesTable() { "" + - __("Recalled") + + __("Item recalled by another patron") + "" ); } else if (oObj.can_renew_error == "on_reserve") { @@ -600,7 +600,7 @@ function LoadIssuesTable() { "" + - __("On hold") + + __("Item on hold for another patron") + "" ); } else if (oObj.materials) { -- 2.39.5