From 4a85eaf9212ec3df5d885813bc0ffa072e53aa66 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 3045f83dff..0bda05165e 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.43.0