From 29b9fec3b9838de309c4b46e56677417a73ba4e4 Mon Sep 17 00:00:00 2001 From: wiz Date: Tue, 8 Dec 2020 15:57:46 +0900 Subject: [PATCH 1/2] Enable 'ko' locale for Korean in angular.json --- frontend/angular.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/angular.json b/frontend/angular.json index 0bf03662c..d862abcb7 100644 --- a/frontend/angular.json +++ b/frontend/angular.json @@ -51,6 +51,10 @@ "translation": "src/locale/messages.ka.xlf", "baseHref": "/ka/" }, + "ko": { + "translation": "src/locale/messages.ko.xlf", + "baseHref": "/ko/" + }, "nl": { "translation": "src/locale/messages.nl.xlf", "baseHref": "/nl/" From 06a0abdb791473b86517b178828ac9633813ee23 Mon Sep 17 00:00:00 2001 From: wiz Date: Tue, 8 Dec 2020 15:59:00 +0900 Subject: [PATCH 2/2] Enable 'ko' locale for Korean in app.constants.ts --- frontend/src/app/app.constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/app.constants.ts b/frontend/src/app/app.constants.ts index 8c1b46da8..3470c1d9e 100644 --- a/frontend/src/app/app.constants.ts +++ b/frontend/src/app/app.constants.ts @@ -82,7 +82,7 @@ export const languages: Language[] = [ { code: 'fr', name: 'Français' }, // French // { code: 'gl', name: 'Galego' }, // Galician { code: 'ka', name: 'ქართული' }, // Georgian -// { code: 'ko', name: '한국어' }, // Korean + { code: 'ko', name: '한국어' }, // Korean // { code: 'hr', name: 'Hrvatski' }, // Croatian // { code: 'id', name: 'Bahasa Indonesia' },// Indonesian // { code: 'it', name: 'Italiano' }, // Italian