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,84 @@
|
||||
# binding
|
||||
|
||||
binding.neohub.name = NeoHub Binding
|
||||
binding.neohub.description = This is the binding for Heatmiser NeoHub devices
|
||||
|
||||
# thing types
|
||||
|
||||
thing-type.neohub.neocontact.label = Heatmiser Contact Sensor
|
||||
thing-type.neohub.neocontact.description = Heatmiser (wireless) Window or Door Contact
|
||||
thing-type.neohub.neocontact.channel.batteryLowAlarm.label = Battery Low Alarm
|
||||
thing-type.neohub.neocontact.channel.batteryLowAlarm.description = ON if the device has a low battery
|
||||
thing-type.neohub.neohub.label = NeoHub
|
||||
thing-type.neohub.neohub.description = Heatmiser NeoHub bridge to NeoStat and NeoPlug devices
|
||||
thing-type.neohub.neoplug.label = Heatmiser NeoPlug
|
||||
thing-type.neohub.neoplug.description = Heatmiser Neo Smart Plug
|
||||
thing-type.neohub.neostat.label = Heatmiser NeoStat
|
||||
thing-type.neohub.neostat.description = Heatmiser Neo Smart Thermostat
|
||||
thing-type.neohub.neostat.channel.floorTemperature.label = Floor Temperature
|
||||
thing-type.neohub.neostat.channel.floorTemperature.description = Actual floor temperature
|
||||
thing-type.neohub.neostat.channel.roomTemperature.label = Room Temperature
|
||||
thing-type.neohub.neostat.channel.roomTemperature.description = Actual room temperature
|
||||
thing-type.neohub.neotemperaturesensor.label = Heatmiser Wireless Air Sensor
|
||||
thing-type.neohub.neotemperaturesensor.description = Heatmiser (wireless) Temperature Sensor
|
||||
thing-type.neohub.neotemperaturesensor.channel.batteryLowAlarm.label = Battery Low Alarm
|
||||
thing-type.neohub.neotemperaturesensor.channel.batteryLowAlarm.description = ON if the device has a low battery
|
||||
thing-type.neohub.neotemperaturesensor.channel.sensorTemperature.label = Temperature
|
||||
thing-type.neohub.neotemperaturesensor.channel.sensorTemperature.description = Measured temperature value (Read-Only)
|
||||
|
||||
# thing types config
|
||||
|
||||
thing-type.config.neohub.neocontact.deviceNameInHub.label = Device Name
|
||||
thing-type.config.neohub.neocontact.deviceNameInHub.description = Device Name that identifies the Contact in the NeoHub and Heatmiser App
|
||||
thing-type.config.neohub.neohub.hostName.label = Host Name
|
||||
thing-type.config.neohub.neohub.hostName.description = Host name (IP address) of the NeoHub
|
||||
thing-type.config.neohub.neohub.pollingInterval.label = Polling Interval
|
||||
thing-type.config.neohub.neohub.pollingInterval.description = Time (seconds) between polling the NeoHub (min=4, max/default=60)
|
||||
thing-type.config.neohub.neohub.portNumber.label = Port Number
|
||||
thing-type.config.neohub.neohub.portNumber.description = Port number of the NeoHub
|
||||
thing-type.config.neohub.neohub.preferLegacyApi.label = Prefer Legacy API
|
||||
thing-type.config.neohub.neohub.preferLegacyApi.description = Use the legacy API instead of the new API (if available)
|
||||
thing-type.config.neohub.neohub.socketTimeout.label = Socket Timeout
|
||||
thing-type.config.neohub.neohub.socketTimeout.description = Time (seconds) to wait for connections to the Hub (min/default=5, max=20)
|
||||
thing-type.config.neohub.neoplug.deviceNameInHub.label = Device Name
|
||||
thing-type.config.neohub.neoplug.deviceNameInHub.description = Device Name that identifies the NeoPlug device in the NeoHub and Heatmiser App
|
||||
thing-type.config.neohub.neostat.deviceNameInHub.label = Device Name
|
||||
thing-type.config.neohub.neostat.deviceNameInHub.description = Device Name that identifies the NeoStat device in the NeoHub and Heatmiser App
|
||||
thing-type.config.neohub.neotemperaturesensor.deviceNameInHub.label = Device Name
|
||||
thing-type.config.neohub.neotemperaturesensor.deviceNameInHub.description = Device Name that identifies the Temperature Sensor in the NeoHub and Heatmiser App
|
||||
|
||||
# channel types
|
||||
|
||||
channel-type.neohub.contactState.label = Contact State
|
||||
channel-type.neohub.contactState.description = The state of the contact
|
||||
channel-type.neohub.meshNetworkQoS.label = Mesh Network QoS
|
||||
channel-type.neohub.meshNetworkQoS.description = Quality of Service: percentage of configured devices currently connected to the RF mesh network
|
||||
channel-type.neohub.occupancyModePresent.label = Occupancy Mode Present
|
||||
channel-type.neohub.occupancyModePresent.description = The Thermostat is in the Present Occupancy Mode (Off=Absent, On=Present)
|
||||
channel-type.neohub.plugAutoMode.label = Plug Auto Mode
|
||||
channel-type.neohub.plugAutoMode.description = The Plug is in Automatic Mode (Off=Manual, On=Automatic)
|
||||
channel-type.neohub.plugOutputState.label = Plug Output State
|
||||
channel-type.neohub.plugOutputState.description = The state of the Plug switch, Off or On
|
||||
channel-type.neohub.targetTemperature.label = Target Temperature
|
||||
channel-type.neohub.targetTemperature.description = Target temperature setting of the room
|
||||
channel-type.neohub.temperature.label = Temperature
|
||||
channel-type.neohub.temperature.description = Measured temperature value (Read-Only)
|
||||
channel-type.neohub.thermostatOutputState.label = Thermostat Output State
|
||||
channel-type.neohub.thermostatOutputState.description = Status of whether the thermostat is Off, or calling for Heat
|
||||
|
||||
# channel types config
|
||||
|
||||
channel-type.config.neohub.contactState.holdOnlineState.label = Hold Online State
|
||||
channel-type.config.neohub.contactState.holdOnlineState.description = If the device loses its RF mesh connection, hold the last known state display value
|
||||
channel-type.config.neohub.occupancyModePresent.holdOnlineState.label = Hold Online State
|
||||
channel-type.config.neohub.occupancyModePresent.holdOnlineState.description = If the device loses its RF mesh connection, hold the last known state display value
|
||||
channel-type.config.neohub.plugAutoMode.holdOnlineState.label = Hold Online State
|
||||
channel-type.config.neohub.plugAutoMode.holdOnlineState.description = If the device loses its RF mesh connection, hold the last known state display value
|
||||
channel-type.config.neohub.plugOutputState.holdOnlineState.label = Hold Online State
|
||||
channel-type.config.neohub.plugOutputState.holdOnlineState.description = If the device loses its RF mesh connection, hold the last known state display value
|
||||
channel-type.config.neohub.targetTemperature.holdOnlineState.label = Hold Online State
|
||||
channel-type.config.neohub.targetTemperature.holdOnlineState.description = If the device loses its RF mesh connection, hold the last known state display value
|
||||
channel-type.config.neohub.temperature.holdOnlineState.label = Hold Online State
|
||||
channel-type.config.neohub.temperature.holdOnlineState.description = If the device loses its RF mesh connection, hold the last known state display value
|
||||
channel-type.config.neohub.thermostatOutputState.holdOnlineState.label = Hold Online State
|
||||
channel-type.config.neohub.thermostatOutputState.holdOnlineState.description = If the device loses its RF mesh connection, hold the last known state display value
|
||||
Reference in New Issue
Block a user