Added support for Bangla language

This commit is contained in:
ki-ask
2023-07-05 23:31:45 +06:00
parent 94a50f92e1
commit e5ab918ef9
2 changed files with 287 additions and 0 deletions

View File

@@ -13,6 +13,7 @@ import no from "./no";
import cs from "./cs";
import ko from "./ko";
import ar from "./ar";
import bn from "./bn";
import { merge } from "../utils/merge";
import type { LocaleType } from "./cn";
@@ -34,6 +35,7 @@ const ALL_LANGS = {
cs,
no,
ar,
bn,
};
export type Lang = keyof typeof ALL_LANGS;
@@ -56,6 +58,7 @@ export const ALL_LANG_OPTIONS: Record<Lang, string> = {
cs: "Čeština",
no: "Nynorsk",
ar: "العربية",
bn: "বাংলা",
};
const LANG_KEY = "lang";