lemmy/ui/src/i18next.ts

46 lines
1,001 B
TypeScript
Raw Normal View History

import * as i18n 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';
// 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,
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,
};
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 };