]> Untitled Git - lemmy-ui.git/commitdiff
Adding bulgarian language.
authorDessalines <tyhou13@gmx.com>
Fri, 2 Apr 2021 14:14:33 +0000 (10:14 -0400)
committerDessalines <tyhou13@gmx.com>
Fri, 2 Apr 2021 14:14:33 +0000 (10:14 -0400)
src/shared/i18next.ts
src/shared/utils.ts

index 99dbc70b6c72e4ea6d17fe6b036bef91a500cfe1..60edeb4c74b787e802d3bf22ffdf35c2402aeb47 100644 (file)
@@ -32,6 +32,7 @@ import { da } from "./translations/da";
 import { oc } from "./translations/oc";
 import { hr } from "./translations/hr";
 import { th } from "./translations/th";
+import { bg } from "./translations/bg";
 
 // https://github.com/nimbusec-oss/inferno-i18next/blob/master/tests/T.test.js#L66
 const resources = {
@@ -67,6 +68,7 @@ const resources = {
   oc,
   hr,
   th,
+  bg,
 };
 
 function format(value: any, format: any): any {
index 3049a0302d185ddc18c7435294fa8cb6e26be09f..919ade539cd64965d05c3a4145d42c7e85368e30 100644 (file)
@@ -28,6 +28,7 @@ import "moment/locale/sr";
 import "moment/locale/ko";
 import "moment/locale/da";
 import "moment/locale/hr";
+import "moment/locale/bg";
 
 import {
   UserOperation,
@@ -124,6 +125,7 @@ export const languages = [
   { code: "ru" },
   { code: "nl" },
   { code: "it" },
+  { code: "bg" },
 ];
 
 export const themes = [
@@ -451,6 +453,8 @@ export function getMomentLanguage(): string {
     lang = "hr";
   } else if (lang.startsWith("th")) {
     lang = "th";
+  } else if (lang.startsWith("bg")) {
+    lang = "bg";
   } else {
     lang = "en";
   }