summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--locales/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/locales/index.js b/locales/index.js
index f8b836759c..96a1af38b1 100644
--- a/locales/index.js
+++ b/locales/index.js
@@ -5,7 +5,7 @@
const fs = require('fs');
const yaml = require('js-yaml');
-const langs = ['de-DE', 'en-US', 'fr-FR', 'ja-JP', 'ja-KS', 'pl-PL', 'es-ES', 'nl-NL', 'zh-CN'];
+const langs = ['de-DE', 'en-US', 'fr-FR', 'ja-JP', 'ja-KS', 'pl-PL', 'es-ES', 'nl-NL', 'zh-CN', 'ko-KR'];
const loadLocale = lang => yaml.safeLoad(fs.readFileSync(`${__dirname}/${lang}.yml`, 'utf-8'));
const locales = langs.map(lang => ({ [lang]: loadLocale(lang) }));