mirror of
https://github.com/bahmcloud/HA-KNX-Bridge.git
synced 2026-04-06 16:51:14 +00:00
Compare commits
5 Commits
6ce60029a1
...
v0.0.19
| Author | SHA1 | Date | |
|---|---|---|---|
| b59455909c | |||
| 6a5589e60a | |||
| 0af4fc8375 | |||
| 6824134c91 | |||
| 44de824041 |
16
CHANGELOG.md
16
CHANGELOG.md
@@ -1,5 +1,21 @@
|
||||
# Changelog
|
||||
|
||||
## 0.0.19 - 2026-02-13
|
||||
- Fix port enable switches by updating config entry options properly.
|
||||
- Show port switches under the main integration device instead of per-port devices.
|
||||
|
||||
## 0.0.18 - 2026-02-13
|
||||
- Add port devices with enable toggles and an edit-port flow.
|
||||
- Provide locale fallback translations for all Home Assistant languages.
|
||||
|
||||
## 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.
|
||||
|
||||
## 0.0.15 - 2026-02-13
|
||||
- Remove unsupported `payload_length` field from KNX send calls.
|
||||
|
||||
|
||||
@@ -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.
|
||||
@@ -67,6 +68,6 @@ Each group address has `invert incoming` and `invert outgoing` toggles to flip K
|
||||
- Advanced DPT mapping options and inversion settings.
|
||||
|
||||
## Versioning and Releases
|
||||
- Current version: 0.0.15
|
||||
- Current version: 0.0.19
|
||||
- `CHANGELOG.md` lists versions with the newest entries at the top.
|
||||
- Release creation is manual and only done when explicitly requested.
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
|
||||
@@ -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(
|
||||
@@ -482,11 +488,7 @@ class BridgeManager:
|
||||
if direction is not None and not str(direction).lower().startswith("incoming"):
|
||||
return
|
||||
|
||||
destination = (
|
||||
event.data.get("destination")
|
||||
or event.data.get("destination_address")
|
||||
or event.data.get("address")
|
||||
)
|
||||
destination = _event_destination(event)
|
||||
if not destination:
|
||||
return
|
||||
|
||||
@@ -502,9 +504,8 @@ class BridgeManager:
|
||||
value = _extract_event_value(event)
|
||||
if value is None:
|
||||
return
|
||||
value = _invert_value(
|
||||
value, event.data.get("destination"), self._address_options, "incoming"
|
||||
)
|
||||
destination = _event_destination(event)
|
||||
value = _invert_value(value, destination, self._address_options, "incoming")
|
||||
|
||||
if action == "move_long":
|
||||
if value == 0:
|
||||
@@ -530,9 +531,8 @@ class BridgeManager:
|
||||
value = _extract_event_value(event)
|
||||
if value is None:
|
||||
return
|
||||
value = _invert_value(
|
||||
value, event.data.get("destination"), self._address_options, "incoming"
|
||||
)
|
||||
destination = _event_destination(event)
|
||||
value = _invert_value(value, destination, self._address_options, "incoming")
|
||||
if value == 0:
|
||||
await self._call_switch_service(port.entity_id, "turn_off")
|
||||
elif value == 1:
|
||||
@@ -624,6 +624,8 @@ def _invert_value(
|
||||
options = address_options.get(address)
|
||||
if options is None:
|
||||
return value
|
||||
if options.value_type == "percent":
|
||||
value = _clamp_percent(value)
|
||||
if direction == "incoming":
|
||||
if not options.invert_incoming:
|
||||
return value
|
||||
@@ -631,7 +633,6 @@ def _invert_value(
|
||||
if not options.invert_outgoing:
|
||||
return value
|
||||
if options.value_type == "percent":
|
||||
value = _clamp_percent(value)
|
||||
return 100 - value
|
||||
if value not in (0, 1):
|
||||
return value
|
||||
@@ -680,15 +681,60 @@ def _map_scalar_value(value: Any) -> int | None:
|
||||
return None
|
||||
|
||||
|
||||
def _iter_port_configs(entry: ConfigEntry) -> list[tuple[str, dict[str, Any]]]:
|
||||
ports: list[tuple[str, dict[str, Any]]] = []
|
||||
def _event_destination(event: Event) -> str | None:
|
||||
return (
|
||||
event.data.get("destination")
|
||||
or event.data.get("destination_address")
|
||||
or event.data.get("address")
|
||||
)
|
||||
|
||||
|
||||
@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)
|
||||
|
||||
@@ -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,
|
||||
@@ -98,6 +100,7 @@ class HAKnxBridgeOptionsFlow(config_entries.OptionsFlow):
|
||||
"add_binary_sensor",
|
||||
"add_switch",
|
||||
"add_cover",
|
||||
"edit_port",
|
||||
"remove_port",
|
||||
],
|
||||
)
|
||||
@@ -169,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 = [
|
||||
{
|
||||
@@ -188,18 +196,118 @@ class HAKnxBridgeOptionsFlow(config_entries.OptionsFlow):
|
||||
)
|
||||
return self.async_show_form(step_id="remove_port", data_schema=schema)
|
||||
|
||||
async def async_step_edit_port(self, user_input: dict | None = None):
|
||||
ports = list(self._config_entry.options.get(CONF_PORTS, []))
|
||||
if not ports:
|
||||
return self.async_abort(reason="no_ports_to_edit")
|
||||
|
||||
if user_input is not None and CONF_PORT_ID in user_input:
|
||||
port_id = user_input[CONF_PORT_ID]
|
||||
port = next((item for item in ports if item.get("id") == port_id), None)
|
||||
if port is None:
|
||||
return self.async_abort(reason="no_ports_to_edit")
|
||||
self.context["port_id"] = port_id
|
||||
port_type = port.get("type")
|
||||
data = port.get("data", {})
|
||||
if port_type == "binary_sensor":
|
||||
return self.async_show_form(
|
||||
step_id="edit_binary_sensor",
|
||||
data_schema=_binary_sensor_schema(defaults=data),
|
||||
)
|
||||
if port_type == "switch":
|
||||
return self.async_show_form(
|
||||
step_id="edit_switch",
|
||||
data_schema=_switch_schema(defaults=data),
|
||||
)
|
||||
if port_type == "cover":
|
||||
return self.async_show_form(
|
||||
step_id="edit_cover",
|
||||
data_schema=_cover_schema(defaults=data),
|
||||
)
|
||||
return self.async_abort(reason="no_ports_to_edit")
|
||||
|
||||
options = [
|
||||
{
|
||||
"value": port.get("id"),
|
||||
"label": port.get("title", port.get("id")),
|
||||
}
|
||||
for port in ports
|
||||
if port.get("id")
|
||||
]
|
||||
schema = vol.Schema(
|
||||
{
|
||||
vol.Required(CONF_PORT_ID): selector.SelectSelector(
|
||||
selector.SelectSelectorConfig(options=options, mode="dropdown")
|
||||
)
|
||||
}
|
||||
)
|
||||
return self.async_show_form(step_id="edit_port", data_schema=schema)
|
||||
|
||||
async def async_step_edit_binary_sensor(self, user_input: dict | None = None):
|
||||
return await self._async_edit_port(
|
||||
"binary_sensor", user_input, _binary_sensor_schema
|
||||
)
|
||||
|
||||
async def async_step_edit_switch(self, user_input: dict | None = None):
|
||||
return await self._async_edit_port("switch", user_input, _switch_schema)
|
||||
|
||||
async def async_step_edit_cover(self, user_input: dict | None = None):
|
||||
return await self._async_edit_port("cover", user_input, _cover_schema)
|
||||
|
||||
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, []))
|
||||
port_id = self.context.get("port_id")
|
||||
if port_id is None:
|
||||
return self.async_abort(reason="no_ports_to_edit")
|
||||
|
||||
port = next((item for item in ports if item.get("id") == port_id), None)
|
||||
if port is None:
|
||||
return self.async_abort(reason="no_ports_to_edit")
|
||||
|
||||
if user_input is None:
|
||||
return self.async_show_form(
|
||||
step_id=f"edit_{port_type}",
|
||||
data_schema=schema_factory(defaults=port.get("data", {})),
|
||||
)
|
||||
|
||||
user_input, errors = _validate_knx_addresses(user_input, _port_keys(port_type))
|
||||
if errors:
|
||||
return self.async_show_form(
|
||||
step_id=f"edit_{port_type}",
|
||||
data_schema=schema_factory(defaults=user_input),
|
||||
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])
|
||||
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):
|
||||
@@ -275,126 +383,255 @@ def _entity_title(hass, entity_id: str) -> str:
|
||||
return state.attributes.get("friendly_name", entity_id)
|
||||
|
||||
|
||||
def _binary_sensor_schema() -> vol.Schema:
|
||||
def _binary_sensor_schema(defaults: dict | None = None) -> vol.Schema:
|
||||
defaults = defaults or {}
|
||||
return vol.Schema(
|
||||
{
|
||||
vol.Required(CONF_ENTITY_ID): selector.EntitySelector(
|
||||
vol.Required(
|
||||
CONF_ENTITY_ID,
|
||||
default=defaults.get(CONF_ENTITY_ID, ""),
|
||||
): selector.EntitySelector(
|
||||
selector.EntitySelectorConfig(domain=["binary_sensor"])
|
||||
),
|
||||
vol.Optional(CONF_STATE_ADDRESS): selector.TextSelector(
|
||||
vol.Optional(
|
||||
CONF_STATE_ADDRESS,
|
||||
default=defaults.get(CONF_STATE_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(_invert_in_key(CONF_STATE_ADDRESS), default=False): (
|
||||
vol.Optional(
|
||||
_invert_in_key(CONF_STATE_ADDRESS),
|
||||
default=bool(defaults.get(_invert_in_key(CONF_STATE_ADDRESS))),
|
||||
): (
|
||||
selector.BooleanSelector()
|
||||
),
|
||||
vol.Optional(_invert_out_key(CONF_STATE_ADDRESS), default=False): (
|
||||
vol.Optional(
|
||||
_invert_out_key(CONF_STATE_ADDRESS),
|
||||
default=bool(defaults.get(_invert_out_key(CONF_STATE_ADDRESS))),
|
||||
): (
|
||||
selector.BooleanSelector()
|
||||
),
|
||||
vol.Optional(CONF_ENABLED, default=bool(defaults.get(CONF_ENABLED, True))): (
|
||||
selector.BooleanSelector()
|
||||
),
|
||||
}
|
||||
)
|
||||
|
||||
|
||||
def _cover_schema() -> vol.Schema:
|
||||
def _cover_schema(defaults: dict | None = None) -> vol.Schema:
|
||||
defaults = defaults or {}
|
||||
return vol.Schema(
|
||||
{
|
||||
vol.Required(CONF_ENTITY_ID): selector.EntitySelector(
|
||||
vol.Required(
|
||||
CONF_ENTITY_ID,
|
||||
default=defaults.get(CONF_ENTITY_ID, ""),
|
||||
): selector.EntitySelector(
|
||||
selector.EntitySelectorConfig(domain=["cover"])
|
||||
),
|
||||
vol.Optional(CONF_MOVE_LONG_ADDRESS): selector.TextSelector(
|
||||
vol.Optional(
|
||||
CONF_MOVE_LONG_ADDRESS,
|
||||
default=defaults.get(CONF_MOVE_LONG_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(_invert_in_key(CONF_MOVE_LONG_ADDRESS), default=False): (
|
||||
vol.Optional(
|
||||
_invert_in_key(CONF_MOVE_LONG_ADDRESS),
|
||||
default=bool(defaults.get(_invert_in_key(CONF_MOVE_LONG_ADDRESS))),
|
||||
): (
|
||||
selector.BooleanSelector()
|
||||
),
|
||||
vol.Optional(_invert_out_key(CONF_MOVE_LONG_ADDRESS), default=False): (
|
||||
vol.Optional(
|
||||
_invert_out_key(CONF_MOVE_LONG_ADDRESS),
|
||||
default=bool(defaults.get(_invert_out_key(CONF_MOVE_LONG_ADDRESS))),
|
||||
): (
|
||||
selector.BooleanSelector()
|
||||
),
|
||||
vol.Optional(CONF_MOVE_SHORT_ADDRESS): selector.TextSelector(
|
||||
vol.Optional(
|
||||
CONF_MOVE_SHORT_ADDRESS,
|
||||
default=defaults.get(CONF_MOVE_SHORT_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(_invert_in_key(CONF_MOVE_SHORT_ADDRESS), default=False): (
|
||||
vol.Optional(
|
||||
_invert_in_key(CONF_MOVE_SHORT_ADDRESS),
|
||||
default=bool(defaults.get(_invert_in_key(CONF_MOVE_SHORT_ADDRESS))),
|
||||
): (
|
||||
selector.BooleanSelector()
|
||||
),
|
||||
vol.Optional(_invert_out_key(CONF_MOVE_SHORT_ADDRESS), default=False): (
|
||||
vol.Optional(
|
||||
_invert_out_key(CONF_MOVE_SHORT_ADDRESS),
|
||||
default=bool(defaults.get(_invert_out_key(CONF_MOVE_SHORT_ADDRESS))),
|
||||
): (
|
||||
selector.BooleanSelector()
|
||||
),
|
||||
vol.Optional(CONF_STOP_ADDRESS): selector.TextSelector(
|
||||
vol.Optional(
|
||||
CONF_STOP_ADDRESS,
|
||||
default=defaults.get(CONF_STOP_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(_invert_in_key(CONF_STOP_ADDRESS), default=False): (
|
||||
vol.Optional(
|
||||
_invert_in_key(CONF_STOP_ADDRESS),
|
||||
default=bool(defaults.get(_invert_in_key(CONF_STOP_ADDRESS))),
|
||||
): (
|
||||
selector.BooleanSelector()
|
||||
),
|
||||
vol.Optional(_invert_out_key(CONF_STOP_ADDRESS), default=False): (
|
||||
vol.Optional(
|
||||
_invert_out_key(CONF_STOP_ADDRESS),
|
||||
default=bool(defaults.get(_invert_out_key(CONF_STOP_ADDRESS))),
|
||||
): (
|
||||
selector.BooleanSelector()
|
||||
),
|
||||
vol.Optional(CONF_POSITION_ADDRESS): selector.TextSelector(
|
||||
vol.Optional(
|
||||
CONF_POSITION_ADDRESS,
|
||||
default=defaults.get(CONF_POSITION_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(_invert_in_key(CONF_POSITION_ADDRESS), default=False): (
|
||||
vol.Optional(
|
||||
_invert_in_key(CONF_POSITION_ADDRESS),
|
||||
default=bool(defaults.get(_invert_in_key(CONF_POSITION_ADDRESS))),
|
||||
): (
|
||||
selector.BooleanSelector()
|
||||
),
|
||||
vol.Optional(_invert_out_key(CONF_POSITION_ADDRESS), default=False): (
|
||||
vol.Optional(
|
||||
_invert_out_key(CONF_POSITION_ADDRESS),
|
||||
default=bool(defaults.get(_invert_out_key(CONF_POSITION_ADDRESS))),
|
||||
): (
|
||||
selector.BooleanSelector()
|
||||
),
|
||||
vol.Optional(CONF_POSITION_STATE_ADDRESS): selector.TextSelector(
|
||||
vol.Optional(
|
||||
CONF_POSITION_STATE_ADDRESS,
|
||||
default=defaults.get(CONF_POSITION_STATE_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(_invert_in_key(CONF_POSITION_STATE_ADDRESS), default=False): (
|
||||
vol.Optional(
|
||||
_invert_in_key(CONF_POSITION_STATE_ADDRESS),
|
||||
default=bool(defaults.get(_invert_in_key(CONF_POSITION_STATE_ADDRESS))),
|
||||
): (
|
||||
selector.BooleanSelector()
|
||||
),
|
||||
vol.Optional(_invert_out_key(CONF_POSITION_STATE_ADDRESS), default=False): (
|
||||
vol.Optional(
|
||||
_invert_out_key(CONF_POSITION_STATE_ADDRESS),
|
||||
default=bool(defaults.get(_invert_out_key(CONF_POSITION_STATE_ADDRESS))),
|
||||
): (
|
||||
selector.BooleanSelector()
|
||||
),
|
||||
vol.Optional(CONF_ANGLE_ADDRESS): selector.TextSelector(
|
||||
vol.Optional(
|
||||
CONF_ANGLE_ADDRESS,
|
||||
default=defaults.get(CONF_ANGLE_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(_invert_in_key(CONF_ANGLE_ADDRESS), default=False): (
|
||||
vol.Optional(
|
||||
_invert_in_key(CONF_ANGLE_ADDRESS),
|
||||
default=bool(defaults.get(_invert_in_key(CONF_ANGLE_ADDRESS))),
|
||||
): (
|
||||
selector.BooleanSelector()
|
||||
),
|
||||
vol.Optional(_invert_out_key(CONF_ANGLE_ADDRESS), default=False): (
|
||||
vol.Optional(
|
||||
_invert_out_key(CONF_ANGLE_ADDRESS),
|
||||
default=bool(defaults.get(_invert_out_key(CONF_ANGLE_ADDRESS))),
|
||||
): (
|
||||
selector.BooleanSelector()
|
||||
),
|
||||
vol.Optional(CONF_ANGLE_STATE_ADDRESS): selector.TextSelector(
|
||||
vol.Optional(
|
||||
CONF_ANGLE_STATE_ADDRESS,
|
||||
default=defaults.get(CONF_ANGLE_STATE_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(_invert_in_key(CONF_ANGLE_STATE_ADDRESS), default=False): (
|
||||
vol.Optional(
|
||||
_invert_in_key(CONF_ANGLE_STATE_ADDRESS),
|
||||
default=bool(defaults.get(_invert_in_key(CONF_ANGLE_STATE_ADDRESS))),
|
||||
): (
|
||||
selector.BooleanSelector()
|
||||
),
|
||||
vol.Optional(_invert_out_key(CONF_ANGLE_STATE_ADDRESS), default=False): (
|
||||
vol.Optional(
|
||||
_invert_out_key(CONF_ANGLE_STATE_ADDRESS),
|
||||
default=bool(defaults.get(_invert_out_key(CONF_ANGLE_STATE_ADDRESS))),
|
||||
): (
|
||||
selector.BooleanSelector()
|
||||
),
|
||||
vol.Optional(CONF_ENABLED, default=bool(defaults.get(CONF_ENABLED, True))): (
|
||||
selector.BooleanSelector()
|
||||
),
|
||||
}
|
||||
)
|
||||
|
||||
|
||||
def _switch_schema() -> vol.Schema:
|
||||
def _switch_schema(defaults: dict | None = None) -> vol.Schema:
|
||||
defaults = defaults or {}
|
||||
return vol.Schema(
|
||||
{
|
||||
vol.Required(CONF_ENTITY_ID): selector.EntitySelector(
|
||||
vol.Required(
|
||||
CONF_ENTITY_ID,
|
||||
default=defaults.get(CONF_ENTITY_ID, ""),
|
||||
): selector.EntitySelector(
|
||||
selector.EntitySelectorConfig(domain=["switch"])
|
||||
),
|
||||
vol.Optional(CONF_COMMAND_ADDRESS): selector.TextSelector(
|
||||
vol.Optional(
|
||||
CONF_COMMAND_ADDRESS,
|
||||
default=defaults.get(CONF_COMMAND_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(_invert_in_key(CONF_COMMAND_ADDRESS), default=False): (
|
||||
vol.Optional(
|
||||
_invert_in_key(CONF_COMMAND_ADDRESS),
|
||||
default=bool(defaults.get(_invert_in_key(CONF_COMMAND_ADDRESS))),
|
||||
): (
|
||||
selector.BooleanSelector()
|
||||
),
|
||||
vol.Optional(_invert_out_key(CONF_COMMAND_ADDRESS), default=False): (
|
||||
vol.Optional(
|
||||
_invert_out_key(CONF_COMMAND_ADDRESS),
|
||||
default=bool(defaults.get(_invert_out_key(CONF_COMMAND_ADDRESS))),
|
||||
): (
|
||||
selector.BooleanSelector()
|
||||
),
|
||||
vol.Optional(CONF_STATE_ADDRESS): selector.TextSelector(
|
||||
vol.Optional(
|
||||
CONF_STATE_ADDRESS,
|
||||
default=defaults.get(CONF_STATE_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(_invert_in_key(CONF_STATE_ADDRESS), default=False): (
|
||||
vol.Optional(
|
||||
_invert_in_key(CONF_STATE_ADDRESS),
|
||||
default=bool(defaults.get(_invert_in_key(CONF_STATE_ADDRESS))),
|
||||
): (
|
||||
selector.BooleanSelector()
|
||||
),
|
||||
vol.Optional(_invert_out_key(CONF_STATE_ADDRESS), default=False): (
|
||||
vol.Optional(
|
||||
_invert_out_key(CONF_STATE_ADDRESS),
|
||||
default=bool(defaults.get(_invert_out_key(CONF_STATE_ADDRESS))),
|
||||
): (
|
||||
selector.BooleanSelector()
|
||||
),
|
||||
vol.Optional(CONF_ENABLED, default=bool(defaults.get(CONF_ENABLED, True))): (
|
||||
selector.BooleanSelector()
|
||||
),
|
||||
}
|
||||
)
|
||||
|
||||
|
||||
def _port_keys(port_type: str) -> list[str]:
|
||||
if port_type == "binary_sensor":
|
||||
return [CONF_STATE_ADDRESS]
|
||||
if port_type == "switch":
|
||||
return [CONF_COMMAND_ADDRESS, CONF_STATE_ADDRESS]
|
||||
if port_type == "cover":
|
||||
return [
|
||||
CONF_MOVE_LONG_ADDRESS,
|
||||
CONF_MOVE_SHORT_ADDRESS,
|
||||
CONF_STOP_ADDRESS,
|
||||
CONF_POSITION_ADDRESS,
|
||||
CONF_POSITION_STATE_ADDRESS,
|
||||
CONF_ANGLE_ADDRESS,
|
||||
CONF_ANGLE_STATE_ADDRESS,
|
||||
]
|
||||
return []
|
||||
|
||||
|
||||
def _validate_knx_addresses(
|
||||
user_input: dict, keys: list[str]
|
||||
) -> tuple[dict, dict[str, str]]:
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"domain": "ha_knx_bridge",
|
||||
"name": "HA KNX Bridge",
|
||||
"version": "0.0.15",
|
||||
"version": "0.0.19",
|
||||
"config_flow": true,
|
||||
"documentation": "https://github.com/bahmcloud/HA-KNX-Bridge",
|
||||
"issue_tracker": "https://github.com/bahmcloud/HA-KNX-Bridge/issues",
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
76
custom_components/ha_knx_bridge/switch.py
Normal file
76
custom_components/ha_knx_bridge/switch.py
Normal file
@@ -0,0 +1,76 @@
|
||||
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 .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:
|
||||
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._entry.entry_id)},
|
||||
name="HA KNX Bridge",
|
||||
manufacturer="HA KNX Bridge",
|
||||
model="Integration",
|
||||
)
|
||||
|
||||
@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.hass.config_entries.async_update_entry(
|
||||
self._entry,
|
||||
options={**self._entry.options, CONF_PORT_ENABLED: overrides},
|
||||
)
|
||||
await self.hass.config_entries.async_reload(self._entry.entry_id)
|
||||
135
custom_components/ha_knx_bridge/translations/ar.json
Normal file
135
custom_components/ha_knx_bridge/translations/ar.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
135
custom_components/ha_knx_bridge/translations/bg.json
Normal file
135
custom_components/ha_knx_bridge/translations/bg.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
135
custom_components/ha_knx_bridge/translations/ca.json
Normal file
135
custom_components/ha_knx_bridge/translations/ca.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
135
custom_components/ha_knx_bridge/translations/cs.json
Normal file
135
custom_components/ha_knx_bridge/translations/cs.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
135
custom_components/ha_knx_bridge/translations/da.json
Normal file
135
custom_components/ha_knx_bridge/translations/da.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,71 +1,133 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "Es gibt noch keine Ports zum Entfernen."
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Optionen",
|
||||
"description": "Ports verwalten, wenn Subentries nicht verfügbar sind.",
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Binary-Sensor-Port hinzufügen",
|
||||
"add_switch": "Schalter-Port hinzufügen",
|
||||
"add_cover": "Cover-Port hinzufügen",
|
||||
"remove_port": "Port entfernen"
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Binary-Sensor-Port hinzufügen",
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary-Sensor-Entity",
|
||||
"state_address": "State-Gruppenadresse (DPT 1)",
|
||||
"state_address_invert_incoming": "Eingehend invertieren",
|
||||
"state_address_invert_outgoing": "Ausgehend invertieren"
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Schalter-Port hinzufügen",
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Schalter-Entity",
|
||||
"command_address": "Command-Gruppenadresse (DPT 1)",
|
||||
"command_address_invert_incoming": "Eingehend invertieren",
|
||||
"command_address_invert_outgoing": "Ausgehend invertieren",
|
||||
"state_address": "State-Gruppenadresse (DPT 1)",
|
||||
"state_address_invert_incoming": "Eingehend invertieren",
|
||||
"state_address_invert_outgoing": "Ausgehend invertieren"
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Cover-Port hinzufügen",
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover-Entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Auf/Ab)",
|
||||
"move_long_address_invert_incoming": "Eingehend invertieren",
|
||||
"move_long_address_invert_outgoing": "Ausgehend invertieren",
|
||||
"move_short_address": "Move short (DPT 1.007 Schritt)",
|
||||
"move_short_address_invert_incoming": "Eingehend invertieren",
|
||||
"move_short_address_invert_outgoing": "Ausgehend invertieren",
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Eingehend invertieren",
|
||||
"stop_address_invert_outgoing": "Ausgehend invertieren",
|
||||
"position_address": "Position setzen (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Eingehend invertieren",
|
||||
"position_address_invert_outgoing": "Ausgehend invertieren",
|
||||
"position_state_address": "Positionsstatus (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Eingehend invertieren",
|
||||
"position_state_address_invert_outgoing": "Ausgehend invertieren",
|
||||
"angle_address": "Tilt setzen (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Eingehend invertieren",
|
||||
"angle_address_invert_outgoing": "Ausgehend invertieren",
|
||||
"angle_state_address": "Tilt-Status (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Eingehend invertieren",
|
||||
"angle_state_address_invert_outgoing": "Ausgehend invertieren"
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Port entfernen",
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Zu entfernender Port"
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
135
custom_components/ha_knx_bridge/translations/el.json
Normal file
135
custom_components/ha_knx_bridge/translations/el.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,7 +1,8 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet."
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
@@ -11,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
@@ -20,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": {
|
||||
@@ -32,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": {
|
||||
@@ -59,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": {
|
||||
@@ -67,6 +72,63 @@
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
135
custom_components/ha_knx_bridge/translations/es.json
Normal file
135
custom_components/ha_knx_bridge/translations/es.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
135
custom_components/ha_knx_bridge/translations/et.json
Normal file
135
custom_components/ha_knx_bridge/translations/et.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
135
custom_components/ha_knx_bridge/translations/fi.json
Normal file
135
custom_components/ha_knx_bridge/translations/fi.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
135
custom_components/ha_knx_bridge/translations/fr.json
Normal file
135
custom_components/ha_knx_bridge/translations/fr.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
135
custom_components/ha_knx_bridge/translations/he.json
Normal file
135
custom_components/ha_knx_bridge/translations/he.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
135
custom_components/ha_knx_bridge/translations/hi.json
Normal file
135
custom_components/ha_knx_bridge/translations/hi.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
135
custom_components/ha_knx_bridge/translations/hr.json
Normal file
135
custom_components/ha_knx_bridge/translations/hr.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
135
custom_components/ha_knx_bridge/translations/hu.json
Normal file
135
custom_components/ha_knx_bridge/translations/hu.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
135
custom_components/ha_knx_bridge/translations/id.json
Normal file
135
custom_components/ha_knx_bridge/translations/id.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
135
custom_components/ha_knx_bridge/translations/is.json
Normal file
135
custom_components/ha_knx_bridge/translations/is.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
135
custom_components/ha_knx_bridge/translations/it.json
Normal file
135
custom_components/ha_knx_bridge/translations/it.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
135
custom_components/ha_knx_bridge/translations/ja.json
Normal file
135
custom_components/ha_knx_bridge/translations/ja.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
135
custom_components/ha_knx_bridge/translations/ko.json
Normal file
135
custom_components/ha_knx_bridge/translations/ko.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
135
custom_components/ha_knx_bridge/translations/lt.json
Normal file
135
custom_components/ha_knx_bridge/translations/lt.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
135
custom_components/ha_knx_bridge/translations/lv.json
Normal file
135
custom_components/ha_knx_bridge/translations/lv.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
135
custom_components/ha_knx_bridge/translations/nb.json
Normal file
135
custom_components/ha_knx_bridge/translations/nb.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
135
custom_components/ha_knx_bridge/translations/nl.json
Normal file
135
custom_components/ha_knx_bridge/translations/nl.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
135
custom_components/ha_knx_bridge/translations/pl.json
Normal file
135
custom_components/ha_knx_bridge/translations/pl.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
135
custom_components/ha_knx_bridge/translations/pt-BR.json
Normal file
135
custom_components/ha_knx_bridge/translations/pt-BR.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
135
custom_components/ha_knx_bridge/translations/pt.json
Normal file
135
custom_components/ha_knx_bridge/translations/pt.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
135
custom_components/ha_knx_bridge/translations/ro.json
Normal file
135
custom_components/ha_knx_bridge/translations/ro.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
135
custom_components/ha_knx_bridge/translations/ru.json
Normal file
135
custom_components/ha_knx_bridge/translations/ru.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
135
custom_components/ha_knx_bridge/translations/sk.json
Normal file
135
custom_components/ha_knx_bridge/translations/sk.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
135
custom_components/ha_knx_bridge/translations/sl.json
Normal file
135
custom_components/ha_knx_bridge/translations/sl.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
135
custom_components/ha_knx_bridge/translations/sv.json
Normal file
135
custom_components/ha_knx_bridge/translations/sv.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
135
custom_components/ha_knx_bridge/translations/th.json
Normal file
135
custom_components/ha_knx_bridge/translations/th.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
135
custom_components/ha_knx_bridge/translations/tr.json
Normal file
135
custom_components/ha_knx_bridge/translations/tr.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
135
custom_components/ha_knx_bridge/translations/uk.json
Normal file
135
custom_components/ha_knx_bridge/translations/uk.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
135
custom_components/ha_knx_bridge/translations/vi.json
Normal file
135
custom_components/ha_knx_bridge/translations/vi.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
135
custom_components/ha_knx_bridge/translations/zh-Hans.json
Normal file
135
custom_components/ha_knx_bridge/translations/zh-Hans.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
135
custom_components/ha_knx_bridge/translations/zh-Hant.json
Normal file
135
custom_components/ha_knx_bridge/translations/zh-Hant.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"title": "HA KNX Bridge Options",
|
||||
"description": "Manage ports when subentries are unavailable.",
|
||||
"menu_options": {
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
"add_binary_sensor": {
|
||||
"title": "Add Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
"title": "Add Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
"title": "Add Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_incoming": "Invert incoming",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_incoming": "Invert incoming",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_incoming": "Invert incoming",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_incoming": "Invert incoming",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_incoming": "Invert incoming",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_incoming": "Invert incoming",
|
||||
"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",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user