Look in the file:
wp-content\plugins\timeline-express\lib\classes\class-timeline-express-initialize.php
Line: 364
find:
$container_classes[] = strtolower( date_i18n( ‘F’, $announcement_date ) );
and replace strtolower with mb_strtolower:
$container_classes[] = mb_strtolower( date_i18n( ‘F’, $announcement_date ) );
Yep, thats not the way you should do it, but I hope that the author will apply the fix at next rev.