Language in Portuguese for Date in Joomla, PHP

2

I'm working with an event module in joomla and when showing the event date the same does in the English language. It has the following code in one of the module files:

<span itemprop="startDate"><?php echo JHtml::_('date', $item->params->get('ctm_start',''), 'DATE_FORMAT_LC3'); ?></span>
        -
        <span itemprop="endDate"><?php echo JHtml::_('date', $item->params->get('ctm_end',''), 'DATE_FORMAT_LC3'); ?></span>

Just by this code, could I bring the language into Portuguese from Brazil?

    
asked by anonymous 03.03.2015 / 17:10

1 answer

2

There's more than one way you can do this. One of them would be to directly change the code you are pointing to, another is to overlap language.

Go to Joomla > Administrator > Extensions - > Language Manager > Breath and then look for DATE_FORMAT_LC3 and replace with a format you want to use.

The meaning of digits can be seen at link

    
14.06.2015 / 10:24