Minor fix

This commit is contained in:
CzBiX
2020-10-21 15:48:01 +08:00
parent d42b519d7a
commit 1ca614271d

View File

@@ -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;