Adding the imports.

This commit is contained in:
Dessalines 2019-08-10 11:33:54 -07:00
parent 529c550bdd
commit a2145006c8
2 changed files with 3 additions and 0 deletions

View file

@ -2,6 +2,7 @@ import { Component } from 'inferno';
import * as moment from 'moment';
// import 'moment/locale/de';
import 'moment/locale/zh-cn';
import 'moment/locale/fr';
import { getLanguage } from '../utils';
import { i18n } from '../i18next';

View file

@ -3,6 +3,7 @@ import { getLanguage } from './utils';
import { en } from './translations/en';
import { de } from './translations/de';
import { zh } from './translations/zh';
import { fr } from './translations/fr';
// https://github.com/nimbusec-oss/inferno-i18next/blob/master/tests/T.test.js#L66
// TODO don't forget to add moment locales for new languages.
@ -10,6 +11,7 @@ const resources = {
en: en,
de: de,
zh: zh,
fr, fr,
}
function format(value: any, format: any, lng: any) {