2019-08-09 20:14:43 -04:00
|
|
|
import * as i18n from 'i18next';
|
|
|
|
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-08-09 20:14:43 -04:00
|
|
|
|
|
|
|
// 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 = {
|
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 20:20:27 -04:00
|
|
|
};
|
2019-08-09 20:14:43 -04:00
|
|
|
|
|
|
|
function format(value: any, format: any, lng: any) {
|
2019-10-18 20:20:27 -04:00
|
|
|
if (format === 'uppercase') return value.toUpperCase();
|
|
|
|
return value;
|
2019-08-09 20:14:43 -04:00
|
|
|
}
|
|
|
|
|
2019-10-18 20:20:27 -04:00
|
|
|
i18n.init({
|
2019-08-09 20:14:43 -04:00
|
|
|
debug: true,
|
|
|
|
// load: 'languageOnly',
|
|
|
|
|
|
|
|
// initImmediate: false,
|
|
|
|
lng: getLanguage(),
|
|
|
|
fallbackLng: 'en',
|
2019-10-18 20:20:27 -04:00
|
|
|
resources,
|
|
|
|
interpolation: {
|
|
|
|
format: format,
|
|
|
|
},
|
2019-08-09 20:14:43 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
export { i18n, resources };
|