diff --git a/src/components/ha-network.ts b/src/components/ha-network.ts
index 0841010272..f46bf00ced 100644
--- a/src/components/ha-network.ts
+++ b/src/components/ha-network.ts
@@ -64,9 +64,13 @@ export class HaNetwork extends LitElement {
>
- Auto Configure
+
+ ${this.hass.localize(
+ "ui.panel.config.network.adapter.auto_configure"
+ )}
+
- Detected:
+ ${this.hass.localize("ui.panel.config.network.adapter.detected")}:
${format_auto_detected_interfaces(this.networkConfig.adapters)}
@@ -85,18 +89,21 @@ export class HaNetwork extends LitElement {
- Adapter: ${adapter.name}
+ ${this.hass.localize(
+ "ui.panel.config.network.adapter.adapter"
+ )}:
+ ${adapter.name}
${adapter.default
? html`
- (Default)`
- : ""}
+ (${this.hass.localize("ui.common.default")})`
+ : nothing}
${format_addresses([...adapter.ipv4, ...adapter.ipv6])}
`
)
- : ""}
+ : nothing}
`;
}
diff --git a/src/translations/en.json b/src/translations/en.json
index 8271cb33d7..80d7b4f6de 100644
--- a/src/translations/en.json
+++ b/src/translations/en.json
@@ -6122,7 +6122,12 @@
},
"network_adapter": "Network adapter",
"network_adapter_info": "Configure which network adapters integrations will use. Currently this setting only affects multicast traffic. A restart is required for these settings to apply.",
- "ip_information": "IP Information"
+ "ip_information": "IP Information",
+ "adapter": {
+ "auto_configure": "Auto configure",
+ "detected": "Detected",
+ "adapter": "Adapter"
+ }
},
"storage": {
"caption": "Storage",