mirror of
https://github.com/openhab/openhab-addons.git
synced 2025-01-10 23:22:02 +01:00
[shelly] Prepare for CrowdIn translations, bug fixes (#12822)
* Prepare for CrowdIn translations, includes translation of binding settings; fix #12815 endless initialization; fix #12535 invalid log messages Signed-off-by: markus7017 <markus7017@gmail.com> Signed-off-by: Markus Michels <markus7017@gmail.com>
This commit is contained in:
parent
1bb4500da1
commit
5291d7ddc9
@ -106,6 +106,9 @@ public class ShellyThingCreator {
|
||||
}
|
||||
|
||||
public static String getThingType(String hostname, String deviceType, String mode) {
|
||||
if (THING_TYPE_SHELLYPROTECTED_STR.equals(hostname)) {
|
||||
return THING_TYPE_SHELLYPROTECTED_STR;
|
||||
}
|
||||
String name = hostname.toLowerCase();
|
||||
String type = substringBefore(name, "-").toLowerCase();
|
||||
String devid = substringAfterLast(name, "-");
|
||||
|
@ -539,8 +539,7 @@ public class ShellyBaseHandler extends BaseThingHandler implements ShellyDeviceL
|
||||
@Override
|
||||
public void setThingOffline(ThingStatusDetail detail, String messageKey) {
|
||||
if (!isThingOffline()) {
|
||||
logger.debug("{}: Thing goes OFFLINE: {}", thingName, messages.get(messageKey));
|
||||
updateStatus(ThingStatus.OFFLINE, detail, "@text/" + messageKey);
|
||||
updateStatus(ThingStatus.OFFLINE, detail, messages.get(messageKey));
|
||||
watchdog = 0;
|
||||
channelsCreated = false; // check for new channels after devices gets re-initialized (e.g. new
|
||||
}
|
||||
@ -893,7 +892,6 @@ public class ShellyBaseHandler extends BaseThingHandler implements ShellyDeviceL
|
||||
// If the device is password protected the API doesn't provide settings to the device settings
|
||||
logger.warn("{}: {}", thingName, messages.get("init.protected"));
|
||||
setThingOffline(ThingStatusDetail.CONFIGURATION_ERROR, "offline.conf-error-access-denied");
|
||||
changeThingType(THING_TYPE_SHELLYPROTECTED_STR, "");
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
|
@ -3,8 +3,8 @@
|
||||
xmlns:binding="https://openhab.org/schemas/binding/v1.0.0"
|
||||
xsi:schemaLocation="https://openhab.org/schemas/binding/v1.0.0 https://openhab.org/schemas/binding-1.0.0.xsd">
|
||||
|
||||
<name>Shelly Binding</name>
|
||||
<description>This binding supports the Shelly series of devices.</description>
|
||||
<name>@text/binding.shelly.name</name>
|
||||
<description>@text/binding.shelly.description</description>
|
||||
<author>Markus Michels</author>
|
||||
|
||||
<config-description>
|
||||
|
@ -6,46 +6,46 @@
|
||||
|
||||
<config-description uri="thing-type:shelly:relay">
|
||||
<parameter name="deviceIp" type="text" required="true">
|
||||
<label>Device IP Address</label>
|
||||
<description>IP-Address of the Shelly device.</description>
|
||||
<label>@text/thing-type.config.shelly.deviceIp.label</label>
|
||||
<description>@text/thing-type.config.shelly.deviceIp.description</description>
|
||||
<context>network-address</context>
|
||||
</parameter>
|
||||
<parameter name="userId" type="text" required="false">
|
||||
<label>User</label>
|
||||
<description>User ID for HTTP API access.</description>
|
||||
<label>@text/thing-type.config.shelly.userId.label</label>
|
||||
<description>@text/thing-type.config.shelly.userId.description</description>
|
||||
</parameter>
|
||||
<parameter name="password" type="text" required="false">
|
||||
<label>Password</label>
|
||||
<description>Password for HTTP API access.</description>
|
||||
<label>@text/thing-type.config.shelly.password.label</label>
|
||||
<description>@text/thing-type.config.shelly.password.description</description>
|
||||
<context>password</context>
|
||||
</parameter>
|
||||
<parameter name="eventsButton" type="boolean" required="false">
|
||||
<label>Enable Button Events</label>
|
||||
<description>True if the binding should register to get the Buttons Events.</description>
|
||||
<label>@text/thing-type.config.shelly.eventsButton.label</label>
|
||||
<description>@text/thing-type.config.shelly.eventsButton.description</description>
|
||||
<advanced>true</advanced>
|
||||
<default>false</default>
|
||||
</parameter>
|
||||
<parameter name="eventsSwitch" type="boolean" required="false">
|
||||
<label>Enable Switch Events (Out on/off)</label>
|
||||
<description>True if the binding should register to get the Relay Switch Events.</description>
|
||||
<label>@text/thing-type.config.shelly.eventsSwitch.label</label>
|
||||
<description>@text/thing-type.config.shelly.eventsSwitch.description</description>
|
||||
<advanced>true</advanced>
|
||||
<default>false</default>
|
||||
</parameter>
|
||||
<parameter name="eventsPush" type="boolean" required="false">
|
||||
<label>Enable Push Events (short/long)</label>
|
||||
<description>True if the binding should register to get the Short/Long Push Events.</description>
|
||||
<label>@text/thing-type.config.shelly.eventsPush.label</label>
|
||||
<description>@text/thing-type.config.shelly.eventsPush.description</description>
|
||||
<advanced>true</advanced>
|
||||
<default>false</default>
|
||||
</parameter>
|
||||
<parameter name="eventsCoIoT" type="boolean" required="false">
|
||||
<label>Enable CoIoT Events</label>
|
||||
<description>If enabled, the CoAP protocol is used to receive status updates.</description>
|
||||
<advanced>true</advanced>
|
||||
<label>@text/thing-type.config.shelly.eventsCoIoT.label</label>
|
||||
<description>@text/thing-type.config.shelly.eventsCoIoT.description</description>
|
||||
<default>true</default>
|
||||
<advanced>true</advanced>
|
||||
</parameter>
|
||||
<parameter name="updateInterval" type="integer" min="10" required="true" unit="s">
|
||||
<label>General Update Interval</label>
|
||||
<description>Interval to query an update from the device.</description>
|
||||
<label>@text/thing-type.config.shelly.updateInterval.label</label>
|
||||
<description>@text/thing-type.config.shelly.updateInterval.description</description>
|
||||
<default>60</default>
|
||||
<unitLabel>seconds</unitLabel>
|
||||
<advanced>true</advanced>
|
||||
@ -54,85 +54,85 @@
|
||||
|
||||
<config-description uri="thing-type:shelly:roller">
|
||||
<parameter name="deviceIp" type="text" required="true">
|
||||
<label>Device IP Address</label>
|
||||
<description>IP-Address of the Shelly device.</description>
|
||||
<label>@text/thing-type.config.shelly.deviceIp.label</label>
|
||||
<description>@text/thing-type.config.shelly.deviceIp.description</description>
|
||||
<context>network-address</context>
|
||||
</parameter>
|
||||
<parameter name="userId" type="text" required="false">
|
||||
<label>User</label>
|
||||
<description>User ID for HTTP API access.</description>
|
||||
<label>@text/thing-type.config.shelly.userId.label</label>
|
||||
<description>@text/thing-type.config.shelly.userId.description</description>
|
||||
</parameter>
|
||||
<parameter name="password" type="text" required="false">
|
||||
<label>Password</label>
|
||||
<description>Password for HTTP API access.</description>
|
||||
<label>@text/thing-type.config.shelly.password.label</label>
|
||||
<description>@text/thing-type.config.shelly.password.description</description>
|
||||
<context>password</context>
|
||||
</parameter>
|
||||
<parameter name="favoriteUP" type="integer" min="0" max="4" required="false">
|
||||
<label>Favorite Id for UP</label>
|
||||
<description>Which position favorite should be used for UP (0=none, favorites are defined in the Shelly App)</description>
|
||||
<label>@text/thing-type.config.shelly.roller.favoriteUP.label</label>
|
||||
<description>@text/thing-type.config.shelly.roller.favoriteUP.description</description>
|
||||
<default>0</default>
|
||||
</parameter>
|
||||
<parameter name="favoriteDOWN" type="integer" min="0" max="4" required="false">
|
||||
<label>Favorite Id for DOWN</label>
|
||||
<description>Which position favorite should be used for DOWN (0=none, favorites are defined in the Shelly App)</description>
|
||||
<label>@text/thing-type.config.shelly.roller.favoriteDOWN.label</label>
|
||||
<description>@text/thing-type.config.shelly.roller.favoriteDOWN.description</description>
|
||||
<default>0</default>
|
||||
</parameter>
|
||||
<parameter name="eventsRoller" type="boolean" required="false">
|
||||
<label>Enable Roller Events (Roller only)</label>
|
||||
<description>True if the binding should register to get Roller Events.</description>
|
||||
<label>@text/thing-type.config.shelly.roller.eventsRoller.label)</label>
|
||||
<description>@text/thing-type.config.shelly.roller.eventsRoller.description</description>
|
||||
<advanced>true</advanced>
|
||||
<default>false</default>
|
||||
</parameter>
|
||||
<parameter name="eventsCoIoT" type="boolean" required="false">
|
||||
<label>Enable CoIoT Events</label>
|
||||
<description>If enabled, the CoAP protocol is used to receive status updates.</description>
|
||||
<advanced>true</advanced>
|
||||
<label>@text/thing-type.config.shelly.eventsCoIoT.label</label>
|
||||
<description>@text/thing-type.config.shelly.eventsCoIoT.description</description>
|
||||
<default>true</default>
|
||||
<advanced>true</advanced>
|
||||
</parameter>
|
||||
<parameter name="updateInterval" type="integer" min="10" required="true" unit="s">
|
||||
<label>General Update Interval</label>
|
||||
<description>Interval to query an update from the device.</description>
|
||||
<label>@text/thing-type.config.shelly.updateInterval.label</label>
|
||||
<description>@text/thing-type.config.shelly.updateInterval.description</description>
|
||||
<default>60</default>
|
||||
<unitLabel>seconds</unitLabel>
|
||||
<advanced>true</advanced>
|
||||
</parameter>
|
||||
</config-description>
|
||||
|
||||
<config-description uri="thing-type:shelly:dimmer">
|
||||
<parameter name="deviceIp" type="text" required="true">
|
||||
<label>Device IP Address</label>
|
||||
<description>IP-Address of the Shelly device.</description>
|
||||
<label>@text/thing-type.config.shelly.deviceIp.label</label>
|
||||
<description>@text/thing-type.config.shelly.deviceIp.description</description>
|
||||
<context>network-address</context>
|
||||
</parameter>
|
||||
<parameter name="userId" type="text" required="false">
|
||||
<label>User</label>
|
||||
<description>User ID for HTTP API access.</description>
|
||||
<label>@text/thing-type.config.shelly.userId.label</label>
|
||||
<description>@text/thing-type.config.shelly.userId.description</description>
|
||||
</parameter>
|
||||
<parameter name="password" type="text" required="false">
|
||||
<label>Password</label>
|
||||
<description>Password for HTTP API access.</description>
|
||||
<label>@text/thing-type.config.shelly.password.label</label>
|
||||
<description>@text/thing-type.config.shelly.password.description</description>
|
||||
<context>password</context>
|
||||
</parameter>
|
||||
<parameter name="brightnessAutoOn" type="boolean" required="false">
|
||||
<label>Brightness Auto-ON</label>
|
||||
<description>true: Turn device ON if brightness above 0 is set; false: don't touch power status when brightness is
|
||||
set.</description>
|
||||
<label>@text/thing-type.config.shelly.light.brightnessAutoOn.label</label>
|
||||
<description>@text/thing-type.config.shelly.light.brightnessAutoOn.description</description>
|
||||
<default>true</default>
|
||||
</parameter>
|
||||
<parameter name="eventsButton" type="boolean" required="false">
|
||||
<label>Enable Button Events</label>
|
||||
<description>True if the binding should register to get the Buttons Events.</description>
|
||||
<label>@text/thing-type.config.shelly.eventsButton.label</label>
|
||||
<description>@text/thing-type.config.shelly.eventsButton.description</description>
|
||||
<advanced>true</advanced>
|
||||
<default>false</default>
|
||||
</parameter>
|
||||
<parameter name="eventsSwitch" type="boolean" required="false">
|
||||
<label>Enable Switch Events (Out on/off)</label>
|
||||
<description>True if the binding should register to get the Relay Switch Events.</description>
|
||||
<label>@text/thing-type.config.shelly.eventsSwitch.label</label>
|
||||
<description>@text/thing-type.config.shelly.eventsSwitch.description</description>
|
||||
<advanced>true</advanced>
|
||||
<default>false</default>
|
||||
</parameter>
|
||||
<parameter name="eventsPush" type="boolean" required="false">
|
||||
<label>Enable Push Events (short/long)</label>
|
||||
<description>True if the binding should register to get the Short/Long Push Events.</description>
|
||||
<label>@text/thing-type.config.shelly.eventsPush.label</label>
|
||||
<description>@text/thing-type.config.shelly.eventsPush.description</description>
|
||||
<advanced>true</advanced>
|
||||
<default>false</default>
|
||||
</parameter>
|
||||
@ -143,8 +143,8 @@
|
||||
<default>true</default>
|
||||
</parameter>
|
||||
<parameter name="updateInterval" type="integer" min="10" required="true" unit="s">
|
||||
<label>General Update Interval</label>
|
||||
<description>Interval to query an update from the device.</description>
|
||||
<label>@text/thing-type.config.shelly.updateInterval.label</label>
|
||||
<description>@text/thing-type.config.shelly.updateInterval.description</description>
|
||||
<default>60</default>
|
||||
<unitLabel>seconds</unitLabel>
|
||||
<advanced>true</advanced>
|
||||
@ -153,39 +153,39 @@
|
||||
|
||||
<config-description uri="thing-type:shelly:light">
|
||||
<parameter name="deviceIp" type="text" required="true">
|
||||
<label>Device IP Address</label>
|
||||
<description>IP-Address of the Shelly device.</description>
|
||||
<label>@text/thing-type.config.shelly.deviceIp.label</label>
|
||||
<description>@text/thing-type.config.shelly.deviceIp.description</description>
|
||||
<context>network-address</context>
|
||||
</parameter>
|
||||
<parameter name="userId" type="text" required="false">
|
||||
<label>User</label>
|
||||
<description>User ID for HTTP API access.</description>
|
||||
<label>@text/thing-type.config.shelly.userId.label</label>
|
||||
<description>@text/thing-type.config.shelly.userId.description</description>
|
||||
</parameter>
|
||||
<parameter name="password" type="text" required="false">
|
||||
<label>Password</label>
|
||||
<description>Password for HTTP API access.</description>
|
||||
<label>@text/thing-type.config.shelly.password.label</label>
|
||||
<description>@text/thing-type.config.shelly.password.description</description>
|
||||
<context>password</context>
|
||||
</parameter>
|
||||
<parameter name="brightnessAutoOn" type="boolean" required="false">
|
||||
<label>Brightness Auto-ON</label>
|
||||
<description>true: Turn device ON if brightness > 0 is set; false: don't touch power status when brightness is set.</description>
|
||||
<label>@text/thing-type.config.shelly.light.brightnessAutoOn.label</label>
|
||||
<description>@text/thing-type.config.shelly.light.brightnessAutoOn.description</description>
|
||||
<default>true</default>
|
||||
</parameter>
|
||||
<parameter name="eventsSwitch" type="boolean" required="false">
|
||||
<label>Enable Switch Events (Out on/off)</label>
|
||||
<description>True if the binding should register to get the Relay Switch Events.</description>
|
||||
<label>@text/thing-type.config.shelly.eventsSwitch.label</label>
|
||||
<description>@text/thing-type.config.shelly.eventsSwitch.description</description>
|
||||
<advanced>true</advanced>
|
||||
<default>false</default>
|
||||
</parameter>
|
||||
<parameter name="eventsCoIoT" type="boolean" required="false">
|
||||
<label>Enable CoIoT Events</label>
|
||||
<description>If enabled, the CoAP protocol is used to receive status updates.</description>
|
||||
<advanced>true</advanced>
|
||||
<label>@text/thing-type.config.shelly.eventsCoIoT.label</label>
|
||||
<description>@text/thing-type.config.shelly.eventsCoIoT.description</description>
|
||||
<default>true</default>
|
||||
<advanced>true</advanced>
|
||||
</parameter>
|
||||
<parameter name="updateInterval" type="integer" min="10" required="true" unit="s">
|
||||
<label>General Update Interval</label>
|
||||
<description>Interval to query an update from the device.</description>
|
||||
<label>@text/thing-type.config.shelly.updateInterval.label</label>
|
||||
<description>@text/thing-type.config.shelly.updateInterval.description</description>
|
||||
<default>60</default>
|
||||
<unitLabel>seconds</unitLabel>
|
||||
<advanced>true</advanced>
|
||||
@ -194,33 +194,33 @@
|
||||
|
||||
<config-description uri="thing-type:shelly:rgbw2">
|
||||
<parameter name="deviceIp" type="text" required="true">
|
||||
<label>Device IP Address</label>
|
||||
<description>IP-Address of the Shelly device.</description>
|
||||
<label>@text/thing-type.config.shelly.deviceIp.label</label>
|
||||
<description>@text/thing-type.config.shelly.deviceIp.description</description>
|
||||
<context>network-address</context>
|
||||
</parameter>
|
||||
<parameter name="userId" type="text" required="false">
|
||||
<label>User</label>
|
||||
<description>User ID for HTTP API access.</description>
|
||||
<label>@text/thing-type.config.shelly.userId.label</label>
|
||||
<description>@text/thing-type.config.shelly.userId.description</description>
|
||||
</parameter>
|
||||
<parameter name="password" type="text" required="false">
|
||||
<label>Password</label>
|
||||
<description>Password for HTTP API access.</description>
|
||||
<label>@text/thing-type.config.shelly.password.label</label>
|
||||
<description>@text/thing-type.config.shelly.password.description</description>
|
||||
<context>password</context>
|
||||
</parameter>
|
||||
<parameter name="brightnessAutoOn" type="boolean" required="false">
|
||||
<label>Brightness Auto-ON</label>
|
||||
<description>true: Turn device ON if brightness > 0 is set; false: don't touch power status when brightness is set.</description>
|
||||
<label>@text/thing-type.config.shelly.light.brightnessAutoOn.label</label>
|
||||
<description>@text/thing-type.config.shelly.light.brightnessAutoOn.description</description>
|
||||
<default>true</default>
|
||||
</parameter>
|
||||
<parameter name="eventsCoIoT" type="boolean" required="false">
|
||||
<label>Enable CoIoT Events</label>
|
||||
<description>If enabled, the CoAP protocol is used to receive status updates.</description>
|
||||
<advanced>true</advanced>
|
||||
<label>@text/thing-type.config.shelly.eventsCoIoT.label</label>
|
||||
<description>@text/thing-type.config.shelly.eventsCoIoT.description</description>
|
||||
<default>true</default>
|
||||
<advanced>true</advanced>
|
||||
</parameter>
|
||||
<parameter name="updateInterval" type="integer" min="10" required="true" unit="s">
|
||||
<label>General Update Interval</label>
|
||||
<description>Interval to query an update from the device.</description>
|
||||
<label>@text/thing-type.config.shelly.updateInterval.label</label>
|
||||
<description>@text/thing-type.config.shelly.updateInterval.description</description>
|
||||
<default>60</default>
|
||||
<unitLabel>seconds</unitLabel>
|
||||
<advanced>true</advanced>
|
||||
@ -230,40 +230,40 @@
|
||||
|
||||
<config-description uri="thing-type:shelly:battery">
|
||||
<parameter name="deviceIp" type="text" required="true">
|
||||
<label>Device IP Address</label>
|
||||
<description>IP-Address of the Shelly device.</description>
|
||||
<label>@text/thing-type.config.shelly.deviceIp.label</label>
|
||||
<description>@text/thing-type.config.shelly.deviceIp.description</description>
|
||||
<context>network-address</context>
|
||||
</parameter>
|
||||
<parameter name="userId" type="text" required="false">
|
||||
<label>User ID</label>
|
||||
<description>User ID for HTTP API access.</description>
|
||||
<label>@text/thing-type.config.shelly.userId.label</label>
|
||||
<description>@text/thing-type.config.shelly.userId.description</description>
|
||||
</parameter>
|
||||
<parameter name="password" type="text" required="false">
|
||||
<label>Password</label>
|
||||
<description>Password for HTTP API access.</description>
|
||||
<label>@text/thing-type.config.shelly.password.label</label>
|
||||
<description>@text/thing-type.config.shelly.password.description</description>
|
||||
<context>password</context>
|
||||
</parameter>
|
||||
<parameter name="lowBattery" type="integer" required="false">
|
||||
<label>Low Battery Threshold</label>
|
||||
<description>Threshold for the battery level, alert will be signed when battery level is below. Default: 20%</description>
|
||||
<label>@text/thing-type.config.shelly.battery.lowBattery.label</label>
|
||||
<description>@text/thing-type.config.shelly.battery.lowBattery.description</description>
|
||||
<default>20</default>
|
||||
<unitLabel>%</unitLabel>
|
||||
</parameter>
|
||||
<parameter name="eventsSensorReport" type="boolean" required="false">
|
||||
<label>Enable Sensor Events</label>
|
||||
<description>True: Register event URL for sensor updates.</description>
|
||||
<label>@text/thing-type.config.shelly.eventsSensorReport.label</label>
|
||||
<description>@text/thing-type.config.shelly.eventsSensorReport.description</description>
|
||||
<advanced>true</advanced>
|
||||
<default>false</default>
|
||||
</parameter>
|
||||
<parameter name="eventsCoIoT" type="boolean" required="false">
|
||||
<label>Enable CoIoT Events</label>
|
||||
<description>If enabled, the CoAP protocol is used to receive status updates.</description>
|
||||
<advanced>true</advanced>
|
||||
<label>@text/thing-type.config.shelly.eventsCoIoT.label</label>
|
||||
<description>@text/thing-type.config.shelly.eventsCoIoT.description</description>
|
||||
<default>true</default>
|
||||
<advanced>true</advanced>
|
||||
</parameter>
|
||||
<parameter name="updateInterval" type="integer" min="60" required="true" unit="s">
|
||||
<label>General Update Interval</label>
|
||||
<description>Interval to query an update from the device.</description>
|
||||
<label>@text/thing-type.config.shelly.updateInterval.label</label>
|
||||
<description>@text/thing-type.config.shelly.updateInterval.description</description>
|
||||
<default>900</default>
|
||||
<unitLabel>seconds</unitLabel>
|
||||
<advanced>true</advanced>
|
||||
@ -272,34 +272,34 @@
|
||||
|
||||
<config-description uri="thing-type:shelly:basic">
|
||||
<parameter name="deviceIp" type="text" required="true">
|
||||
<label>Device IP Address</label>
|
||||
<description>IP-Address of the Shelly device.</description>
|
||||
<label>@text/thing-type.config.shelly.deviceIp.label</label>
|
||||
<description>@text/thing-type.config.shelly.deviceIp.description</description>
|
||||
<context>network-address</context>
|
||||
</parameter>
|
||||
<parameter name="userId" type="text" required="false">
|
||||
<label>User ID</label>
|
||||
<description>User ID for HTTP API access.</description>
|
||||
<label>@text/thing-type.config.shelly.userId.label</label>
|
||||
<description>@text/thing-type.config.shelly.userId.description</description>
|
||||
</parameter>
|
||||
<parameter name="password" type="text" required="false">
|
||||
<label>Password</label>
|
||||
<description>Password for HTTP API access.</description>
|
||||
<label>@text/thing-type.config.shelly.password.label</label>
|
||||
<description>@text/thing-type.config.shelly.password.description</description>
|
||||
<context>password</context>
|
||||
</parameter>
|
||||
<parameter name="eventsSensorReport" type="boolean" required="false">
|
||||
<label>Enable Sensor Events</label>
|
||||
<description>True: Register event URL for sensor updates.</description>
|
||||
<label>@text/thing-type.config.shelly.eventsSensorReport.label</label>
|
||||
<description>@text/thing-type.config.shelly.eventsSensorReport.description</description>
|
||||
<advanced>true</advanced>
|
||||
<default>false</default>
|
||||
</parameter>
|
||||
<parameter name="eventsCoIoT" type="boolean" required="false">
|
||||
<label>Enable CoIoT Events</label>
|
||||
<description>If enabled, the CoAP protocol is used to receive status updates.</description>
|
||||
<label>@text/thing-type.config.shelly.eventsCoIoT.label</label>
|
||||
<description>@text/thing-type.config.shelly.eventsCoIoT.description</description>
|
||||
<advanced>true</advanced>
|
||||
<default>true</default>
|
||||
</parameter>
|
||||
<parameter name="updateInterval" type="integer" min="10" required="true" unit="s">
|
||||
<label>Update Interval</label>
|
||||
<description>Interval to query an update from the device.</description>
|
||||
<label>@text/thing-type.config.shelly.updateInterval.label</label>
|
||||
<description>@text/thing-type.config.shelly.updateInterval.description</description>
|
||||
<default>60</default>
|
||||
<unitLabel>seconds</unitLabel>
|
||||
<advanced>true</advanced>
|
||||
|
@ -47,7 +47,9 @@ message.roller.calibrating = Device is not calibrated, use Shelly App to perform
|
||||
message.roller.favmissing = Roller position favorites are not supported by installed firmware or not configured in the Shelly App
|
||||
|
||||
# thing types - descriptions only
|
||||
thing-type.shelly.shellydevice.label = Password protected Shelly Device
|
||||
thing-type.shelly.shellydevice.description = A password protected or unknown device
|
||||
thing-type.shelly.shellyunknown.label = Unknown Shelly Device
|
||||
thing-type.shelly.shellyunknown.description = This device is currently not supported
|
||||
thing-type.shelly.shelly1.description = Shelly 1 (Single Relay Switch)
|
||||
thing-type.shelly.shelly1l.description = Shelly 1L (Single Relay Switch, no Neutral required)
|
||||
@ -85,358 +87,42 @@ thing-type.shelly.shellytrv.description = Shelly TRV (Radiator value, battery po
|
||||
thing-type.shelly.shellyix3.description = Shelly ix3 (Activation Device with 3 inputs)
|
||||
|
||||
# thing config - shellydevice
|
||||
thing-type.config.shellydevice.userId.label = User ID
|
||||
thing-type.config.shellydevice.userId.description = User ID for API access
|
||||
thing-type.config.shellydevice.password.label = Password
|
||||
thing-type.config.shellydevice.password.description = Password for API access
|
||||
thing-type.config.shellydevice.deviceIp.label = IP Address
|
||||
thing-type.config.shellydevice.deviceIp.description = IP Address of the Shelly device
|
||||
thing-type.config.shelly-relay.deviceIp.label = IP Address
|
||||
thing-type.config.shelly.deviceIp.label = IP Address
|
||||
thing-type.config.shelly.deviceIp.description = IP Address of the Shelly device
|
||||
thing-type.config.shelly.userId.label = User ID
|
||||
thing-type.config.shelly.userId.description = User ID for API access
|
||||
thing-type.config.shelly.password.label = Password
|
||||
thing-type.config.shelly.password.description = Password for API access
|
||||
thing-type.config.shelly.updateInterval.label = Status Interval
|
||||
thing-type.config.shelly.updateInterval.description = Interval for the device status update
|
||||
thing-type.config.shelly.eventsButton.label = Button Events
|
||||
thing-type.config.shelly.eventsButton.description = Activates the Button Action URLS
|
||||
thing-type.config.shelly.eventsPush.label = Push Events
|
||||
thing-type.config.shelly.eventsPush.description = Activates the Push Button Action URLS
|
||||
thing-type.config.shelly.eventsSwitch.label = Output Events
|
||||
thing-type.config.shelly.eventsSwitch.description = Activates the Output Action URLS
|
||||
thing-type.config.shelly.eventsCoIoT.label = Activate CoIoT
|
||||
thing-type.config.shelly.eventsCoIoT.description = Activates the CoIoT-Protocol (CoAP based)
|
||||
thing-type.config.shelly.eventsSensorReport.label = Enable Sensor Events
|
||||
thing-type.config.shelly.eventsSensorReport.description = True: Register event URL for sensor updates.
|
||||
|
||||
# thing config - relay
|
||||
thing-type.config.shelly.relay.userId.label = User ID
|
||||
thing-type.config.shelly.relay.userId.description = User ID for API access
|
||||
thing-type.config.shelly.relay.password.label = Password
|
||||
thing-type.config.shelly.relay.password.description = Password for API access
|
||||
thing-type.config.shelly.relay.deviceIp.label = IP Address
|
||||
thing-type.config.shelly.relay.deviceIp.description = IP Address of the Shelly device
|
||||
thing-type.config.shelly.relay.eventsButton.label = Button Events
|
||||
thing-type.config.shelly.relay.eventsButton.description = Activates the Button Action URLS
|
||||
thing-type.config.shelly.relay.eventsPush.label = Push Events
|
||||
thing-type.config.shelly.relay.eventsPush.description = Activates the Push Button Action URLS
|
||||
thing-type.config.shelly.relay.eventsSwitch.label = Output Events
|
||||
thing-type.config.shelly.relay.eventsSwitch.description = Activates the Output Action URLS
|
||||
thing-type.config.shelly.relay.eventsCoIoT.label = Activate CoIoT
|
||||
thing-type.config.shelly.relay.eventsCoIoT.description = Activates the CoIoT-Protocol (CoAP based)
|
||||
thing-type.config.shelly.relay.updateInterval.label = Status Interval
|
||||
thing-type.config.shelly.relay.updateInterval.description = Interval for the device status update
|
||||
|
||||
# thing config - roller
|
||||
thing-type.config.shelly.roller.userId.label = User ID
|
||||
thing-type.config.shelly.roller.userId.description = User ID for API access
|
||||
thing-type.config.shelly.roller.password.label = Password
|
||||
thing-type.config.shelly.roller.password.description = Password for API access
|
||||
thing-type.config.shelly.roller.favoriteUP.label = Favorite ID for UP
|
||||
thing-type.config.shelly.roller.favoriteUP.description = Specifies the favorite ID that is used during the command UP on the roller#control channel (use the Shelly App to configure favorites)
|
||||
thing-type.config.shelly.roller.favoriteDOWN.label = Favorite ID for DOWN
|
||||
thing-type.config.shelly.roller.favoriteDOWN.description = Specifies the favorite ID that is used during the command DOWN on the roller#control channel (use the Shelly App to configure favorites)
|
||||
thing-type.config.shelly.roller.deviceIp.label = IP Address
|
||||
thing-type.config.shelly.roller.deviceIp.description = IP Address of the Shelly device
|
||||
thing-type.config.shelly.roller.eventsRoller.label = Roller Events
|
||||
thing-type.config.shelly.roller.eventsRoller.description = Activates the Roller Action URLS
|
||||
thing-type.config.shelly.roller.eventsCoIoT.label = Activate CoIoT
|
||||
thing-type.config.shelly.roller.eventsCoIoT.description = Activates the CoIoT-Protocol (CoAP based)
|
||||
thing-type.config.shelly.roller.updateInterval.label = Status Interval
|
||||
thing-type.config.shelly.roller.updateInterval.description = Interval for the device status update
|
||||
|
||||
# thing config - dimmer
|
||||
thing-type.config.shelly.dimmer.userId.label = User ID
|
||||
thing-type.config.shelly.dimmer.userId.description = User ID for API access
|
||||
thing-type.config.shelly.dimmer.password.label = Password
|
||||
thing-type.config.shelly.dimmer.password.description = Password for API access
|
||||
thing-type.config.shelly.dimmer.deviceIp.label = IP Address
|
||||
thing-type.config.shelly.dimmer.deviceIp.description = IP Address of the Shelly device
|
||||
thing-type.config.shelly.dimmer.brightnessAutoOn.label = Brightness Auto-ON
|
||||
thing-type.config.shelly.dimmer.brightnessAutoOn.description = ON: Light is switched on when a brightness value greater than 0 is set; OFF: Brightness is set, but the device is not switched on
|
||||
thing-type.config.shelly.dimmer.eventsButton.label = Button Events
|
||||
thing-type.config.shelly.dimmer.eventsButton.description = Activates the Button Action URLS
|
||||
thing-type.config.shelly.dimmer.eventsPush.label = Push Events
|
||||
thing-type.config.shelly.dimmer.eventsPush.description = Activates the Push Button Action URLS
|
||||
thing-type.config.shelly.dimmer.eventsSwitch.label = Output Events
|
||||
thing-type.config.shelly.dimmer.eventsSwitch.description = Activates the Output Action URLS
|
||||
thing-type.config.shelly.dimmer.eventsCoIoT.label = Activate CoIoT
|
||||
thing-type.config.shelly.dimmer.eventsCoIoT.description = Activates the CoIoT-Protocol (CoAP based)
|
||||
thing-type.config.shelly.dimmer.updateInterval.label = Status Interval
|
||||
thing-type.config.shelly.dimmer.updateInterval.description = Interval for the device status update
|
||||
|
||||
# thing config - light
|
||||
thing-type.config.shelly.light.userId.label = User ID
|
||||
thing-type.config.shelly.light.userId.description = User ID for API access
|
||||
thing-type.config.shelly.light.password.label = Password
|
||||
thing-type.config.shelly.light.password.description = Password for API access
|
||||
thing-type.config.shelly.light.deviceIp.label = IP Address
|
||||
thing-type.config.shelly.light.deviceIp.description = IP Address of the Shelly device
|
||||
thing-type.config.shelly.light.brightnessAutoOn.label = Brightness Auto-ON
|
||||
thing-type.config.shelly.light.brightnessAutoOn.description = ON: Light is switched on when a brightness value greater than 0 is set; OFF: Brightness is set, but the device is not switched on
|
||||
thing-type.config.shelly.light.eventsButton.label = Button Events
|
||||
thing-type.config.shelly.light.eventsButton.description = Activates the Button Action URLS
|
||||
thing-type.config.shelly.light.eventsPush.label = Push Events
|
||||
thing-type.config.shelly.light.eventsPush.description = Activates the Push Button Action URLS
|
||||
thing-type.config.shelly.light.eventsSwitch.label = Output Events
|
||||
thing-type.config.shelly.light.eventsSwitch.description = Activates the Output Action URLS
|
||||
thing-type.config.shelly.light.eventsCoIoT.label = Activate CoIoT
|
||||
thing-type.config.shelly.light.eventsCoIoT.description = Activates the CoIoT-Protocol (CoAP based)
|
||||
thing-type.config.shelly.light.updateInterval.label = Status Interval
|
||||
thing-type.config.shelly.light.updateInterval.description = Interval for the device status update
|
||||
|
||||
# thing config - RGBW2
|
||||
thing-type.config.shelly.rgbw2.userId.label = User ID
|
||||
thing-type.config.shelly.rgbw2.userId.description = User ID for API access
|
||||
thing-type.config.shelly.rgbw2.password.label = Password
|
||||
thing-type.config.shelly.rgbw2.password.description = Password for API access
|
||||
thing-type.config.shelly.rgbw2.deviceIp.label = IP Address
|
||||
thing-type.config.shelly.rgbw2.deviceIp.description = IP Address of the Shelly device
|
||||
thing-type.config.shelly.rgbw2.brightnessAutoOn.label = Brightness Auto-ON
|
||||
thing-type.config.shelly.rgbw2.brightnessAutoOn.description = ON: Light is switched on when a brightness value greater than 0 is set; OFF: Brightness is set, but the device is not switched on
|
||||
thing-type.config.shelly.rgbw2.eventsCoIoT.label = Activate CoIoT
|
||||
thing-type.config.shelly.rgbw2.eventsCoIoT.description = Activates the CoIoT-Protocol (CoAP based)
|
||||
thing-type.config.shelly.rgbw2.updateInterval.label = Status Interval
|
||||
thing-type.config.shelly.rgbw2.updateInterval.description = Interval for the device status update
|
||||
|
||||
# thing config - battery
|
||||
thing-type.config.shelly.battery.userId.label = User ID
|
||||
thing-type.config.shelly.battery.userId.description = User ID for API access
|
||||
thing-type.config.shelly.battery.password.label = Password
|
||||
thing-type.config.shelly.battery.password.description = Password for API access
|
||||
thing-type.config.shelly.battery.deviceIp.label = IP Address
|
||||
thing-type.config.shelly.battery.deviceIp.description = IP Address of the Shelly device
|
||||
thing-type.config.shelly.battery.eventsSensorReport.label = Sensor Events
|
||||
thing-type.config.shelly.battery.eventsSensorReport.description = Activates the Sensor Action URLS
|
||||
thing-type.config.shelly.battery.eventsCoIoT.label = Activate CoIoT
|
||||
thing-type.config.shelly.battery.eventsCoIoT.description = Activates the CoIoT-Protocol (CoAP based)
|
||||
thing-type.config.shelly.battery.lowBattery.label = Low Battery Treshold (%)
|
||||
thing-type.config.shelly.battery.lowBattery.description = An alarm is triggered when the device reports a battery charge lower than this threshold. Default: 20%
|
||||
thing-type.config.shelly.battery.updateInterval.label = Status Interval
|
||||
thing-type.config.shelly.battery.updateInterval.description = Interval for the device status update
|
||||
|
||||
# channel-groups
|
||||
thing-type.shelly.shelly1.group.relay.label = Relay
|
||||
thing-type.shelly.shelly1.group.relay.description = Relay input/output and status
|
||||
thing-type.shelly.shelly1.group.sensors.label = External Sensors
|
||||
thing-type.shelly.shelly1.group.sensors.description = Values from external sensors connected to the optional Addon
|
||||
thing-type.shelly.shelly1.group.device.label = Device Status
|
||||
thing-type.shelly.shelly1.group.device.description = Device Status Information
|
||||
thing-type.shelly.shelly1pm.group.relay.label = Relay
|
||||
thing-type.shelly.shelly1pm.group.relay.description = Relay input/output and status
|
||||
thing-type.shelly.shelly1pm.group.meter.label = Power Consumption
|
||||
thing-type.shelly.shelly1pm.group.meter.description = Consumption values and other information
|
||||
thing-type.shelly.shelly1pm.group.sensors.label = External Sensors
|
||||
thing-type.shelly.shelly1pm.group.sensors.description = Values from external sensors connected to the optional Addon
|
||||
thing-type.shelly.shelly1pm.group.device.label = Device Status
|
||||
thing-type.shelly.shelly1pm.group.device.description = Device Status Information
|
||||
thing-type.shelly.shelly1l.group.relay.label = Relay
|
||||
thing-type.shelly.shelly1l.group.relay.description = Relay input/output and status
|
||||
thing-type.shelly.shelly1l.group.meter.label = Power Consumption
|
||||
thing-type.shelly.shelly1l.group.meter.description = Consumption values and other information
|
||||
thing-type.shelly.shelly1l.group.sensors.label = External Sensors
|
||||
thing-type.shelly.shelly1l.group.sensors.description = Values from external sensors connected to the optional Addon
|
||||
thing-type.shelly.shelly1l.group.device.label = Device Status
|
||||
thing-type.shelly.shelly1l.group.device.description = Device Status Information
|
||||
thing-type.shelly.shellyem.group.relay.label = Relay
|
||||
thing-type.shelly.shellyem.group.relay.description = Relay input/output and status
|
||||
thing-type.shelly.shellyem.group.meter1.label = Power Consumption 1
|
||||
thing-type.shelly.shellyem.group.meter1.description = Consumption values and other information
|
||||
thing-type.shelly.shellyem.group.meter2.label = Power Consumption 2
|
||||
thing-type.shelly.shellyem.group.meter2.description = Consumption values and other information
|
||||
thing-type.shelly.shellyem.group.device.label = Device Status
|
||||
thing-type.shelly.shellyem.group.device.description = Device Status Information
|
||||
thing-type.shelly.shellyem3.group.relay.label = Relay
|
||||
thing-type.shelly.shellyem3.group.relay.description = Relay input/output and status
|
||||
thing-type.shelly.shellyem3.group.meter1.label = Power Consumption 1
|
||||
thing-type.shelly.shellyem3.group.meter1.description = Consumption values and other information
|
||||
thing-type.shelly.shellyem3.group.meter2.label = Power Consumption 2
|
||||
thing-type.shelly.shellyem3.group.meter2.description = Consumption values and other information
|
||||
thing-type.shelly.shellyem3.group.meter3.label = Power Consumption 3
|
||||
thing-type.shelly.shellyem3.group.meter3.description = Consumption values and other information
|
||||
thing-type.shelly.shellyem3.group.device.label = Device Status
|
||||
thing-type.shelly.shellyem3.group.device.description = Device Status Information
|
||||
thing-type.shelly.shelly2-relay.group.relay1.label = Relay 1
|
||||
thing-type.shelly.shelly2-relay.group.relay1.description = Relay input/output and status
|
||||
thing-type.shelly.shelly2-relay.group.relay2.label = Relay 2
|
||||
thing-type.shelly.shelly2-relay.group.relay2.description = Relay input/output and status
|
||||
thing-type.shelly.shelly2-relay.group.meter.label = Power Consumption
|
||||
thing-type.shelly.shelly2-relay.group.meter.description = Consumption values and other information
|
||||
thing-type.shelly.shelly2-relay.group.device.label = Device Status
|
||||
thing-type.shelly.shelly2-relay.group.device.description = Device Status Information
|
||||
thing-type.shelly.shelly2-roller.group.roller.label = Roller shutter
|
||||
thing-type.shelly.shelly2-roller.group.roller.description = Roller shutter control and status
|
||||
thing-type.shelly.shelly2-roller.group.meter.label = Power Consumption
|
||||
thing-type.shelly.shelly2-roller.group.meter.description = Consumption values and other information
|
||||
thing-type.shelly.shelly2-roller.group.device.label = Device Status
|
||||
thing-type.shelly.shelly2-roller.group.device.description = Device Status Information
|
||||
thing-type.shelly.shelly25-relay.group.relay1.label = Relay 1
|
||||
thing-type.shelly.shelly25-relay.group.relay1.description = Relay 1 input/output and status
|
||||
thing-type.shelly.shelly25-relay.group.relay2.label = Relay 2
|
||||
thing-type.shelly.shelly25-relay.group.relay2.description = Relay 2 input/output and status
|
||||
thing-type.shelly.shelly25-relay.group.meter1.label = Power Consumption 1
|
||||
thing-type.shelly.shelly25-relay.group.meter1.description = Consumption values and other information
|
||||
thing-type.shelly.shelly25-relay.group.meter2.label = Power Consumption 2
|
||||
thing-type.shelly.shelly25-relay.group.meter2.description = Consumption values and other information
|
||||
thing-type.shelly.shelly25-relay.group.device.label = Device Status
|
||||
thing-type.shelly.shelly25-relay.group.device.description = Device Status Information
|
||||
thing-type.shelly.shelly25-roller.group.roller.label = Roller shutter
|
||||
thing-type.shelly.shelly25-roller.group.roller.description = Roller shutter control and status
|
||||
thing-type.shelly.shelly25-roller.group.meter.label = Power Consumption
|
||||
thing-type.shelly.shelly25-roller.group.meter.description = Consumption values and other information
|
||||
thing-type.shelly.shelly25-roller.group.device.label = Device Status
|
||||
thing-type.shelly.shelly25-roller.group.device.description = Device Status Information
|
||||
thing-type.shelly.shelly4pro.group.relay1.label = Relay 1
|
||||
thing-type.shelly.shelly4pro.group.relay1.description = Relay input/output and status
|
||||
thing-type.shelly.shelly4pro.group.relay2.label = Relay 2
|
||||
thing-type.shelly.shelly4pro.group.relay2.description = Relay input/output and status
|
||||
thing-type.shelly.shelly4pro.group.relay3.label = Relay 3
|
||||
thing-type.shelly.shelly4pro.group.relay3.description = Relay input/output and status
|
||||
thing-type.shelly.shelly4pro.group.relay4.label = Relay 4
|
||||
thing-type.shelly.shelly4pro.group.relay4.description = Relay input/output and status
|
||||
thing-type.shelly.shelly4pro.group.meter1.label = Power Consumption 1
|
||||
thing-type.shelly.shelly4pro.group.meter1.description = Consumption values and other information
|
||||
thing-type.shelly.shelly4pro.group.meter2.label = Power Consumption 2
|
||||
thing-type.shelly.shelly4pro.group.meter2.description = Consumption values and other information
|
||||
thing-type.shelly.shelly4pro.group.meter3.label = Power Consumption 3
|
||||
thing-type.shelly.shelly4pro.group.meter3.description = Consumption values and other information
|
||||
thing-type.shelly.shelly4pro.group.meter4.label = Power Consumption 4
|
||||
thing-type.shelly.shelly4pro.group.meter4.description = Consumption values and other information
|
||||
thing-type.shelly.shelly4pro.group.device.label = Device Status
|
||||
thing-type.shelly.shelly4pro.group.device.description = Device Status Information
|
||||
thing-type.shelly.shellyplug.group.relay.label = Relay
|
||||
thing-type.shelly.shellyplug.group.relay.description = Relay input/output and status
|
||||
thing-type.shelly.shellyplug.group.meter.label = Power Consumption
|
||||
thing-type.shelly.shellyplug.group.meter.description = Consumption values and other information
|
||||
thing-type.shelly.shellyplug.group.device.label = Device Status
|
||||
thing-type.shelly.shellyplug.group.device.description = Device Status Information
|
||||
thing-type.shelly.shellyplugs.group.relay.label = Relay
|
||||
thing-type.shelly.shellyplugs.group.relay.description = Relay input/output and status
|
||||
thing-type.shelly.shellyplugs.group.meter.label = Power Consumption
|
||||
thing-type.shelly.shellyplugs.group.meter.description = Consumption values and other information
|
||||
thing-type.shelly.shellyplugs.group.device.label = Device Status
|
||||
thing-type.shelly.shellyplugs.group.device.description = Device Status Information
|
||||
thing-type.shelly.shellyplugu1.group.relay.label = Relay
|
||||
thing-type.shelly.shellyplugu1.group.relay.description = Relay input/output and status
|
||||
thing-type.shelly.shellyplugu1.group.meter.label = Power Consumption
|
||||
thing-type.shelly.shellyplugu1.group.meter.description = Consumption values and other information
|
||||
thing-type.shelly.shellyplugu1.group.device.label = Device Status
|
||||
thing-type.shelly.shellyplugu1.group.device.description = Device Status Information
|
||||
thing-type.shelly.shellyuni.group.relay1.label = Relay 1
|
||||
thing-type.shelly.shellyuni.group.relay1.description = Relay input/output and status
|
||||
thing-type.shelly.shellyuni.group.relay2.label = Relay 2
|
||||
thing-type.shelly.shellyuni.group.relay2.description = Relay input/output and status
|
||||
thing-type.shelly.shellyuni.group.sensors.label = Sensor data
|
||||
thing-type.shelly.shellyuni.group.sensors.description = Data of the connected sensors
|
||||
thing-type.shelly.shellyuni.group.device.label = Device Status
|
||||
thing-type.shelly.shellyuni.group.device.description = Device Status Information
|
||||
thing-type.shelly.shellydimmer.group.relay.label = Relay
|
||||
thing-type.shelly.shellydimmer.group.relay.description = Relay input/output and status
|
||||
thing-type.shelly.shellydimmer.group.meter.label = Power Consumption
|
||||
thing-type.shelly.shellydimmer.group.meter.description = Consumption values and other information
|
||||
thing-type.shelly.shellydimmer.group.device.label = Device Status
|
||||
thing-type.shelly.shellydimmer.group.device.description = Device Status Information
|
||||
thing-type.shelly.shellydimmer2.group.relay.label = Relay
|
||||
thing-type.shelly.shellydimmer2.group.relay.description = Relay input/output and status
|
||||
thing-type.shelly.shellydimmer2.group.meter.label = Power Consumption
|
||||
thing-type.shelly.shellydimmer2.group.meter.description = Consumption values and other information
|
||||
thing-type.shelly.shellydimmer2.group.device.label = Device Status
|
||||
thing-type.shelly.shellydimmer2.group.device.description = Device Status Information
|
||||
thing-type.shelly.shellyix3.group.status1.label = Input 1
|
||||
thing-type.shelly.shellyix3.group.status1.description = Input 1 status
|
||||
thing-type.shelly.shellyix3.group.status2.label = Input 2
|
||||
thing-type.shelly.shellyix3.group.status2.description = Input 2 status
|
||||
thing-type.shelly.shellyix3.group.status3.label = Input 3
|
||||
thing-type.shelly.shellyix3.group.status3.description = Input 3 status
|
||||
thing-type.shelly.shellyix3.group.device.label = Device Status
|
||||
thing-type.shelly.shellyix3.group.device.description = Device Status Information
|
||||
thing-type.shelly.shellybutton1.group.status.label = Button status
|
||||
thing-type.shelly.shellybutton1.group.status.description = Device Status Information
|
||||
thing-type.shelly.shellybutton1.group.battery.label = Battery status
|
||||
thing-type.shelly.shellybutton1.group.battery.description = Battery Information
|
||||
thing-type.shelly.shellybutton1.group.device.label = Device Status
|
||||
thing-type.shelly.shellybutton1.group.device.description = Device Status Information
|
||||
thing-type.shelly.shellybulb.group.control.label = Control
|
||||
thing-type.shelly.shellybulb.group.control.description = Control the Light
|
||||
thing-type.shelly.shellybulb.group.color.label = Color Mode
|
||||
thing-type.shelly.shellybulb.group.color.description = Settings for the Color Mode
|
||||
thing-type.shelly.shellybulb.group.white.label = White Mode
|
||||
thing-type.shelly.shellybulb.group.white.description = Settings for the White Mode
|
||||
thing-type.shelly.shellybulb.group.device.label = Device Status
|
||||
thing-type.shelly.shellybulb.group.device.description = Device Status Information
|
||||
thing-type.shelly.shellybulbduo.group.control.label = Control
|
||||
thing-type.shelly.shellybulbduo.group.control.description = Control the Light
|
||||
thing-type.shelly.shellybulbduo.group.white.label = White Mode
|
||||
thing-type.shelly.shellybulbduo.group.white.description = Settings for the White Mode
|
||||
thing-type.shelly.shellybulbduo.group.meter.label = Power Consumption
|
||||
thing-type.shelly.shellybulbduo.group.meter.description = Power Consumption Values
|
||||
thing-type.shelly.shellybulbduo.group.device.label = Device Status
|
||||
thing-type.shelly.shellybulbduo.group.device.description = Device Status Information
|
||||
thing-type.shelly.shellycolorbulb.group.control.label = Control
|
||||
thing-type.shelly.shellycolorbulb.group.control.description = Control the Light
|
||||
thing-type.shelly.shellycolorbulb.group.white.label = White Mode
|
||||
thing-type.shelly.shellycolorbulb.group.white.description = Settings for the White Mode
|
||||
thing-type.shelly.shellycolorbulb.group.meter.label = Power Consumption
|
||||
thing-type.shelly.shellycolorbulb.group.meter.description = Power Consumption Values
|
||||
thing-type.shelly.shellycolorbulb.group.device.label = Device Status
|
||||
thing-type.shelly.shellycolorbulb.group.device.description = Device Status Information
|
||||
thing-type.shelly.shellyvintage.group.control.label = Control
|
||||
thing-type.shelly.shellyvintage.group.control.description = Control the Light
|
||||
thing-type.shelly.shellyvintage.group.white.label = Control
|
||||
thing-type.shelly.shellyvintage.group.white.description = Device settings
|
||||
thing-type.shelly.shellyvintage.group.meter.label = Power Consumption
|
||||
thing-type.shelly.shellyvintage.group.meter.description = Power Consumption Values
|
||||
thing-type.shelly.shellyvintage.group.device.label = Device Status
|
||||
thing-type.shelly.shellyvintage.group.device.description = Device Status Information
|
||||
thing-type.shelly.shellyrgbw2-color.group.control.label = Control
|
||||
thing-type.shelly.shellyrgbw2-color.group.control.description = Controller operation
|
||||
thing-type.shelly.shellyrgbw2-color.group.color.label = Colors
|
||||
thing-type.shelly.shellyrgbw2-color.group.color.description = Color values and profiles
|
||||
thing-type.shelly.shellyrgbw2-color.group.meter.label = Power Consumption
|
||||
thing-type.shelly.shellyrgbw2-color.group.meter.description = Consumption values and other information
|
||||
thing-type.shelly.shellyrgbw2-color.group.device.label = Device Status
|
||||
thing-type.shelly.shellyrgbw2-color.group.device.description = Device Status Information
|
||||
thing-type.shelly.shellyrgbw2-white.group.control.label = Control
|
||||
thing-type.shelly.shellyrgbw2-white.group.control.description = Control the Light
|
||||
thing-type.shelly.shellyrgbw2-white.group.channel1.label = Channel 1
|
||||
thing-type.shelly.shellyrgbw2-white.group.channel1.description = Control for channel 1
|
||||
thing-type.shelly.shellyrgbw2-white.group.channel2.label = Channel 2
|
||||
thing-type.shelly.shellyrgbw2-white.group.channel2.description = Control for channel 2
|
||||
thing-type.shelly.shellyrgbw2-white.group.channel3.label = Channel 3
|
||||
thing-type.shelly.shellyrgbw2-white.group.channel3.description = Control for channel 3
|
||||
thing-type.shelly.shellyrgbw2-white.group.channel4.label = Channel 4
|
||||
thing-type.shelly.shellyrgbw2-white.group.channel4.description = Control for channel 4
|
||||
thing-type.shelly.shellyrgbw2-white.group.meter.label = Power Consumption
|
||||
thing-type.shelly.shellyrgbw2-white.group.meter.description = Consumption values and other information
|
||||
thing-type.shelly.shellyrgbw2-white.group.device.label = Device Status
|
||||
thing-type.shelly.shellyrgbw2-white.group.device.description = Device Status Information
|
||||
thing-type.shelly.shellyht.group.sensors.label = Sensor data
|
||||
thing-type.shelly.shellyht.group.sensors.description = Measured values and status of the sensor
|
||||
thing-type.shelly.shellyht.group.battery.label = Battery Status
|
||||
thing-type.shelly.shellyht.group.battery.description = Battery Information
|
||||
thing-type.shelly.shellyht.group.device.label = Device Status
|
||||
thing-type.shelly.shellyht.group.device.description = Device Status Information
|
||||
thing-type.shelly.shellyflood.group.sensors.label = Sensor data
|
||||
thing-type.shelly.shellyflood.group.sensors.description = Measured values and status of the sensor
|
||||
thing-type.shelly.shellyflood.group.battery.label = Battery Status
|
||||
thing-type.shelly.shellyflood.group.battery.description = Battery Information
|
||||
thing-type.shelly.shellyflood.group.device.label = Device Status
|
||||
thing-type.shelly.shellyflood.group.device.description = Device Status Information
|
||||
thing-type.shelly.shellydw.group.sensors.label = Sensor data
|
||||
thing-type.shelly.shellydw.group.sensors.description = Measured values and status of the sensor
|
||||
thing-type.shelly.shellydw.group.battery.label = Battery Status
|
||||
thing-type.shelly.shellydw.group.battery.description = Battery Information
|
||||
thing-type.shelly.shellydw.group.device.label = Device Status
|
||||
thing-type.shelly.shellydw.group.device.description = Device Status Information
|
||||
thing-type.shelly.shellydw2.group.sensors.label = Sensor data
|
||||
thing-type.shelly.shellydw2.group.sensors.description = Measured values and status of the sensor
|
||||
thing-type.shelly.shellydw2.group.battery.label = Battery Status
|
||||
thing-type.shelly.shellydw2.group.battery.description = Battery Information
|
||||
thing-type.shelly.shellydw2.group.device.label = Device Status
|
||||
thing-type.shelly.shellydw2.group.device.description = Device Status Information
|
||||
thing-type.shelly.shellysmoke.sensors.device.label = Sensor data
|
||||
thing-type.shelly.shellysmoke.sensors.device.description = Measured values and status of the sensor
|
||||
thing-type.shelly.shellysmoke.group.battery.label = Battery Status
|
||||
thing-type.shelly.shellysmoke.group.battery.description = Battery Information
|
||||
thing-type.shelly.shellysmoke.group.device.label = Device Status
|
||||
thing-type.shelly.shellysmoke.group.device.description = Device Status Information
|
||||
thing-type.shelly.shellysense.sensors.device.label = Sensor data
|
||||
thing-type.shelly.shellysense.sensors.device.description = Measured values and status of the sensor
|
||||
thing-type.shelly.shellysense.group.device.label = Device Status
|
||||
thing-type.shelly.shellysense.group.device.description = Device Status Information
|
||||
thing-type.shelly.shellygas.group.sensors.label = Sensor data
|
||||
thing-type.shelly.shellygas.group.sensors.description = Measured values and status of the sensor
|
||||
thing-type.shelly.shellygas.group.device.label = Device Status
|
||||
thing-type.shelly.shellygas.group.device.description = Device Status Information
|
||||
thing-type.shelly.shellymotion.group.sensors.label = Sensor data
|
||||
thing-type.shelly.shellymotion.group.sensors.description = Measured values and status of the sensor
|
||||
thing-type.shelly.shellymotion.group.battery.label = Battery Status
|
||||
thing-type.shelly.shellymotion.group.battery.description = Battery Information
|
||||
thing-type.shelly.shellymotion.group.device.label = Device Status
|
||||
thing-type.shelly.shellymotion.group.device.description = Device Status Information
|
||||
|
||||
# channel groups
|
||||
channel-group-type.shelly.sensorData.label = Sensor Data
|
||||
@ -465,19 +151,31 @@ channel-group-type.shelly.whiteSettings.label = White settings
|
||||
channel-group-type.shelly.whiteSettings.description = Adjust colors when device is in white mode
|
||||
channel-group-type.shelly.whiteSettingsSimple.label = White settings
|
||||
channel-group-type.shelly.whiteSettingsSimple.description = Adjust colors when device is in white mode
|
||||
channel-group-type.shelly.rgbw2Channel.label = Control
|
||||
channel-group-type.shelly.rgbw2Channel.description = Switch channel and adjust settings
|
||||
channel-group-type.shelly.rgbw2Channel.label = LED Channel
|
||||
channel-group-type.shelly.rgbw2Channel1.label = Channel 1
|
||||
channel-group-type.shelly.rgbw2Channel2.label = Channel 2
|
||||
channel-group-type.shelly.rgbw2Channel3.label = Channel 3
|
||||
channel-group-type.shelly.rgbw2Channel4.label = Channel 4
|
||||
channel-group-type.shelly.rgbw2Channel.description = Control LED channel and adjust settings
|
||||
channel-group-type.shelly.relayChannel.label = Relay
|
||||
channel-group-type.shelly.relayChannel.description = A Shelly relay channel
|
||||
channel-group-type.shelly.relayChannelPlug.label = Relay
|
||||
channel-group-type.shelly.relayChannelPlug.description = A Shelly relay channel
|
||||
channel-group-type.shelly.relayChannel1.label = Relay 1
|
||||
channel-group-type.shelly.relayChannel2.label = Relay 2
|
||||
channel-group-type.shelly.relayChannel3.label = Relay 3
|
||||
channel-group-type.shelly.relayChannel4.label = Relay 4
|
||||
channel-group-type.shelly.dimmerChannel.label = Dimmer
|
||||
channel-group-type.shelly.dimmerChannel.description = A Shelly Dimmer channel
|
||||
channel-group-type.shelly.ix3Channel.label = Input
|
||||
channel-group-type.shelly.ix3Channel1.label = Input 1
|
||||
channel-group-type.shelly.ix3Channel2.label = Input 2
|
||||
channel-group-type.shelly.ix3Channel3.label = Input 3
|
||||
channel-group-type.shelly.ix3Channel.description = Input Status
|
||||
channel-group-type.shelly.rollerControl.label = Roller Control
|
||||
channel-group-type.shelly.rollerControl.description = Controlling the roller mode
|
||||
channel-group-type.shelly.meter.label = Power Meter
|
||||
channel-group-type.shelly.meter1.label = Power Meter 1
|
||||
channel-group-type.shelly.meter2.label = Power Meter 2
|
||||
channel-group-type.shelly.meter3.label = Power Meter 3
|
||||
channel-group-type.shelly.meter4.label = Power Meter 4
|
||||
channel-group-type.shelly.meter.description = Power consumption for the relay
|
||||
channel-group-type.shelly.externalSensors.label = External Sensors
|
||||
channel-group-type.shelly.externalSensors.description = Temperatures from external sensors connected to the optional Addon
|
||||
@ -532,8 +230,6 @@ channel-type.shelly.inputState1.label = Input #1
|
||||
channel-type.shelly.inputState1.description = Input/Button state #1
|
||||
channel-type.shelly.inputState2.label = Input #2
|
||||
channel-type.shelly.inputState2.description = Input/Button state #2
|
||||
channel-type.shelly.inputState3.label = Input #3
|
||||
channel-type.shelly.inputState3.description = Input/Button state #3
|
||||
channel-type.shelly.dimmerBrightness.label = Brightness
|
||||
channel-type.shelly.dimmerBrightness.description = Light Brightness in percent (0-100%, 0=OFF)
|
||||
channel-type.shelly.whiteBrightness.label = Brightness
|
||||
@ -661,7 +357,7 @@ channel-type.shelly.sensorState.state.option.normal = Normal
|
||||
channel-type.shelly.sensorState.state.option.fault = Fault
|
||||
channel-type.shelly.sensorState.state.option.unknown = Unknown
|
||||
channel-type.shelly.sensorWakeup.label = Wakeup Reason
|
||||
channel-type.shelly.sensorWakeup.description = Last reason which woke up the device (button/battery/perodic/powerdown/sensor/alarm/ext_power)
|
||||
channel-type.shelly.sensorWakeup.description = Last reason which woke up the device (button/battery/perodic/poweron/sensor/alarm/ext_power)
|
||||
channel-type.shelly.sensorWakeup.state.option.button= Button
|
||||
channel-type.shelly.sensorWakeup.state.option.battery = Battery
|
||||
channel-type.shelly.sensorWakeup.state.option.periodic = Periodic
|
||||
@ -730,6 +426,7 @@ channel-type.shelly.alarmTrigger.option.LOAD_ERROR = Load error
|
||||
channel-type.shelly.alarmTrigger.option.LOW_BATTERY = Low battery
|
||||
channel-type.shelly.alarmTrigger.option.BATTERY = Wakeup by battery
|
||||
channel-type.shelly.alarmTrigger.option.POWERON = Device was powered on
|
||||
channel-type.shelly.alarmTrigger.option.EXT_POWER = External power supply was connected
|
||||
channel-type.shelly.alarmTrigger.option.BUTTON = Button was pressed
|
||||
channel-type.shelly.alarmTrigger.option.SENSOR = Sensor data updated
|
||||
channel-type.shelly.alarmState.label = Alarm State
|
||||
|
@ -1,761 +0,0 @@
|
||||
# binding
|
||||
binding.shelly.name = Shelly Binding
|
||||
binding.shelly.description = Dieses Binding integriert Shelly-Komponenten, die über WiFi gesteuert werden können.
|
||||
binding.shelly.config.defaultUserId.label = Standardbenutzerkennung
|
||||
binding.shelly.config.defaultUserId.description = Sofern konfiguriert, wird diese für den Zugriff auf das Gerät verwendet, wenn in der Thing-Konfiguration keine angegeben ist.
|
||||
binding.shelly.config.defaultPassword.label = Standardpasswort
|
||||
binding.shelly.config.defaultPassword.description = Dieses Passwort wird für den Gerätezugriff verwendet, wenn in der Thing-Konfiguration keines gesetzt ist.
|
||||
binding.shelly.config.localIP.label = Host Interface IP
|
||||
binding.shelly.config.localIP.description = Lokale IP-Adresse der Netzwerk-Schnittstelle, welche für Verbindungen genutzt wird (CoIoT Listen und http-Callback). Default: Voreingestelltes Interface aus der openHAB Netzwerkkonfiguration.
|
||||
binding.shelly.config.autoCoIoT.label = Auto-CoIoT
|
||||
binding.shelly.config.autoCoIoT.description = Bei aktiviertem Auto-CoIoT wird das Protokoll aktiviert, sobald das Gerät eine Firmwareversion 1.6 oder neuer verwendet. Andernfalls wird dies über die Thing-Konfiguration gesteuert.
|
||||
|
||||
# Config status messages
|
||||
message.config-status.error.missing-device-ip = Die IP-Adresse des Shelly Gerätes ist nicht konfiguriert.
|
||||
message.config-status.error.missing-userid = Keine Benutzerkennung in der Thing Konfiguration
|
||||
|
||||
# Thing status descriptions
|
||||
message.offline.conf-error-no-credentials = Gerät ist passwortgeschützt, aber es sind keine Anmeldedaten konfiguriert.
|
||||
message.offline.conf-error-access-denied = Der Zugriff wurde verweigert. überprüfen Sie die konfigurierten Zugangsdaten, oder setzen diese entsprechend (analog zur Shelly App).
|
||||
message.offline.conf-error-wrong-mode = Das Gerät befindet sich nicht mehr in der erwarteten Betriebsart. Löschen Sie das Gerät und führen Sie eine erneute Geräteerkennung durch.
|
||||
message.offline.status-error-timeout = Das Gerät ist nicht erreichbar (API Timeout).
|
||||
message.offline.status-error-unexpected-api-result = Es trat ein unerwartetes Problem beim API-Zugriff auf. Überprüfen Sie die Logdatei für genauere Informationen.
|
||||
message.offline.status-error-watchdog = Das Gerät antwortet nicht und ist vermutlich nicht mehr verfügbar.
|
||||
message.offline.status-error-restarted = Das Gerät wurde neu gestartet und wird erneut initialisiert.
|
||||
message.offline.status-error-fwupgrade = Gerätesoftware wird aktualisiert
|
||||
|
||||
# General messages
|
||||
message.versioncheck.failed = Firmware-Version konnte nicht geprüft werden: {0}
|
||||
message.versioncheck.beta = Es wurde eine Betaversion erkannt: {0}/{1}.
|
||||
message.versioncheck.tooold = ACHTUNG: Eine alte Firmware wurde erkannt: {0}/{1}, minimal erforderlich {2}.
|
||||
message.versioncheck.update = INFO: Eine neue Firmwareversion ist verfügbar, aktuell: {0}, neu: {1}
|
||||
message.versioncheck.autocoiot = INFO: Die Firmware unterstützt die Anforderung, Auto-CoIoT wurde aktiviert.
|
||||
message.init.noipaddress = Es konnte keine lokale IP-Adresse ermittelt werden. Bitte sicherstellen, dass IPv4 aktiviert ist und das richtige Interface in der openHAB Netzwerk-Konfiguration ausgewählt ist.
|
||||
message.init.protected = Das Gerät ist passwortgeschützt, die Zugangsdaten müssen in der Thing Konfiguration hinterlegt werden.
|
||||
message.command.failed = FEHLER: Der Befehl {0} für Kanal {1} kann nicht verarbeitet werden
|
||||
message.command.init = Thing aktuell nicht initialisiert, der Befehl {0} führt zur Initialisierung
|
||||
message.status.unknown.initializing = Initialisierung oder Gerät im Schlafmodus.
|
||||
message.statusupdate.failed = Status konnte nicht aktualisiert werden
|
||||
message.status.managerstarted = Shelly Manager wurde gestartet, Aufruf mit http(s)://{0}:{1}/shelly/manager"
|
||||
message.event.triggered = Event erzeugt: {0}
|
||||
message.event.triggered = Event gefiltert: {0}
|
||||
message.coap.init.failed = CoAP/CoIoT konnte nicht gestartet werden: {0}
|
||||
message.discovery.disabled = Das Gerät ist als "nicht erkennen" markiert und wird nicht übernommen.
|
||||
message.discovery.protected = Das Gerät mit der IP-Adresse {0} ist zugriffsgeschützt und keine Zugangsdaten konfiguriert.
|
||||
message.discovery.failed = Erkennung des Gerätes mit der IP-Adresse {0} ist fehlgeschlagen
|
||||
message.roller.calibrating = Das Gerät ist nicht kalibriert. Es ist eine Kalibrierung mit der Shelly App erforderlich.
|
||||
message.roller.favmissing = Positions-Favoriten werden von der installierten Firmwareversion nicht unterstützt (ab 1.9.2), oder sind nicht in der Shelly App konfiguriert.
|
||||
|
||||
# thing types - descriptions only
|
||||
thing-type.shelly.shellydevice.description = Ein passwortgeschütztes oder unbekanntes Gerät
|
||||
thing-type.shelly.shellyunknown.description = Das Gerät wird aktuell nicht unterstützt
|
||||
thing-type.shelly.shelly1.description = Shelly 1 (1x Relais)
|
||||
thing-type.shelly.shelly1l.description = Shelly 1L (1x Relais, kein Neutral notwendig)
|
||||
thing-type.shelly.shelly1pm.description = Shelly 1PM (1x Relais und Strommesser)
|
||||
thing-type.shelly.shellyem.description = Shelly EM zur Energiemessung
|
||||
thing-type.shelly.shellyem3.description = Shelly 3EM zur Energiemessung
|
||||
thing-type.shelly.shelly2-relay.description = Shelly2 im Relais-Modus (2x Relais, Strommesser)
|
||||
thing-type.shelly.shelly2-roller.description = Shelly2 im Rollladen-Modus (1x Rollladen, Strommesser)
|
||||
thing-type.shelly.shelly25-relay.description = Shelly2.5 im Relais-Modus (2x Relais, 2x Strommesser)
|
||||
thing-type.shelly.shelly25-roller.description = Shelly2.5 im Rollladen-Modus (1x Rollladen, Strommesser)
|
||||
thing-type.shelly.shelly4pro.description = Shelly 4 Pro mit 4 Relais und Strommessern
|
||||
thing-type.shelly.shellyplug.description = Shelly Plug als schaltbare Steckdose
|
||||
thing-type.shelly.shellyplugu1.description = Shelly Plug-US als schaltbare Steckdose (110V)
|
||||
thing-type.shelly.shellyplugs.description = Shelly Plug-S als schaltbare Steckdose
|
||||
thing-type.shelly.shellyuni.description = Shelly UNI
|
||||
thing-type.shelly.shellydimmer.description = Shelly mit Dimmer-Funktion
|
||||
thing-type.shelly.shellydimmer2.description = Shelly mit Dimmer-Funktion, 2. Generation
|
||||
thing-type.shelly.shellybutton1.description = Shelly Button 1 (batteriebetrieben)
|
||||
thing-type.shelly.shellybutton2.description = Shelly Button 2 (batteriebetrieben)
|
||||
thing-type.shelly.shellyht.description = Shelly H&T (Luftfeuchtigkeit- und Temperatursensor)
|
||||
thing-type.shelly.shellydw.description = Shelly Tür/Fenstersensor (batteriebetrieben)
|
||||
thing-type.shelly.shellydw2.description = Shelly Tür/Fenstersensor (batteriebetrieben)
|
||||
thing-type.shelly.shellysmoke.description = Shelly Rauchmelder (batteriebetrieben)
|
||||
thing-type.shelly.shellyflood.description = Shelly Wassermelder (batteriebetrieben)
|
||||
thing-type.shelly.shellysense.description = Shelly Bewegungsmelder und IR Sender
|
||||
thing-type.shelly.shellybulb.description = Shelly dimmbare Glühbirne (Farb- und Weißmodus)
|
||||
thing-type.shelly.shellybulbduo.description = Shelly Duo dimmbare Glühbirne (Kalt- und Warmweiß)
|
||||
thing-type.shelly.shellycolorbulb.description = Shelly dimmbare Glühbirne (Farb- und Weißmodus)
|
||||
thing-type.shelly.shellyvintage.description = Shelly dimmbare Vintage Glühbirne
|
||||
thing-type.shelly.shellyrgbw2-color.description = Shelly RGBW-Controller im Farbmodus
|
||||
thing-type.shelly.shellyrgbw2-white.description = Shelly RGBW-Controller im Weiß-Modus, 4 Streifen
|
||||
thing-type.shelly.shellymotion.description = Shelly Motion (Bewegungssensor, batteriebetrieben)
|
||||
thing-type.shelly.shellymtrv.description = Shelly TRV (Heizkörperventiel, batteriebetrieben)
|
||||
thing-type.shelly.shellygas.description = Shelly Gas (Gassensor - Gasleck Erkennung)
|
||||
thing-type.shelly.shellytrv.description = Shelly TRV (Heizungsventil, batteriebetrieben)
|
||||
thing-type.shelly.shellyix3.description = Shelly i3 (3x Eingang, Steuert andere Shelly-Geräte im Netzwerk)
|
||||
|
||||
# thing config - shellydevice
|
||||
thing-type.config.shellydevice.userId.label = Benutzer
|
||||
thing-type.config.shellydevice.userId.description = Benutzerkennung für API-Zugriff
|
||||
thing-type.config.shellydevice.password.label = Passwort
|
||||
thing-type.config.shellydevice.password.description = Passwort für API-Zugriff
|
||||
thing-type.config.shellydevice.deviceIp.label = IP Adresse
|
||||
thing-type.config.shellydevice.deviceIp.description = IP Adresse der Shelly-Komponente
|
||||
|
||||
# thing config - relay
|
||||
thing-type.config.shelly.relay.userId.label = Benutzer
|
||||
thing-type.config.shelly.relay.userId.description = Benutzerkennung für API-Zugriff
|
||||
thing-type.config.shelly.relay.password.label = Passwort
|
||||
thing-type.config.shelly.relay.password.description = Passwort für API-Zugriff
|
||||
thing-type.config.shelly.relay.deviceIp.label = IP Adresse
|
||||
thing-type.config.shelly.relay.deviceIp.description = IP Adresse der Shelly-Komponente
|
||||
thing-type.config.shelly.relay.eventsButton.label = Button Events
|
||||
thing-type.config.shelly.relay.eventsButton.description = Aktiviert die Button Action URLS
|
||||
thing-type.config.shelly.relay.eventsPush.label = Push Events
|
||||
thing-type.config.shelly.relay.eventsPush.description = Aktiviert die Push Button Action URLS
|
||||
thing-type.config.shelly.relay.eventsSwitch.label = Output Events
|
||||
thing-type.config.shelly.relay.eventsSwitch.description = Aktiviert die Output Action URLS
|
||||
thing-type.config.shelly.relay.eventsCoIoT.label = CoIoT aktivieren
|
||||
thing-type.config.shelly.relay.eventsCoIoT.description = Aktiviert CoIoT-Protokoll (CoAP-basiert)
|
||||
thing-type.config.shelly.relay.updateInterval.label = Status-Intervall
|
||||
thing-type.config.shelly.relay.updateInterval.description = Intervall für die Hintergundaktualisierung
|
||||
|
||||
# thing config - roller
|
||||
thing-type.config.shelly.roller.userId.label = Benutzer
|
||||
thing-type.config.shelly.roller.userId.description = Benutzerkennung für API-Zugriff
|
||||
thing-type.config.shelly.roller.password.label = Passwort
|
||||
thing-type.config.shelly.roller.password.description = Passwort für API-Zugriff
|
||||
thing-type.config.shelly.roller.favoriteUP.label = Favoriten ID für UP
|
||||
thing-type.config.shelly.roller.favoriteUP.description = Gibt die Favoriten ID an, die beim Command UP auf den roller#control channel verwendet wird (Konfiguration in der Shelly App)
|
||||
thing-type.config.shelly.roller.favoriteDOWN.label = Favoriten ID für DOWN
|
||||
thing-type.config.shelly.roller.favoriteDOWN.description = Gibt die Favoriten ID an, die beim Command DOWN auf den roller#control channel verwendet wird (Konfiguration in der Shelly App)
|
||||
thing-type.config.shelly.roller.deviceIp.label = IP Adresse
|
||||
thing-type.config.shelly.roller.deviceIp.description = IP Adresse der Shelly-Komponente
|
||||
thing-type.config.shelly.roller.eventsRoller.label = Rollladen-Events
|
||||
thing-type.config.shelly.roller.eventsRoller.description = Aktiviert die Roller Action URLS
|
||||
thing-type.config.shelly.roller.eventsCoIoT.label = CoIoT aktivieren
|
||||
thing-type.config.shelly.roller.eventsCoIoT.description = Aktiviert CoIoT-Protokoll (CoAP-basiert)
|
||||
thing-type.config.shelly.roller.updateInterval.label = Status-Intervall
|
||||
thing-type.config.shelly.roller.updateInterval.description = Intervall für die Hintergundaktualisierung
|
||||
|
||||
# thing config - dimmer
|
||||
thing-type.config.shelly.dimmer.userId.label = Benutzer
|
||||
thing-type.config.shelly.dimmer.userId.description = Benutzerkennung für API-Zugriff
|
||||
thing-type.config.shelly.dimmer.password.label = Passwort
|
||||
thing-type.config.shelly.dimmer.password.description = Passwort für API-Zugriff
|
||||
thing-type.config.shelly.dimmer.deviceIp.label = IP Adresse
|
||||
thing-type.config.shelly.dimmer.deviceIp.description = IP Adresse der Shelly-Komponente
|
||||
thing-type.config.shelly.dimmer.brightnessAutoOn.label = Helligkeit Auto-EIN
|
||||
thing-type.config.shelly.dimmer.brightnessAutoOn.description = an: Licht wird eingeschaltet, wenn ein Helligkeitswert größer 0 gesetzt wird; aus: Helligkeit wird gesetzt, aber das Gerät nicht eingeschaltet
|
||||
thing-type.config.shelly.dimmer.eventsButton.label = Button Events
|
||||
thing-type.config.shelly.dimmer.eventsButton.description = Aktiviert die Button Action URLS
|
||||
thing-type.config.shelly.dimmer.eventsPush.label = Push Events
|
||||
thing-type.config.shelly.dimmer.eventsPush.description = Aktiviert die Push Button Action URLS
|
||||
thing-type.config.shelly.dimmer.eventsSwitch.label = Output Events
|
||||
thing-type.config.shelly.dimmer.eventsSwitch.description = Aktiviert die Output Action URLS
|
||||
thing-type.config.shelly.dimmer.eventsCoIoT.label = CoIoT aktivieren
|
||||
thing-type.config.shelly.dimmer.eventsCoIoT.description = Aktiviert CoIoT-Protokoll (CoAP-basiert)
|
||||
thing-type.config.shelly.dimmer.updateInterval.label = Status-Intervall
|
||||
thing-type.config.shelly.dimmer.updateInterval.description = Intervall für die Hintergundaktualisierung
|
||||
|
||||
# thing config - light
|
||||
thing-type.config.shelly.light.userId.label = Benutzer
|
||||
thing-type.config.shelly.light.userId.description = Benutzerkennung für API-Zugriff
|
||||
thing-type.config.shelly.light.password.label = Passwort
|
||||
thing-type.config.shelly.light.password.description = Passwort für API-Zugriff
|
||||
thing-type.config.shelly.light.deviceIp.label = IP Adresse
|
||||
thing-type.config.shelly.light.deviceIp.description = IP Adresse der Shelly-Komponente
|
||||
thing-type.config.shelly.light.brightnessAutoOn.label = Helligkeit Auto-EIN
|
||||
thing-type.config.shelly.light.brightnessAutoOn.description = AN: Setzen einer Helligkeit > 0 schaltet das Gerät automatisch ein; AUS: Gerätestatus wird nicht geändert
|
||||
thing-type.config.shelly.light.eventsButton.label = Button Events
|
||||
thing-type.config.shelly.light.eventsButton.description = Aktiviert die Button Action URLS
|
||||
thing-type.config.shelly.light.eventsPush.label = Push Events
|
||||
thing-type.config.shelly.light.eventsPush.description = Aktiviert die Push Button Action URLS
|
||||
thing-type.config.shelly.light.eventsSwitch.label = Output Events
|
||||
thing-type.config.shelly.light.eventsSwitch.description = Aktiviert die Output Action URLS
|
||||
thing-type.config.shelly.light.eventsCoIoT.label = CoIoT aktivieren
|
||||
thing-type.config.shelly.light.eventsCoIoT.description = Aktiviert CoIoT-Protokoll (CoAP-basiert)
|
||||
thing-type.config.shelly.light.updateInterval.label = Status-Intervall
|
||||
thing-type.config.shelly.light.updateInterval.description = Intervall für die Hintergrundaktualisierung
|
||||
|
||||
# thing config - RGBW2
|
||||
thing-type.config.shelly.rgbw2.userId.label = Benutzer
|
||||
thing-type.config.shelly.rgbw2.userId.description = Benutzerkennung für API-Zugriff
|
||||
thing-type.config.shelly.rgbw2.password.label = Passwort
|
||||
thing-type.config.shelly.rgbw2.password.description = Passwort für API-Zugriff
|
||||
thing-type.config.shelly.rgbw2.deviceIp.label = IP Adresse
|
||||
thing-type.config.shelly.rgbw2.deviceIp.description = IP Adresse der Shelly-Komponente
|
||||
thing-type.config.shelly.rgbw2.brightnessAutoOn.label = Helligkeit Auto-EIN
|
||||
thing-type.config.shelly.rgbw2.brightnessAutoOn.description = AN: Setzen einer Helligkeit > 0 schaltet das Gerät automatisch ein; AUS: Gerätestatus wird nicht geändert
|
||||
thing-type.config.shelly.rgbw2.eventsCoIoT.label = CoIoT aktivieren
|
||||
thing-type.config.shelly.rgbw2.eventsCoIoT.description = Aktiviert CoIoT-Protokoll (CoAP-basiert)
|
||||
thing-type.config.shelly.rgbw2.updateInterval.label = Status-Intervall
|
||||
thing-type.config.shelly.rgbw2.updateInterval.description = Intervall für die Hintergrundaktualisierung
|
||||
|
||||
# thing config - battery
|
||||
thing-type.config.shelly.battery.userId.label = Benutzer
|
||||
thing-type.config.shelly.battery.userId.description = Benutzerkennung für API-Zugriff
|
||||
thing-type.config.shelly.battery.password.label = Passwort
|
||||
thing-type.config.shelly.battery.password.description = Passwort für API-Zugriff
|
||||
thing-type.config.shelly.battery.deviceIp.label = IP Adresse
|
||||
thing-type.config.shelly.battery.deviceIp.description = IP Adresse der Shelly-Komponente
|
||||
thing-type.config.shelly.battery.eventsSensorReport.label = Sensor Events
|
||||
thing-type.config.shelly.battery.eventsSensorReport.description = Aktiviert die Sensor Action URLS
|
||||
thing-type.config.shelly.battery.eventsCoIoT.label = CoIoT aktivieren
|
||||
thing-type.config.shelly.battery.eventsCoIoT.description = Aktiviert CoIoT-Protokoll (CoAP-basiert)
|
||||
thing-type.config.shelly.battery.lowBattery.label = Batterieladung niedrig (%)
|
||||
thing-type.config.shelly.battery.lowBattery.description = Ein Alarm wird ausgelöst, wenn das Gerät eine Batterieladung kleiner diesem Schwellwert meldet. Default: 20%
|
||||
thing-type.config.shelly.battery.updateInterval.label = Status-Intervall
|
||||
thing-type.config.shelly.battery.updateInterval.description = Intervall für die Hintergundaktualisierung
|
||||
|
||||
# channel-groups
|
||||
thing-type.shelly.shelly1.group.relay.label = Relais
|
||||
thing-type.shelly.shelly1.group.relay.description = Relais Ein-/Ausgänge und Status
|
||||
thing-type.shelly.shelly1.group.sensors.label = Externe Sensoren
|
||||
thing-type.shelly.shelly1.group.sensors.description = Temperaturwerte der externen Sensoren (nur wenn angeschlossen)
|
||||
thing-type.shelly.shelly1.group.device.label = Gerätestatus
|
||||
thing-type.shelly.shelly1.group.device.description = Informationen zum Gerätestatus
|
||||
thing-type.shelly.shelly1pm.group.relay.label = Relais
|
||||
thing-type.shelly.shelly1pm.group.relay.description = Relais Ein-/Ausgänge und Status
|
||||
thing-type.shelly.shelly1pm.group.meter.label = Verbrauch
|
||||
thing-type.shelly.shelly1pm.group.meter.description = Verbrauchswerte und andere Informationen
|
||||
thing-type.shelly.shelly1pm.group.sensors.label = Externe Sensoren
|
||||
thing-type.shelly.shelly1pm.group.sensors.description = Werte der externen Sensoren (nur wenn angeschlossen)
|
||||
thing-type.shelly.shelly1pm.group.device.label = Gerätestatus
|
||||
thing-type.shelly.shelly1pm.group.device.description = Informationen zum Gerätestatus
|
||||
thing-type.shelly.shelly1l.group.relay.label = Relais
|
||||
thing-type.shelly.shelly1l.group.relay.description = Relais Ein-/Ausgänge und Status
|
||||
thing-type.shelly.shelly1l.group.meter.label = Verbrauch
|
||||
thing-type.shelly.shelly1l.group.meter.description = Verbrauchswerte und andere Informationen
|
||||
thing-type.shelly.shelly1l.group.sensors.label = Externe Sensoren
|
||||
thing-type.shelly.shelly1l.group.sensors.description = Temperaturwerte der externen Sensoren (nur wenn angeschlossen)
|
||||
thing-type.shelly.shelly1l.group.device.label = Gerätestatus
|
||||
thing-type.shelly.shelly1l.group.device.description = Informationen zum Gerätestatus
|
||||
thing-type.shelly.shellyem.group.relay.label = Relais
|
||||
thing-type.shelly.shellyem.group.relay.description = Relais Ein-/Ausgänge und Status
|
||||
thing-type.shelly.shellyem.group.meter1.label = Verbrauch 1
|
||||
thing-type.shelly.shellyem.group.meter1.description = Verbrauchswerte und andere Informationen
|
||||
thing-type.shelly.shellyem.group.meter2.label = Verbrauch 2
|
||||
thing-type.shelly.shellyem.group.meter2.description = Verbrauchswerte und andere Informationen
|
||||
thing-type.shelly.shellyem.group.device.label = Gerätestatus
|
||||
thing-type.shelly.shellyem.group.device.description = Informationen zum Gerätestatus
|
||||
thing-type.shelly.shellyem3.group.relay.label = Relais
|
||||
thing-type.shelly.shellyem3.group.relay.description = Relais Ein-/Ausgänge und Status
|
||||
thing-type.shelly.shellyem3.group.meter1.label = Verbrauch 1
|
||||
thing-type.shelly.shellyem3.group.meter1.description = Verbrauchswerte und andere Informationen
|
||||
thing-type.shelly.shellyem3.group.meter2.label = Verbrauch 2
|
||||
thing-type.shelly.shellyem3.group.meter2.description = Verbrauchswerte und andere Informationen
|
||||
thing-type.shelly.shellyem3.group.meter3.label = Verbrauch 3
|
||||
thing-type.shelly.shellyem3.group.meter3.description = Verbrauchswerte und andere Informationen
|
||||
thing-type.shelly.shellyem3.group.device.label = Gerätestatus
|
||||
thing-type.shelly.shellyem3.group.device.description = Informationen zum Gerätestatus
|
||||
thing-type.shelly.shelly2-relay.group.relay1.label = Relais 1
|
||||
thing-type.shelly.shelly2-relay.group.relay1.description = Relais Ein-/Ausgänge und Status
|
||||
thing-type.shelly.shelly2-relay.group.relay2.label = Relais 2
|
||||
thing-type.shelly.shelly2-relay.group.relay2.description = Relais Ein-/Ausgänge und Status
|
||||
thing-type.shelly.shelly2-relay.group.meter.label = Verbrauch
|
||||
thing-type.shelly.shelly2-relay.group.meter.description = Verbrauchswerte und andere Informationen
|
||||
thing-type.shelly.shelly2-relay.group.device.label = Gerätestatus
|
||||
thing-type.shelly.shelly2-relay.group.device.description = Informationen zum Gerätestatus
|
||||
thing-type.shelly.shelly2-roller.group.roller.label = Rollladen
|
||||
thing-type.shelly.shelly2-roller.group.roller.description = Rollladensteuerung und Status
|
||||
thing-type.shelly.shelly2-roller.group.meter.label = Verbrauch
|
||||
thing-type.shelly.shelly2-roller.group.meter.description = Verbrauchswerte und andere Informationen
|
||||
thing-type.shelly.shelly2-roller.group.device.label = Gerätestatus
|
||||
thing-type.shelly.shelly2-roller.group.device.description = Informationen zum Gerätestatus
|
||||
thing-type.shelly.shelly25-relay.group.relay1.label = Relais 1
|
||||
thing-type.shelly.shelly25-relay.group.relay1.description = Relais Ein-/Ausgänge und -Funktionen
|
||||
thing-type.shelly.shelly25-relay.group.relay2.label = Relais 2
|
||||
thing-type.shelly.shelly25-relay.group.relay2.description = Relais Ein-/Ausgänge und -Funktionen
|
||||
thing-type.shelly.shelly25-relay.group.meter1.label = Verbrauch 1
|
||||
thing-type.shelly.shelly25-relay.group.meter1.description = Verbrauchswerte und andere Informationen
|
||||
thing-type.shelly.shelly25-relay.group.meter2.label = Verbrauch 2
|
||||
thing-type.shelly.shelly25-relay.group.meter2.description = Verbrauchswerte und andere Informationen
|
||||
thing-type.shelly.shelly25-relay.group.device.label = Gerätestatus
|
||||
thing-type.shelly.shelly25-relay.group.device.description = Informationen zum Gerätestatus
|
||||
thing-type.shelly.shelly25-roller.group.roller.label = Rollladen
|
||||
thing-type.shelly.shelly25-roller.group.roller.description = Rollladensteuerung und Status
|
||||
thing-type.shelly.shelly25-roller.group.meter.label = Verbrauch
|
||||
thing-type.shelly.shelly25-roller.group.meter.description = Verbrauchswerte und andere Informationen
|
||||
thing-type.shelly.shelly25-roller.group.device.label = Gerätestatus
|
||||
thing-type.shelly.shelly25-roller.group.device.description = Informationen zum Gerätestatus
|
||||
thing-type.shelly.shelly4pro.group.relay1.label = Relais 1
|
||||
thing-type.shelly.shelly4pro.group.relay1.description = Relais Ein-/Ausgänge und Status
|
||||
thing-type.shelly.shelly4pro.group.relay2.label = Relais 2
|
||||
thing-type.shelly.shelly4pro.group.relay2.description = Relais Ein-/Ausgänge und Status
|
||||
thing-type.shelly.shelly4pro.group.relay3.label = Relais 3
|
||||
thing-type.shelly.shelly4pro.group.relay3.description = Relais Ein-/Ausgänge und Status
|
||||
thing-type.shelly.shelly4pro.group.relay4.label = Relais 4
|
||||
thing-type.shelly.shelly4pro.group.relay4.description = Relais Ein-/Ausgänge und Status
|
||||
thing-type.shelly.shelly4pro.group.meter1.label = Verbrauch 1
|
||||
thing-type.shelly.shelly4pro.group.meter1.description = Verbrauchswerte und andere Informationen
|
||||
thing-type.shelly.shelly4pro.group.meter2.label = Verbrauch 2
|
||||
thing-type.shelly.shelly4pro.group.meter2.description = Verbrauchswerte und andere Informationen
|
||||
thing-type.shelly.shelly4pro.group.meter3.label = Verbrauch 3
|
||||
thing-type.shelly.shelly4pro.group.meter3.description = Verbrauchswerte und andere Informationen
|
||||
thing-type.shelly.shelly4pro.group.meter4.label = Verbrauch 4
|
||||
thing-type.shelly.shelly4pro.group.meter4.description = Verbrauchswerte und andere Informationen
|
||||
thing-type.shelly.shelly4pro.group.device.label = Gerätestatus
|
||||
thing-type.shelly.shelly4pro.group.device.description = Informationen zum Gerätestatus
|
||||
thing-type.shelly.shellyplug.group.relay.label = Relais
|
||||
thing-type.shelly.shellyplug.group.relay.description = Relais Ein-/Ausgänge und Status
|
||||
thing-type.shelly.shellyplug.group.meter.label = Verbrauch
|
||||
thing-type.shelly.shellyplug.group.meter.description = Verbrauchswerte und andere Informationen
|
||||
thing-type.shelly.shellyplug.group.device.label = Gerätestatus
|
||||
thing-type.shelly.shellyplug.group.device.description = Informationen zum Gerätestatus
|
||||
thing-type.shelly.shellyplugs.group.relay.label = Relais
|
||||
thing-type.shelly.shellyplugs.group.relay.description = Relais Ein-/Ausgänge und Status
|
||||
thing-type.shelly.shellyplugs.group.meter.label = Verbrauch
|
||||
thing-type.shelly.shellyplugs.group.meter.description = Verbrauchswerte und andere Informationen
|
||||
thing-type.shelly.shellyplugs.group.device.label = Gerätestatus
|
||||
thing-type.shelly.shellyplugs.group.device.description = Informationen zum Gerätestatus
|
||||
thing-type.shelly.shellyplugu1.group.relay.label = Relais
|
||||
thing-type.shelly.shellyplugu1.group.relay.description = Relais Ein-/Ausgänge und Status
|
||||
thing-type.shelly.shellyplugu1.group.meter.label = Verbrauch
|
||||
thing-type.shelly.shellyplugu1.group.meter.description = Verbrauchswerte und andere Informationen
|
||||
thing-type.shelly.shellyplugu1.group.device.label = Gerätestatus
|
||||
thing-type.shelly.shellyplugu1.group.device.description = Informationen zum Gerätestatus
|
||||
thing-type.shelly.shellyuni.group.relay1.label = Relais 1
|
||||
thing-type.shelly.shellyuni.group.relay1.description = Relais Ein-/Ausgänge und Status
|
||||
thing-type.shelly.shellyuni.group.relay2.label = Relais 2
|
||||
thing-type.shelly.shellyuni.group.relay2.description = Relais Ein-/Ausgänge und Status
|
||||
thing-type.shelly.shellyuni.group.sensors.label = Sensordaten
|
||||
thing-type.shelly.shellyuni.group.sensors.description = Daten der angeschlossenen Sensoren
|
||||
thing-type.shelly.shellyuni.group.device.label = Gerätestatus
|
||||
thing-type.shelly.shellyuni.group.device.description = Informationen zum Gerätestatus
|
||||
thing-type.shelly.shellydimmer.group.relay.label = Relais
|
||||
thing-type.shelly.shellydimmer.group.relay.description = Relais Ein-/Ausgänge und Status
|
||||
thing-type.shelly.shellydimmer.group.meter.label = Verbrauch
|
||||
thing-type.shelly.shellydimmer.group.meter.description = Verbrauchswerte und andere Informationen
|
||||
thing-type.shelly.shellydimmer.group.device.label = Gerätestatus
|
||||
thing-type.shelly.shellydimmer.group.device.description = Informationen zum Gerätestatus
|
||||
thing-type.shelly.shellydimmer2.group.relay.label = Relais
|
||||
thing-type.shelly.shellydimmer2.group.relay.description = Relais Ein-/Ausgänge und Status
|
||||
thing-type.shelly.shellydimmer2.group.meter.label = Verbrauch
|
||||
thing-type.shelly.shellydimmer2.group.meter.description = Verbrauchswerte und andere Informationen
|
||||
thing-type.shelly.shellydimmer2.group.device.label = Gerätestatus
|
||||
thing-type.shelly.shellydimmer2.group.device.description = Informationen zum Gerätestatus
|
||||
thing-type.shelly.shellyix3.group.status1.label = Eingang 1
|
||||
thing-type.shelly.shellyix3.group.status1.description = Status Informationen zum Eingang 1
|
||||
thing-type.shelly.shellyix3.group.status2.label = Eingang 2
|
||||
thing-type.shelly.shellyix3.group.status2.description = Status Informationen zum Eingang 2
|
||||
thing-type.shelly.shellyix3.group.status3.label = Eingang 3
|
||||
thing-type.shelly.shellyix3.group.status3.description = Status Informationen zum Eingang 3
|
||||
thing-type.shelly.shellyix3.group.device.label = Gerätestatus
|
||||
thing-type.shelly.shellyix3.group.device.description = Informationen zum Gerätestatus
|
||||
thing-type.shelly.shellybutton1.group.status.label = Taster-Status
|
||||
thing-type.shelly.shellybutton1.group.status.description = Informationen zum Gerätestatus
|
||||
thing-type.shelly.shellybutton1.group.battery.label = Batteriestatus
|
||||
thing-type.shelly.shellybutton1.group.battery.description = Informationen zum Akku
|
||||
thing-type.shelly.shellybutton1.group.device.label = Gerätestatus
|
||||
thing-type.shelly.shellybutton1.group.device.description = Informationen zum Gerätestatus
|
||||
thing-type.shelly.shellybutton2.group.status.label = Taster-Status
|
||||
thing-type.shelly.shellybutton2.group.status.description = Informationen zum Gerätestatus
|
||||
thing-type.shelly.shellybutton2.group.battery.label = Batteriestatus
|
||||
thing-type.shelly.shellybutton2.group.battery.description = Informationen zum Akku
|
||||
thing-type.shelly.shellybutton2.group.device.label = Gerätestatus
|
||||
thing-type.shelly.shellybutton2.group.device.description = Informationen zum Gerätestatus
|
||||
thing-type.shelly.shellybulb.group.control.label = Steuerung
|
||||
thing-type.shelly.shellybulb.group.control.description = Steuerung des Lichts
|
||||
thing-type.shelly.shellybulb.group.color.label = Farbmodus
|
||||
thing-type.shelly.shellybulb.group.color.description = Einstellungen für den Farbmodus
|
||||
thing-type.shelly.shellybulb.group.white.label = Weißwerte
|
||||
thing-type.shelly.shellybulb.group.white.description = Einstellungen für den Weiß-Modus
|
||||
thing-type.shelly.shellybulb.group.device.label = Gerätestatus
|
||||
thing-type.shelly.shellybulb.group.device.description = Informationen zum Gerätestatus
|
||||
thing-type.shelly.shellybulbduo.group.control.label = Steuerung
|
||||
thing-type.shelly.shellybulbduo.group.control.description = Steuerung des Lichts
|
||||
thing-type.shelly.shellybulbduo.group.white.label = Weißwerte
|
||||
thing-type.shelly.shellybulbduo.group.white.description = Einstellungen für den Weiß-Modus
|
||||
thing-type.shelly.shellybulbduo.group.meter.label = Verbrauch
|
||||
thing-type.shelly.shellybulbduo.group.meter.description = Verbrauchswerte
|
||||
thing-type.shelly.shellybulbduo.group.device.label = Gerätestatus
|
||||
thing-type.shelly.shellybulbduo.group.device.description = Informationen zum Gerätestatus
|
||||
thing-type.shelly.shellycolorbulb.group.control.label = Steuerung
|
||||
thing-type.shelly.shellycolorbulb.group.control.description = Steuerung des Lichts
|
||||
thing-type.shelly.shellycolorbulb.group.white.label = Weißwerte
|
||||
thing-type.shelly.shellycolorbulb.group.white.description = Einstellungen für den Weiß-Modus
|
||||
thing-type.shelly.shellycolorbulb.group.meter.label = Verbrauch
|
||||
thing-type.shelly.shellycolorbulb.group.meter.description = Verbrauchswerte
|
||||
thing-type.shelly.shellycolorbulb.group.device.label = Gerätestatus
|
||||
thing-type.shelly.shellycolorbulb.group.device.description = Informationen zum Gerätestatus
|
||||
thing-type.shelly.shellyvintage.group.control.label = Steuerung
|
||||
thing-type.shelly.shellyvintage.group.control.description = Steuerung des Lichts
|
||||
thing-type.shelly.shellyvintage.group.white.label = Steuerung
|
||||
thing-type.shelly.shellyvintage.group.white.description = Geräteeinstellungen
|
||||
thing-type.shelly.shellyvintage.group.meter.label = Verbrauch
|
||||
thing-type.shelly.shellyvintage.group.meter.description = Verbrauchswerte
|
||||
thing-type.shelly.shellyvintage.group.device.label = Gerätestatus
|
||||
thing-type.shelly.shellyvintage.group.device.description = Informationen zum Gerätestatus
|
||||
thing-type.shelly.shellyrgbw2-color.group.control.label = Steuerung
|
||||
thing-type.shelly.shellyrgbw2-color.group.control.description = Steuerung des Controllers
|
||||
thing-type.shelly.shellyrgbw2-color.group.color.label = Farben
|
||||
thing-type.shelly.shellyrgbw2-color.group.color.description = Farbwerte und Profile
|
||||
thing-type.shelly.shellyrgbw2-color.group.meter.label = Verbrauch
|
||||
thing-type.shelly.shellyrgbw2-color.group.meter.description = Verbrauchswerte und andere Informationen
|
||||
thing-type.shelly.shellyrgbw2-color.group.device.label = Gerätestatus
|
||||
thing-type.shelly.shellyrgbw2-color.group.device.description = Informationen zum Gerätestatus
|
||||
thing-type.shelly.shellyrgbw2-white.group.control.label = Steuerung
|
||||
thing-type.shelly.shellyrgbw2-white.group.control.description = Lichtsteuerung
|
||||
thing-type.shelly.shellyrgbw2-white.group.channel1.label = Kanal 1
|
||||
thing-type.shelly.shellyrgbw2-white.group.channel1.description = Steuerung für Kanal 1
|
||||
thing-type.shelly.shellyrgbw2-white.group.channel2.label = Kanal 2
|
||||
thing-type.shelly.shellyrgbw2-white.group.channel2.description = Steuerung für Kanal 2
|
||||
thing-type.shelly.shellyrgbw2-white.group.channel3.label = Kanal 3
|
||||
thing-type.shelly.shellyrgbw2-white.group.channel3.description = Steuerung für Kanal 3
|
||||
thing-type.shelly.shellyrgbw2-white.group.channel4.label = Kanal 4
|
||||
thing-type.shelly.shellyrgbw2-white.group.channel4.description = Steuerung für Kanal 4
|
||||
thing-type.shelly.shellyrgbw2-white.group.meter.label = Verbrauch
|
||||
thing-type.shelly.shellyrgbw2-white.group.meter.description = Verbrauchswerte und andere Informationen
|
||||
thing-type.shelly.shellyrgbw2-white.group.device.label = Gerätestatus
|
||||
thing-type.shelly.shellyrgbw2-white.group.device.description = Informationen zum Gerätestatus
|
||||
thing-type.shelly.shellyht.group.sensors.label = Sensorwerte
|
||||
thing-type.shelly.shellyht.group.sensors.description = Messwerte und Status des Sensors
|
||||
thing-type.shelly.shellyht.group.battery.label = Batterie-Status
|
||||
thing-type.shelly.shellyht.group.battery.description = Informationen zum Akku
|
||||
thing-type.shelly.shellyht.group.device.label = Gerätestatus
|
||||
thing-type.shelly.shellyht.group.device.description = Informationen zum Gerätestatus
|
||||
thing-type.shelly.shellyflood.group.sensors.label = Sensorwerte
|
||||
thing-type.shelly.shellyflood.group.sensors.description = Messwerte und Status des Sensors
|
||||
thing-type.shelly.shellyflood.group.battery.label = Batterie-Status
|
||||
thing-type.shelly.shellyflood.group.battery.description = Informationen zum Akku
|
||||
thing-type.shelly.shellyflood.group.device.label = Gerätestatus
|
||||
thing-type.shelly.shellyflood.group.device.description = Informationen zum Gerätestatus
|
||||
thing-type.shelly.shellydw.group.sensors.label = Sensordaten
|
||||
thing-type.shelly.shellydw.group.sensors.description = Messwerte und Status des Sensors
|
||||
thing-type.shelly.shellydw.group.battery.label = Batterie-Status
|
||||
thing-type.shelly.shellydw.group.battery.description = Informationen zum Akku
|
||||
thing-type.shelly.shellydw.group.device.label = Gerätestatus
|
||||
thing-type.shelly.shellydw.group.device.description = Informationen zum Gerätestatus
|
||||
thing-type.shelly.shellydw2.group.sensors.label = Sensordaten
|
||||
thing-type.shelly.shellydw2.group.sensors.description = Messwerte und Status des Sensors
|
||||
thing-type.shelly.shellydw2.group.battery.label = Batterie-Status
|
||||
thing-type.shelly.shellydw2.group.battery.description = Informationen zum Akku
|
||||
thing-type.shelly.shellydw2.group.device.label = Gerätestatus
|
||||
thing-type.shelly.shellydw2.group.device.description = Informationen zum Gerätestatus
|
||||
thing-type.shelly.shellysmoke.sensors.device.label = Sensordaten
|
||||
thing-type.shelly.shellysmoke.sensors.device.description = Messwerte und Status des Sensors
|
||||
thing-type.shelly.shellysmoke.group.battery.label = Batterie-Status
|
||||
thing-type.shelly.shellysmoke.group.battery.description = Informationen zum Akku
|
||||
thing-type.shelly.shellysmoke.group.device.label = Gerätestatus
|
||||
thing-type.shelly.shellysmoke.group.device.description = Informationen zum Gerätestatus
|
||||
thing-type.shelly.shellysense.sensors.device.label = Sensordaten
|
||||
thing-type.shelly.shellysense.sensors.device.description = Messwerte und Status des Sensors
|
||||
thing-type.shelly.shellysense.group.device.label = Gerätestatus
|
||||
thing-type.shelly.shellysense.group.device.description = Informationen zum Gerätestatus
|
||||
thing-type.shelly.shellygas.group.sensors.label = Sensordaten
|
||||
thing-type.shelly.shellygas.group.sensors.description = Messwerte und Status des Sensors
|
||||
thing-type.shelly.shellygas.group.device.label = Gerätestatus
|
||||
thing-type.shelly.shellygas.group.device.description = Informationen zum Gerätestatus
|
||||
thing-type.shelly.shellymotion.group.sensors.label = Sensordaten
|
||||
thing-type.shelly.shellymotion.group.sensors.description = Messwerte und Status des Sensors
|
||||
thing-type.shelly.shellymotion.group.battery.label = Batteriestatus
|
||||
thing-type.shelly.shellymotion.group.battery.description = Informationen zum Akku
|
||||
thing-type.shelly.shellymotion.group.device.label = Gerätestatus
|
||||
thing-type.shelly.shellymotion.group.device.description = Informationen zum Gerätestatus
|
||||
|
||||
# channel groups
|
||||
channel-group-type.shelly.sensorData.label = Sensordaten
|
||||
channel-group-type.shelly.sensorData.description = Messwerte der Sensoren
|
||||
channel-group-type.shelly.batteryStatus.label = Batterie-Status
|
||||
channel-group-type.shelly.batteryStatus.description = Informationen zum Akku
|
||||
channel-group-type.shelly.control.label = Steuerung
|
||||
channel-group-type.shelly.control.description = Steuerung des Gerätes
|
||||
channel-group-type.shelly.buttonState.label = Taster-Status
|
||||
channel-group-type.shelly.buttonState.description = Status des Tasters
|
||||
channel-group-type.shelly.deviceStatus.label = Gerätestatus
|
||||
channel-group-type.shelly.deviceStatus.description = Informationen zum Gerätestatus
|
||||
channel-group-type.shelly.bulbControl.label = Lichtsteuerung
|
||||
channel-group-type.shelly.bulbControl.description = Lichtsteuerung
|
||||
channel-group-type.shelly.duoControl.label = Lichtsteuerung
|
||||
channel-group-type.shelly.duoControl.description = Lichtsteuerung
|
||||
channel-group-type.shelly.rgbw2ColorControl.label = LED-Streifen Steuerung (RGBW)
|
||||
channel-group-type.shelly.rgbw2ColorControl.description = Steuerung der LED-Streifen (Farbmodus)
|
||||
channel-group-type.shelly.rgbw2WhiteControl.label = LED-Streifen Steuerung (Weiß)
|
||||
channel-group-type.shelly.rgbw2WhiteControl.description = Steuerung der LED-Streifen (Weißmodus)
|
||||
channel-group-type.shelly.colorSettingsBulb.label = Farben
|
||||
channel-group-type.shelly.colorSettingsBulb.description = Lichtfarben
|
||||
channel-group-type.shelly.colorSettingsRGBW2.label = Farben
|
||||
channel-group-type.shelly.colorSettingsRGBW2.description = Lichtfarben
|
||||
channel-group-type.shelly.whiteSettings.label = Einstellungen für den Weißmodus
|
||||
channel-group-type.shelly.whiteSettings.description = Anpassung des Lichtfarben wenn das Gerät im Weißmodus betrieben wird
|
||||
channel-group-type.shelly.whiteSettingsSimple.label = Einstellungen für den Weißmodus
|
||||
channel-group-type.shelly.whiteSettingsSimple.description = Anpassung des Lichtfarben wenn das Gerät im Weißmodus betrieben wird
|
||||
channel-group-type.shelly.rgbw2Channel.label = Steuerung
|
||||
channel-group-type.shelly.rgbw2Channel.description = Steuerung der Kanäle und Einstellungen
|
||||
channel-group-type.shelly.relayChannel.label = Relais
|
||||
channel-group-type.shelly.relayChannel.description = Shelly Relais Kanal
|
||||
channel-group-type.shelly.relayChannelPlug.label = Relais
|
||||
channel-group-type.shelly.relayChannelPlug.description = Shelly Relais Kanal
|
||||
channel-group-type.shelly.dimmerChannel.label = Dimmer
|
||||
channel-group-type.shelly.dimmerChannel.description = Shelly Dimmer Kanal
|
||||
channel-group-type.shelly.ix3Channel.label = Eingang
|
||||
channel-group-type.shelly.ix3Channel.description = Status des Eingangs
|
||||
channel-group-type.shelly.rollerControl.label = Rollladensteuerung
|
||||
channel-group-type.shelly.rollerControl.description = Steuerung der Rollladen
|
||||
channel-group-type.shelly.meter.label = Verbrauch
|
||||
channel-group-type.shelly.meter.description = Verbrauchswerte
|
||||
channel-group-type.shelly.externalSensors.label = Externe Sensoren
|
||||
channel-group-type.shelly.externalSensors.description = Werte der externen Sensoren (nur wenn angeschlossen)
|
||||
|
||||
# channels
|
||||
channel-type.shelly.outputName.label = Ausgangsname
|
||||
channel-type.shelly.outputName.description = Name des Relais-Ausgangs/Kanals (Konfiguration innerhalb der Shelly App)
|
||||
channel-type.shelly.timerAutoOn.label = Auto-EIN Timer
|
||||
channel-type.shelly.timerAutoOn.description = Wenn das Relais ausgeschaltet wird, wird dieses automatisch wieder nach n Sekunden eingeschaltet
|
||||
channel-type.shelly.timerAutoOff.label = Auto-AUS Timer
|
||||
channel-type.shelly.timerAutoOff.description = Wenn das Relais eingeschaltet wird, wird dieses automatisch wieder nach n Sekunden ausgeschaltet
|
||||
channel-type.shelly.timerActive.label = Timer aktiv
|
||||
channel-type.shelly.timerActive.description = ON: Auto-On/Off Timer ist aktiv
|
||||
channel-type.shelly.temperature.label = Temperatur
|
||||
channel-type.shelly.temperature.description = Vom Sensor gemessene Temperatur
|
||||
channel-type.shelly.temperature1.label = Temperatur 1
|
||||
channel-type.shelly.temperature1.description = Temperatur des externen Sensors 1
|
||||
channel-type.shelly.temperature2.label = Temperatur 2
|
||||
channel-type.shelly.temperature2.description = Temperatur des externen Sensors 2
|
||||
channel-type.shelly.temperature3.label = Temperatur 3
|
||||
channel-type.shelly.temperature3.description = Temperatur des externen Sensors 3
|
||||
channel-type.shelly.humidity.label = Luftfeuchtigkeit
|
||||
channel-type.shelly.humidity.description = Relative Luftfeuchtigkeit (0..100%)
|
||||
channel-type.shelly.targetTemp.label = Zieltemperatur
|
||||
channel-type.shelly.targetTemp.description = Zieltemperatur in °C, die erreicht werden soll im Auto-Temperatur Modus
|
||||
channel-type.shelly.controlMode.label = Modus
|
||||
channel-type.shelly.controlMode.description = Sensor/Steuerungsmodus
|
||||
channel-type.shelly.controlMode.state.option.manual = Manuell
|
||||
channel-type.shelly.controlMode.state.option.automatic = Automatisch
|
||||
channel-type.shelly.controlProfile.label = Profil
|
||||
channel-type.shelly.controlProfile.description = Ausgewähltes Profil
|
||||
channel-type.shelly.boostControl.label = Boost-Modus
|
||||
channel-type.shelly.boostControl.description = ON: Boost-Modus aktiviert (überschreibt Temperaturautomatik)
|
||||
channel-type.shelly.boostTimer.label = Boost-Timer
|
||||
channel-type.shelly.boostTimer.description = Anzahl Minuten, in dem die maximale Leistung erzeugt wird.
|
||||
channel-type.shelly.rollerShutter.label = Rollladensteuerung (0=offen, 100=geschlossen)
|
||||
channel-type.shelly.rollerShutter.description = Steuerung für den Rollladen: UP=rauf, DOWN=runter, STOP, Position (0=offen, 100=geschlossen)
|
||||
channel-type.shelly.rollerPosition.label = Rollladenposition (100=offen, 0=zu)
|
||||
channel-type.shelly.rollerPosition.description = Position des Rollladen (100-0%, 100%=offen, 0%=zu)
|
||||
channel-type.shelly.rollerFavorite.label = Positionsfavorit
|
||||
channel-type.shelly.rollerFavorite.description = Wählt den Positionsfavoriten 1-4, Positionen werden in der Shelly App konfiguriert; 0=undefiniert (kein Favorit gewählt)
|
||||
channel-type.shelly.rollerState.label = Rollladenstatus
|
||||
channel-type.shelly.rollerState.description = Zustand des Rollladen (open/closed/stopped für geöffnet/geschlossen/gestoppt).
|
||||
channel-type.shelly.rollerState.state.option.open = öffnet
|
||||
channel-type.shelly.rollerState.state.option.close = schließt
|
||||
channel-type.shelly.rollerState.state.option.stop = gestoppt
|
||||
channel-type.shelly.rollerStop.label = Stoppgrund
|
||||
channel-type.shelly.rollerStop.description = Letzter Grund für das Stoppen des Rollladens (normal=normaler Stopp, safety_switch=Sicherheits-Stopp, obstacle=Rollladen verhakt (Widerstand erkannt)
|
||||
channel-type.shelly.rollerStop.state.option.normal = Normaler Stopp
|
||||
channel-type.shelly.rollerStop.state.option.safety_switch = Sicherheits-Stopp
|
||||
channel-type.shelly.rollerStop.state.option.obstacle = Widerstand erkannt
|
||||
channel-type.shelly.rollerDirection.label = Letzte Rollladenrichtung
|
||||
channel-type.shelly.rollerDirection.description = Letzte Rollladenrichtung: öffnet/schließt/gestoppt
|
||||
channel-type.shelly.rollerDirection.state.option.open = öffnet
|
||||
channel-type.shelly.rollerDirection.state.option.close = schließt
|
||||
channel-type.shelly.rollerDirection.state.option.stop = gestoppt
|
||||
channel-type.shelly.rollerSafety.label = Sicherheitsschalter
|
||||
channel-type.shelly.rollerSafety.description = Status des Sicherheitsschalters
|
||||
channel-type.shelly.inputState.label = Eingang
|
||||
channel-type.shelly.inputState.description = Status des Relais-Eingangs
|
||||
channel-type.shelly.inputState1.label = Eingang 1
|
||||
channel-type.shelly.inputState1.description = Status des Relais-Eingangs 1
|
||||
channel-type.shelly.inputState2.label = Eingang 2
|
||||
channel-type.shelly.inputState2.description = Status des Relais-Eingangs 2
|
||||
channel-type.shelly.inputState3.label = Eingang 3
|
||||
channel-type.shelly.inputState3.description = Status des Relais-Eingangs 3
|
||||
channel-type.shelly.dimmerBrightness.label = Helligkeit
|
||||
channel-type.shelly.dimmerBrightness.description = Helligkeit (0-100%, 0=aus)
|
||||
channel-type.shelly.whiteBrightness.label = Helligkeit
|
||||
channel-type.shelly.whiteBrightness.description = Helligkeit (0-100%, 0=aus)
|
||||
channel-type.shelly.meterWatts.label = Leistung
|
||||
channel-type.shelly.meterWatts.description = Aktueller Stromverbrauch in Watt
|
||||
channel-type.shelly.meterAccuWatts.label = Kumulierter Verbrauch
|
||||
channel-type.shelly.meterAccuWatts.description = Kumulierter Verbrauch in Watt
|
||||
channel-type.shelly.meterAccuTotal.label = Kumulierter Gesamtverbrauch
|
||||
channel-type.shelly.meterAccuTotal.description = Kumulierter Gesamtverbrauch in kW/h
|
||||
channel-type.shelly.meterAccuReturned.label = Kumulierte Einspeisung
|
||||
channel-type.shelly.meterAccuReturned.description = Kumulierte Einspeisung in kW/h
|
||||
channel-type.shelly.meterReactive.label = Rückstrom
|
||||
channel-type.shelly.meterReactive.description = Aktueller Stromverbrauch (Watt) des Rückstroms
|
||||
channel-type.shelly.lastPower1.label = Schnitt letzte Min
|
||||
channel-type.shelly.lastPower1.description = Durchschnittsverbrauch der letzten Minute, 60s in Watt/Min
|
||||
channel-type.shelly.meterTotal.label = Gesamtverbrauch
|
||||
channel-type.shelly.meterTotal.description = Gesamtverbrauch seit Neustart in kW/h
|
||||
channel-type.shelly.meterReturned.label = Einspeisung
|
||||
channel-type.shelly.meterReturned.description = Einspeisung in kW/h
|
||||
channel-type.shelly.meterVoltage.label = Spannung
|
||||
channel-type.shelly.meterVoltage.description = Spannung in Volt
|
||||
channel-type.shelly.meterCurrent.label = Stromstärke
|
||||
channel-type.shelly.meterCurrent.description = Aktuelle gemessene Stromstärke
|
||||
channel-type.shelly.meterPowerFactor.label = Stromfaktor
|
||||
channel-type.shelly.meterPowerFactor.description = Faktor für Strom bei Photovoltaik
|
||||
channel-type.shelly.timestamp.label = Letzte Aktualisierung
|
||||
channel-type.shelly.timestamp.description = Zeitstempel der letzten Aktualisierung (lokale Zeitzone)
|
||||
channel-type.shelly.ledStatusDisable.label = Status-LED aus
|
||||
channel-type.shelly.ledStatusDisable.description = ON: Die Status-LED am Gerät ist deaktiviert
|
||||
channel-type.shelly.ledPowerDisable.label = Betriebs-LED aus
|
||||
channel-type.shelly.ledPowerDisable.description = ON: Die Betriebsanzeige (LED) am Gerät ist deaktiviert
|
||||
channel-type.shelly.colorMode.label = Farbmodus (ON=Farbe, OFF=Weiß)
|
||||
channel-type.shelly.colorMode.description = Betriebsart: ON: Farbe, OFF: Weiß
|
||||
channel-type.shelly.colorFull.label = Voll-Farbe
|
||||
channel-type.shelly.colorFull.description = Ausgewählte Farbe (rot/grün/blau/gelb/weiß) wird auf volle Intensität gesetzt (255)
|
||||
channel-type.shelly.colorFull.state.option.red = Rot
|
||||
channel-type.shelly.colorFull.state.option.green = Grün
|
||||
channel-type.shelly.colorFull.state.option.blue = Blau
|
||||
channel-type.shelly.colorFull.state.option.yellow = Gelb
|
||||
channel-type.shelly.colorFull.state.option.white = Weiß
|
||||
channel-type.shelly.colorRed.label = Rot
|
||||
channel-type.shelly.colorRed.description = Rot-Anteil des RGB-Wertes (0-255)
|
||||
channel-type.shelly.colorGreen.label = Grün
|
||||
channel-type.shelly.colorGreen.description = Grün-Anteil des RGB-Wertes (0-255)
|
||||
channel-type.shelly.colorBlue.label = Blau
|
||||
channel-type.shelly.colorBlue.description = Blau-Anteil des RGB-Wertes (0-255)
|
||||
channel-type.shelly.colorWhite.label = Weiß
|
||||
channel-type.shelly.colorWhite.description = Weiß-Anteil des RGBW-Wertes (0-255)
|
||||
channel-type.shelly.colorGain.label = Verstärkung
|
||||
channel-type.shelly.colorGain.description = Verstärkung des Farbwertes (0-100%)
|
||||
channel-type.shelly.whiteTemp.label = Lichttemperatur
|
||||
channel-type.shelly.whiteTemp.description = Temperatur des Weißlichtes (Bulb/RGBW2: 3000K-6500K; Duo: 2700K-6500K)
|
||||
channel-type.shelly.colorEffectBulb.label = Lichteffekt
|
||||
channel-type.shelly.colorEffectBulb.description = Lichteffekt: 0: keiner, 1: Meteoritenregen, 2: Verlauf, 3: Atmen, 4: Blitzen, 5: Übergang ein/aus, 6: Rot/Grün-Wechsel
|
||||
channel-type.shelly.colorEffectBulb.option.0 = Aus
|
||||
channel-type.shelly.colorEffectBulb.option.1 = Meteoritenregen
|
||||
channel-type.shelly.colorEffectBulb.option.2 = Verlauf
|
||||
channel-type.shelly.colorEffectBulb.option.3 = Atmen
|
||||
channel-type.shelly.colorEffectBulb.option.4 = Blitzen
|
||||
channel-type.shelly.colorEffectBulb.option.5 = Übergang ein/aus
|
||||
channel-type.shelly.colorEffectBulb.option.6 = Rot/Grün-Wechsel
|
||||
channel-type.shelly.colorEffectRGBW2.label = Farbeffekt
|
||||
channel-type.shelly.colorEffectRGBW2.description = Lichteffekt: 0: keiner, 1: Meteoritenregen, 2: Farbverlauf, 3: Blitzen
|
||||
channel-type.shelly.colorEffectRGBW2.option.0 = Aus
|
||||
channel-type.shelly.colorEffectRGBW2.option.1 = Meteoritenregen
|
||||
channel-type.shelly.colorEffectRGBW2.option.2 = Farbverlauf
|
||||
channel-type.shelly.colorEffectRGBW2.option.3 = Blitzen
|
||||
channel-type.shelly.sensorTemp.label = Temperatur
|
||||
channel-type.shelly.sensorTemp.description = Aktuelle Temperatur des Sensors in °C
|
||||
channel-type.shelly.sensorExtTemp.label = Temperatur
|
||||
channel-type.shelly.sensorExtTemp.description = Aktuelle Temperatur des externen Sensors in °C
|
||||
channel-type.shelly.sensorExtHum.label = Luftfeuchtigkeit
|
||||
channel-type.shelly.sensorExtHum.description = Relative Luftfeuchtigkeit in %
|
||||
channel-type.shelly.sensorHumidity.label = Luftfeuchtigkeit
|
||||
channel-type.shelly.sensorHumidity.description = Relative Luftfeuchtigkeit in %
|
||||
channel-type.shelly.sensorFlood.label = Wasseralarm
|
||||
channel-type.shelly.sensorFlood.description = Alarm: Es wurde Wasser erkannt
|
||||
channel-type.shelly.sensorSmoke.label = Rauchalarm
|
||||
channel-type.shelly.sensorSmoke.description = Alarm: Es wurde Rauch erkannt
|
||||
channel-type.shelly.sensorLux.label = Helligkeit
|
||||
channel-type.shelly.sensorLux.description = Helligkeit in Lux
|
||||
channel-type.shelly.sensorIllumination.label = Tageslicht
|
||||
channel-type.shelly.sensorIllumination.description = Erkanntes Tageslicht (bright=taghell, twilight=Dämmerung, dark=Abend/Nacht)
|
||||
channel-type.shelly.sensorIllumination.state.option.dark = Dunkel
|
||||
channel-type.shelly.sensorIllumination.state.option.twilight = Dämmerung
|
||||
channel-type.shelly.sensorIllumination.state.option.bright = Hell
|
||||
channel-type.shelly.sensorIllumination.state.option.unknown = Unbekannt
|
||||
channel-type.shelly.sensorPPM.label = Gas-Konzentration
|
||||
channel-type.shelly.sensorPPM.description = Gemessene Konzentration in PPM
|
||||
channel-type.shelly.sensorPosition.label = Position
|
||||
channel-type.shelly.sensorPosition.description = Position des Ventils
|
||||
channel-type.shelly.sensorADC.label = Voltage (ADC)
|
||||
channel-type.shelly.sensorADC.description = Gemessene Spannung
|
||||
channel-type.shelly.sensorTilt.label = Öffnungswinkel
|
||||
channel-type.shelly.sensorTilt.description = Öffnungswinkel in Grad (erfordert Kalibrierung in der App)
|
||||
channel-type.shelly.sensorVibration.label = Vibration
|
||||
channel-type.shelly.sensorVibration.description = ON: Sensor hat eine Vibration erkannt
|
||||
channel-type.shelly.sensorMotion.label = Bewegung
|
||||
channel-type.shelly.sensorMotion.description = ON: Es wurde eine Bewegung erkannt
|
||||
channel-type.shelly.motionActive.label = Bewegungssensor aktiv
|
||||
channel-type.shelly.motionActive.description = Zeigt an, ob die Bewegungserkennung aktiv oder pausiert ist
|
||||
channel-type.shelly.motionTimestamp.label = Letzte Bewegung
|
||||
channel-type.shelly.motionTimestamp.description = Datum/Uhrzeit, wann die letzte Bewegung erkannt wurde
|
||||
channel-type.shelly.sensorValve.label = Ventil
|
||||
channel-type.shelly.sensorValve.description = Gibt den Status des Ventils an
|
||||
channel-type.shelly.sensorValve.state.option.closed = geschlossen
|
||||
channel-type.shelly.sensorValve.state.option.opened = geöffnet
|
||||
channel-type.shelly.sensorValve.state.option.not_connected = nicht angeschlossen
|
||||
channel-type.shelly.sensorValve.state.option.failure = Störung
|
||||
channel-type.shelly.sensorValve.state.option.closing = schließt
|
||||
channel-type.shelly.sensorValve.state.option.opening = öffnet
|
||||
channel-type.shelly.sensorValve.state.option.checking = Test läuft
|
||||
channel-type.shelly.sensorValve.state.option.UNKNOWN = unbekannt
|
||||
channel-type.shelly.sensorCharger.label = Ladestatus
|
||||
channel-type.shelly.sensorCharger.description = ON: Ein Ladegerät ist angeschlossen
|
||||
channel-type.shelly.sensorContact.label = Status
|
||||
channel-type.shelly.sensorContact.description = Öffnungs-Status (OPEN=offen, CLOSED=geschlossen)
|
||||
channel-type.shelly.sensorContact.state.option.OPEN = geöffnet
|
||||
channel-type.shelly.sensorContact.state.option.CLOSED = geschlossen
|
||||
channel-type.shelly.sensorState.label = Gerätestatus
|
||||
channel-type.shelly.sensorState.description = Status der Betriebsbereitschaft (warmup/normal/fault)
|
||||
channel-type.shelly.sensorState.state.option.warmup= Initialisierung
|
||||
channel-type.shelly.sensorState.state.option.normal= Normal
|
||||
channel-type.shelly.sensorState.state.option.fault= Fehler
|
||||
channel-type.shelly.sensorState.state.option.unknown= Unbekannt
|
||||
channel-type.shelly.sensorWakeup.label = Aufwachgrund
|
||||
channel-type.shelly.sensorWakeup.description = Grund des letzten Aufweckens (button/battery/perodice/powerdown/sensor/alarm/ext_power)
|
||||
channel-type.shelly.sensorWakeup.state.option.button = Taste
|
||||
channel-type.shelly.sensorWakeup.state.option.battery = Batterie
|
||||
channel-type.shelly.sensorWakeup.state.option.periodic = Intervall
|
||||
channel-type.shelly.sensorWakeup.state.option.poweron = Betrieb
|
||||
channel-type.shelly.sensorWakeup.state.option.sensor = Statusänderung
|
||||
channel-type.shelly.sensorWakeup.state.option.alarm = Alarm
|
||||
channel-type.shelly.sensorWakeup.state.option.ext_power = Ladegerät verbunden
|
||||
channel-type.shelly.batVoltage.label = Batteriespannung
|
||||
channel-type.shelly.batVoltage.description = Batteriespannung in Volt (V)
|
||||
channel-type.shelly.charger.label = Ladegerät
|
||||
channel-type.shelly.charger.description = ON: Ein Ladegerät ist angeschlossen
|
||||
channel-type.shelly.calibrated.label = Kalibriert
|
||||
channel-type.shelly.calibrated.description = ON: Das Gerät/der Sensor is kalibriert
|
||||
channel-type.shelly.externalPower.label = Externe Stromquelle
|
||||
channel-type.shelly.externalPower.description = ON: Externe Stromquelle ist angeschlossen
|
||||
channel-type.shelly.senseKey.label = IR-Code
|
||||
channel-type.shelly.senseKey.description = IR Code senden im Pronto- oder HEX64-Format
|
||||
channel-type.shelly.deviceName.label = Gerätename
|
||||
channel-type.shelly.deviceName.description = Symbolischer Name des Gerätes (Konfiguration über Shelly App)
|
||||
channel-type.shelly.uptime.label = Laufzeit
|
||||
channel-type.shelly.uptime.description = Anzahl Sekunden seit dem das Gerät mit Strom versorgt wurde
|
||||
channel-type.shelly.heartBeat.label = Letzte Aktivität
|
||||
channel-type.shelly.heartBeat.description = Zeitpunkt der letzten Aktivität. Hierbei kann es sich um einen erfolgreichen API-Aufruf, oder Sensor-Aktualisierung handeln. Dies schließt eine erfolgreiche Netzwerk-Kommunikation ein (WiFi + IP)
|
||||
channel-type.shelly.updateAvailable.label = Firmwareaktualisierung vorhanden
|
||||
channel-type.shelly.updateAvailable.description = ON: Es ist eine neuere Firmwareversion verfügbar (Update kann mit der Shelly App durchgeführt werden)
|
||||
channel-type.shelly.deviceTemp.label = Gerätetemperatur
|
||||
channel-type.shelly.deviceTemp.description = Interne Gerätetemperatur. Hohe Temperaturen deuten ggf. auch ein Hitzestau/Installationsproblem hin.
|
||||
channel-type.shelly.supplyVoltage.label = Versorgungsspannung
|
||||
channel-type.shelly.supplyVoltage.description = Externe Versorgungsspannung
|
||||
channel-type.shelly.lastUpdate.label = Letzte Aktualisierung
|
||||
channel-type.shelly.lastUpdate.description = Zeitstempel der letzten Aktualisierung (lokale Zeitzone)
|
||||
channel-type.shelly.lastEvent.label = Letztes Ereignis
|
||||
channel-type.shelly.lastEvent.description = Typ des letzten Ereignisses (S=kurz, SS=2xkurz, SSS=3xkurz, L=lang)
|
||||
channel-type.shelly.lastEvent.state.option.S = 1x kurz
|
||||
channel-type.shelly.lastEvent.state.option.SS = 2x kurz
|
||||
channel-type.shelly.lastEvent.state.option.SSS = 3x kurz
|
||||
channel-type.shelly.lastEvent.state.option.L = lang
|
||||
channel-type.shelly.lastEvent.state.option.SL = kurz-lang
|
||||
channel-type.shelly.lastEvent.state.option.LS = lang-kurz
|
||||
channel-type.shelly.eventCount.label = Ereigniszähler
|
||||
channel-type.shelly.eventCount.description = Anzahl der empfangenen Ereignisse.
|
||||
channel-type.shelly.eventTrigger.label = Ereignis
|
||||
channel-type.shelly.eventTrigger.description = Signalisiert Ereignisse (Trigger): ROLLER_OPEN=Rollladen geöffnet, ROLLER_CLOSE=Rollladen geschlossen, ROLLER_STOP=Rollladen angehalten
|
||||
channel-type.shelly.eventTrigger.option.ROLLER_OPEN = Rollladen geöffnet
|
||||
channel-type.shelly.eventTrigger.option.ROLLER_CLOSE = Rollladen geschlossen
|
||||
channel-type.shelly.eventTrigger.option.ROLLER_STOP = Rollladen gestoppt
|
||||
channel-type.shelly.alarmTrigger.label = Alarm
|
||||
channel-type.shelly.alarmTrigger.description = Signalisiert Alarme (Trigger): NONE=kein Alarm, WEAK_SIGNAL=Schlechte WiFi-Verbindung, RESTARTED=Gerät neu gestartet, OVERTEMP=Überhitzung, OVERLOAD=Überlast, OVERPOWER=Maximale Last überschritten, LOAD_ERROR=Lastfehler, LOW_BATTERY=Batterie schwach
|
||||
channel-type.shelly.alarmTrigger.option.NONE = kein Alarm
|
||||
channel-type.shelly.alarmTrigger.option.WEAK_SIGNAL = Schlechte WiFi-Verbindung
|
||||
channel-type.shelly.alarmTrigger.option.RESTARTED = Gerät neu gestartet
|
||||
channel-type.shelly.alarmTrigger.option.OVERTEMP = Überhitzung
|
||||
channel-type.shelly.alarmTrigger.option.OVERLOAD = Überlast
|
||||
channel-type.shelly.alarmTrigger.option.OVERPOWER = Maximale Last überschritten
|
||||
channel-type.shelly.alarmTrigger.option.LOAD_ERROR = Lastfehler
|
||||
channel-type.shelly.alarmTrigger.option.LOW_BATTERY = Batterieladung schwach
|
||||
channel-type.shelly.alarmTrigger.option.BATTERY = Aufwecken durch Batterie
|
||||
channel-type.shelly.alarmTrigger.option.POWERON = Gerät wurde eingeschaltet
|
||||
channel-type.shelly.alarmTrigger.option.BUTTON = Taste wurde gedrückt
|
||||
channel-type.shelly.alarmTrigger.option.SENSOR = Sensordaten wurden aktualisiert
|
||||
channel-type.shelly.alarmState.label = Alarmstatus
|
||||
channel-type.shelly.alarmState.description = Typ des Alarms (unknown/none/mild/heavy/test)
|
||||
channel-type.shelly.alarmState.state.option.unknown = Unbekannt
|
||||
channel-type.shelly.alarmState.state.option.none = Kein Alarm
|
||||
channel-type.shelly.alarmState.state.option.mild = Leichte Konzentration
|
||||
channel-type.shelly.alarmState.state.option.heavy = Hohe Konzentration
|
||||
channel-type.shelly.alarmState.state.option.test = Testknopf gedrückt
|
||||
channel-type.shelly.selfTest.label = Selbsttest
|
||||
channel-type.shelly.selfTest.description = Status des Selbsttests
|
||||
channel-type.shelly.selfTest.state.option.not_completed = Nicht abgeschlossen
|
||||
channel-type.shelly.selfTest.state.option.completed = Abgeschlossen
|
||||
channel-type.shelly.selfTest.state.option.running = Test läuft
|
||||
channel-type.shelly.selfTest.state.option.pending = Ausstehend
|
||||
channel-type.shelly.selfTest.state.option.unknown = Unbekannt
|
||||
channel-type.shelly.sensorError.label = Sensor-Fehler
|
||||
channel-type.shelly.sensorError.description = Sensor-Fehler
|
||||
channel-type.shelly.sensorSleepTime.label = Sensor Standby Timer
|
||||
channel-type.shelly.sensorSleepTime.description = Das Gerät sendet kein Ereignis solange die Zeitspanne nicht abgelaufen ist
|
||||
channel-type.shelly.deviceSchedule.label = Zeitplan aktiv
|
||||
channel-type.shelly.deviceSchedule.description = ON: Ein zeitgesteuertes Programm ist aktiv
|
@ -31,6 +31,7 @@
|
||||
<option value="LOW_BATTERY">@text/channel-type.shelly.alarmTrigger.option.LOW_BATTERY</option>
|
||||
<option value="BATTERY">@text/channel-type.shelly.alarmTrigger.option.BATTERY</option>
|
||||
<option value="POWERON">@text/channel-type.shelly.alarmTrigger.option.POWERON</option>
|
||||
<option value="EXT_POWER">@text/channel-type.shelly.alarmTrigger.option.EXT_POWER</option>
|
||||
<option value="BUTTON">@text/channel-type.shelly.alarmTrigger.option.BUTTON</option>
|
||||
<option value="SENSOR">@text/channel-type.shelly.alarmTrigger.option.SENSOR</option>
|
||||
</options>
|
||||
|
@ -87,16 +87,16 @@
|
||||
<channel-groups>
|
||||
<channel-group id="control" typeId="rgbw2WhiteControl"/>
|
||||
<channel-group id="channel1" typeId="rgbw2Channel">
|
||||
<label>@text/thing-type.shelly.shellyrgbw2-white.group.channel1.label</label>
|
||||
<label>@text/channel-group-type.shelly.rgbw2Channel1.label</label>
|
||||
</channel-group>
|
||||
<channel-group id="channel2" typeId="rgbw2Channel">
|
||||
<label>@text/thing-type.shelly.shellyrgbw2-white.group.channel2.label</label>
|
||||
<label>@text/channel-group-type.shelly.rgbw2Channel2.label</label>
|
||||
</channel-group>
|
||||
<channel-group id="channel3" typeId="rgbw2Channel">
|
||||
<label>@text/thing-type.shelly.shellyrgbw2-white.group.channel3.label</label>
|
||||
<label>@text/channel-group-type.shelly.rgbw2Channel3.label</label>
|
||||
</channel-group>
|
||||
<channel-group id="channel4" typeId="rgbw2Channel">
|
||||
<label>@text/thing-type.shelly.shellyrgbw2-white.group.channel4.label</label>
|
||||
<label>@text/channel-group-type.shelly.rgbw2Channel4.label</label>
|
||||
</channel-group>
|
||||
<channel-group id="meter" typeId="meter"/>
|
||||
<channel-group id="device" typeId="deviceStatus"/>
|
||||
@ -106,7 +106,6 @@
|
||||
<config-description-ref uri="thing-type:shelly:rgbw2"/>
|
||||
</thing-type>
|
||||
|
||||
|
||||
<channel-group-type id="bulbControl">
|
||||
<label>@text/channel-group-type.shelly.bulbControl.label</label>
|
||||
<description>@text/channel-group-type.shelly.bulbControl.description</description>
|
||||
|
@ -50,10 +50,10 @@
|
||||
<description>@text/thing-type.shelly.shellyem.description</description>
|
||||
<channel-groups>
|
||||
<channel-group id="meter1" typeId="meter">
|
||||
<label>@text/thing-type.shelly.shellyem.group.meter1.label</label>
|
||||
<label>@text/channel-group-type.shelly.meter1.label</label>
|
||||
</channel-group>
|
||||
<channel-group id="meter2" typeId="meter">
|
||||
<label>@text/thing-type.shelly.shellyem.group.meter2.label</label>
|
||||
<label>@text/channel-group-type.shelly.meter2.label</label>
|
||||
</channel-group>
|
||||
<channel-group id="relay" typeId="relayChannel"/>
|
||||
<channel-group id="device" typeId="deviceStatus"/>
|
||||
@ -69,13 +69,13 @@
|
||||
<description>@text/thing-type.shelly.shellyem3.description</description>
|
||||
<channel-groups>
|
||||
<channel-group id="meter1" typeId="meter">
|
||||
<label>@text/thing-type.shelly.shellyem3.group.meter1.label</label>
|
||||
<label>@text/channel-group-type.shelly.meter1.label</label>
|
||||
</channel-group>
|
||||
<channel-group id="meter2" typeId="meter">
|
||||
<label>@text/thing-type.shelly.shellyem3.group.meter2.label</label>
|
||||
<label>@text/channel-group-type.shelly.meter2.label</label>
|
||||
</channel-group>
|
||||
<channel-group id="meter3" typeId="meter">
|
||||
<label>@text/thing-type.shelly.shellyem3.group.meter3.label</label>
|
||||
<label>@text/channel-group-type.shelly.meter3.label</label>
|
||||
</channel-group>
|
||||
<channel-group id="relay" typeId="relayChannel"/>
|
||||
<channel-group id="device" typeId="deviceStatus"/>
|
||||
@ -91,10 +91,10 @@
|
||||
|
||||
<channel-groups>
|
||||
<channel-group id="relay1" typeId="relayChannel">
|
||||
<label>@text/thing-type.shelly.shelly2-relay.group.relay1.label</label>
|
||||
<label>@text/channel-group-type.shelly.relayChannel1.label</label>
|
||||
</channel-group>
|
||||
<channel-group id="relay2" typeId="relayChannel">
|
||||
<label>@text/thing-type.shelly.shelly2-relay.group.relay2.label</label>
|
||||
<label>@text/channel-group-type.shelly.relayChannel2.label</label>
|
||||
</channel-group>
|
||||
<channel-group id="meter" typeId="meter"/>
|
||||
<channel-group id="device" typeId="deviceStatus"/>
|
||||
@ -123,16 +123,16 @@
|
||||
<description>@text/thing-type.shelly.shelly25-relay.description</description>
|
||||
<channel-groups>
|
||||
<channel-group id="relay1" typeId="relayChannel">
|
||||
<label>@text/thing-type.shelly.shelly25-relay.group.relay1.label</label>
|
||||
<label>@text/channel-group-type.shelly.relayChannel1.label</label>
|
||||
</channel-group>
|
||||
<channel-group id="meter1" typeId="meter">
|
||||
<label>@text/thing-type.shelly.shelly25-relay.group.meter1.label</label>
|
||||
<label>@text/channel-group-type.shelly.meter1.label</label>
|
||||
</channel-group>
|
||||
<channel-group id="relay2" typeId="relayChannel">
|
||||
<label>@text/thing-type.shelly.shelly25-relay.group.relay2.label</label>
|
||||
<label>@text/channel-group-type.shelly.relayChannel2.label</label>
|
||||
</channel-group>
|
||||
<channel-group id="meter2" typeId="meter">
|
||||
<label>@text/thing-type.shelly.shelly25-relay.group.meter2.label</label>
|
||||
<label>@text/channel-group-type.shelly.meter2.label</label>
|
||||
</channel-group>
|
||||
<channel-group id="device" typeId="deviceStatus"/>
|
||||
</channel-groups>
|
||||
@ -161,28 +161,28 @@
|
||||
|
||||
<channel-groups>
|
||||
<channel-group id="relay1" typeId="relayChannel">
|
||||
<label>@text/thing-type.shelly.shelly4pro.group.relay1.label</label>
|
||||
<label>@text/channel-group-type.shelly.relayChannel1.label</label>
|
||||
</channel-group>
|
||||
<channel-group id="meter1" typeId="meter">
|
||||
<label>@text/thing-type.shelly.shelly4pro.group.meter1.label</label>
|
||||
<label>@text/channel-group-type.shelly.meter1.label</label>
|
||||
</channel-group>
|
||||
<channel-group id="relay2" typeId="relayChannel">
|
||||
<label>@text/thing-type.shelly.shelly4pro.group.relay2.label</label>
|
||||
<label>@text/channel-group-type.shelly.relayChannel2.label</label>
|
||||
</channel-group>
|
||||
<channel-group id="meter2" typeId="meter">
|
||||
<label>@text/thing-type.shelly.shelly4pro.group.meter2.label</label>
|
||||
<label>@text/channel-group-type.shelly.meter2.label</label>
|
||||
</channel-group>
|
||||
<channel-group id="relay3" typeId="relayChannel">
|
||||
<label>@text/thing-type.shelly.shelly4pro.group.relay3.label</label>
|
||||
<label>@text/channel-group-type.shelly.relayChannel3.label</label>
|
||||
</channel-group>
|
||||
<channel-group id="meter3" typeId="meter">
|
||||
<label>@text/thing-type.shelly.shelly4pro.group.meter3.label</label>
|
||||
<label>@text/channel-group-type.shelly.meter3.label</label>
|
||||
</channel-group>
|
||||
<channel-group id="relay4" typeId="relayChannel">
|
||||
<label>@text/thing-type.shelly.shelly4pro.group.relay4.label</label>
|
||||
<label>@text/channel-group-type.shelly.relayChannel4.label</label>
|
||||
</channel-group>
|
||||
<channel-group id="meter4" typeId="meter">
|
||||
<label>@text/thing-type.shelly.shelly4pro.group.meter4.label</label>
|
||||
<label>@text/channel-group-type.shelly.meter4.label</label>
|
||||
</channel-group>
|
||||
<channel-group id="device" typeId="deviceStatus"/>
|
||||
</channel-groups>
|
||||
@ -239,10 +239,10 @@
|
||||
|
||||
<channel-groups>
|
||||
<channel-group id="relay1" typeId="relayChannel">
|
||||
<label>@text/thing-type.shelly.shellyuni.group.relay1.label</label>
|
||||
<label>@text/channel-group-type.shelly.relayChannel1.label</label>
|
||||
</channel-group>
|
||||
<channel-group id="relay2" typeId="relayChannel">
|
||||
<label>@text/thing-type.shelly.shellyuni.group.relay2.label</label>
|
||||
<label>@text/channel-group-type.shelly.relayChannel2.label</label>
|
||||
</channel-group>
|
||||
<channel-group id="sensors" typeId="sensorData"/>
|
||||
<channel-group id="device" typeId="deviceStatus"/>
|
||||
@ -284,9 +284,15 @@
|
||||
<label>Shelly ix3 (SHIX3-1)</label>
|
||||
<description>@text/thing-type.shelly.shellyix3.description</description>
|
||||
<channel-groups>
|
||||
<channel-group id="status1" typeId="ix3Channel"/>
|
||||
<channel-group id="status2" typeId="ix3Channel"/>
|
||||
<channel-group id="status3" typeId="ix3Channel"/>
|
||||
<channel-group id="status1" typeId="ix3Channel">
|
||||
<label>@text/channel-group-type.shelly.ix3Channel1.label</label>
|
||||
</channel-group>
|
||||
<channel-group id="status2" typeId="ix3Channel">
|
||||
<label>@text/channel-group-type.shelly.ix3Channel2.label</label>
|
||||
</channel-group>
|
||||
<channel-group id="status3" typeId="ix3Channel">
|
||||
<label>@text/channel-group-type.shelly.ix3Channel3.label</label>
|
||||
</channel-group>
|
||||
<channel-group id="device" typeId="deviceStatus"/>
|
||||
</channel-groups>
|
||||
|
||||
@ -300,8 +306,8 @@
|
||||
</channel-group-type>
|
||||
|
||||
<channel-group-type id="relayChannelPlug">
|
||||
<label>@text/channel-group-type.shelly.relayChannelPlug.label</label>
|
||||
<description>@text/channel-group-type.shelly.relayChannelPlug.description</description>
|
||||
<label>@text/channel-group-type.shelly.relayChannel.label</label>
|
||||
<description>@text/channel-group-type.shelly.relayChannel.description</description>
|
||||
</channel-group-type>
|
||||
|
||||
<channel-group-type id="dimmerChannel">
|
||||
|
@ -10,22 +10,21 @@
|
||||
|
||||
<representation-property>serviceName</representation-property>
|
||||
<config-description>
|
||||
<parameter name="userId" type="text" required="true">
|
||||
<label>@text/thing-type.config.shellydevice.userId.label</label>
|
||||
<description>@text/thing-type.config.shellydevice.userId.description</description>
|
||||
</parameter>
|
||||
<parameter name="password" type="text" required="true">
|
||||
<label>@text/thing-type.config.shellydevice.password.label</label>
|
||||
<description>@text/thing-type.config.shellydevice.password.description</description>
|
||||
<context>password</context>
|
||||
</parameter>
|
||||
<parameter name="deviceIp" type="text" required="true">
|
||||
<label>@text/thing-type.config.shellydevice.deviceIp.label</label>
|
||||
<description>@text/thing-type.config.shellydevice.deviceIp.description</description>
|
||||
<label>@text/thing-type.config.shelly.deviceIp.label</label>
|
||||
<description>@text/thing-type.config.shelly.deviceIp.description</description>
|
||||
<context>network-address</context>
|
||||
</parameter>
|
||||
<parameter name="userId" type="text" required="false">
|
||||
<label>@text/thing-type.config.shelly.userId.label</label>
|
||||
<description>@text/thing-type.config.shelly.userId.description</description>
|
||||
</parameter>
|
||||
<parameter name="password" type="text" required="false">
|
||||
<label>@text/thing-type.config.shelly.password.label</label>
|
||||
<description>@text/thing-type.config.shelly.password.description</description>
|
||||
<context>password</context>
|
||||
</parameter>
|
||||
</config-description>
|
||||
|
||||
</thing-type>
|
||||
|
||||
<thing-type id="shellyunknown">
|
||||
|
Loading…
Reference in New Issue
Block a user