From 55d77993af422b98345094d6f7cd8be75b84ef0b Mon Sep 17 00:00:00 2001 From: Peer Richelsen Date: Thu, 14 Oct 2021 15:10:53 +0100 Subject: [PATCH] added korean to i18n config (#953) --- lib/core/i18n/i18n.utils.ts | 1 + next-i18next.config.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/core/i18n/i18n.utils.ts b/lib/core/i18n/i18n.utils.ts index 821ba3038b..61b00a5725 100644 --- a/lib/core/i18n/i18n.utils.ts +++ b/lib/core/i18n/i18n.utils.ts @@ -60,6 +60,7 @@ export const localeLabels: localeType = { nl: "Dutch", "pt-BR": "Portuguese (Brazilian)", "es-419": "Spanish, Latin America", + ko: "Korean", }; export type OptionType = { diff --git a/next-i18next.config.js b/next-i18next.config.js index f42b23ebde..723a6744c3 100644 --- a/next-i18next.config.js +++ b/next-i18next.config.js @@ -4,7 +4,7 @@ const path = require("path"); module.exports = { i18n: { defaultLocale: "en", - locales: ["en", "fr", "it", "ru", "es", "de", "pt", "ro", "nl", "pt-BR", "es-419"], + locales: ["en", "fr", "it", "ru", "es", "de", "pt", "ro", "nl", "pt-BR", "es-419", "ko"], }, localePath: path.resolve("./public/static/locales"), };