2023-03-11 18:40:26 +01:00
|
|
|
import i18n from 'i18next';
|
|
|
|
import { initReactI18next } from 'react-i18next';
|
|
|
|
|
|
|
|
import Backend from 'i18next-http-backend';
|
|
|
|
import LanguageDetector from 'i18next-browser-languagedetector';
|
|
|
|
|
2023-04-14 09:29:13 +02:00
|
|
|
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'],
|
|
|
|
},
|
2023-04-14 09:29:13 +02:00
|
|
|
ns: namespace,
|
2023-03-12 12:05:26 +01:00
|
|
|
defaultNS: 'main',
|
|
|
|
});
|
2023-03-11 18:40:26 +01:00
|
|
|
|
|
|
|
export default i18n;
|