From 1ca614271d052a8a2f3cb9bed425ff959570ef16 Mon Sep 17 00:00:00 2001 From: CzBiX Date: Wed, 21 Oct 2020 15:48:01 +0800 Subject: [PATCH] Minor fix --- src/locale/index.ts | 2 ++ 1 file changed, 2 insertions(+) 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;