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 = {
oc,
hr,
th,
+ bg,
};
function format(value: any, format: any): any {
import "moment/locale/ko";
import "moment/locale/da";
import "moment/locale/hr";
+import "moment/locale/bg";
import {
UserOperation,
{ code: "ru" },
{ code: "nl" },
{ code: "it" },
+ { code: "bg" },
];
export const themes = [
lang = "hr";
} else if (lang.startsWith("th")) {
lang = "th";
+ } else if (lang.startsWith("bg")) {
+ lang = "bg";
} else {
lang = "en";
}