mirror of https://github.com/portainer/portainer
22 lines
456 B
TypeScript
22 lines
456 B
TypeScript
import i18n from 'i18next';
|
|
import { initReactI18next } from 'react-i18next';
|
|
|
|
import translation from '../../translations/en/translation.json';
|
|
|
|
i18n.use(initReactI18next).init({
|
|
lng: 'en',
|
|
fallbackLng: 'en',
|
|
|
|
// have a common namespace used around the full app
|
|
ns: ['translationsNS'],
|
|
defaultNS: 'translationsNS',
|
|
|
|
interpolation: {
|
|
escapeValue: false,
|
|
},
|
|
|
|
resources: { en: { translationsNS: translation } },
|
|
});
|
|
|
|
export default i18n;
|