diff --git a/ui/component/livestreamDateTime/view.jsx b/ui/component/livestreamDateTime/view.jsx
index cffbe9dfa..2bb8bff42 100644
--- a/ui/component/livestreamDateTime/view.jsx
+++ b/ui/component/livestreamDateTime/view.jsx
@@ -3,6 +3,7 @@ import React from 'react';
import DateTime from 'component/dateTime';
import { LIVESTREAM_STARTED_RECENTLY_BUFFER } from 'constants/livestream';
import moment from 'moment';
+import I18nMessage from 'component/i18nMessage';
type Props = {
uri: string,
@@ -16,7 +17,9 @@ const LivestreamDateTime = (props: Props) => {
if (activeLivestream) {
return (
- {__('Started')}
{!inPast && (
- Live {startDateFromNow}
+ {__('Live %time_date%', { time_date: startDateFromNow })}
{startDate}