Fix i18n keys (#21814)
Some checks are pending
CI / AMD64 Build (push) Waiting to run
CI / ARM Build (push) Waiting to run
CI / Jetson Jetpack 6 (push) Waiting to run
CI / AMD64 Extra Build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
CI / Assemble and push default build (push) Blocked by required conditions
CI / ARM Extra Build (push) Blocked by required conditions

This commit is contained in:
Marijn0 2026-01-28 21:55:38 +01:00 committed by GitHub
parent 50ac5a1483
commit 338d85a9a2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 5 additions and 5 deletions

View File

@ -168,8 +168,8 @@ export default function OnvifProbeResults({
</span>{" "} </span>{" "}
<span className="text-primary-variant"> <span className="text-primary-variant">
{probeResult.ptz_supported {probeResult.ptz_supported
? t("yes", { ns: "common" }) ? t("button.yes", { ns: "common" })
: t("no", { ns: "common" })} : t("button.no", { ns: "common" })}
</span> </span>
</div> </div>
)} )}
@ -179,7 +179,7 @@ export default function OnvifProbeResults({
{t("cameraWizard.step2.autotrackingSupport")}: {t("cameraWizard.step2.autotrackingSupport")}:
</span>{" "} </span>{" "}
<span className="text-primary-variant"> <span className="text-primary-variant">
{t("yes", { ns: "common" })} {t("button.yes", { ns: "common" })}
</span> </span>
</div> </div>
)} )}

View File

@ -621,7 +621,7 @@ function LibrarySelector({
<div className="flex justify-end gap-2"> <div className="flex justify-end gap-2">
{Object.keys(dataset).length <= 2 ? ( {Object.keys(dataset).length <= 2 ? (
<Button variant="outline" onClick={() => setConfirmDelete(null)}> <Button variant="outline" onClick={() => setConfirmDelete(null)}>
{t("button.ok", { ns: "common" })} {t("button.close", { ns: "common" })}
</Button> </Button>
) : ( ) : (
<> <>

View File

@ -599,7 +599,7 @@ export default function TriggerView({
date_style: "medium", date_style: "medium",
}, },
) )
: t("never", { ns: "common" })} : t("time.never", { ns: "common" })}
</span> </span>
{trigger_status?.triggers[trigger.name] {trigger_status?.triggers[trigger.name]
?.triggering_event_id && ( ?.triggering_event_id && (