From e76cfeb98c1ad76a1de2b7009ccbaa318140daea Mon Sep 17 00:00:00 2001 From: bahmcloud Date: Sun, 15 Feb 2026 18:29:11 +0100 Subject: [PATCH] Fix light port key collisions --- .idea/PROJECT_STATE.md | 3 +- CHANGELOG.md | 3 + README.md | 9 +- custom_components/ha_knx_bridge/bridge.py | 156 ++++++++---------- custom_components/ha_knx_bridge/const.py | 4 +- custom_components/ha_knx_bridge/manifest.json | 2 +- custom_components/ha_knx_bridge/strings.json | 18 +- .../ha_knx_bridge/translations/ar.json | 12 +- .../ha_knx_bridge/translations/bg.json | 12 +- .../ha_knx_bridge/translations/ca.json | 12 +- .../ha_knx_bridge/translations/cs.json | 12 +- .../ha_knx_bridge/translations/da.json | 12 +- .../ha_knx_bridge/translations/de.json | 12 +- .../ha_knx_bridge/translations/el.json | 12 +- .../ha_knx_bridge/translations/en.json | 12 +- .../ha_knx_bridge/translations/es.json | 12 +- .../ha_knx_bridge/translations/et.json | 12 +- .../ha_knx_bridge/translations/fi.json | 12 +- .../ha_knx_bridge/translations/fr.json | 12 +- .../ha_knx_bridge/translations/he.json | 12 +- .../ha_knx_bridge/translations/hi.json | 12 +- .../ha_knx_bridge/translations/hr.json | 12 +- .../ha_knx_bridge/translations/hu.json | 12 +- .../ha_knx_bridge/translations/id.json | 12 +- .../ha_knx_bridge/translations/is.json | 12 +- .../ha_knx_bridge/translations/it.json | 12 +- .../ha_knx_bridge/translations/ja.json | 12 +- .../ha_knx_bridge/translations/ko.json | 12 +- .../ha_knx_bridge/translations/lt.json | 12 +- .../ha_knx_bridge/translations/lv.json | 12 +- .../ha_knx_bridge/translations/nb.json | 12 +- .../ha_knx_bridge/translations/nl.json | 12 +- .../ha_knx_bridge/translations/pl.json | 12 +- .../ha_knx_bridge/translations/pt-BR.json | 12 +- .../ha_knx_bridge/translations/pt.json | 12 +- .../ha_knx_bridge/translations/ro.json | 12 +- .../ha_knx_bridge/translations/ru.json | 12 +- .../ha_knx_bridge/translations/sk.json | 12 +- .../ha_knx_bridge/translations/sl.json | 12 +- .../ha_knx_bridge/translations/sv.json | 12 +- .../ha_knx_bridge/translations/th.json | 12 +- .../ha_knx_bridge/translations/tr.json | 12 +- .../ha_knx_bridge/translations/uk.json | 12 +- .../ha_knx_bridge/translations/vi.json | 12 +- .../ha_knx_bridge/translations/zh-Hans.json | 12 +- .../ha_knx_bridge/translations/zh-Hant.json | 12 +- 46 files changed, 327 insertions(+), 336 deletions(-) diff --git a/.idea/PROJECT_STATE.md b/.idea/PROJECT_STATE.md index bee4c41..f3ea800 100644 --- a/.idea/PROJECT_STATE.md +++ b/.idea/PROJECT_STATE.md @@ -39,7 +39,8 @@ Completed: - README includes initial DPT mapping and roadmap. - Incoming invert toggles removed; outgoing inversion remains only for state addresses. - Light port support added with full KNX color/temperature mappings and individual color channels. -- Project version set to 0.0.21 and `CHANGELOG.md` maintained. +- Light port keys renamed to avoid conflicts; outgoing updates now only target light state addresses. +- Project version set to 0.0.22 and `CHANGELOG.md` maintained. Files created: - `custom_components/ha_knx_bridge/__init__.py` diff --git a/CHANGELOG.md b/CHANGELOG.md index 1789804..c4e64a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 0.0.22 - 2026-02-15 +- Fix light port key collisions and restrict outgoing updates to state addresses only. + ## 0.0.21 - 2026-02-15 - Add full light port support with KNX color/temperature mappings and individual color channels. diff --git a/README.md b/README.md index d9b0b91..f9e7508 100644 --- a/README.md +++ b/README.md @@ -50,8 +50,8 @@ Only state addresses expose an `invert outgoing` toggle to flip KNX payloads. ### Light Port - `entity_id`: the HA light to control/monitor. -- `address` (DPT 1.001): KNX group address for on/off commands. -- `state_address` (DPT 1.001): KNX group address that receives HA on/off state. +- `light_address` (DPT 1.001): KNX group address for on/off commands. +- `light_state_address` (DPT 1.001): KNX group address that receives HA on/off state. - `brightness_address` (DPT 5.001): KNX group address for brightness commands. - `brightness_state_address` (DPT 5.001): KNX group address that receives HA brightness. - `color_address` (DPT 232.600): KNX group address for RGB commands. @@ -71,7 +71,6 @@ Only state addresses expose an `invert outgoing` toggle to flip KNX payloads. - Individual colors (DPT 1.001 + 5.001): `red_*`, `green_*`, `blue_*`, `white_*` on/off and brightness addresses with matching state addresses. Notes: -- If `state_address` or `*_state_address` is empty, the command address is reused for outgoing updates. - For XY color, the bridge sends the brightness as the Y (luminance) component. ## Notes @@ -88,7 +87,7 @@ Notes: - Cover `position_state_address`: DPT 5.001 - Cover `angle_address`: DPT 5.001 - Cover `angle_state_address`: DPT 5.001 -- Light `address` / `state_address`: DPT 1.001 +- Light `light_address` / `light_state_address`: DPT 1.001 - Light `brightness_address` / `brightness_state_address`: DPT 5.001 - Light `color_address` / `color_state_address`: DPT 232.600 - Light `rgbw_address` / `rgbw_state_address`: DPT 251.600 @@ -105,5 +104,5 @@ Notes: - Advanced DPT mapping options and inversion settings. ## Versioning and Releases -- Current version: 0.0.21 +- Current version: 0.0.22 - `CHANGELOG.md` lists versions with the newest entries at the top. diff --git a/custom_components/ha_knx_bridge/bridge.py b/custom_components/ha_knx_bridge/bridge.py index a70b3c5..e47f9d7 100644 --- a/custom_components/ha_knx_bridge/bridge.py +++ b/custom_components/ha_knx_bridge/bridge.py @@ -882,38 +882,35 @@ class BridgeManager: if color_temp_kelvin is None and color_temp_mired is not None: color_temp_kelvin = _mireds_to_kelvin(color_temp_mired) - if port.state_address or port.address: + if port.state_address: payload = 1 if is_on else 0 - target = port.state_address or port.address - if port.state_address: - payload = _invert_value( - payload, port.state_address, self._address_options - ) - await self._knx_send_raw(target, payload) + payload = _invert_value( + payload, port.state_address, self._address_options + ) + await self._knx_send_raw(port.state_address, payload) - if port.brightness_state_address or port.brightness_address: + if port.brightness_state_address: if is_on: - if brightness_percent is None: - pass - else: - target = ( - port.brightness_state_address or port.brightness_address - ) + if brightness_percent is not None: payload = brightness_percent - if port.brightness_state_address: - payload = _invert_value( - payload, port.brightness_state_address, self._address_options - ) - await self._knx_send_percent(target, payload) + payload = _invert_value( + payload, + port.brightness_state_address, + self._address_options, + ) + await self._knx_send_percent( + port.brightness_state_address, payload + ) else: - target = port.brightness_state_address or port.brightness_address - if target: - payload = 0 - if port.brightness_state_address: - payload = _invert_value( - payload, port.brightness_state_address, self._address_options - ) - await self._knx_send_percent(target, payload) + payload = 0 + payload = _invert_value( + payload, + port.brightness_state_address, + self._address_options, + ) + await self._knx_send_percent( + port.brightness_state_address, payload + ) if rgb_color is None and hs_color is not None: rgb_color = color_util.color_hs_to_RGB(*hs_color) @@ -922,65 +919,56 @@ class BridgeManager: xy_color[0], xy_color[1], brightness or 255 ) - if port.color_state_address or port.color_address: - target = port.color_state_address or port.color_address - if rgb_color is not None and target: - await self._knx_send_typed(target, list(rgb_color), "232.600") - - if port.rgbw_state_address or port.rgbw_address: - target = port.rgbw_state_address or port.rgbw_address - if rgbw_color is not None and target: - await self._knx_send_typed(target, list(rgbw_color), "251.600") - - if port.hue_state_address or port.hue_address: - target = port.hue_state_address or port.hue_address - if hs_color is not None and target: - await self._knx_send_typed(target, int(round(hs_color[0])), "5.003") - - if port.saturation_state_address or port.saturation_address: - target = port.saturation_state_address or port.saturation_address - if hs_color is not None and target: - payload = int(round(hs_color[1])) - if port.saturation_state_address: - payload = _invert_value( - payload, port.saturation_state_address, self._address_options - ) - await self._knx_send_percent(target, payload) - - if port.xyy_state_address or port.xyy_address: - target = port.xyy_state_address or port.xyy_address - if xy_color is not None and target: - if brightness_percent is None: - brightness_value = 100 if is_on else 0 - else: - brightness_value = brightness_percent - await self._knx_send_typed( - target, - [float(xy_color[0]), float(xy_color[1]), int(brightness_value)], - "242.600", - ) - - if port.color_temperature_state_address or port.color_temperature_address: - target = ( - port.color_temperature_state_address - or port.color_temperature_address + if port.color_state_address and rgb_color is not None: + await self._knx_send_typed( + port.color_state_address, list(rgb_color), "232.600" ) - if target and color_temp_kelvin is not None: - payload, dpt_type = _color_temperature_payload( - color_temp_kelvin, - port, - clamp=True, + + if port.rgbw_state_address and rgbw_color is not None: + await self._knx_send_typed( + port.rgbw_state_address, list(rgbw_color), "251.600" + ) + + if port.hue_state_address and hs_color is not None: + await self._knx_send_typed( + port.hue_state_address, int(round(hs_color[0])), "5.003" + ) + + if port.saturation_state_address and hs_color is not None: + payload = int(round(hs_color[1])) + payload = _invert_value( + payload, port.saturation_state_address, self._address_options + ) + await self._knx_send_percent( + port.saturation_state_address, payload + ) + + if port.xyy_state_address and xy_color is not None: + if brightness_percent is None: + brightness_value = 100 if is_on else 0 + else: + brightness_value = brightness_percent + await self._knx_send_typed( + port.xyy_state_address, + [float(xy_color[0]), float(xy_color[1]), int(brightness_value)], + "242.600", + ) + + if port.color_temperature_state_address and color_temp_kelvin is not None: + payload, dpt_type = _color_temperature_payload( + color_temp_kelvin, + port, + clamp=True, + ) + if port.color_temperature_mode == "relative": + payload = _invert_value( + int(round(payload)), + port.color_temperature_state_address, + self._address_options, ) - if ( - port.color_temperature_state_address - and port.color_temperature_mode == "relative" - ): - payload = _invert_value( - int(round(payload)), - port.color_temperature_state_address, - self._address_options, - ) - await self._knx_send_typed(target, payload, dpt_type) + await self._knx_send_typed( + port.color_temperature_state_address, payload, dpt_type + ) self._update_light_components_from_state( port, diff --git a/custom_components/ha_knx_bridge/const.py b/custom_components/ha_knx_bridge/const.py index feb3650..5b22877 100644 --- a/custom_components/ha_knx_bridge/const.py +++ b/custom_components/ha_knx_bridge/const.py @@ -18,8 +18,8 @@ CONF_POSITION_STATE_ADDRESS = "position_state_address" CONF_ANGLE_ADDRESS = "angle_address" CONF_ANGLE_STATE_ADDRESS = "angle_state_address" -CONF_LIGHT_ADDRESS = "address" -CONF_LIGHT_STATE_ADDRESS = "state_address" +CONF_LIGHT_ADDRESS = "light_address" +CONF_LIGHT_STATE_ADDRESS = "light_state_address" CONF_LIGHT_BRIGHTNESS_ADDRESS = "brightness_address" CONF_LIGHT_BRIGHTNESS_STATE_ADDRESS = "brightness_state_address" CONF_LIGHT_COLOR_ADDRESS = "color_address" diff --git a/custom_components/ha_knx_bridge/manifest.json b/custom_components/ha_knx_bridge/manifest.json index 7db4c7c..7480926 100644 --- a/custom_components/ha_knx_bridge/manifest.json +++ b/custom_components/ha_knx_bridge/manifest.json @@ -1,7 +1,7 @@ { "domain": "ha_knx_bridge", "name": "HA KNX Bridge", - "version": "0.0.21", + "version": "0.0.22", "config_flow": true, "documentation": "https://github.com/bahmcloud/HA-KNX-Bridge", "issue_tracker": "https://github.com/bahmcloud/HA-KNX-Bridge/issues", diff --git a/custom_components/ha_knx_bridge/strings.json b/custom_components/ha_knx_bridge/strings.json index 3b9ceee..3221b13 100644 --- a/custom_components/ha_knx_bridge/strings.json +++ b/custom_components/ha_knx_bridge/strings.json @@ -73,9 +73,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -174,9 +174,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -283,9 +283,9 @@ "title": "Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/ar.json b/custom_components/ha_knx_bridge/translations/ar.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/ar.json +++ b/custom_components/ha_knx_bridge/translations/ar.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/bg.json b/custom_components/ha_knx_bridge/translations/bg.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/bg.json +++ b/custom_components/ha_knx_bridge/translations/bg.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/ca.json b/custom_components/ha_knx_bridge/translations/ca.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/ca.json +++ b/custom_components/ha_knx_bridge/translations/ca.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/cs.json b/custom_components/ha_knx_bridge/translations/cs.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/cs.json +++ b/custom_components/ha_knx_bridge/translations/cs.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/da.json b/custom_components/ha_knx_bridge/translations/da.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/da.json +++ b/custom_components/ha_knx_bridge/translations/da.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/de.json b/custom_components/ha_knx_bridge/translations/de.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/de.json +++ b/custom_components/ha_knx_bridge/translations/de.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/el.json b/custom_components/ha_knx_bridge/translations/el.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/el.json +++ b/custom_components/ha_knx_bridge/translations/el.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/en.json b/custom_components/ha_knx_bridge/translations/en.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/en.json +++ b/custom_components/ha_knx_bridge/translations/en.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/es.json b/custom_components/ha_knx_bridge/translations/es.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/es.json +++ b/custom_components/ha_knx_bridge/translations/es.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/et.json b/custom_components/ha_knx_bridge/translations/et.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/et.json +++ b/custom_components/ha_knx_bridge/translations/et.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/fi.json b/custom_components/ha_knx_bridge/translations/fi.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/fi.json +++ b/custom_components/ha_knx_bridge/translations/fi.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/fr.json b/custom_components/ha_knx_bridge/translations/fr.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/fr.json +++ b/custom_components/ha_knx_bridge/translations/fr.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/he.json b/custom_components/ha_knx_bridge/translations/he.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/he.json +++ b/custom_components/ha_knx_bridge/translations/he.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/hi.json b/custom_components/ha_knx_bridge/translations/hi.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/hi.json +++ b/custom_components/ha_knx_bridge/translations/hi.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/hr.json b/custom_components/ha_knx_bridge/translations/hr.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/hr.json +++ b/custom_components/ha_knx_bridge/translations/hr.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/hu.json b/custom_components/ha_knx_bridge/translations/hu.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/hu.json +++ b/custom_components/ha_knx_bridge/translations/hu.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/id.json b/custom_components/ha_knx_bridge/translations/id.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/id.json +++ b/custom_components/ha_knx_bridge/translations/id.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/is.json b/custom_components/ha_knx_bridge/translations/is.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/is.json +++ b/custom_components/ha_knx_bridge/translations/is.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/it.json b/custom_components/ha_knx_bridge/translations/it.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/it.json +++ b/custom_components/ha_knx_bridge/translations/it.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/ja.json b/custom_components/ha_knx_bridge/translations/ja.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/ja.json +++ b/custom_components/ha_knx_bridge/translations/ja.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/ko.json b/custom_components/ha_knx_bridge/translations/ko.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/ko.json +++ b/custom_components/ha_knx_bridge/translations/ko.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/lt.json b/custom_components/ha_knx_bridge/translations/lt.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/lt.json +++ b/custom_components/ha_knx_bridge/translations/lt.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/lv.json b/custom_components/ha_knx_bridge/translations/lv.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/lv.json +++ b/custom_components/ha_knx_bridge/translations/lv.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/nb.json b/custom_components/ha_knx_bridge/translations/nb.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/nb.json +++ b/custom_components/ha_knx_bridge/translations/nb.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/nl.json b/custom_components/ha_knx_bridge/translations/nl.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/nl.json +++ b/custom_components/ha_knx_bridge/translations/nl.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/pl.json b/custom_components/ha_knx_bridge/translations/pl.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/pl.json +++ b/custom_components/ha_knx_bridge/translations/pl.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/pt-BR.json b/custom_components/ha_knx_bridge/translations/pt-BR.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/pt-BR.json +++ b/custom_components/ha_knx_bridge/translations/pt-BR.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/pt.json b/custom_components/ha_knx_bridge/translations/pt.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/pt.json +++ b/custom_components/ha_knx_bridge/translations/pt.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/ro.json b/custom_components/ha_knx_bridge/translations/ro.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/ro.json +++ b/custom_components/ha_knx_bridge/translations/ro.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/ru.json b/custom_components/ha_knx_bridge/translations/ru.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/ru.json +++ b/custom_components/ha_knx_bridge/translations/ru.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/sk.json b/custom_components/ha_knx_bridge/translations/sk.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/sk.json +++ b/custom_components/ha_knx_bridge/translations/sk.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/sl.json b/custom_components/ha_knx_bridge/translations/sl.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/sl.json +++ b/custom_components/ha_knx_bridge/translations/sl.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/sv.json b/custom_components/ha_knx_bridge/translations/sv.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/sv.json +++ b/custom_components/ha_knx_bridge/translations/sv.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/th.json b/custom_components/ha_knx_bridge/translations/th.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/th.json +++ b/custom_components/ha_knx_bridge/translations/th.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/tr.json b/custom_components/ha_knx_bridge/translations/tr.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/tr.json +++ b/custom_components/ha_knx_bridge/translations/tr.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/uk.json b/custom_components/ha_knx_bridge/translations/uk.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/uk.json +++ b/custom_components/ha_knx_bridge/translations/uk.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/vi.json b/custom_components/ha_knx_bridge/translations/vi.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/vi.json +++ b/custom_components/ha_knx_bridge/translations/vi.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/zh-Hans.json b/custom_components/ha_knx_bridge/translations/zh-Hans.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/zh-Hans.json +++ b/custom_components/ha_knx_bridge/translations/zh-Hans.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", diff --git a/custom_components/ha_knx_bridge/translations/zh-Hant.json b/custom_components/ha_knx_bridge/translations/zh-Hant.json index 2812500..c6c230c 100644 --- a/custom_components/ha_knx_bridge/translations/zh-Hant.json +++ b/custom_components/ha_knx_bridge/translations/zh-Hant.json @@ -56,9 +56,9 @@ "title": "Add Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", @@ -157,9 +157,9 @@ "title": "Edit Light Port", "data": { "entity_id": "Light entity", - "address": "On/off address (DPT 1.001)", - "state_address": "On/off state address (DPT 1.001)", - "state_address_invert_outgoing": "Invert outgoing", + "light_address": "On/off address (DPT 1.001)", + "light_state_address": "On/off state address (DPT 1.001)", + "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing",