summaryrefslogtreecommitdiffstats
path: root/webapp/components/post_view
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/post_view')
-rw-r--r--webapp/components/post_view/components/post_header.jsx8
1 files changed, 7 insertions, 1 deletions
diff --git a/webapp/components/post_view/components/post_header.jsx b/webapp/components/post_view/components/post_header.jsx
index 4043460a3..5e0a8a5a4 100644
--- a/webapp/components/post_view/components/post_header.jsx
+++ b/webapp/components/post_view/components/post_header.jsx
@@ -3,6 +3,7 @@
import UserProfile from 'components/user_profile.jsx';
import PostInfo from './post_info.jsx';
+import {FormattedMessage} from 'react-intl';
import * as PostUtils from 'utils/post_utils.jsx';
@@ -55,7 +56,12 @@ export default class PostHeader extends React.Component {
userProfile = (
<UserProfile
user={{}}
- overwriteName={Constants.SYSTEM_MESSAGE_PROFILE_NAME}
+ overwriteName={
+ <FormattedMessage
+ id='post_info.system'
+ defaultMessage='System'
+ />
+ }
overwriteImage={Constants.SYSTEM_MESSAGE_PROFILE_IMAGE}
disablePopover={true}
/>