Event time format in feed view
Posted: Tue Sep 18, 2018 2:17 pm
Hi anyone!
I'm trying to change the time format of the events on the feed view. This one to be clear:
https://imgur.com/KlKt1om
I've added in my language file this settings, but the format doesn't change
Can anyone help me?
Thanks!
I'm trying to change the time format of the events on the feed view. This one to be clear:
https://imgur.com/KlKt1om
I've added in my language file this settings, but the format doesn't change

Code: Select all
setlocale(LC_ALL, "it_IT.UTF-8");
define("DATE_FMT_CONSOLE_LONG", "D j M, G:i");
define("DATE_FMT_CONSOLE_SHORT", "%H:%M");
define("STRF_FMT_DATETIME", "%c");
define("STRF_FMT_DATE", "%x");
define("STRF_FMT_TIME", "%X");
define("STRF_FMT_DATETIME_SHORT", "%d/%m/%y %H:%M:%S");
define("STRF_FMT_DATETIME_SHORTER", "%d/%m %H:%M:%S");
Thanks!