transformers: {
before: [transformClasscat(), transformInferno()],
},
+ alias: {
+ 'locale': 'moment/locale'
+ },
plugins: [
EnvPlugin({ NODE_ENV: isProduction ? 'production' : 'development' }),
CSSPlugin(),
import { Component } from 'inferno';
import * as moment from 'moment';
-// import 'moment/locale/de.js';
+// import 'moment/locale/de';
+import 'moment/locale/zh-cn';
import { getLanguage } from '../utils';
import { i18n } from '../i18next';
constructor(props: any, context: any) {
super(props, context);
- moment.locale(getLanguage());
+
+ // Moment doesnt have zh, only zh-cn
+ let lang = getLanguage();
+ if (lang == 'zh') {
+ lang = 'zh-cn';
+ }
+
+ moment.locale(lang);
}
render() {