Hi,
I saw it when working on JA Events template, but it can be the case for any template.
For example in templatesja_eventshtmlcom_contentfrontpagedefault_item.php :
[PHP]
$createDay = date(‘d’, strtotime( $this->item->created));
$createMonth = date(‘M’, strtotime( $this->item->created));
$createYear = date(‘Y’, strtotime( $this->item->created));
[/PHP]
As you know some options in PHP’s date function returns English wording for month or day names/abbreviations.
Please make use of strftime function instead, as it returns correct internationalized strings depending on locale.
[PHP]
$createMonth = strftime(‘%h’, strtotime( $this->item->created));
[/PHP]
Thanks