From 57fe504525fce2f51e8e282f1f2447236e2f7ba3 Mon Sep 17 00:00:00 2001 From: Magnus Enger Date: Fri, 31 Jan 2025 16:08:16 +0100 Subject: [PATCH] Bug 24172: Followup: Add missing spans to localizer.inc Two of the lines in this file were missing a , resulting in Fall and Winter not being translated properly. Signed-off-by: Nick Clemens --- koha-tmpl/intranet-tmpl/prog/en/includes/localizer.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/localizer.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/localizer.inc index 3045f83dff1..0bda05165e1 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/localizer.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/localizer.inc @@ -4,9 +4,9 @@ [%~ ELSIF ( matches = season.match('(.*)Summer(.*)') ) ~%] [%~ matches.0 | html ~%]Summer[%~ matches.1 | html ~%] [%~ ELSIF ( matches = season.match('(.*)Fall(.*)') ) ~%] - [%~ matches.0 | html ~%]Fall[%~ matches.1 | html ~%] + [%~ matches.0 | html ~%]Fall[%~ matches.1 | html ~%] [%~ ELSIF ( matches = season.match('(.*)Winter(.*)') ) ~%] - [%~ matches.0 | html ~%]Winter[%~ matches.1 | html ~%] + [%~ matches.0 | html ~%]Winter[%~ matches.1 | html ~%] [%~ ELSIF ( matches = season.match('(.*)Spr(.*)') ) ~%] [%~ matches.0 | html ~%]Spr[%~ matches.1 | html ~%] [%~ ELSIF ( matches = season.match('(.*)Sum(.*)') ) ~%] -- 2.39.5