Add default translations for binding add-ons (#11760)
* Add default translations for binding add-ons This makes the texts used by these add-ons translatable with Crowdin. To keep the PR simple, it only adds default translations for add-ons which do not yet have any default translations properties file. We can do follow up PRs for adding missing key/values to add-ons that already have these files or to remove duplications. There are several add-ons in this PR that do have non-English translation files, so I'll upload those to Crowdin when the PR is merged. Signed-off-by: Wouter Born <github@maindrain.net>
This commit is contained in:
@@ -0,0 +1,100 @@
|
||||
# binding
|
||||
|
||||
binding.konnected.name = Konnected Binding
|
||||
binding.konnected.description = This is the binding for Konnected.
|
||||
|
||||
# thing types
|
||||
|
||||
thing-type.konnected.module.label = The Konnected Alarm Panel
|
||||
thing-type.konnected.module.description = The Konnected Module
|
||||
thing-type.konnected.module.channel.Out.label = The out Pin
|
||||
thing-type.konnected.module.channel.Zone_6.label = Zone 6
|
||||
thing-type.konnected.module.channel.Zone_6.description = Zone 6 Sensor
|
||||
|
||||
# thing types config
|
||||
|
||||
thing-type.config.konnected.module.blink.label = Blink
|
||||
thing-type.config.konnected.module.blink.description = When set to false the Led on the device won't blink during transmission.
|
||||
thing-type.config.konnected.module.controller_removewifi.label = Factory Reset
|
||||
thing-type.config.konnected.module.controller_removewifi.description = Resets the module to Factory Conditions.
|
||||
thing-type.config.konnected.module.controller_sendConfig.label = Update Settings
|
||||
thing-type.config.konnected.module.controller_sendConfig.description = Manually sends the settings to the module. The binding will send settings on every restart and if there are any configuration changes but this can be used to manually update the settings as needed.
|
||||
thing-type.config.konnected.module.controller_softreset.label = Soft Reset Module
|
||||
thing-type.config.konnected.module.controller_softreset.description = Send A Restart Command to the Module.
|
||||
thing-type.config.konnected.module.discovery.label = Discovery
|
||||
thing-type.config.konnected.module.discovery.description = If set to false the device will not respond to discovery requests via UPnP. Make sure you have statically assigned an IP address to the module before turning this setting off. See https://help.konnected.io/support/solutions/articles/32000023968-disabling-device-discovery
|
||||
thing-type.config.konnected.module.group.actions.label = Actions
|
||||
thing-type.config.konnected.module.request_timeout.label = Request Timeout
|
||||
thing-type.config.konnected.module.request_timeout.description = The timeout period in seconds for HTTP requests to the Konnected Alarm Panel. The default is 30. Adjusting this setting can help in networks situations with high latency where the binding is erroneously reporting the thing as offline.
|
||||
thing-type.config.konnected.module.retry_count.label = Retry Count
|
||||
thing-type.config.konnected.module.retry_count.description = The number of times the binding attempts to send http requests to the Konnected Alarm Panel. Increase this setting if you are experiencing situations where the module is reporting as offline but you can access the website of the Alarm Panel to confirm that the Alarm Panel is Konnected to the Network. This will allow the binding to attempt more retries before it considers the connection a failure and marks the thing as offline.
|
||||
|
||||
# channel types
|
||||
|
||||
channel-type.konnected.actuator.label = Actuator
|
||||
channel-type.konnected.actuator.description = This zone is an actuator
|
||||
channel-type.konnected.humidity.label = Humidity
|
||||
channel-type.konnected.humidity.description = This zone measures humidity
|
||||
channel-type.konnected.switch.label = Switch
|
||||
channel-type.konnected.switch.description = This zone is a read only switch type zone
|
||||
channel-type.konnected.temperature.label = Temperature
|
||||
channel-type.konnected.temperature.description = This zone measures temperature
|
||||
|
||||
# channel types config
|
||||
|
||||
channel-type.config.konnected.actuator.momentary.label = Momentary
|
||||
channel-type.config.konnected.actuator.momentary.description = The duration of the pulse in millisecods
|
||||
channel-type.config.konnected.actuator.onvalue.label = On Value
|
||||
channel-type.config.konnected.actuator.onvalue.description = The value that will be treated by the binding as an on command. For actuators that activate with a high command set to 1 and actuators that activate with a low value set to 0.
|
||||
channel-type.config.konnected.actuator.onvalue.option.0 = 0
|
||||
channel-type.config.konnected.actuator.onvalue.option.1 = 1
|
||||
channel-type.config.konnected.actuator.pause.label = Pause
|
||||
channel-type.config.konnected.actuator.pause.description = The time between pulses in millisecods
|
||||
channel-type.config.konnected.actuator.times.label = Times
|
||||
channel-type.config.konnected.actuator.times.description = is the number of times to repeat or `-1` for an infinitely repeating pulse
|
||||
channel-type.config.konnected.actuator.zone.label = Zone Number
|
||||
channel-type.config.konnected.actuator.zone.description = The Zone Number of the channel.
|
||||
channel-type.config.konnected.actuator.zone.option.1 = 1
|
||||
channel-type.config.konnected.actuator.zone.option.2 = 2
|
||||
channel-type.config.konnected.actuator.zone.option.3 = 3
|
||||
channel-type.config.konnected.actuator.zone.option.4 = 4
|
||||
channel-type.config.konnected.actuator.zone.option.5 = 5
|
||||
channel-type.config.konnected.actuator.zone.option.6 = 6
|
||||
channel-type.config.konnected.actuator.zone.option.7 = Out
|
||||
channel-type.config.konnected.humidity.zone.label = Zone Number
|
||||
channel-type.config.konnected.humidity.zone.description = The Zone Number of the channel.
|
||||
channel-type.config.konnected.humidity.zone.option.1 = 1
|
||||
channel-type.config.konnected.humidity.zone.option.2 = 2
|
||||
channel-type.config.konnected.humidity.zone.option.3 = 3
|
||||
channel-type.config.konnected.humidity.zone.option.4 = 4
|
||||
channel-type.config.konnected.humidity.zone.option.5 = 5
|
||||
channel-type.config.konnected.humidity.zone.option.6 = 6
|
||||
channel-type.config.konnected.humidity.zone.option.7 = Out
|
||||
channel-type.config.konnected.switch.onvalue.label = On Value
|
||||
channel-type.config.konnected.switch.onvalue.description = The value that will be treated by the binding as the on value. For sensors that activate with a high value leave at the default of 1 and sensors that activate with a low value set to 0.
|
||||
channel-type.config.konnected.switch.onvalue.option.0 = 0
|
||||
channel-type.config.konnected.switch.onvalue.option.1 = 1
|
||||
channel-type.config.konnected.switch.zone.label = Zone Number
|
||||
channel-type.config.konnected.switch.zone.description = The Zone Number of the channel.
|
||||
channel-type.config.konnected.switch.zone.option.1 = 1
|
||||
channel-type.config.konnected.switch.zone.option.2 = 2
|
||||
channel-type.config.konnected.switch.zone.option.3 = 3
|
||||
channel-type.config.konnected.switch.zone.option.4 = 4
|
||||
channel-type.config.konnected.switch.zone.option.5 = 5
|
||||
channel-type.config.konnected.switch.zone.option.6 = 6
|
||||
channel-type.config.konnected.switch.zone.option.7 = Out
|
||||
channel-type.config.konnected.temperature.ds18b20_address.label = DS18b20 Address
|
||||
channel-type.config.konnected.temperature.ds18b20_address.description = This is the unique address of the sensor on the one wire bus.
|
||||
channel-type.config.konnected.temperature.pollinterval.label = Poll Interval
|
||||
channel-type.config.konnected.temperature.pollinterval.description = The interval in minutes to poll the sensor.
|
||||
channel-type.config.konnected.temperature.tempsensorType.label = DHT22
|
||||
channel-type.config.konnected.temperature.tempsensorType.description = Is the sensor a dht22 or a ds18b20? Set to true for dht22 sensor
|
||||
channel-type.config.konnected.temperature.zone.label = Zone Number
|
||||
channel-type.config.konnected.temperature.zone.description = The Zone Number of the channel.
|
||||
channel-type.config.konnected.temperature.zone.option.1 = 1
|
||||
channel-type.config.konnected.temperature.zone.option.2 = 2
|
||||
channel-type.config.konnected.temperature.zone.option.3 = 3
|
||||
channel-type.config.konnected.temperature.zone.option.4 = 4
|
||||
channel-type.config.konnected.temperature.zone.option.5 = 5
|
||||
channel-type.config.konnected.temperature.zone.option.6 = 6
|
||||
channel-type.config.konnected.temperature.zone.option.7 = Out
|
||||
Reference in New Issue
Block a user