]> Untitled Git - lemmy.git/commitdiff
Adding korean language template.
authorDessalines <tyhou13@gmx.com>
Thu, 27 Aug 2020 14:34:53 +0000 (10:34 -0400)
committerDessalines <tyhou13@gmx.com>
Thu, 27 Aug 2020 14:34:53 +0000 (10:34 -0400)
ui/src/i18next.ts
ui/src/utils.ts
ui/translations/ko.json [new file with mode: 0644]

index 3657da33b10c044ed9d749bad335022ec3c6d04b..39f7d65ccc08ef481847287aae7a522bb910651e 100644 (file)
@@ -28,6 +28,7 @@ import { sq } from './translations/sq';
 import { km } from './translations/km';
 import { ga } from './translations/ga';
 import { sr_Latn } from './translations/sr_Latn';
+import { ko } from './translations/ko';
 
 // https://github.com/nimbusec-oss/inferno-i18next/blob/master/tests/T.test.js#L66
 const resources = {
@@ -59,6 +60,7 @@ const resources = {
   km,
   ga,
   sr_Latn,
+  ko,
 };
 
 function format(value: any, format: any, lng: any): any {
index f00a095ac23d66630a105b20ca2026e38e81369b..4245cf70381053848fcc8ac07fc7861cd8d6f74b 100644 (file)
@@ -25,6 +25,7 @@ import 'moment/locale/sq';
 import 'moment/locale/km';
 import 'moment/locale/ga';
 import 'moment/locale/sr';
+import 'moment/locale/ko';
 
 import {
   UserOperation,
@@ -84,6 +85,7 @@ export const languages = [
   { code: 'gl', name: 'Galego' },
   { code: 'hu', name: 'Magyar Nyelv' },
   { code: 'ka', name: 'ქართული ენა' },
+  { code: 'ko', name: '한국어/韓國語' },
   { code: 'km', name: 'ភាសាខ្មែរ' },
   { code: 'hi', name: 'मानक हिन्दी' },
   { code: 'fa', name: 'فارسی' },
@@ -411,6 +413,8 @@ export function getMomentLanguage(): string {
     lang = 'ga';
   } else if (lang.startsWith('sr')) {
     lang = 'sr';
+  } else if (lang.startsWith('ko')) {
+    lang = 'ko';
   } else {
     lang = 'en';
   }
diff --git a/ui/translations/ko.json b/ui/translations/ko.json
new file mode 100644 (file)
index 0000000..0967ef4
--- /dev/null
@@ -0,0 +1 @@
+{}