diff --git a/src/locale/index.ts b/src/locale/index.ts index 70453a8..e215299 100644 --- a/src/locale/index.ts +++ b/src/locale/index.ts @@ -1,5 +1,6 @@ import Polyglot from 'node-polyglot'; import en from './en'; +import ru from './ru'; import zhCn from './zh-CN'; import { loadConfig } from '@/store/config'; @@ -7,6 +8,7 @@ import { loadConfig } from '@/store/config'; export const translations = { en: en, 'zh-CN': zhCn, + 'ru': ru, } export type LocaleKey = keyof typeof translations | null;