From 0af4fc83758377c998ea3048cdc0b01cfafefd1f Mon Sep 17 00:00:00 2001 From: bahmcloud Date: Fri, 13 Feb 2026 21:13:54 +0100 Subject: [PATCH] Add port devices and enable toggles --- CHANGELOG.md | 1 + README.md | 1 + custom_components/ha_knx_bridge/__init__.py | 2 + custom_components/ha_knx_bridge/bridge.py | 53 ++++++++++-- .../ha_knx_bridge/config_flow.py | 36 +++++++- custom_components/ha_knx_bridge/const.py | 2 + custom_components/ha_knx_bridge/strings.json | 9 +- custom_components/ha_knx_bridge/switch.py | 85 +++++++++++++++++++ .../ha_knx_bridge/translations/ar.json | 18 ++-- .../ha_knx_bridge/translations/bg.json | 18 ++-- .../ha_knx_bridge/translations/ca.json | 18 ++-- .../ha_knx_bridge/translations/cs.json | 18 ++-- .../ha_knx_bridge/translations/da.json | 18 ++-- .../ha_knx_bridge/translations/de.json | 18 ++-- .../ha_knx_bridge/translations/el.json | 18 ++-- .../ha_knx_bridge/translations/en.json | 18 ++-- .../ha_knx_bridge/translations/es.json | 18 ++-- .../ha_knx_bridge/translations/et.json | 18 ++-- .../ha_knx_bridge/translations/fi.json | 18 ++-- .../ha_knx_bridge/translations/fr.json | 18 ++-- .../ha_knx_bridge/translations/he.json | 18 ++-- .../ha_knx_bridge/translations/hi.json | 18 ++-- .../ha_knx_bridge/translations/hr.json | 18 ++-- .../ha_knx_bridge/translations/hu.json | 18 ++-- .../ha_knx_bridge/translations/id.json | 18 ++-- .../ha_knx_bridge/translations/is.json | 18 ++-- .../ha_knx_bridge/translations/it.json | 18 ++-- .../ha_knx_bridge/translations/ja.json | 18 ++-- .../ha_knx_bridge/translations/ko.json | 18 ++-- .../ha_knx_bridge/translations/lt.json | 18 ++-- .../ha_knx_bridge/translations/lv.json | 18 ++-- .../ha_knx_bridge/translations/nb.json | 18 ++-- .../ha_knx_bridge/translations/nl.json | 18 ++-- .../ha_knx_bridge/translations/pl.json | 18 ++-- .../ha_knx_bridge/translations/pt-BR.json | 18 ++-- .../ha_knx_bridge/translations/pt.json | 18 ++-- .../ha_knx_bridge/translations/ro.json | 18 ++-- .../ha_knx_bridge/translations/ru.json | 18 ++-- .../ha_knx_bridge/translations/sk.json | 18 ++-- .../ha_knx_bridge/translations/sl.json | 18 ++-- .../ha_knx_bridge/translations/sv.json | 18 ++-- .../ha_knx_bridge/translations/th.json | 18 ++-- .../ha_knx_bridge/translations/tr.json | 18 ++-- .../ha_knx_bridge/translations/uk.json | 18 ++-- .../ha_knx_bridge/translations/vi.json | 18 ++-- .../ha_knx_bridge/translations/zh-Hans.json | 18 ++-- .../ha_knx_bridge/translations/zh-Hant.json | 18 ++-- 47 files changed, 646 insertions(+), 245 deletions(-) create mode 100644 custom_components/ha_knx_bridge/switch.py diff --git a/CHANGELOG.md b/CHANGELOG.md index 49c3878..af84350 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ## 0.0.17 - 2026-02-13 - Add edit port flow to update existing option-based ports. - Add fallback translations for all supported Home Assistant locales. +- Add per-port enable switches and device entries for quick overview. ## 0.0.16 - 2026-02-13 - Normalize incoming event destinations and clamp percent payloads even without inversion. diff --git a/README.md b/README.md index 73fc9a5..de97263 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,7 @@ Current minimal scope: 2. Add Ports from the integration's configuration page. If the "Add Port" UI is missing, open the integration options and manage ports there (fallback for HA versions without subentry support). +3. Each Port shows up as a device with an enable switch for quick on/off control. ### Binary Sensor Port - `entity_id`: the HA binary_sensor to mirror. diff --git a/custom_components/ha_knx_bridge/__init__.py b/custom_components/ha_knx_bridge/__init__.py index f4fb611..7b23c21 100644 --- a/custom_components/ha_knx_bridge/__init__.py +++ b/custom_components/ha_knx_bridge/__init__.py @@ -16,6 +16,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: raise entry.runtime_data = manager entry.async_on_unload(entry.add_update_listener(_update_listener)) + await hass.config_entries.async_forward_entry_setups(entry, ["switch"]) return True @@ -24,6 +25,7 @@ async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: if manager is None: return True await manager.async_unload() + await hass.config_entries.async_unload_platforms(entry, ["switch"]) return True diff --git a/custom_components/ha_knx_bridge/bridge.py b/custom_components/ha_knx_bridge/bridge.py index c61d173..140563a 100644 --- a/custom_components/ha_knx_bridge/bridge.py +++ b/custom_components/ha_knx_bridge/bridge.py @@ -19,6 +19,7 @@ from .const import ( CONF_INVERT_OUTGOING, CONF_MOVE_LONG_ADDRESS, CONF_MOVE_SHORT_ADDRESS, + CONF_PORT_ENABLED, CONF_PORTS, CONF_POSITION_ADDRESS, CONF_POSITION_STATE_ADDRESS, @@ -119,7 +120,12 @@ class BridgeManager: switch_ports: list[SwitchPort] = [] cover_ports: list[CoverPort] = [] - for port_type, data in _iter_port_configs(self.entry): + enabled_overrides = dict(self.entry.options.get(CONF_PORT_ENABLED, {})) + for port in _iter_port_configs(self.entry): + port_type = port.port_type + data = port.data + if not _is_port_enabled(port, enabled_overrides): + continue if port_type == "binary_sensor": binary_ports.append( BinarySensorPort( @@ -683,15 +689,52 @@ def _event_destination(event: Event) -> str | None: ) -def _iter_port_configs(entry: ConfigEntry) -> list[tuple[str, dict[str, Any]]]: - ports: list[tuple[str, dict[str, Any]]] = [] +@dataclass(frozen=True) +class PortConfig: + port_id: str + port_type: str + title: str + data: dict[str, Any] + enabled: bool | None + + +def _iter_port_configs(entry: ConfigEntry) -> list[PortConfig]: + ports: list[PortConfig] = [] subentries = getattr(entry, "subentries", []) for subentry in subentries: - ports.append((subentry.type, subentry.data)) + ports.append( + PortConfig( + port_id=subentry.entry_id, + port_type=subentry.type, + title=subentry.title or subentry.entry_id, + data=subentry.data, + enabled=subentry.data.get(CONF_ENABLED), + ) + ) option_ports = entry.options.get(CONF_PORTS, []) for port in option_ports: port_type = port.get("type") data = port.get("data", {}) if port_type and isinstance(data, dict): - ports.append((port_type, data)) + ports.append( + PortConfig( + port_id=port.get("id", ""), + port_type=port_type, + title=port.get("title", port.get("id", "Port")), + data=data, + enabled=port.get("enabled"), + ) + ) return ports + + +def _is_port_enabled(port: PortConfig, overrides: dict[str, Any]) -> bool: + if port.port_id and port.port_id in overrides: + return bool(overrides[port.port_id]) + if port.enabled is None: + return True + return bool(port.enabled) + + +def iter_ports(entry: ConfigEntry) -> list[PortConfig]: + return _iter_port_configs(entry) diff --git a/custom_components/ha_knx_bridge/config_flow.py b/custom_components/ha_knx_bridge/config_flow.py index 3486586..2c801d2 100644 --- a/custom_components/ha_knx_bridge/config_flow.py +++ b/custom_components/ha_knx_bridge/config_flow.py @@ -23,6 +23,8 @@ from .const import ( CONF_PORT_ID, CONF_POSITION_ADDRESS, CONF_POSITION_STATE_ADDRESS, + CONF_ENABLED, + CONF_PORT_ENABLED, CONF_STATE_ADDRESS, CONF_STOP_ADDRESS, DOMAIN, @@ -170,7 +172,12 @@ class HAKnxBridgeOptionsFlow(config_entries.OptionsFlow): if user_input is not None: port_id = user_input[CONF_PORT_ID] ports = [port for port in ports if port.get("id") != port_id] - return self.async_create_entry(title="", data={CONF_PORTS: ports}) + overrides = dict(self._config_entry.options.get(CONF_PORT_ENABLED, {})) + overrides.pop(port_id, None) + return self.async_create_entry( + title="", + data={CONF_PORTS: ports, CONF_PORT_ENABLED: overrides}, + ) options = [ { @@ -250,15 +257,22 @@ class HAKnxBridgeOptionsFlow(config_entries.OptionsFlow): async def _async_store_port(self, port_type: str, user_input: dict): ports = list(self._config_entry.options.get(CONF_PORTS, [])) title = _entity_title(self.hass, user_input[CONF_ENTITY_ID]) + enabled = bool(user_input.get(CONF_ENABLED, True)) ports.append( { "id": uuid.uuid4().hex, "type": port_type, "title": title, "data": user_input, + "enabled": enabled, } ) - return self.async_create_entry(title="", data={CONF_PORTS: ports}) + overrides = dict(self._config_entry.options.get(CONF_PORT_ENABLED, {})) + overrides[ports[-1]["id"]] = enabled + return self.async_create_entry( + title="", + data={CONF_PORTS: ports, CONF_PORT_ENABLED: overrides}, + ) async def _async_edit_port(self, port_type: str, user_input, schema_factory): ports = list(self._config_entry.options.get(CONF_PORTS, [])) @@ -284,9 +298,16 @@ class HAKnxBridgeOptionsFlow(config_entries.OptionsFlow): errors=errors, ) + enabled = bool(user_input.get(CONF_ENABLED, True)) port["data"] = user_input + port["enabled"] = enabled port["title"] = _entity_title(self.hass, user_input[CONF_ENTITY_ID]) - return self.async_create_entry(title="", data={CONF_PORTS: ports}) + overrides = dict(self._config_entry.options.get(CONF_PORT_ENABLED, {})) + overrides[port_id] = enabled + return self.async_create_entry( + title="", + data={CONF_PORTS: ports, CONF_PORT_ENABLED: overrides}, + ) class BinarySensorPortSubentryFlow(config_entries.ConfigSubentryFlow): @@ -390,6 +411,9 @@ def _binary_sensor_schema(defaults: dict | None = None) -> vol.Schema: ): ( selector.BooleanSelector() ), + vol.Optional(CONF_ENABLED, default=bool(defaults.get(CONF_ENABLED, True))): ( + selector.BooleanSelector() + ), } ) @@ -530,6 +554,9 @@ def _cover_schema(defaults: dict | None = None) -> vol.Schema: ): ( selector.BooleanSelector() ), + vol.Optional(CONF_ENABLED, default=bool(defaults.get(CONF_ENABLED, True))): ( + selector.BooleanSelector() + ), } ) @@ -580,6 +607,9 @@ def _switch_schema(defaults: dict | None = None) -> vol.Schema: ): ( selector.BooleanSelector() ), + vol.Optional(CONF_ENABLED, default=bool(defaults.get(CONF_ENABLED, True))): ( + selector.BooleanSelector() + ), } ) diff --git a/custom_components/ha_knx_bridge/const.py b/custom_components/ha_knx_bridge/const.py index 0654f02..aaeeccb 100644 --- a/custom_components/ha_knx_bridge/const.py +++ b/custom_components/ha_knx_bridge/const.py @@ -8,6 +8,8 @@ CONF_INVERT_INCOMING = "invert_incoming" CONF_INVERT_OUTGOING = "invert_outgoing" CONF_PORTS = "ports" CONF_PORT_ID = "port_id" +CONF_PORT_ENABLED = "port_enabled" +CONF_ENABLED = "enabled" CONF_MOVE_LONG_ADDRESS = "move_long_address" CONF_MOVE_SHORT_ADDRESS = "move_short_address" diff --git a/custom_components/ha_knx_bridge/strings.json b/custom_components/ha_knx_bridge/strings.json index dc35739..2cc5224 100644 --- a/custom_components/ha_knx_bridge/strings.json +++ b/custom_components/ha_knx_bridge/strings.json @@ -99,7 +99,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } @@ -115,7 +116,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } @@ -146,7 +148,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/switch.py b/custom_components/ha_knx_bridge/switch.py new file mode 100644 index 0000000..c40a7b7 --- /dev/null +++ b/custom_components/ha_knx_bridge/switch.py @@ -0,0 +1,85 @@ +from __future__ import annotations + +from dataclasses import dataclass +from typing import Any + +from homeassistant.config_entries import ConfigEntry +from homeassistant.core import HomeAssistant +from homeassistant.helpers.entity import DeviceInfo +from homeassistant.components.switch import SwitchEntity +from homeassistant.helpers import device_registry as dr + +from .const import CONF_PORTS, CONF_PORT_ENABLED, DOMAIN +from .bridge import iter_ports + + +@dataclass(frozen=True) +class PortDescriptor: + port_id: str + port_type: str + title: str + + +async def async_setup_entry( + hass: HomeAssistant, entry: ConfigEntry, async_add_entities +) -> None: + device_registry = dr.async_get(hass) + device_registry.async_get_or_create( + config_entry_id=entry.entry_id, + identifiers={(DOMAIN, entry.entry_id)}, + name="HA KNX Bridge", + manufacturer="HA KNX Bridge", + model="Integration", + ) + entities: list[SwitchEntity] = [] + for port in iter_ports(entry): + entities.append( + PortEnabledSwitch(entry, port.port_id, port.port_type, port.title) + ) + async_add_entities(entities, update_before_add=True) + + +class PortEnabledSwitch(SwitchEntity): + _attr_has_entity_name = True + + def __init__(self, entry: ConfigEntry, port_id: str, port_type: str, title: str): + self._entry = entry + self._port_id = port_id + self._port_type = port_type + self._title = title + self._attr_unique_id = f"{entry.entry_id}_{port_id}_enabled" + + @property + def name(self) -> str: + return f"{self._title} Enabled" + + @property + def device_info(self) -> DeviceInfo: + return DeviceInfo( + identifiers={(DOMAIN, self._port_id)}, + name=f"{self._title} Port", + manufacturer="HA KNX Bridge", + model=self._port_type, + via_device=(DOMAIN, self._entry.entry_id), + ) + + @property + def is_on(self) -> bool: + overrides = self._entry.options.get(CONF_PORT_ENABLED, {}) + if self._port_id in overrides: + return bool(overrides[self._port_id]) + return True + + async def async_turn_on(self, **kwargs: Any) -> None: + await self._async_set_enabled(True) + + async def async_turn_off(self, **kwargs: Any) -> None: + await self._async_set_enabled(False) + + async def _async_set_enabled(self, enabled: bool) -> None: + overrides = dict(self._entry.options.get(CONF_PORT_ENABLED, {})) + overrides[self._port_id] = enabled + self._entry.async_update_options( + {**self._entry.options, CONF_PORT_ENABLED: overrides} + ) + await self.hass.config_entries.async_reload(self._entry.entry_id) diff --git a/custom_components/ha_knx_bridge/translations/ar.json b/custom_components/ha_knx_bridge/translations/ar.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/ar.json +++ b/custom_components/ha_knx_bridge/translations/ar.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/bg.json b/custom_components/ha_knx_bridge/translations/bg.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/bg.json +++ b/custom_components/ha_knx_bridge/translations/bg.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/ca.json b/custom_components/ha_knx_bridge/translations/ca.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/ca.json +++ b/custom_components/ha_knx_bridge/translations/ca.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/cs.json b/custom_components/ha_knx_bridge/translations/cs.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/cs.json +++ b/custom_components/ha_knx_bridge/translations/cs.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/da.json b/custom_components/ha_knx_bridge/translations/da.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/da.json +++ b/custom_components/ha_knx_bridge/translations/da.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/de.json b/custom_components/ha_knx_bridge/translations/de.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/de.json +++ b/custom_components/ha_knx_bridge/translations/de.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/el.json b/custom_components/ha_knx_bridge/translations/el.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/el.json +++ b/custom_components/ha_knx_bridge/translations/el.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/en.json b/custom_components/ha_knx_bridge/translations/en.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/en.json +++ b/custom_components/ha_knx_bridge/translations/en.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/es.json b/custom_components/ha_knx_bridge/translations/es.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/es.json +++ b/custom_components/ha_knx_bridge/translations/es.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/et.json b/custom_components/ha_knx_bridge/translations/et.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/et.json +++ b/custom_components/ha_knx_bridge/translations/et.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/fi.json b/custom_components/ha_knx_bridge/translations/fi.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/fi.json +++ b/custom_components/ha_knx_bridge/translations/fi.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/fr.json b/custom_components/ha_knx_bridge/translations/fr.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/fr.json +++ b/custom_components/ha_knx_bridge/translations/fr.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/he.json b/custom_components/ha_knx_bridge/translations/he.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/he.json +++ b/custom_components/ha_knx_bridge/translations/he.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/hi.json b/custom_components/ha_knx_bridge/translations/hi.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/hi.json +++ b/custom_components/ha_knx_bridge/translations/hi.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/hr.json b/custom_components/ha_knx_bridge/translations/hr.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/hr.json +++ b/custom_components/ha_knx_bridge/translations/hr.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/hu.json b/custom_components/ha_knx_bridge/translations/hu.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/hu.json +++ b/custom_components/ha_knx_bridge/translations/hu.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/id.json b/custom_components/ha_knx_bridge/translations/id.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/id.json +++ b/custom_components/ha_knx_bridge/translations/id.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/is.json b/custom_components/ha_knx_bridge/translations/is.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/is.json +++ b/custom_components/ha_knx_bridge/translations/is.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/it.json b/custom_components/ha_knx_bridge/translations/it.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/it.json +++ b/custom_components/ha_knx_bridge/translations/it.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/ja.json b/custom_components/ha_knx_bridge/translations/ja.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/ja.json +++ b/custom_components/ha_knx_bridge/translations/ja.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/ko.json b/custom_components/ha_knx_bridge/translations/ko.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/ko.json +++ b/custom_components/ha_knx_bridge/translations/ko.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/lt.json b/custom_components/ha_knx_bridge/translations/lt.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/lt.json +++ b/custom_components/ha_knx_bridge/translations/lt.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/lv.json b/custom_components/ha_knx_bridge/translations/lv.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/lv.json +++ b/custom_components/ha_knx_bridge/translations/lv.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/nb.json b/custom_components/ha_knx_bridge/translations/nb.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/nb.json +++ b/custom_components/ha_knx_bridge/translations/nb.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/nl.json b/custom_components/ha_knx_bridge/translations/nl.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/nl.json +++ b/custom_components/ha_knx_bridge/translations/nl.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/pl.json b/custom_components/ha_knx_bridge/translations/pl.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/pl.json +++ b/custom_components/ha_knx_bridge/translations/pl.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/pt-BR.json b/custom_components/ha_knx_bridge/translations/pt-BR.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/pt-BR.json +++ b/custom_components/ha_knx_bridge/translations/pt-BR.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/pt.json b/custom_components/ha_knx_bridge/translations/pt.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/pt.json +++ b/custom_components/ha_knx_bridge/translations/pt.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/ro.json b/custom_components/ha_knx_bridge/translations/ro.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/ro.json +++ b/custom_components/ha_knx_bridge/translations/ro.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/ru.json b/custom_components/ha_knx_bridge/translations/ru.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/ru.json +++ b/custom_components/ha_knx_bridge/translations/ru.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/sk.json b/custom_components/ha_knx_bridge/translations/sk.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/sk.json +++ b/custom_components/ha_knx_bridge/translations/sk.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/sl.json b/custom_components/ha_knx_bridge/translations/sl.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/sl.json +++ b/custom_components/ha_knx_bridge/translations/sl.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/sv.json b/custom_components/ha_knx_bridge/translations/sv.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/sv.json +++ b/custom_components/ha_knx_bridge/translations/sv.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/th.json b/custom_components/ha_knx_bridge/translations/th.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/th.json +++ b/custom_components/ha_knx_bridge/translations/th.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/tr.json b/custom_components/ha_knx_bridge/translations/tr.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/tr.json +++ b/custom_components/ha_knx_bridge/translations/tr.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/uk.json b/custom_components/ha_knx_bridge/translations/uk.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/uk.json +++ b/custom_components/ha_knx_bridge/translations/uk.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/vi.json b/custom_components/ha_knx_bridge/translations/vi.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/vi.json +++ b/custom_components/ha_knx_bridge/translations/vi.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/zh-Hans.json b/custom_components/ha_knx_bridge/translations/zh-Hans.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/zh-Hans.json +++ b/custom_components/ha_knx_bridge/translations/zh-Hans.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } } diff --git a/custom_components/ha_knx_bridge/translations/zh-Hant.json b/custom_components/ha_knx_bridge/translations/zh-Hant.json index 509a8de..2593b08 100644 --- a/custom_components/ha_knx_bridge/translations/zh-Hant.json +++ b/custom_components/ha_knx_bridge/translations/zh-Hant.json @@ -22,7 +22,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_switch": { @@ -34,7 +35,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "add_cover": { @@ -61,7 +63,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "remove_port": { @@ -82,7 +85,8 @@ "entity_id": "Binary sensor entity", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_switch": { @@ -94,7 +98,8 @@ "command_address_invert_outgoing": "Invert outgoing", "state_address": "State group address (DPT 1)", "state_address_invert_incoming": "Invert incoming", - "state_address_invert_outgoing": "Invert outgoing" + "state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } }, "edit_cover": { @@ -121,7 +126,8 @@ "angle_address_invert_outgoing": "Invert outgoing", "angle_state_address": "State tilt (DPT 5.001)", "angle_state_address_invert_incoming": "Invert incoming", - "angle_state_address_invert_outgoing": "Invert outgoing" + "angle_state_address_invert_outgoing": "Invert outgoing", + "enabled": "Enabled" } } }