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,112 @@
|
||||
# binding
|
||||
|
||||
binding.serial.name = Serial Binding
|
||||
binding.serial.description = This binding supports sending/receiving data to/from a serial port
|
||||
|
||||
# thing types
|
||||
|
||||
thing-type.serial.serialBridge.label = Serial Bridge
|
||||
thing-type.serial.serialBridge.description = Serial port which can send and receive data
|
||||
thing-type.serial.serialDevice.label = Serial Device
|
||||
thing-type.serial.serialDevice.description = Represents a device
|
||||
|
||||
# thing types config
|
||||
|
||||
thing-type.config.serial.serialBridge.baudRate.label = Baud Rate
|
||||
thing-type.config.serial.serialBridge.baudRate.description = Set the baud rate
|
||||
thing-type.config.serial.serialBridge.baudRate.option.4800 = 4800
|
||||
thing-type.config.serial.serialBridge.baudRate.option.9600 = 9600
|
||||
thing-type.config.serial.serialBridge.baudRate.option.19200 = 19200
|
||||
thing-type.config.serial.serialBridge.baudRate.option.38400 = 38400
|
||||
thing-type.config.serial.serialBridge.baudRate.option.57600 = 57600
|
||||
thing-type.config.serial.serialBridge.baudRate.option.115200 = 115200
|
||||
thing-type.config.serial.serialBridge.charset.label = Charset
|
||||
thing-type.config.serial.serialBridge.charset.description = The charset to use for converting between bytes and string (e.g. UTF-8, ISO-8859-1)
|
||||
thing-type.config.serial.serialBridge.dataBits.label = Data Bits
|
||||
thing-type.config.serial.serialBridge.dataBits.description = Set the data bits
|
||||
thing-type.config.serial.serialBridge.dataBits.option.5 = 5
|
||||
thing-type.config.serial.serialBridge.dataBits.option.6 = 6
|
||||
thing-type.config.serial.serialBridge.dataBits.option.7 = 7
|
||||
thing-type.config.serial.serialBridge.dataBits.option.8 = 8
|
||||
thing-type.config.serial.serialBridge.parity.label = Parity
|
||||
thing-type.config.serial.serialBridge.parity.description = Set the parity
|
||||
thing-type.config.serial.serialBridge.parity.option.N = N(one)
|
||||
thing-type.config.serial.serialBridge.parity.option.O = O(dd)
|
||||
thing-type.config.serial.serialBridge.parity.option.E = E(even)
|
||||
thing-type.config.serial.serialBridge.parity.option.M = M(ark)
|
||||
thing-type.config.serial.serialBridge.parity.option.S = S(pace)
|
||||
thing-type.config.serial.serialBridge.serialPort.label = Serial Port
|
||||
thing-type.config.serial.serialBridge.serialPort.description = The serial port to use (e.g. Linux: /dev/ttyUSB0, Windows: COM1)
|
||||
thing-type.config.serial.serialBridge.stopBits.label = Stop Bits
|
||||
thing-type.config.serial.serialBridge.stopBits.description = Set the stop bits
|
||||
thing-type.config.serial.serialBridge.stopBits.option.1 = 1
|
||||
thing-type.config.serial.serialBridge.stopBits.option.1.5 = 1.5
|
||||
thing-type.config.serial.serialBridge.stopBits.option.2 = 2
|
||||
thing-type.config.serial.serialDevice.patternMatch.label = Patern Match
|
||||
thing-type.config.serial.serialDevice.patternMatch.description = Regular expression used to identify device from received data (must match the whole line)
|
||||
|
||||
# channel types
|
||||
|
||||
channel-type.serial.binaryData.label = Binary Data
|
||||
channel-type.serial.binaryData.description = Channel for sending/receiving data encoded as Base64 to/from the serial port
|
||||
channel-type.serial.dimmer.label = Dimmer
|
||||
channel-type.serial.dimmer.description = Channel to receive commands from a Dimmer
|
||||
channel-type.serial.number.label = Number
|
||||
channel-type.serial.number.description = Channel to receive commands as a number
|
||||
channel-type.serial.rollershutter.label = Rollershutter
|
||||
channel-type.serial.rollershutter.description = Channel to receive commands from a Rollershutter
|
||||
channel-type.serial.string.label = String
|
||||
channel-type.serial.string.description = Channel to receive commands as a string
|
||||
channel-type.serial.stringData.label = String Data
|
||||
channel-type.serial.stringData.description = Channel for sending/receiving data as a string to/from the serial port
|
||||
channel-type.serial.switch.label = Switch
|
||||
channel-type.serial.switch.description = Channel to receive commands from a Switch
|
||||
|
||||
# channel types config
|
||||
|
||||
channel-type.config.serial.dimmer.commandFormat.label = Percent Format
|
||||
channel-type.config.serial.dimmer.commandFormat.description = Format string applied to the percent command, e.g. ID=671;VAL=%d
|
||||
channel-type.config.serial.dimmer.commandTransformation.label = Command Transformation
|
||||
channel-type.config.serial.dimmer.commandTransformation.description = Transform used to convert command to device data, e.g. JS:device.js
|
||||
channel-type.config.serial.dimmer.decreaseValue.label = Decrease Value
|
||||
channel-type.config.serial.dimmer.decreaseValue.description = Send this value when receiving a DECREASE command
|
||||
channel-type.config.serial.dimmer.increaseValue.label = Increase Value
|
||||
channel-type.config.serial.dimmer.increaseValue.description = Send this value when receiving an INCREASE command
|
||||
channel-type.config.serial.dimmer.offValue.label = Off Value
|
||||
channel-type.config.serial.dimmer.offValue.description = Send this value when receiving an OFF command
|
||||
channel-type.config.serial.dimmer.onValue.label = On Value
|
||||
channel-type.config.serial.dimmer.onValue.description = Send this value when receiving an ON command
|
||||
channel-type.config.serial.dimmer.stateTransformation.label = State Transformation
|
||||
channel-type.config.serial.dimmer.stateTransformation.description = Transform used to convert device data to channel state, e.g. REGEX:.*?STATE=(.*?);.*
|
||||
channel-type.config.serial.number.commandFormat.label = Number Format
|
||||
channel-type.config.serial.number.commandFormat.description = Format string applied to the command, e.g. ID=671;VAL=%f
|
||||
channel-type.config.serial.number.commandTransformation.label = Command Transformation
|
||||
channel-type.config.serial.number.commandTransformation.description = Transform used to convert command to device data, e.g. JS:device.js
|
||||
channel-type.config.serial.number.stateTransformation.label = State Transformation
|
||||
channel-type.config.serial.number.stateTransformation.description = Transform used to convert device data to channel state, e.g. REGEX:.*?STATE=(.*?);.*
|
||||
channel-type.config.serial.rollershutter.commandFormat.label = Percent Format
|
||||
channel-type.config.serial.rollershutter.commandFormat.description = Format string applied to the percent command, e.g. ID=671;VAL=%d
|
||||
channel-type.config.serial.rollershutter.commandTransformation.label = Command Transformation
|
||||
channel-type.config.serial.rollershutter.commandTransformation.description = Transform used to convert command to device data, e.g. JS:device.js
|
||||
channel-type.config.serial.rollershutter.downValue.label = Down Value
|
||||
channel-type.config.serial.rollershutter.downValue.description = Send this value when receiving a DOWN command
|
||||
channel-type.config.serial.rollershutter.stateTransformation.label = State Transformation
|
||||
channel-type.config.serial.rollershutter.stateTransformation.description = Transform used to convert device data to channel state, e.g. REGEX:.*?STATE=(.*?);.*
|
||||
channel-type.config.serial.rollershutter.stopValue.label = Stop Value
|
||||
channel-type.config.serial.rollershutter.stopValue.description = Send this value when receiving a STOP command
|
||||
channel-type.config.serial.rollershutter.upValue.label = Up Value
|
||||
channel-type.config.serial.rollershutter.upValue.description = Send this value when receiving an UP command
|
||||
channel-type.config.serial.string.commandFormat.label = String Format
|
||||
channel-type.config.serial.string.commandFormat.description = Format string applied to the command, e.g. ID=671;COMMAND=%s
|
||||
channel-type.config.serial.string.commandTransformation.label = Command Transformation
|
||||
channel-type.config.serial.string.commandTransformation.description = Transform used to convert command to device data, e.g. JS:device.js
|
||||
channel-type.config.serial.string.stateTransformation.label = State Transformation
|
||||
channel-type.config.serial.string.stateTransformation.description = Transform used to convert device data to channel state, e.g. REGEX:.*?STATE=(.*?);.*
|
||||
channel-type.config.serial.switch.commandTransformation.label = Command Transformation
|
||||
channel-type.config.serial.switch.commandTransformation.description = Transform used to convert command to device data, e.g. JS:device.js
|
||||
channel-type.config.serial.switch.offValue.label = Off Value
|
||||
channel-type.config.serial.switch.offValue.description = Send this value when receiving an OFF command
|
||||
channel-type.config.serial.switch.onValue.label = On Value
|
||||
channel-type.config.serial.switch.onValue.description = Send this value when receiving an ON command
|
||||
channel-type.config.serial.switch.stateTransformation.label = State Transformation
|
||||
channel-type.config.serial.switch.stateTransformation.description = Transform used to convert device data to channel state, e.g. REGEX:.*?STATE=(.*?);.*
|
||||
Reference in New Issue
Block a user