summaryrefslogtreecommitdiffstats
path: root/web/react/components
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2016-02-27 08:19:03 -0800
committer=Corey Hulen <corey@hulen.com>2016-02-27 08:19:03 -0800
commit6c18e13f8ae4d8785b598adc0cb3e93c27cec849 (patch)
tree8143e2fff5173f46c1fe5cf655e7347f395b836c /web/react/components
parent5a1ca435c9e4fe667159b76d8a0961188529d0f9 (diff)
downloadchat-6c18e13f8ae4d8785b598adc0cb3e93c27cec849.tar.gz
chat-6c18e13f8ae4d8785b598adc0cb3e93c27cec849.tar.bz2
chat-6c18e13f8ae4d8785b598adc0cb3e93c27cec849.zip
Adding missing localization
Diffstat (limited to 'web/react/components')
-rw-r--r--web/react/components/channel_loader.jsx14
1 files changed, 14 insertions, 0 deletions
diff --git a/web/react/components/channel_loader.jsx b/web/react/components/channel_loader.jsx
index f3000ee05..e47f2aa50 100644
--- a/web/react/components/channel_loader.jsx
+++ b/web/react/components/channel_loader.jsx
@@ -6,6 +6,7 @@
AsyncClient with requests. */
import * as AsyncClient from '../utils/async_client.jsx';
+import * as Client from '../utils/client.jsx';
import SocketStore from '../stores/socket_store.jsx';
import ChannelStore from '../stores/channel_store.jsx';
import PostStore from '../stores/post_store.jsx';
@@ -45,6 +46,14 @@ const holders = defineMessages({
wrote: {
id: 'channel_loader.wrote',
defaultMessage: ' wrote: '
+ },
+ connectionError: {
+ id: 'channel_loader.connection_error',
+ defaultMessage: 'There appears to be a problem with your internet connection.'
+ },
+ unknownError: {
+ id: 'channel_loader.unknown_error',
+ defaultMessage: 'We received an unexpected status code from the server.'
}
});
@@ -67,6 +76,11 @@ class ChannelLoader extends React.Component {
wrote: formatMessage(holders.wrote)
});
+ Client.setTranslations({
+ connectionError: formatMessage(holders.connectionError),
+ unknownError: formatMessage(holders.unknownError)
+ });
+
this.state = {};
}
componentDidMount() {