I18N Miscellaneous Fixes (#21573)

* fix: fix classification none tag i18n wrong

* fix: fix set password dialog jwt time i18n wrong

* fix: fix wizard other camera i18n

* fix: fix explore tracking detail audio i18n

* feat: add system processes info i18n

* fix: fix live page label i18n
This commit is contained in:
GuoQing Liu
2026-01-09 05:28:18 +08:00
committed by GitHub
parent 74d14cb8ca
commit f3543cfee2
10 changed files with 49 additions and 26 deletions

View File

@@ -417,7 +417,9 @@ export default function Step1NameCamera({
<SelectContent>
{CAMERA_BRANDS.map((brand) => (
<SelectItem key={brand.value} value={brand.value}>
{brand.label}
{brand.label.toLowerCase() === "other"
? t("label.other", { ns: "common" })
: brand.label}
</SelectItem>
))}
</SelectContent>