]> Untitled Git - lemmy.git/commitdiff
Adding the imports.
authorDessalines <tyhou13@gmx.com>
Sat, 10 Aug 2019 18:33:54 +0000 (11:33 -0700)
committerDessalines <tyhou13@gmx.com>
Sat, 10 Aug 2019 18:33:54 +0000 (11:33 -0700)
ui/src/components/moment-time.tsx
ui/src/i18next.ts

index 77dcaf86f771bd3f3e458f6b3f081feec9651d45..ba1e90bbc6ee42f10ed9bada25950966538107dd 100644 (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';
 
index 0c02abf268109cba458b47f60396606ac9aadf2e..756bab8b641acdc0767a200b21ec08990bc393a6 100644 (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) {