]> Untitled Git - lemmy-ui.git/commitdiff
Adding as and lt languages.
authorDessalines <tyhou13@gmx.com>
Sun, 9 Jan 2022 17:57:39 +0000 (12:57 -0500)
committerDessalines <tyhou13@gmx.com>
Sun, 9 Jan 2022 17:57:39 +0000 (12:57 -0500)
src/shared/i18next.ts
src/shared/utils.ts

index 64934ea1a6deebdf5ce024de8f3b2cb8582824f3..cc7e441ae63bfb8a00973e1e06bd9fa55e1b2a20 100644 (file)
@@ -1,5 +1,6 @@
 import i18next, { i18nTyped } from "i18next";
 import { ar } from "./translations/ar";
+import { as } from "./translations/as";
 import { bg } from "./translations/bg";
 import { bn } from "./translations/bn";
 import { ca } from "./translations/ca";
@@ -26,6 +27,7 @@ import { ja } from "./translations/ja";
 import { ka } from "./translations/ka";
 import { km } from "./translations/km";
 import { ko } from "./translations/ko";
+import { lt } from "./translations/lt";
 import { ml } from "./translations/ml";
 import { mnc } from "./translations/mnc";
 import { nb_NO } from "./translations/nb_NO";
@@ -95,6 +97,8 @@ const resources = {
   bn,
   ml,
   cs,
+  as,
+  lt,
 };
 
 function format(value: any, format: any): any {
index cdbc7cdf8bee735bd63f799ff712ae0dba15fb95..422beac39fb5e1c1b8a6dfb506108610088ceb61 100644 (file)
@@ -161,6 +161,8 @@ export const languages = [
   { code: "bn" },
   { code: "ml" },
   { code: "cs" },
+  { code: "as" },
+  { code: "lt" },
 ];
 
 export const themes = [
@@ -553,6 +555,10 @@ export function getMomentLanguage(): string {
     lang = "ml";
   } else if (lang.startsWith("cs")) {
     lang = "cs";
+  } else if (lang.startsWith("as")) {
+    lang = "as";
+  } else if (lang.startsWith("lt")) {
+    lang = "lt";
   } else {
     lang = "en";
   }