mirror of
https://github.com/NovaOSS/nova-betterchat.git
synced 2024-11-25 21:23:58 +01:00
23 lines
482 B
TypeScript
23 lines
482 B
TypeScript
import i18n from 'i18next';
|
|
import { initReactI18next } from 'react-i18next';
|
|
|
|
import Backend from 'i18next-http-backend';
|
|
import LanguageDetector from 'i18next-browser-languagedetector';
|
|
|
|
i18n
|
|
.use(Backend)
|
|
.use(LanguageDetector)
|
|
.use(initReactI18next)
|
|
.init({
|
|
backend: {
|
|
loadPath: 'locales/{{lng}}/{{ns}}.json',
|
|
},
|
|
fallbackLng: {
|
|
default: ['en'],
|
|
},
|
|
ns: ['main', 'api', 'about', 'model'],
|
|
defaultNS: 'main',
|
|
});
|
|
|
|
export default i18n;
|