@@ -, +, @@ --------- -- Note that the word holiday is not spelled correctly in the legend area on the right. -- Note the spelling is corrected. --- .../prog/en/modules/tools/holidays.tt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt +++ a/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 --