]> Untitled Git - lemmy-ui.git/commitdiff
Adding thai language.
authorDessalines <tyhou13@gmx.com>
Mon, 1 Mar 2021 21:20:08 +0000 (16:20 -0500)
committerDessalines <tyhou13@gmx.com>
Mon, 1 Mar 2021 21:20:08 +0000 (16:20 -0500)
src/shared/i18next.ts
src/shared/utils.ts

index 99289032e6a47dcb690052cf9d8c68e47862c486..8f3000557d578543850bb866f23800454722968b 100644 (file)
@@ -31,6 +31,7 @@ import { sr_Latn } from "./translations/sr_Latn";
 import { da } from "./translations/da";
 import { oc } from "./translations/oc";
 import { hr } from "./translations/hr";
+import { th } from "./translations/th";
 
 // https://github.com/nimbusec-oss/inferno-i18next/blob/master/tests/T.test.js#L66
 const resources = {
@@ -65,6 +66,7 @@ const resources = {
   da,
   oc,
   hr,
+  th,
 };
 
 function format(value: any, format: any): any {
index cb7569df2c220b6ee1a1a4e3104f5891cb88f05d..887030fbc0ed19a04d7857d1471aa87fa158540e 100644 (file)
@@ -118,6 +118,7 @@ export const languages = [
   { code: "sv", name: "Svenska" },
   { code: "sq", name: "Shqip" },
   { code: "sr_Latn", name: "srpski" },
+  { code: "th", name: "ภาษาไทย" },
   { code: "tr", name: "Türkçe" },
   { code: "uk", name: "Українська Mова" },
   { code: "ru", name: "Русский" },
@@ -445,6 +446,8 @@ export function getMomentLanguage(): string {
     lang = "oc";
   } else if (lang.startsWith("hr")) {
     lang = "hr";
+  } else if (lang.startsWith("th")) {
+    lang = "th";
   } else {
     lang = "en";
   }