mirror of
https://github.com/NovaOSS/nova-betterchat.git
synced 2024-11-25 22:43:59 +01:00
3f0ada4a9d
* google drive api * fix: google-api * GoogleCloudStorage * list files api * Google Cloud Storage * move button to side menu * sync status * rename file * show popup for those with cloud sync * update button style * auto close modal after logged in * auto popup every 59min * set as unauthenticated if update fails * i18n * add spin animation * feat: Toast * clear toast * electron: desktop google drive integration This update includes integration with Google Drive for desktop access, but requires a new URL, which may cause existing chat data to be lost. To minimize disruption, users can export their current chat data and import it into the newer version. * update note * error handling * support multiple drive files * feat: delete drive file * i18n * change style
49 lines
837 B
TypeScript
49 lines
837 B
TypeScript
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');
|
|
|
|
i18n
|
|
.use(Backend)
|
|
.use(LanguageDetector)
|
|
.use(initReactI18next)
|
|
.init({
|
|
backend: {
|
|
loadPath: 'locales/{{lng}}/{{ns}}.json',
|
|
},
|
|
fallbackLng: {
|
|
default: ['en'],
|
|
},
|
|
ns: namespace,
|
|
defaultNS: 'main',
|
|
});
|
|
|
|
export default i18n;
|