nova-betterchat/src/i18n.ts

49 lines
837 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;
export const i18nLanguages = [
// 'ar',
'da',
'en',
'en-GB',
'en-US',
'es',
'fr',
'fr-FR',
'it',
'ja',
'ms',
'nb',
'sv',
// 'ug',
'yue',
'zh-CN',
'zh-HK',
'zh-TW',
];
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;