1
0
Fork 0
mirror of https://github.com/LemmyNet/lemmy.git synced 2025-01-24 06:37:57 +00:00
lemmy/ui/src/i18next.ts

52 lines
1.1 KiB
TypeScript
Raw Normal View History

2020-01-06 11:22:51 -05:00
import i18next from 'i18next';
import { getLanguage } from './utils';
import { en } from './translations/en';
2019-08-26 14:42:53 -07:00
import { eo } from './translations/eo';
import { es } from './translations/es';
import { de } from './translations/de';
2019-08-10 11:33:54 -07:00
import { fr } from './translations/fr';
import { sv } from './translations/sv';
2019-08-19 14:29:28 -07:00
import { ru } from './translations/ru';
2019-08-29 11:20:21 -07:00
import { zh } from './translations/zh';
import { nl } from './translations/nl';
2019-10-18 10:10:26 +02:00
import { it } from './translations/it';
2020-01-26 12:35:47 -05:00
import { fi } from './translations/fi';
2020-01-26 21:20:25 +01:00
import { ca } from './translations/ca';
import { fa } from './translations/fa';
2020-02-05 13:12:13 -05: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 14:42:53 -07:00
eo,
es,
de,
zh,
fr,
sv,
2019-08-19 14:29:28 -07:00
ru,
2019-08-29 11:20:21 -07:00
nl,
2019-10-18 10:10:26 +02:00
it,
2020-01-26 12:35:47 -05:00
fi,
2020-01-26 21:20:25 +01:00
ca,
fa,
2020-02-05 13:12:13 -05:00
pt_BR,
};
2020-01-26 21:49:47 +01:00
function format(value: any, format: any, lng: any): any {
return format === 'uppercase' ? value.toUpperCase() : value;
}
2020-01-06 11:22:51 -05:00
i18next.init({
debug: false,
// load: 'languageOnly',
// initImmediate: false,
lng: getLanguage(),
fallbackLng: 'en',
resources,
2020-01-26 19:53:57 +01:00
interpolation: { format },
});
2020-01-06 11:22:51 -05:00
export { i18next as i18n, resources };