added korean to i18n config (#953)

pull/949/head^2
Peer Richelsen 2021-10-14 15:10:53 +01:00 committed by GitHub
parent f1eae5fe77
commit 55d77993af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -60,6 +60,7 @@ export const localeLabels: localeType = {
nl: "Dutch",
"pt-BR": "Portuguese (Brazilian)",
"es-419": "Spanish, Latin America",
ko: "Korean",
};
export type OptionType = {

View File

@ -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"),
};