[web] Enable Czech

This commit is contained in:
Manav Rathi
2025-08-25 10:28:23 +05:30
parent 214b120472
commit 839c62ea72
2 changed files with 5 additions and 0 deletions

View File

@@ -976,6 +976,8 @@ const localeName = (locale: SupportedLocale) => {
return "اَلْعَرَبِيَّةُ";
case "tr-TR":
return "Türkçe";
case "cs-CZ":
return "čeština";
}
};

View File

@@ -36,6 +36,7 @@ export const supportedLocales = [
"ja-JP" /* Japanese */,
"ar-SA" /* Arabic */,
"tr-TR" /* Turkish */,
"cs-CZ" /* Czech */,
] as const;
/** The type of {@link supportedLocales}. */
@@ -201,6 +202,8 @@ const closestSupportedLocale = (
return "ar-SA";
} else if (ls.startsWith("tr")) {
return "tr-TR";
} else if (ls.startsWith("cs")) {
return "cs-CZ";
}
}