lemmy/ui/src/i18next.ts

52 lines
1.1 KiB
TypeScript
Raw Normal View History

2020-01-06 16:22:51 +00:00
import i18next from 'i18next';
import { getLanguage } from './utils';
import { en } from './translations/en';
2019-08-26 21:42:53 +00:00
import { eo } from './translations/eo';
import { es } from './translations/es';
import { de } from './translations/de';
2019-08-10 18:33:54 +00:00
import { fr } from './translations/fr';
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';
2020-01-26 17:35:47 +00:00
import { fi } from './translations/fi';
2020-01-26 20:20:25 +00:00
import { ca } from './translations/ca';
import { fa } from './translations/fa';
2020-02-05 18:12:13 +00:00
import { pt_BR } from './translations/pt_br';
// https://github.com/nimbusec-oss/inferno-i18next/blob/master/tests/T.test.js#L66
const resources = {
en,
2019-08-26 21:42:53 +00:00
eo,
es,
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,
2020-01-26 17:35:47 +00:00
fi,
2020-01-26 20:20:25 +00:00
ca,
fa,
2020-02-05 18:12:13 +00:00
pt_BR,
};
2020-01-26 20:49:47 +00:00
function format(value: any, format: any, lng: any): any {
return format === 'uppercase' ? value.toUpperCase() : value;
}
2020-01-06 16:22:51 +00:00
i18next.init({
debug: false,
// load: 'languageOnly',
// initImmediate: false,
lng: getLanguage(),
fallbackLng: 'en',
resources,
2020-01-26 18:53:57 +00:00
interpolation: { format },
});
2020-01-06 16:22:51 +00:00
export { i18next as i18n, resources };