From 5dd0fccac6e26e84b99a4b72d90880e3bafe4a3d 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 --- 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.11.0