Date in columns : how to change the language ?
- Single Page
Posted 18 May 2012 - 15:17 PM
I'm looking for a way to change the language for a date in the list (columns)
[left]So far, for my date field, i have for example : 17 May 2012 - 11:36 , how to change it ( specially the word "may" ) ?[/left]
[left]Thanks in advance [/left]
Posted 18 May 2012 - 16:17 PM
/topic/341-lenguaje-datepicker/page__view__findpost__p__1361
or you can change the js file see this
/topic/56-es-translate-multilingual-functionality/
Posted 18 May 2012 - 22:24 PM
$value = date ("d M Y",mktime (0,0,0,(int)$month , (int)$day , (int)$year));
to
$value = date ("d m Y",mktime (0,0,0,(int)$month , (int)$day , (int)$year));
application/libraries/grocery_crud.php line 267 change the:
$value = date ("d M Y - H:i", mktime ( (int)$hours , (int)$minutes ,0, (int)$month , (int)$day ,(int)$year));
to
$value = date ("d m Y - H:i", mktime ( (int)$hours , (int)$minutes ,0, (int)$month , (int)$day ,(int)$year));
Posted 19 May 2012 - 11:30 AM