Add Italian, Cantonese, and German to languages menu (#17942)

This commit is contained in:
Josh Hawkins
2025-04-28 17:54:31 -06:00
committed by GitHub
parent 4b4053d174
commit d6afd5c198
3 changed files with 8 additions and 2 deletions
+2
View File
@@ -31,6 +31,8 @@ const localeMap: Record<string, () => Promise<Locale>> = {
fi: () => import("date-fns/locale/fi").then((module) => module.fi),
da: () => import("date-fns/locale/da").then((module) => module.da),
sk: () => import("date-fns/locale/sk").then((module) => module.sk),
"yue-Hant": () =>
import("date-fns/locale/zh-HK").then((module) => module.zhHK),
};
export function useDateLocale(): Locale {