Fix Zigbee name stylization (#13954)

Signed-off-by: Jacob Laursen <jacob-github@vindvejr.dk>
This commit is contained in:
Jacob Laursen
2022-12-17 17:25:38 +01:00
committed by GitHub
parent d20b10317c
commit 6753234e32
30 changed files with 114 additions and 114 deletions

View File

@@ -60,8 +60,8 @@ import org.slf4j.LoggerFactory;
* The {@link PlugwiseStickHandler} handles channel updates and commands for a Plugwise Stick device.
* </p>
* <p>
* The Stick is an USB ZigBee controller that communicates with the Circle+. It is a {@link Bridge} to the devices on a
* Plugwise ZigBee mesh network.
* The Stick is an USB Zigbee controller that communicates with the Circle+. It is a {@link Bridge} to the devices on a
* Plugwise Zigbee mesh network.
* </p>
*
* @author Wouter Born, Karel Goderis - Initial contribution

View File

@@ -4,7 +4,7 @@
xsi:schemaLocation="https://openhab.org/schemas/binding/v1.0.0 https://openhab.org/schemas/binding-1.0.0.xsd">
<name>Plugwise Binding</name>
<description>Monitor and control Plugwise ZigBee devices using the Stick. Supported devices are the Circle, Circle+,
<description>Monitor and control Plugwise Zigbee devices using the Stick. Supported devices are the Circle, Circle+,
Scan, Sense, Stealth and Switch.</description>
</binding:binding>

View File

@@ -13,7 +13,7 @@
</parameter>
<parameter name="messageWaitTime" type="integer" min="0" max="500" step="50">
<label>Message Wait Time</label>
<description>The time to wait between messages sent on the ZigBee network (in ms)</description>
<description>The time to wait between messages sent on the Zigbee network (in ms)</description>
<default>150</default>
<unitLabel>ms</unitLabel>
</parameter>
@@ -67,7 +67,7 @@
</parameter>
<parameter name="temporarilyNotInNetwork" type="boolean" required="false">
<label>Temporarily Not in Network</label>
<description>Stops searching for an unplugged device on the ZigBee network traffic</description>
<description>Stops searching for an unplugged device on the Zigbee network traffic</description>
<default>false</default>
<advanced>true</advanced>
</parameter>

View File

@@ -1,6 +1,6 @@
# binding
binding.plugwise.name = Plugwise Binding
binding.plugwise.description = Monitor and control Plugwise ZigBee devices using the Stick. Supported devices are the Circle, Circle+, Scan, Sense, Stealth and Switch.
binding.plugwise.description = Monitor and control Plugwise Zigbee devices using the Stick. Supported devices are the Circle, Circle+, Scan, Sense, Stealth and Switch.
# bridge type configuration parameters
@@ -8,7 +8,7 @@ bridge-type.config.plugwise.stick.serialPort.label = Serial port
bridge-type.config.plugwise.stick.serialPort.description = The serial port of the Stick, e.g. "/dev/ttyUSB0" for Linux or "COM1" for Windows
bridge-type.config.plugwise.stick.messageWaitTime.label = Message wait time
bridge-type.config.plugwise.stick.messageWaitTime.description = The time to wait between messages sent on the ZigBee network (in ms)
bridge-type.config.plugwise.stick.messageWaitTime.description = The time to wait between messages sent on the Zigbee network (in ms)
# thing types
@@ -16,7 +16,7 @@ thing-type.plugwise.circle.label = Plugwise Circle
thing-type.plugwise.circle.description = A power outlet plug that provides energy measurement and switching control of appliances
thing-type.plugwise.circleplus.label = Plugwise Circle+
thing-type.plugwise.circleplus.description = A special Circle that coordinates the ZigBee network and acts as network gateway
thing-type.plugwise.circleplus.description = A special Circle that coordinates the Zigbee network and acts as network gateway
thing-type.plugwise.scan.label = Plugwise Scan
thing-type.plugwise.scan.description = A wireless motion (PIR) and light sensor
@@ -28,7 +28,7 @@ thing-type.plugwise.stealth.label = Plugwise Stealth
thing-type.plugwise.stealth.description = A Circle with a more compact form factor that can be built-in
thing-type.plugwise.stick.label = Plugwise Stick
thing-type.plugwise.stick.description = A ZigBee USB controller used for communicating with the Circle+
thing-type.plugwise.stick.description = A Zigbee USB controller used for communicating with the Circle+
thing-type.plugwise.switch.label = Plugwise Switch
thing-type.plugwise.switch.description = A wireless wall switch
@@ -51,7 +51,7 @@ thing-type.config.plugwise.relay.measurementInterval.label = Measurement interva
thing-type.config.plugwise.relay.measurementInterval.description = The energy measurement interval (in minutes)
thing-type.config.plugwise.relay.temporarilyNotInNetwork.label = Temporarily not in network
thing-type.config.plugwise.relay.temporarilyNotInNetwork.description = Stops searching for an unplugged device on the ZigBee network
thing-type.config.plugwise.relay.temporarilyNotInNetwork.description = Stops searching for an unplugged device on the Zigbee network
thing-type.config.plugwise.relay.updateConfiguration.label = Update configuration
thing-type.config.plugwise.relay.updateConfiguration.description = Stores if the device configuration is up to date (automatically enabled/disabled)

View File

@@ -9,7 +9,7 @@
<bridge-type-ref id="stick"/>
</supported-bridge-type-refs>
<label>Plugwise Circle+</label>
<description>A special Circle that coordinates the ZigBee network and acts as network gateway</description>
<description>A special Circle that coordinates the Zigbee network and acts as network gateway</description>
<channels>
<channel id="clock" typeId="clock"/>
<channel id="energy" typeId="energy"/>

View File

@@ -6,7 +6,7 @@
<bridge-type id="stick">
<label>Plugwise Stick</label>
<description>A ZigBee USB controller used for communicating with the Circle+</description>
<description>A Zigbee USB controller used for communicating with the Circle+</description>
<representation-property>macAddress</representation-property>
<config-description-ref uri="bridge-type:plugwise:stick"/>
</bridge-type>