[luxom] Add missing default translations (#12883)

Signed-off-by: Laurent Garnier <lg.hc@free.fr>
This commit is contained in:
lolodomo 2022-06-04 23:45:52 +02:00 committed by GitHub
parent bdf59524b8
commit 3de409be75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 14 deletions

View File

@ -5,15 +5,21 @@ binding.luxom.description = This is the binding for Luxom bus system (https://ww
# thing types # thing types
thing-type.luxom.switch.label = Switch thing-type.luxom.bridge.label = Luxom Bridge
thing-type.luxom.switch.description = Switch type action in Luxom thing-type.luxom.bridge.description = This bridge represents a Luxom IP-interface (for example a DS-65L).
thing-type.luxom.dimmer.label = Dimmer thing-type.luxom.dimmer.label = Dimmer
thing-type.luxom.dimmer.description = Dimmer type action in Luxom thing-type.luxom.dimmer.description = Dimmer type action in Luxom
thing-type.luxom.switch.label = Switch
thing-type.luxom.switch.description = Switch type action in Luxom
# thing types config # thing types config
thing-type.config.luxom.switch.address.label = Address thing-type.config.luxom.bridge.ipAddress.label = IP or Host Name
thing-type.config.luxom.switch.address.description = Luxom bus address thing-type.config.luxom.bridge.ipAddress.description = The IP or host name of the Luxom IP-interface.
thing-type.config.luxom.bridge.port.label = Bridge Port
thing-type.config.luxom.bridge.port.description = Port to communicate with Luxom IP-interface, default 2300.
thing-type.config.luxom.bridge.reconnectInterval.label = Reconnect Interval
thing-type.config.luxom.bridge.reconnectInterval.description = The period in minutes that the handler will wait between connection attempts after disconnect.
thing-type.config.luxom.dimmer.address.label = Address thing-type.config.luxom.dimmer.address.label = Address
thing-type.config.luxom.dimmer.address.description = Luxom bus address thing-type.config.luxom.dimmer.address.description = Luxom bus address
thing-type.config.luxom.dimmer.onLevel.label = On Level thing-type.config.luxom.dimmer.onLevel.label = On Level
@ -22,13 +28,16 @@ thing-type.config.luxom.dimmer.onToLast.label = Turn On To Last Level
thing-type.config.luxom.dimmer.onToLast.description = If set to true, dimmer will go to the last non-zero level set when an ON command is received. If the last level cannot be determined, the value of onLevel will be used instead. thing-type.config.luxom.dimmer.onToLast.description = If set to true, dimmer will go to the last non-zero level set when an ON command is received. If the last level cannot be determined, the value of onLevel will be used instead.
thing-type.config.luxom.dimmer.stepPercentage.label = Step Value thing-type.config.luxom.dimmer.stepPercentage.label = Step Value
thing-type.config.luxom.dimmer.stepPercentage.description = Step value used for increase/decrease of dimmer brightness, default 5% thing-type.config.luxom.dimmer.stepPercentage.description = Step value used for increase/decrease of dimmer brightness, default 5%
thing-type.config.luxom.switch.address.label = Address
thing-type.config.luxom.switch.address.description = Luxom bus address
# channel types # channel types
channel-type.luxom.button.label = Button channel-type.luxom.switchState.label = Switch
channel-type.luxom.button.description = Pushbutton control for action in Luxom channel-type.luxom.switchState.description = Switch control for action in Luxom.
# messages # messages
status.awaiting-initial-response = Awaiting initial response status.awaiting-initial-response = Awaiting initial response
status.bridge-configuration-missing = Bridge configuration missing status.bridge-configuration-missing = Bridge configuration missing
status.connecting = Connecting status.connecting = Connecting

View File

@ -6,22 +6,22 @@
<bridge-type id="bridge"> <bridge-type id="bridge">
<label>Luxom Bridge</label> <label>Luxom Bridge</label>
<description>This bridge represents a Luxom IP-interface (for example a DS-65L)</description> <description>This bridge represents a Luxom IP-interface (for example a DS-65L).</description>
<config-description> <config-description>
<parameter name="ipAddress" type="text" required="true"> <parameter name="ipAddress" type="text" required="true">
<context>network-address</context> <context>network-address</context>
<label>IP or Host Name</label> <label>IP or Host Name</label>
<description>The IP or host name of the Luxom IP-interface</description> <description>The IP or host name of the Luxom IP-interface.</description>
</parameter> </parameter>
<parameter name="port" type="integer" required="true"> <parameter name="port" type="integer" required="true">
<label>Bridge Port</label> <label>Bridge Port</label>
<description>Port to communicate with Luxom IP-interface, default 2300</description> <description>Port to communicate with Luxom IP-interface, default 2300.</description>
<default>2300</default> <default>2300</default>
<advanced>true</advanced> <advanced>true</advanced>
</parameter> </parameter>
<parameter name="reconnectInterval" type="integer" min="1" max="60" unit="min"> <parameter name="reconnectInterval" type="integer" min="1" max="60" unit="min">
<label>Reconnect Interval</label> <label>Reconnect Interval</label>
<description>The period in minutes that the handler will wait between connection attempts after disconnect</description> <description>The period in minutes that the handler will wait between connection attempts after disconnect.</description>
<unitLabel>minutes</unitLabel> <unitLabel>minutes</unitLabel>
<default>1</default> <default>1</default>
<advanced>true</advanced> <advanced>true</advanced>
@ -33,8 +33,8 @@
<supported-bridge-type-refs> <supported-bridge-type-refs>
<bridge-type-ref id="bridge"/> <bridge-type-ref id="bridge"/>
</supported-bridge-type-refs> </supported-bridge-type-refs>
<label>switch</label> <label>Switch</label>
<description>Luxom Switch</description> <description>Switch type action in Luxom</description>
<channels> <channels>
<channel id="switch" typeId="switchState"/> <channel id="switch" typeId="switchState"/>
</channels> </channels>
@ -47,12 +47,13 @@
</parameter> </parameter>
</config-description> </config-description>
</thing-type> </thing-type>
<thing-type id="dimmer"> <thing-type id="dimmer">
<supported-bridge-type-refs> <supported-bridge-type-refs>
<bridge-type-ref id="bridge"/> <bridge-type-ref id="bridge"/>
</supported-bridge-type-refs> </supported-bridge-type-refs>
<label>Dimmer</label> <label>Dimmer</label>
<description>Luxom Dimmer</description> <description>Dimmer type action in Luxom</description>
<channels> <channels>
<channel id="brightness" typeId="system.brightness"/> <channel id="brightness" typeId="system.brightness"/>
</channels> </channels>
@ -89,7 +90,7 @@
<channel-type id="switchState"> <channel-type id="switchState">
<item-type>Switch</item-type> <item-type>Switch</item-type>
<label>Switch</label> <label>Switch</label>
<description>Switch control for action in Luxom</description> <description>Switch control for action in Luxom.</description>
<category>Switch</category> <category>Switch</category>
<autoUpdatePolicy>veto</autoUpdatePolicy> <autoUpdatePolicy>veto</autoUpdatePolicy>
</channel-type> </channel-type>