mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 12:05:01 +00:00
Adding the imports.
This commit is contained in:
parent
6b8dfb9621
commit
7e543cecbe
2 changed files with 3 additions and 0 deletions
|
@ -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';
|
||||
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue