mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-08-31 07:27:57 +00:00
proper belarusian locale support (#24112)
This commit is contained in:
parent
4ffe687c44
commit
a745070b76
@ -197,6 +197,7 @@
|
||||
"fa": "فارسی (Persian)",
|
||||
"pl": "Polski (Polish)",
|
||||
"uk": "Українська (Ukrainian)",
|
||||
"be": "Беларуская (Belarusian)",
|
||||
"he": "עברית (Hebrew)",
|
||||
"el": "Ελληνικά (Greek)",
|
||||
"ro": "Română (Romanian)",
|
||||
|
||||
@ -25,6 +25,7 @@ const localeMap: Record<string, () => Promise<Locale>> = {
|
||||
fa: () => import("date-fns/locale/fa-IR").then((module) => module.faIR),
|
||||
pl: () => import("date-fns/locale/pl").then((module) => module.pl),
|
||||
uk: () => import("date-fns/locale/uk").then((module) => module.uk),
|
||||
be: () => import("date-fns/locale/be").then((module) => module.be),
|
||||
he: () => import("date-fns/locale/he").then((module) => module.he),
|
||||
el: () => import("date-fns/locale/el").then((module) => module.el),
|
||||
ro: () => import("date-fns/locale/ro").then((module) => module.ro),
|
||||
|
||||
@ -45,6 +45,7 @@ export const supportedLanguageKeys = [
|
||||
"sl",
|
||||
"lt",
|
||||
"uk",
|
||||
"be",
|
||||
"cs",
|
||||
"hu",
|
||||
];
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user