Hi Folks,
i've looked for them how to translate the date and only found this thread.
This is the best way with the example of "The Store" template.
In the index.php of the template starting at line 152 change as follows:
| Code: |
<div id="currentdate">
<p><?php echo "".date ('l').""; ?>,
<?php echo " <span>".date ('M')." ".date ('d').date ('S')."</span>"; ?></p>
</div>
|
| Code: |
<div id="currentdate">
<p><?php echo JHTML::_('date', time(), JText::_('DATE_FORMAT_LC1')); ?></p>
</div>
|
Thats it!
regards
Lutz