From 1671437fb3d5cf76a339286d22e291773f29c46c Mon Sep 17 00:00:00 2001 From: Chenlei Hu Date: Sun, 8 Dec 2024 08:48:05 -0800 Subject: [PATCH] Fix korea translation activation (#1845) * Fix korea translation activation * nit --- README.md | 1 + src/i18n.ts | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ec8c87790..8a09b7aec 100644 --- a/README.md +++ b/README.md @@ -491,6 +491,7 @@ Our project supports multiple languages using `vue-i18n`. This allows users arou - zh (中文) - ru (Русский) - ja (日本語) + - ko (한국어) ### How to Add a New Language diff --git a/src/i18n.ts b/src/i18n.ts index 36e9f4c04..8aeac4aab 100644 --- a/src/i18n.ts +++ b/src/i18n.ts @@ -3,6 +3,7 @@ import en from './locales/en.json' import zh from './locales/zh.json' import ru from './locales/ru.json' import ja from './locales/ja.json' +import ko from './locales/ko.json' export const i18n = createI18n({ // Must set `false`, as Vue I18n Legacy API is for Vue 2 @@ -13,7 +14,8 @@ export const i18n = createI18n({ en, zh, ru, - ja + ja, + ko } })