summaryrefslogtreecommitdiffstats
path: root/webapp/components/rhs_root_post.jsx
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2017-01-31 13:02:48 -0500
committerCorey Hulen <corey@hulen.com>2017-01-31 13:02:48 -0500
commit9369cab56c82629d505d44d572f273df1d396972 (patch)
treed5e7959639ff66f15c34351ea02c6ec19177442b /webapp/components/rhs_root_post.jsx
parent6054dee806f45b7813438bfd4758af0407099865 (diff)
downloadchat-9369cab56c82629d505d44d572f273df1d396972.tar.gz
chat-9369cab56c82629d505d44d572f273df1d396972.tar.bz2
chat-9369cab56c82629d505d44d572f273df1d396972.zip
Added ability for system message username to be localized (#5239)
Diffstat (limited to 'webapp/components/rhs_root_post.jsx')
-rw-r--r--webapp/components/rhs_root_post.jsx7
1 files changed, 6 insertions, 1 deletions
diff --git a/webapp/components/rhs_root_post.jsx b/webapp/components/rhs_root_post.jsx
index a114c7385..2942a0efc 100644
--- a/webapp/components/rhs_root_post.jsx
+++ b/webapp/components/rhs_root_post.jsx
@@ -293,7 +293,12 @@ export default class RhsRootPost 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}
/>