From 1246f37dd0c371126f72417bc46854e067b85c4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filip=20Vuji=C4=8Di=C4=87?= Date: Thu, 7 Jul 2022 22:48:42 +0000 Subject: [PATCH] Bug 30764: replace "Cancelled reserve" with "Cancelled hold" Test plan: 1. Inspect `koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt`, notice that on line 136 it says "Cancelled reserve" 2. Apply patch 3. Inspect the same line again and notice it now correctly says "Cancelled hold" 4. ??? 5. Profit! Sponsored-by: Catalyst IT Signed-off-by: Chris Cormack Signed-off-by: Katrin Fischer --- koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt index ba867c8cc4..f465aaa40e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt @@ -133,7 +133,7 @@ [%- CASE 'RotatingCollection' -%]Rotating collection [%- CASE 'Reserve' -%]Reserve [%- CASE 'LostReserve' -%]Lost reserve - [%- CASE 'CancelReserve' -%]Cancelled reserve + [%- CASE 'CancelReserve' -%]Cancelled hold [%- CASE 'TransferCancellation' -%]Transfer was cancelled whilst in transit [%- END -%]

-- 2.30.2