diff --git a/modules/monitoring/application/views/scripts/partials/event-history.phtml b/modules/monitoring/application/views/scripts/partials/event-history.phtml
index cc1862362..b2fc8857b 100644
--- a/modules/monitoring/application/views/scripts/partials/event-history.phtml
+++ b/modules/monitoring/application/views/scripts/partials/event-history.phtml
@@ -30,7 +30,7 @@ $history->limit($limit * $page);
?>
translate('%A, %B %e, %Y', 'date.verbose');
+$dateFormatter = new IntlDateFormatter(setlocale(LC_TIME, 0), IntlDateFormatter::FULL, IntlDateFormatter::LONG);
$lastDate = null;
$flappingMsg = $this->translate('Flapping with a %.2f%% state change rate');
$rowAction = Url::fromPath('monitoring/event/show');
@@ -161,7 +161,7 @@ $rowAction = Url::fromPath('monitoring/event/show');
break;
} ?>
timestamp);
+ $currentDate = $dateFormatter->format($event->timestamp);
if ($currentDate !== $lastDate):
$lastDate = $currentDate;
?>