Capitalized 'Closed' on library pages.
authorTerran McCanna <tmccanna@georgialibraries.org>
Sun, 18 Jan 2015 19:01:06 +0000 (14:01 -0500)
committerChris Sharp <csharp@georgialibraries.org>
Sat, 19 Nov 2016 12:38:15 +0000 (07:38 -0500)
Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>
Open-ILS/src/templates/opac/parts/library/hours.tt2

index d0bf5b9..d3a92ea 100644 (file)
@@ -16,7 +16,7 @@
     close = today _ ctx.hours.dow_0_close;
     IF open == close;
 %]
-<div class="opening-hours">[% l('Monday: closed') %]</div>
+<div class="opening-hours">[% l('Monday: Closed') %]</div>
 [%- ELSE %]
 <div class="opening-hours" property="openingHoursSpecification" typeof="OpeningHoursSpecification"><link property="dayOfWeek" href="http://purl.org/goodrelations/v1#Monday" />[%
     l('Monday: [_1] - [_2]', '<time property="opens" content="' _ date.format(open, format => '%H:%M:%S') _ '">' _ date.format(open) _ '</time>',
@@ -29,7 +29,7 @@
     close = today _ ctx.hours.dow_1_close;
     IF open == close;
 %]
-<div class="opening-hours">[% l('Tuesday: closed') %]</div>
+<div class="opening-hours">[% l('Tuesday: Closed') %]</div>
 [%- ELSE %]
 <div class="opening-hours" property="openingHoursSpecification" typeof="OpeningHoursSpecification"><link property="dayOfWeek" href="http://purl.org/goodrelations/v1#Tuesday" />[%
     l('Tuesday: [_1] - [_2]', '<time property="opens" content="' _ date.format(open, format => '%H:%M:%S') _ '">' _ date.format(open) _ '</time>',
@@ -42,7 +42,7 @@
     close = today _ ctx.hours.dow_2_close;
     IF open == close;
 %]
-<div class="opening-hours">[% l('Wednesday: closed') %]</div>
+<div class="opening-hours">[% l('Wednesday: Closed') %]</div>
 [%- ELSE %]
 <div class="opening-hours" property="openingHoursSpecification" typeof="OpeningHoursSpecification"><link property="dayOfWeek" href="http://purl.org/goodrelations/v1#Wednesday" />[%
     l('Wednesday: [_1] - [_2]', '<time property="opens" content="' _ date.format(open, format => '%H:%M:%S') _ '">' _ date.format(open) _ '</time>',
@@ -55,7 +55,7 @@
     close = today _ ctx.hours.dow_3_close;
     IF open == close;
 %]
-<div class="opening-hours">[% l('Thursday: closed') %]</div>
+<div class="opening-hours">[% l('Thursday: Closed') %]</div>
 [%- ELSE %]
 <div class="opening-hours" property="openingHoursSpecification" typeof="OpeningHoursSpecification"><link property="dayOfWeek" href="http://purl.org/goodrelations/v1#Thursday" />[%
     l('Thursday: [_1] - [_2]', '<time property="opens" content="' _ date.format(open, format => '%H:%M:%S') _ '">' _ date.format(open) _ '</time>',
@@ -68,7 +68,7 @@
     close = today _ ctx.hours.dow_4_close;
     IF open == close;
 %]
-<div class="opening-hours">[% l('Friday: closed') %]</div>
+<div class="opening-hours">[% l('Friday: Closed') %]</div>
 [%- ELSE %]
 <div class="opening-hours" property="openingHoursSpecification" typeof="OpeningHoursSpecification"><link property="dayOfWeek" href="http://purl.org/goodrelations/v1#Friday" />[%
     l('Friday: [_1] - [_2]', '<time property="opens" content="' _ date.format(open, format => '%H:%M:%S') _ '">' _ date.format(open) _ '</time>',
@@ -81,7 +81,7 @@
     close = today _ ctx.hours.dow_5_close;
     IF open == close;
 %]
-<div class="opening-hours">[% l('Saturday: closed') %]</div>
+<div class="opening-hours">[% l('Saturday: Closed') %]</div>
 [%- ELSE %]
 <div class="opening-hours" property="openingHoursSpecification" typeof="OpeningHoursSpecification"><link property="dayOfWeek" href="http://purl.org/goodrelations/v1#Saturday" />[%
     l('Saturday: [_1] - [_2]', '<time property="opens" content="' _ date.format(open, format => '%H:%M:%S') _ '">' _ date.format(open) _ '</time>',
@@ -94,7 +94,7 @@
     close = today _ ctx.hours.dow_6_close;
     IF open == close;
 %]
-<div class="opening-hours">[% l('Sunday: closed') %]</div>
+<div class="opening-hours">[% l('Sunday: Closed') %]</div>
 [%- ELSE %]
 <div class="opening-hours" property="openingHoursSpecification" typeof="OpeningHoursSpecification"><link property="dayOfWeek" href="http://purl.org/goodrelations/v1#Sunday" />[%
     l('Sunday: [_1] - [_2]', '<time property="opens" content="' _ date.format(open, format => '%H:%M:%S') _ '">' _ date.format(open) _ '</time>',