summaryrefslogtreecommitdiffstats
path: root/ui/src/components/moment-time.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'ui/src/components/moment-time.tsx')
-rw-r--r--ui/src/components/moment-time.tsx8
1 files changed, 2 insertions, 6 deletions
diff --git a/ui/src/components/moment-time.tsx b/ui/src/components/moment-time.tsx
index 2179499f..83c97fb3 100644
--- a/ui/src/components/moment-time.tsx
+++ b/ui/src/components/moment-time.tsx
@@ -4,7 +4,7 @@ import * as moment from 'moment';
import 'moment/locale/zh-cn';
import 'moment/locale/fr';
import 'moment/locale/sv';
-import { getLanguage } from '../utils';
+import { getMomentLanguage } from '../utils';
import { i18n } from '../i18next';
interface MomentTimeProps {
@@ -20,11 +20,7 @@ export class MomentTime extends Component<MomentTimeProps, any> {
constructor(props: any, context: any) {
super(props, context);
- // Moment doesnt have zh, only zh-cn
- let lang = getLanguage();
- if (lang == 'zh') {
- lang = 'zh-cn';
- }
+ let lang = getMomentLanguage();
moment.locale(lang);
}