From fc03c130da8995b22aa657565bbe8e03a4b3ffd2 Mon Sep 17 00:00:00 2001 From: Mark Tompsett Date: Wed, 9 Apr 2014 13:03:03 -0400 Subject: [PATCH] Bug 12055 - Typo "holdiay" in calendar $ git grep holdiay | grep -v \.po: This shows there were three typos in koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt TEST PLAN --------- 1) Log in to staff client 2) Click 'Tools' 3) In the Additional tools column, click 'Calendar' -- Note that the word holiday is not spelled correctly in the legend area on the right. 4) Apply patch 5) Refresh page -- Note the spelling is corrected. 6) Run koha qa test tools. --- .../prog/en/modules/tools/holidays.tt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt index 850c59b..798e215 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt @@ -118,9 +118,9 @@ if (exception_holidays[dateString] != null) { return [true, "exception", "Exception: "+exception_holidays[dateString].title]; } else if ( week_days[weekDay] != null ){ - return [true, "repeatableweekly", "Weekly holdiay: "+week_days[weekDay].title]; + return [true, "repeatableweekly", "Weekly holiday: "+week_days[weekDay].title]; } else if ( day_month_holidays[dayMonth] != null ) { - return [true, "repeatableyearly", "Yearly holdiay: "+day_month_holidays[dayMonth].title]; + return [true, "repeatableyearly", "Yearly holiday: "+day_month_holidays[dayMonth].title]; } else if (holidays[dateString] != null) { return [true, "holiday", "Single holiday: "+holidays[dateString].title]; } else { @@ -412,7 +412,7 @@ td.repeatableyearly a.ui-state-default { background: #FFFF99 none; color : Bl -- 1.7.9.5