summaryrefslogtreecommitdiffstats
path: root/webapp/i18n/i18n.jsx
diff options
context:
space:
mode:
authorenahum <nahumhbl@gmail.com>2017-03-09 06:14:26 -0300
committerGeorge Goldberg <george@gberg.me>2017-03-09 09:14:26 +0000
commit609a1148c73f6ddf52a1c3e54e20af88753e6d45 (patch)
treed2d6a1bbd551056930c683d48c018424ebe2ab88 /webapp/i18n/i18n.jsx
parentafbe5bab1182af8f58da2c33970b7c88f9a55927 (diff)
downloadchat-609a1148c73f6ddf52a1c3e54e20af88753e6d45.tar.gz
chat-609a1148c73f6ddf52a1c3e54e20af88753e6d45.tar.bz2
chat-609a1148c73f6ddf52a1c3e54e20af88753e6d45.zip
PLT-5769 Translations filenames and values consistent (#5689)
Diffstat (limited to 'webapp/i18n/i18n.jsx')
-rw-r--r--webapp/i18n/i18n.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/webapp/i18n/i18n.jsx b/webapp/i18n/i18n.jsx
index 4eda91198..fd4e42a32 100644
--- a/webapp/i18n/i18n.jsx
+++ b/webapp/i18n/i18n.jsx
@@ -9,8 +9,8 @@ const ko = require('!!file-loader?name=i18n/[name].[hash].[ext]!./ko.json');
const nl = require('!!file-loader?name=i18n/[name].[hash].[ext]!./nl.json');
const pt_BR = require('!!file-loader?name=i18n/[name].[hash].[ext]!./pt-BR.json'); //eslint-disable-line camelcase
const ru = require('!!file-loader?name=i18n/[name].[hash].[ext]!./ru.json');
-const zh_TW = require('!!file-loader?name=i18n/[name].[hash].[ext]!./zh_TW.json'); //eslint-disable-line camelcase
-const zh_CN = require('!!file-loader?name=i18n/[name].[hash].[ext]!./zh_CN.json'); //eslint-disable-line camelcase
+const zh_TW = require('!!file-loader?name=i18n/[name].[hash].[ext]!./zh-TW.json'); //eslint-disable-line camelcase
+const zh_CN = require('!!file-loader?name=i18n/[name].[hash].[ext]!./zh-CN.json'); //eslint-disable-line camelcase
import {addLocaleData} from 'react-intl';
import deLocaleData from 'react-intl/locale-data/de';