]> Untitled Git - lemmy.git/commitdiff
Adding moment translation, and to i18next.ts file.
authorDessalines <tyhou13@gmx.com>
Thu, 15 Aug 2019 21:11:02 +0000 (14:11 -0700)
committerDessalines <tyhou13@gmx.com>
Thu, 15 Aug 2019 21:11:02 +0000 (14:11 -0700)
ui/src/components/moment-time.tsx
ui/src/i18next.ts

index ba1e90bbc6ee42f10ed9bada25950966538107dd..2179499fa1008370dc4dff7de9822c6e0008c896 100644 (file)
@@ -3,6 +3,7 @@ import * as moment from 'moment';
 // import 'moment/locale/de';
 import 'moment/locale/zh-cn';
 import 'moment/locale/fr';
+import 'moment/locale/sv';
 import { getLanguage } from '../utils';
 import { i18n } from '../i18next';
 
index 756bab8b641acdc0767a200b21ec08990bc393a6..2bd5d5594b9b12707c2dc0db6d6a31bf13f39a20 100644 (file)
@@ -4,14 +4,16 @@ import { en } from './translations/en';
 import { de } from './translations/de';
 import { zh } from './translations/zh';
 import { fr } from './translations/fr';
+import { sv } from './translations/sv';
 
 // 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.
 const resources = {
-  en: en,
-  de: de,
-  zh: zh,
-  fr, fr,
+  en,
+  de,
+  zh,
+  fr,
+  sv,
 }
 
 function format(value: any, format: any, lng: any) {