From ecf311e6301e288426ed7e19083419636a3e8548 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 18 May 2023 14:40:45 +0000 Subject: [PATCH] Bug 33769: Terminology: 'Warning: Item {barcode} is reserved' This patch corrects an instance of the term "reserved" and replaces it with "on hold." The string is shown when the user tries to add an item which is on hold to a bundle. --- koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt index 96096417e0..cd48d884a0 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt @@ -2000,7 +2000,7 @@ $('#addResult') .empty() .attr('class', 'alert alert-warning') - .append(__x('Warning: Item {barcode} is reserved', { barcode })) + .append(__x('Warning: Item {barcode} is on hold', { barcode })) .append(' ', button); } else { $('#addResult').replaceWith('
'+_("Failure: Item '%s' belongs to another bundle").format(barcode)+'
'); -- 2.30.2