nova-betterchat/src/i18n.ts

28 lines
633 B
TypeScript
Raw Normal View History

import i18n from 'i18next';
import { initReactI18next } from 'react-i18next';
import Backend from 'i18next-http-backend';
import LanguageDetector from 'i18next-browser-languagedetector';
const googleClientId = import.meta.env.VITE_GOOGLE_CLIENT_ID || undefined;
const namespace = ['main', 'api', 'about', 'model'];
if (googleClientId) namespace.push('drive');
2023-03-12 12:05:26 +01:00
i18n
.use(Backend)
.use(LanguageDetector)
.use(initReactI18next)
.init({
2023-03-24 01:53:16 +01:00
backend: {
loadPath: 'locales/{{lng}}/{{ns}}.json',
},
2023-03-22 07:45:11 +01:00
fallbackLng: {
default: ['en'],
},
ns: namespace,
2023-03-12 12:05:26 +01:00
defaultNS: 'main',
});
export default i18n;