011bd6d4ca
交付写作核心(TipTap、自动保存、分卷分章)、Onboarding、7 主题与双语 i18n、快捷键设置;主进程使用 node:sqlite;补全 Vitest 与 Playwright E2E;统一 design/ 目录并移除 desigin 拼写错误路径。 Co-authored-by: Cursor <cursoragent@cursor.com>
17 lines
427 B
TypeScript
17 lines
427 B
TypeScript
import i18n from 'i18next'
|
|
import { initReactI18next } from 'react-i18next'
|
|
import zh from '../../../public/locales/zh-CN/translation.json'
|
|
import en from '../../../public/locales/en/translation.json'
|
|
|
|
void i18n.use(initReactI18next).init({
|
|
resources: {
|
|
'zh-CN': { translation: zh },
|
|
en: { translation: en }
|
|
},
|
|
lng: 'zh-CN',
|
|
fallbackLng: 'zh-CN',
|
|
interpolation: { escapeValue: false }
|
|
})
|
|
|
|
export default i18n
|