gemini / src /i18n.ts
yinming
feat: Antigravity API Proxy for HuggingFace Spaces
bbb1195
import i18n from 'i18next';
import { initReactI18next } from 'react-i18next';
import LanguageDetector from 'i18next-browser-languagedetector';
import en from './locales/en.json';
import zh from './locales/zh.json';
i18n
// detect user language
// learn more: https://github.com/i18next/i18next-browser-languagedetector
.use(LanguageDetector)
// pass the i18n instance to react-i18next.
.use(initReactI18next)
// init i18next
// for all options read: https://www.i18next.com/overview/configuration-options
.init({
resources: {
en: {
translation: en
},
zh: {
translation: zh
},
// Handling 'zh-CN' as 'zh'
'zh-CN': {
translation: zh
}
},
fallbackLng: 'en',
debug: false, // Set to true for development
interpolation: {
escapeValue: false, // not needed for react as it escapes by default
}
});
export default i18n;