In "WEB-INF/templates/mobile/time.tpl" I have changed:
Code: Select all
<td class="sectionHeaderNoBorder" align="center">{$timestring}</td>
Code: Select all
<td class="sectionHeaderNoBorder" align="center">{$timestring} {date("l", strtotime($timestring))}</td>
I know there is an array, "$i18n_weekdays", defined in "WEB-INF/resources/en.lang.php" (or the appropriate "XX.lang.php" file for the language at stake) which lets you customize the weekday names, but I don't know how to dinamically invoke the correct weekday name from that array as the displayed date changes in the Time pager for the mobile version.
Does anyone have any hints about how to accomplish that?