lemmy/ui/src/i18next.ts

54 lines
1.2 KiB
TypeScript
Raw Normal View History

2020-01-06 09:22:51 -07:00
import i18next from 'i18next';
import { getLanguage } from './utils';
2020-02-28 14:18:47 -07:00
import { en } from './translations/en';
import { eo } from './translations/eo';
import { es } from './translations/es';
import { de } from './translations/de';
import { fr } from './translations/fr';
import { sv } from './translations/sv';
import { ru } from './translations/ru';
import { zh } from './translations/zh';
import { nl } from './translations/nl';
import { it } from './translations/it';
import { fi } from './translations/fi';
import { ca } from './translations/ca';
import { fa } from './translations/fa';
import { pt_BR } from './translations/pt_BR';
import { ja } from './translations/ja';
2020-02-28 14:18:47 -07:00
// https://github.com/nimbusec-oss/inferno-i18next/blob/master/tests/T.test.js#L66
const resources = {
en,
eo,
es,
de,
zh,
fr,
sv,
ru,
nl,
it,
fi,
ca,
fa,
pt_BR,
ja,
2020-02-28 14:18:47 -07:00
};
2020-01-26 13:49:47 -07:00
function format(value: any, format: any, lng: any): any {
return format === 'uppercase' ? value.toUpperCase() : value;
}
2020-02-28 14:18:47 -07:00
i18next.init({
debug: false,
// load: 'languageOnly',
2020-02-28 14:18:47 -07:00
// initImmediate: false,
lng: getLanguage(),
fallbackLng: 'en',
resources,
interpolation: { format },
});
2020-01-06 09:22:51 -07:00
export { i18next as i18n, resources };