Compare commits

...
Author SHA1 Message Date
dependabot[bot]andGitHub f3b7c642e8 Update cuda-python requirement in /docker/tensorrt
Updates the requirements on [cuda-python](https://github.com/NVIDIA/cuda-python) to permit the latest version.
- [Release notes](https://github.com/NVIDIA/cuda-python/releases)
- [Commits](https://github.com/NVIDIA/cuda-python/compare/v12.6.0...v13.3.0)

---
updated-dependencies:
- dependency-name: cuda-python
  dependency-version: 13.3.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-05-27 13:36:16 +00:00
BanandGitHub 88f944fe81 feat: add Traditional Chinese (zh-Hant) language option (#23322)
The zh-Hant translations are synced from Weblate (98% complete) but the
locale was never registered in the language selector, so users could not
select it. Register zh-Hant in supportedLanguageKeys, add its display
label, and map it to the zh-TW date-fns locale.
2026-05-27 08:04:41 -05:00
5 changed files with 6 additions and 1 deletions
+1 -1
View File
@@ -1,2 +1,2 @@
cuda-python == 12.6.*; platform_machine == 'aarch64'
cuda-python == 13.3.*; platform_machine == 'aarch64'
numpy == 1.26.*; platform_machine == 'aarch64'
+1
View File
@@ -177,6 +177,7 @@
"en": "English (English)",
"es": "Español (Spanish)",
"zhCN": "简体中文 (Simplified Chinese)",
"zhHant": "繁體中文 (Traditional Chinese)",
"hi": "हिन्दी (Hindi)",
"fr": "Français (French)",
"ar": "العربية (Arabic)",
@@ -109,6 +109,7 @@ export default function GeneralSettings({ className }: GeneralSettingsProps) {
"nb-NO": "nb",
"yue-Hant": "yue",
"zh-CN": "zhCN",
"zh-Hant": "zhHant",
"pt-BR": "ptBR",
};
+2
View File
@@ -34,6 +34,8 @@ const localeMap: Record<string, () => Promise<Locale>> = {
sk: () => import("date-fns/locale/sk").then((module) => module.sk),
"yue-Hant": () =>
import("date-fns/locale/zh-HK").then((module) => module.zhHK),
"zh-Hant": () =>
import("date-fns/locale/zh-TW").then((module) => module.zhTW),
lt: () => import("date-fns/locale/lt").then((module) => module.lt),
th: () => import("date-fns/locale/th").then((module) => module.th),
ca: () => import("date-fns/locale/ca").then((module) => module.ca),
+1
View File
@@ -29,6 +29,7 @@ export const supportedLanguageKeys = [
"nb-NO",
"sv",
"zh-CN",
"zh-Hant",
"yue-Hant",
"ja",
"vi",