From 1022d5b78052f5f438211527233f632711736801 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 3 May 2023 09:09:25 +0200 Subject: [PATCH] Bug 33551: Remove span from restriction-types.inc Signed-off-by: Katrin Fischer --- .../prog/en/includes/restriction-types.inc | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/restriction-types.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/restriction-types.inc index 321bde9116..dc1775a82f 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/restriction-types.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/restriction-types.inc @@ -1,10 +1,11 @@ +[% PROCESS 'i18n.inc' %] [%- BLOCK restriction_type_description -%] [%- ddisplay = restriction_type.display_text -%] [%- SWITCH ddisplay -%] - [%- CASE 'Manual' -%]Manual - [%- CASE 'Overdues' -%]Overdues - [%- CASE 'Suspension' -%]Suspension - [%- CASE 'Discharge' -%]Discharge - [%- CASE -%][% ddisplay | html %] + [%- CASE 'Manual' -%][% t("Manual") %] + [%- CASE 'Overdues' -%][% t("Overdues") %] + [%- CASE 'Suspension' -%][% t("Suspension") %] + [%- CASE 'Discharge' -%][% t("Discharge") %] + [%- CASE -%][% ddisplay | html %] [%- END -%] [%- END -%] -- 2.30.2