summaryrefslogtreecommitdiffstats
path: root/web/react/components/post_focus_view.jsx
diff options
context:
space:
mode:
authorElias Nahum <nahumhbl@gmail.com>2016-02-03 00:46:56 -0300
committerElias Nahum <nahumhbl@gmail.com>2016-02-03 12:17:13 -0300
commit6a3806fe9d03abdfa1eb30fc62c7388a6922b60f (patch)
treeddd3c092a4ff8a7d241f264644804be1194b4768 /web/react/components/post_focus_view.jsx
parentf7fddd6cce43ec75599eb4aa463276f18eb4ca28 (diff)
downloadchat-6a3806fe9d03abdfa1eb30fc62c7388a6922b60f.tar.gz
chat-6a3806fe9d03abdfa1eb30fc62c7388a6922b60f.tar.bz2
chat-6a3806fe9d03abdfa1eb30fc62c7388a6922b60f.zip
PLT-7: Refactoring frontend (chunk 11)
- channel view - Added translations for previous commits - Fix bug on signup_team email body
Diffstat (limited to 'web/react/components/post_focus_view.jsx')
-rw-r--r--web/react/components/post_focus_view.jsx9
1 files changed, 8 insertions, 1 deletions
diff --git a/web/react/components/post_focus_view.jsx b/web/react/components/post_focus_view.jsx
index adcd78839..b9b6acd5f 100644
--- a/web/react/components/post_focus_view.jsx
+++ b/web/react/components/post_focus_view.jsx
@@ -7,6 +7,8 @@ import PostStore from '../stores/post_store.jsx';
import ChannelStore from '../stores/channel_store.jsx';
import * as EventHelpers from '../dispatcher/event_helpers.jsx';
+import {FormattedMessage} from 'mm-intl';
+
export default class PostFocusView extends React.Component {
constructor(props) {
super(props);
@@ -73,7 +75,12 @@ export default class PostFocusView extends React.Component {
getIntroMessage() {
return (
<div className='channel-intro'>
- <h4 className='channel-intro__title'>{'Beginning of Channel Archives'}</h4>
+ <h4 className='channel-intro__title'>
+ <FormattedMessage
+ id='post_focus_view.beginning'
+ defaultMessage='Beginning of Channel Archives'
+ />
+ </h4>
</div>
);
}