]> Untitled Git - lemmy.git/blob - ui/src/i18next.ts
Adding emoji support.
[lemmy.git] / ui / src / i18next.ts
1 import * as i18n from 'i18next';
2 import { getLanguage } from './utils';
3 import { en } from './translations/en';
4 import { eo } from './translations/eo';
5 import { es } from './translations/es';
6 import { de } from './translations/de';
7 import { fr } from './translations/fr';
8 import { sv } from './translations/sv';
9 import { ru } from './translations/ru';
10 import { zh } from './translations/zh';
11 import { nl } from './translations/nl';
12
13 // https://github.com/nimbusec-oss/inferno-i18next/blob/master/tests/T.test.js#L66
14 // TODO don't forget to add moment locales for new languages.
15 const resources = {
16   en,
17   eo,
18   es,
19   de,
20   zh,
21   fr,
22   sv,
23   ru,
24   nl,
25 }
26
27 function format(value: any, format: any, lng: any) {
28         if (format === 'uppercase') return value.toUpperCase();
29         return value;
30 }
31
32 i18n
33 .init({
34   debug: true,
35   // load: 'languageOnly',
36
37   // initImmediate: false,
38   lng: getLanguage(),
39   fallbackLng: 'en',
40         resources,
41         interpolation: {
42     format: format
43     
44   }
45 });
46
47 export { i18n, resources };