Sorry for may be a noob qwestion, but I try to translate Vanilla 2 forum and can't find where months are... How can I translate december, november etc? Tahk you!
After a cursory look, I think you'd need to use setlocale() to change the language of months and days of the week. Most date formatting in Vanilla 2 seems to come from strftime().
Comments
Thank you!
$Configuration['Garden']['DefaultDateFormat'] = 'F j, Y'; $Configuration['Garden']['DefaultDayFormat'] = 'F j'; $Configuration['Garden']['DefaultYearFormat'] = 'F Y'; $Configuration['Garden']['DefaultTimeFormat'] = 'g:ia';
if (ini_get('date.timezone') == '') date_default_timezone_set('Canada/Saskatchewan');
Can you use date_default_timezone_set()?