diff --git a/client/coral-admin/src/components/CommentLabels.js b/client/coral-admin/src/components/CommentLabels.js
index 1f71d9771..5c7da08c7 100644
--- a/client/coral-admin/src/components/CommentLabels.js
+++ b/client/coral-admin/src/components/CommentLabels.js
@@ -2,6 +2,7 @@ import React from 'react';
import PropTypes from 'prop-types';
import Label from 'coral-ui/components/Label';
import Slot from 'coral-framework/components/Slot';
+import { t } from 'coral-framework/services/i18n';
import FlagLabel from 'coral-ui/components/FlagLabel';
import cn from 'classnames';
import styles from './CommentLabels.css';
@@ -63,10 +64,14 @@ const CommentLabels = ({
{getUserFlaggedType(actions)}
)}
{hasSuspectedWords(actions) && (
- Suspect
+
+ {t('flags.reasons.comment.suspect_word')}
+
)}
{hasHistoryFlag(actions) && (
- History
+
+ {t('flags.reasons.comment.trust')}
+
)}