From 5da89c083255cf589dc6bf9520c83671808d1e62 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Wed, 21 Apr 2021 10:21:38 -0400 Subject: [PATCH] Add Korean language --- src/shared/i18next.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/shared/i18next.ts b/src/shared/i18next.ts index 60edeb4..ebfa7dd 100644 --- a/src/shared/i18next.ts +++ b/src/shared/i18next.ts @@ -33,6 +33,7 @@ import { oc } from "./translations/oc"; import { hr } from "./translations/hr"; import { th } from "./translations/th"; import { bg } from "./translations/bg"; +import { ko } from "./translations/ko"; // https://github.com/nimbusec-oss/inferno-i18next/blob/master/tests/T.test.js#L66 const resources = { @@ -69,6 +70,7 @@ const resources = { hr, th, bg, + ko, }; function format(value: any, format: any): any { -- 2.44.1