summaryrefslogtreecommitdiffstats
path: root/web/react/components/loading_screen.jsx
diff options
context:
space:
mode:
authorElias Nahum <nahumhbl@gmail.com>2016-01-26 22:19:51 -0300
committerElias Nahum <nahumhbl@gmail.com>2016-01-26 22:19:51 -0300
commit85d4ed21c73cf51f112ff944080e8bf54d53608a (patch)
tree3b1ee8ff37a881e2527e9d6dc2fff245a1c79203 /web/react/components/loading_screen.jsx
parentefc4d239e14707de27b149b76f1dd4065838410c (diff)
downloadchat-85d4ed21c73cf51f112ff944080e8bf54d53608a.tar.gz
chat-85d4ed21c73cf51f112ff944080e8bf54d53608a.tar.bz2
chat-85d4ed21c73cf51f112ff944080e8bf54d53608a.zip
PLT-7: Refactoring frontend (chunk 1)
- System console sidebar - Sytem console email settings - Error Bar - Loading Screen - Select Team Modal - Add npm mm-intl package
Diffstat (limited to 'web/react/components/loading_screen.jsx')
-rw-r--r--web/react/components/loading_screen.jsx9
1 files changed, 8 insertions, 1 deletions
diff --git a/web/react/components/loading_screen.jsx b/web/react/components/loading_screen.jsx
index 9849205f2..143b94467 100644
--- a/web/react/components/loading_screen.jsx
+++ b/web/react/components/loading_screen.jsx
@@ -1,6 +1,8 @@
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
+import {FormattedMessage} from 'mm-intl';
+
export default class LoadingScreen extends React.Component {
constructor(props) {
super(props);
@@ -13,7 +15,12 @@ export default class LoadingScreen extends React.Component {
style={{position: this.props.position}}
>
<div className='loading__content'>
- <h3>Loading</h3>
+ <h3>
+ <FormattedMessage
+ id='loading_screen.loading'
+ defaultMessage='Loading'
+ />
+ </h3>
<div className='round round-1'></div>
<div className='round round-2'></div>
<div className='round round-3'></div>