lemmy/ui/src/i18next.ts

47 lines
986 B
TypeScript
Raw Normal View History

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