From: Dan Scott Date: Tue, 17 Dec 2013 17:21:46 +0000 (-0500) Subject: i18n needs TT2 escape! X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=fc7201c021a00e2d297cc5bc3ab0f4607e806a8b;p=working%2FEvergreen.git i18n needs TT2 escape! Signed-off-by: Dan Scott --- diff --git a/Open-ILS/src/templates/opac/parts/library/hours.tt2 b/Open-ILS/src/templates/opac/parts/library/hours.tt2 index 4b433098c1..37513b1010 100644 --- a/Open-ILS/src/templates/opac/parts/library/hours.tt2 +++ b/Open-ILS/src/templates/opac/parts/library/hours.tt2 @@ -1,6 +1,6 @@

[% l('Opening hours') %]

[%- IF ctx.hours.dow_0_open == ctx.hours.dow_0_close; %] -
l('Monday: closed')
+
[% l('Monday: closed') %]
[%- ELSE %]
[% l('Monday: [_1]-[_2]', '' _ ctx.hours.dow_0_open.substr(0, 5) _ '', @@ -8,7 +8,7 @@
[%- END %] [%- IF ctx.hours.dow_1_open == ctx.hours.dow_1_close; %] -
l('Tuesday: closed')
+
[% l('Tuesday: closed') %]
[%- ELSE %]
[% l('Tuesday: [_1]-[_2]', '' _ ctx.hours.dow_1_open.substr(0, 5) _ '', @@ -16,7 +16,7 @@
[%- END %] [%- IF ctx.hours.dow_2_open == ctx.hours.dow_2_close; %] -
l('Wednesday: closed')
+
[% l('Wednesday: closed') %]
[%- ELSE %]
[% l('Wednesday: [_1]-[_2]', '' _ ctx.hours.dow_2_open.substr(0, 5) _ '', @@ -24,7 +24,7 @@
[%- END %] [%- IF ctx.hours.dow_3_open == ctx.hours.dow_3_close; %] -
l('Thursday: closed')
+
[% l('Thursday: closed') %]
[%- ELSE %]
[% l('Thursday: [_1]-[_2]', '' _ ctx.hours.dow_3_open.substr(0, 5) _ '', @@ -32,7 +32,7 @@
[%- END %] [%- IF ctx.hours.dow_4_open == ctx.hours.dow_4_close; %] -
l('Friday: closed')
+
[% l('Friday: closed') %]
[%- ELSE %]
[% l('Friday: [_1]-[_2]', '' _ ctx.hours.dow_4_open.substr(0, 5) _ '', @@ -40,7 +40,7 @@
[%- END %] [%- IF ctx.hours.dow_5_open == ctx.hours.dow_5_close; %] -
l('Saturday: closed')
+
[% l('Saturday: closed') %]
[%- ELSE %]
[% l('Saturday: [_1]-[_2]', '' _ ctx.hours.dow_5_open.substr(0, 5) _ '', @@ -48,7 +48,7 @@
[%- END %] [%- IF ctx.hours.dow_6_open == ctx.hours.dow_6_close; %] -
l('Sunday: closed')
+
[% l('Sunday: closed') %]
[%- ELSE %]
[% l('Sunday: [_1]-[_2]', '' _ ctx.hours.dow_6_open.substr(0, 5) _ '',