0e00e77c14
* Still not working * Starting to work on internationalization * Main done. * i18n translations first pass. * Localization testing mostly done. * Second front end pass. * Added a few more translations. * Adding back end translations.
33 lines
686 B
TypeScript
33 lines
686 B
TypeScript
import * as i18n from 'i18next';
|
|
import { getLanguage } from './utils';
|
|
import { en } from './translations/en';
|
|
import { de } from './translations/de';
|
|
|
|
// 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: en,
|
|
de: de,
|
|
}
|
|
|
|
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 };
|