summaryrefslogtreecommitdiffstats
path: root/web/react/components/loading_screen.jsx
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2016-01-27 10:37:52 -0500
committerCorey Hulen <corey@hulen.com>2016-01-27 10:37:52 -0500
commit8868c465c0ac163be266bc976848afbce141f5e5 (patch)
tree9a79df4a258c99bfa810f9b18302aba995afb4e2 /web/react/components/loading_screen.jsx
parentb7606da40f5403896dfbf930837530b4b22abacd (diff)
parent8497c97a6fff097b8b58a4aa65bb7f068bfd3dca (diff)
downloadchat-8868c465c0ac163be266bc976848afbce141f5e5.tar.gz
chat-8868c465c0ac163be266bc976848afbce141f5e5.tar.bz2
chat-8868c465c0ac163be266bc976848afbce141f5e5.zip
Merge pull request #1992 from ZBoxApp/PLT-7-react
PLT-7: Refactoring frontend (chunk 1)
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>