fix i18n keys

This commit is contained in:
Josh Hawkins 2025-05-31 06:39:51 -05:00
parent f141b585bc
commit bb32560f62

View File

@ -708,8 +708,8 @@ export default function ZoneEditPane({
{ {
unit: unit:
config?.ui.unit_system == "imperial" config?.ui.unit_system == "imperial"
? t("feet", { ns: "common" }) ? t("unit.length.feet", { ns: "common" })
: t("meters", { ns: "common" }), : t("unit.length.meters", { ns: "common" }),
}, },
)} )}
</FormLabel> </FormLabel>
@ -735,8 +735,8 @@ export default function ZoneEditPane({
{ {
unit: unit:
config?.ui.unit_system == "imperial" config?.ui.unit_system == "imperial"
? t("feet", { ns: "common" }) ? t("unit.length.feet", { ns: "common" })
: t("meters", { ns: "common" }), : t("unit.length.meters", { ns: "common" }),
}, },
)} )}
</FormLabel> </FormLabel>
@ -762,8 +762,8 @@ export default function ZoneEditPane({
{ {
unit: unit:
config?.ui.unit_system == "imperial" config?.ui.unit_system == "imperial"
? t("feet", { ns: "common" }) ? t("unit.length.feet", { ns: "common" })
: t("meters", { ns: "common" }), : t("unit.length.meters", { ns: "common" }),
}, },
)} )}
</FormLabel> </FormLabel>
@ -789,8 +789,8 @@ export default function ZoneEditPane({
{ {
unit: unit:
config?.ui.unit_system == "imperial" config?.ui.unit_system == "imperial"
? t("feet", { ns: "common" }) ? t("unit.length.feet", { ns: "common" })
: t("meters", { ns: "common" }), : t("unit.length.meters", { ns: "common" }),
}, },
)} )}
</FormLabel> </FormLabel>