Tuesday 13 May 2008 7:16:20 am
Thanks for your quick reply. I found the file in the ezwebin path. I have changed the "calendar_heading_days" from:
<tr class="calendar_heading_days">
<th class="first_col">{"Mon"|i18n("design/ezwebin/full/event_view_calendar")}</th>
<th>{"Tue"|i18n("design/ezwebin/full/event_view_calendar")}</th>
<th>{"Wed"|i18n("design/ezwebin/full/event_view_calendar")}</th>
<th>{"Thu"|i18n("design/ezwebin/full/event_view_calendar")}</th>
<th>{"Fri"|i18n("design/ezwebin/full/event_view_calendar")}</th>
<th>{"Sat"|i18n("design/ezwebin/full/event_view_calendar")}</th>
<th class="last_col">{"Sun"|i18n("design/ezwebin/full/event_view_calendar")}</th>
</tr>
to:
<tr class="calendar_heading_days">
<th class="first_col">{"Sun"|i18n("design/ezwebin/full/event_view_calendar")}</th>
<th>{"Mon"|i18n("design/ezwebin/full/event_view_calendar")}</th>
<th>{"Tue"|i18n("design/ezwebin/full/event_view_calendar")}</th>
<th>{"Wed"|i18n("design/ezwebin/full/event_view_calendar")}</th>
<th>{"Thu"|i18n("design/ezwebin/full/event_view_calendar")}</th>
<th>{"Fri"|i18n("design/ezwebin/full/event_view_calendar")}</th>
<th class="last_col">{"Sat"|i18n("design/ezwebin/full/event_view_calendar")}</th>
</tr>
This obviously changes only the column heading. Now I'm not sure where to change the actual value of the first day of the week to be Sunday rather than Monday. Is that set in this same file?
Thanks, Mark
|