Fix i18n keys (#21814)

This commit is contained in:
Marijn0
2026-01-28 21:55:38 +01:00
committed by GitHub
parent 50ac5a1483
commit 338d85a9a2
3 changed files with 5 additions and 5 deletions

View File

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