Hi,
When i activate a Category Blog Layout, the dates stay in English. All my frontend is in spanish, all the dates works correctly in spanish except for Category Blog Layout. How can i translate this dates?
thanks!
gauchi wrote:Hi,
When i activate a Category Blog Layout, the dates stay in English. All my frontend is in spanish, all the dates works correctly in spanish except for Category Blog Layout. How can i translate this dates?
thanks!
<span class="createdate-day">
<?php echo date("j",$article_time); ?>
</span>
<span class="createdate-month-year">
<?php echo date("M, Y", $article_time); ?>
</span>
<span class="createdate-day">
<?php echo JHTML::_('date', $this->item->created , '%d'); ?>
</span>
<span class="createdate-month-year">
<?php echo JHTML::_('date', $this->item->created , '%b, %Y'); ?>
</span>