proper belarusian locale support (#24112)
CI / AMD64 Build (push) Canceled after 0s
CI / ARM Build (push) Canceled after 0s
CI / Jetson Jetpack 6 (push) Canceled after 0s
CI / AMD64 Extra Build (push) Canceled after 0s
CI / ARM Extra Build (push) Canceled after 0s
CI / Synaptics Build (push) Canceled after 0s
CI / Assemble and push default build (push) Canceled after 0s

This commit is contained in:
Uladzislau
2026-08-28 07:08:54 -05:00
committed by GitHub
parent 4ffe687c44
commit a745070b76
3 changed files with 3 additions and 0 deletions
+1
View File
@@ -197,6 +197,7 @@
"fa": "فارسی (Persian)",
"pl": "Polski (Polish)",
"uk": "Українська (Ukrainian)",
"be": "Беларуская (Belarusian)",
"he": "עברית (Hebrew)",
"el": "Ελληνικά (Greek)",
"ro": "Română (Romanian)",
+1
View File
@@ -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),
+1
View File
@@ -45,6 +45,7 @@ export const supportedLanguageKeys = [
"sl",
"lt",
"uk",
"be",
"cs",
"hu",
];