diff --git a/translate/public/locale/en-US/translate.ftl b/translate/public/locale/en-US/translate.ftl index 81d8a36c62..8706941039 100644 --- a/translate/public/locale/en-US/translate.ftl +++ b/translate/public/locale/en-US/translate.ftl @@ -369,13 +369,13 @@ history-Translation--span-copied = .title = Copied ({ $machinerySources }) history-translation--approved = - .title = Approved by { $user } + .title = Approved by { $user } on { DATETIME($reviewedDate, dateStyle:"long", timeStyle:"medium") } history-translation--approved-anonymous = - .title = Approved + .title = Approved on { DATETIME($reviewedDate, dateStyle:"long", timeStyle:"medium") } history-translation--rejected = - .title = Rejected by { $user } + .title = Rejected by { $user } on { DATETIME($reviewedDate, dateStyle:"long", timeStyle:"medium") } history-translation--rejected-anonymous = - .title = Rejected + .title = Rejected on { DATETIME($reviewedDate, dateStyle:"long", timeStyle:"medium") } history-translation--unreviewed = .title = Not reviewed yet diff --git a/translate/src/modules/history/components/HistoryTranslation.tsx b/translate/src/modules/history/components/HistoryTranslation.tsx index a001ade186..69b2757e2c 100644 --- a/translate/src/modules/history/components/HistoryTranslation.tsx +++ b/translate/src/modules/history/components/HistoryTranslation.tsx @@ -196,7 +196,7 @@ export function HistoryTranslationBase({ const review = { id: 'history-translation--unreviewed', - vars: { user: '' }, + vars: { user: '', reviewedDate: new Date(translation.dateIso) }, attrs: { title: true }, }; if (translation.approved) {