2020-01-06 11:22:51 -05:00
|
|
|
import i18next from 'i18next';
|
2019-08-09 20:14:43 -04:00
|
|
|
import { getLanguage } from './utils';
|
|
|
|
import { en } from './translations/en';
|
2019-08-26 17:42:53 -04:00
|
|
|
import { eo } from './translations/eo';
|
2019-08-22 21:34:24 -04:00
|
|
|
import { es } from './translations/es';
|
2019-08-09 20:14:43 -04:00
|
|
|
import { de } from './translations/de';
|
2019-08-10 14:33:54 -04:00
|
|
|
import { fr } from './translations/fr';
|
2019-08-15 17:11:22 -04:00
|
|
|
import { sv } from './translations/sv';
|
2019-08-19 17:29:28 -04:00
|
|
|
import { ru } from './translations/ru';
|
2019-08-29 14:20:21 -04:00
|
|
|
import { zh } from './translations/zh';
|
|
|
|
import { nl } from './translations/nl';
|
2019-10-18 04:10:26 -04:00
|
|
|
import { it } from './translations/it';
|
2020-01-26 12:35:47 -05:00
|
|
|
import { fi } from './translations/fi';
|
2020-01-26 15:20:25 -05:00
|
|
|
import { ca } from './translations/ca';
|
2019-08-09 20:14:43 -04:00
|
|
|
|
|
|
|
// https://github.com/nimbusec-oss/inferno-i18next/blob/master/tests/T.test.js#L66
|
|
|
|
const resources = {
|
2019-08-15 17:11:22 -04:00
|
|
|
en,
|
2019-08-26 17:42:53 -04:00
|
|
|
eo,
|
2019-08-22 21:34:24 -04:00
|
|
|
es,
|
2019-08-15 17:11:22 -04:00
|
|
|
de,
|
|
|
|
zh,
|
|
|
|
fr,
|
|
|
|
sv,
|
2019-08-19 17:29:28 -04:00
|
|
|
ru,
|
2019-08-29 14:20:21 -04:00
|
|
|
nl,
|
2019-10-18 04:10:26 -04:00
|
|
|
it,
|
2020-01-26 12:35:47 -05:00
|
|
|
fi,
|
2020-01-26 15:20:25 -05:00
|
|
|
ca,
|
2019-10-18 20:20:27 -04:00
|
|
|
};
|
2019-08-09 20:14:43 -04:00
|
|
|
|
2020-01-26 14:31:34 -05:00
|
|
|
const format = (value: any, format: any, lng: any) => format === 'uppercase' ? value.toUpperCase() : value;
|
2019-08-09 20:14:43 -04:00
|
|
|
|
2020-01-06 11:22:51 -05:00
|
|
|
i18next.init({
|
2019-10-19 20:46:29 -04:00
|
|
|
debug: false,
|
2019-08-09 20:14:43 -04:00
|
|
|
// load: 'languageOnly',
|
|
|
|
|
|
|
|
// initImmediate: false,
|
|
|
|
lng: getLanguage(),
|
|
|
|
fallbackLng: 'en',
|
2019-10-18 20:20:27 -04:00
|
|
|
resources,
|
2020-01-26 13:53:57 -05:00
|
|
|
interpolation: { format },
|
2019-08-09 20:14:43 -04:00
|
|
|
});
|
|
|
|
|
2020-01-06 11:22:51 -05:00
|
|
|
export { i18next as i18n, resources };
|