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,39 @@
|
||||
# binding
|
||||
|
||||
binding.gpio.name = GPIO Binding
|
||||
binding.gpio.description = Adds GPIO support to openHAB.
|
||||
|
||||
# thing types
|
||||
|
||||
thing-type.gpio.pigpio-remote.label = Pigpio Remote
|
||||
thing-type.gpio.pigpio-remote.description = The remote pigpio thing represents a remote raspberry pi with pigpio installed. Pins are channels.
|
||||
|
||||
# thing types config
|
||||
|
||||
thing-type.config.gpio.pigpio-remote.host.label = Network Address
|
||||
thing-type.config.gpio.pigpio-remote.host.description = Network address of the Raspberry Pi.
|
||||
thing-type.config.gpio.pigpio-remote.port.label = Port
|
||||
thing-type.config.gpio.pigpio-remote.port.description = Port of pigpio on the remote Raspberry Pi.
|
||||
|
||||
# channel types
|
||||
|
||||
channel-type.gpio.pigpio-digital-input.label = GPIO Digital Input
|
||||
channel-type.gpio.pigpio-digital-input.description = Get digital state of a GPIO Pin
|
||||
channel-type.gpio.pigpio-digital-output.label = GPIO Digital Output
|
||||
channel-type.gpio.pigpio-digital-output.description = Set digital state of a GPIO Pin
|
||||
|
||||
# channel types config
|
||||
|
||||
channel-type.config.gpio.pigpio-digital-input.debouncingTime.label = Delay Time
|
||||
channel-type.config.gpio.pigpio-digital-input.debouncingTime.description = Time in ms to double check if value hasn't changed
|
||||
channel-type.config.gpio.pigpio-digital-input.gpioId.label = GPIO Pin
|
||||
channel-type.config.gpio.pigpio-digital-input.gpioId.description = GPIO pin to use as input
|
||||
channel-type.config.gpio.pigpio-digital-input.invert.label = Invert
|
||||
channel-type.config.gpio.pigpio-digital-input.pullupdown.label = Pull Up/Down Resistor
|
||||
channel-type.config.gpio.pigpio-digital-input.pullupdown.description = Configure Pull Up/Down Resistor of GPIO pin
|
||||
channel-type.config.gpio.pigpio-digital-input.pullupdown.option.OFF = Off
|
||||
channel-type.config.gpio.pigpio-digital-input.pullupdown.option.DOWN = Pull Down
|
||||
channel-type.config.gpio.pigpio-digital-input.pullupdown.option.UP = Pull Up
|
||||
channel-type.config.gpio.pigpio-digital-output.gpioId.label = GPIO Pin
|
||||
channel-type.config.gpio.pigpio-digital-output.gpioId.description = GPIO pin to use as output
|
||||
channel-type.config.gpio.pigpio-digital-output.invert.label = Invert
|
||||
Reference in New Issue
Block a user