summaryrefslogtreecommitdiffstats
path: root/ui/src/components/moment-time.tsx
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2019-08-10 11:26:28 -0700
committerDessalines <tyhou13@gmx.com>2019-08-10 11:26:28 -0700
commitfc5fd7ff98d52634e96494adeccf69d7e350fc17 (patch)
tree0f3923b4ad7fd122b6d18f972e24708e41841138 /ui/src/components/moment-time.tsx
parent3656a3009b4fadd8434bebb1615656c3cccc43ed (diff)
Fixing locales in fuse. Coercing zh to zh-cn for moment.
Diffstat (limited to 'ui/src/components/moment-time.tsx')
-rw-r--r--ui/src/components/moment-time.tsx12
1 files changed, 10 insertions, 2 deletions
diff --git a/ui/src/components/moment-time.tsx b/ui/src/components/moment-time.tsx
index 021cf5f7..77dcaf86 100644
--- a/ui/src/components/moment-time.tsx
+++ b/ui/src/components/moment-time.tsx
@@ -1,6 +1,7 @@
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';
@@ -16,7 +17,14 @@ export class MomentTime extends Component<MomentTimeProps, any> {
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() {