summaryrefslogtreecommitdiffstats
path: root/ui/src/i18next.ts
blob: 2bd5d5594b9b12707c2dc0db6d6a31bf13f39a20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import * as i18n from 'i18next';
import { getLanguage } from './utils';
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,
  de,
  zh,
  fr,
  sv,
}

function format(value: any, format: any, lng: any) {
	if (format === 'uppercase') return value.toUpperCase();
	return value;
}

i18n
.init({
  debug: true,
  // load: 'languageOnly',

  // initImmediate: false,
  lng: getLanguage(),
  fallbackLng: 'en',
	resources,
	interpolation: {
    format: format
    
  }
});

export { i18n, resources };