summaryrefslogtreecommitdiffstats
path: root/webapp
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2017-08-14 17:48:08 -0700
committerSaturnino Abril <saturnino.abril@gmail.com>2017-08-15 08:48:08 +0800
commitc66bb2349e307ec747f7d6b420312d3df64e550a (patch)
treeaf3c2ead1ab714d474f50571c567de3f25f1144a /webapp
parent4cf316fcd39dbb654bb07d80b0dfa9f8194c571d (diff)
downloadchat-c66bb2349e307ec747f7d6b420312d3df64e550a.tar.gz
chat-c66bb2349e307ec747f7d6b420312d3df64e550a.tar.bz2
chat-c66bb2349e307ec747f7d6b420312d3df64e550a.zip
Adding default of EN to localization store (#7208)
Diffstat (limited to 'webapp')
-rw-r--r--webapp/stores/localization_store.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/stores/localization_store.jsx b/webapp/stores/localization_store.jsx
index 0a25c860d..2eb482699 100644
--- a/webapp/stores/localization_store.jsx
+++ b/webapp/stores/localization_store.jsx
@@ -12,7 +12,7 @@ class LocalizationStoreClass extends EventEmitter {
constructor() {
super();
- this.currentLocale = '';
+ this.currentLocale = 'en';
this.currentTranslations = null;
}