proper belarusian locale support (#24112)

This commit is contained in:
Uladzislau 2026-08-28 14:08:54 +02:00 committed by GitHub
parent 4ffe687c44
commit a745070b76
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 0 deletions

View File

@ -197,6 +197,7 @@
"fa": "فارسی (Persian)",
"pl": "Polski (Polish)",
"uk": "Українська (Ukrainian)",
"be": "Беларуская (Belarusian)",
"he": "עברית (Hebrew)",
"el": "Ελληνικά (Greek)",
"ro": "Română (Romanian)",

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),

View File

@ -45,6 +45,7 @@ export const supportedLanguageKeys = [
"sl",
"lt",
"uk",
"be",
"cs",
"hu",
];