2019-08-10 00:14:43 +00:00
|
|
|
import * as i18n from 'i18next';
|
|
|
|
import { getLanguage } from './utils';
|
|
|
|
import { en } from './translations/en';
|
2019-08-26 21:42:53 +00:00
|
|
|
import { eo } from './translations/eo';
|
2019-08-23 01:34:24 +00:00
|
|
|
import { es } from './translations/es';
|
2019-08-10 00:14:43 +00:00
|
|
|
import { de } from './translations/de';
|
2019-08-10 18:33:54 +00:00
|
|
|
import { fr } from './translations/fr';
|
2019-08-15 21:11:22 +00:00
|
|
|
import { sv } from './translations/sv';
|
2019-08-19 21:29:28 +00:00
|
|
|
import { ru } from './translations/ru';
|
2019-08-29 18:20:21 +00:00
|
|
|
import { zh } from './translations/zh';
|
|
|
|
import { nl } from './translations/nl';
|
2019-10-18 08:10:26 +00:00
|
|
|
import { it } from './translations/it';
|
2019-08-10 00:14:43 +00:00
|
|
|
|
|
|
|
// https://github.com/nimbusec-oss/inferno-i18next/blob/master/tests/T.test.js#L66
|
|
|
|
const resources = {
|
2019-08-15 21:11:22 +00:00
|
|
|
en,
|
2019-08-26 21:42:53 +00:00
|
|
|
eo,
|
2019-08-23 01:34:24 +00:00
|
|
|
es,
|
2019-08-15 21:11:22 +00:00
|
|
|
de,
|
|
|
|
zh,
|
|
|
|
fr,
|
|
|
|
sv,
|
2019-08-19 21:29:28 +00:00
|
|
|
ru,
|
2019-08-29 18:20:21 +00:00
|
|
|
nl,
|
2019-10-18 08:10:26 +00:00
|
|
|
it,
|
2019-10-19 00:20:27 +00:00
|
|
|
};
|
2019-08-10 00:14:43 +00:00
|
|
|
|
|
|
|
function format(value: any, format: any, lng: any) {
|
2019-10-19 00:20:27 +00:00
|
|
|
if (format === 'uppercase') return value.toUpperCase();
|
|
|
|
return value;
|
2019-08-10 00:14:43 +00:00
|
|
|
}
|
|
|
|
|
2019-10-19 00:20:27 +00:00
|
|
|
i18n.init({
|
2019-10-20 00:46:29 +00:00
|
|
|
debug: false,
|
2019-08-10 00:14:43 +00:00
|
|
|
// load: 'languageOnly',
|
|
|
|
|
|
|
|
// initImmediate: false,
|
|
|
|
lng: getLanguage(),
|
|
|
|
fallbackLng: 'en',
|
2019-10-19 00:20:27 +00:00
|
|
|
resources,
|
|
|
|
interpolation: {
|
|
|
|
format: format,
|
2019-10-21 19:52:51 +00:00
|
|
|
},
|
2019-08-10 00:14:43 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
export { i18n, resources };
|