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:
Wouter Born
2021-12-15 18:40:21 +01:00
committed by GitHub
parent 05e782ec1a
commit 07a1976c81
234 changed files with 33234 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
# binding
binding.ftpupload.name = FTP Upload Binding
binding.ftpupload.description = This binding is for receiving files via FTP.
# binding config
binding.config.ftpupload.idleTimeout.label = Idle Timeout
binding.config.ftpupload.idleTimeout.description = The number of seconds before an inactive client is disconnected. If this value is set to 0, the idle time is disabled.
binding.config.ftpupload.passivePorts.label = Passive Port Range
binding.config.ftpupload.passivePorts.description = A string of passive ports, can contain a single port (as an integer), multiple ports seperated by commas (e.g. 123,124,125) or ranges of ports, including open ended ranges (e.g. 123-125, 30000-, -1023). Combinations for single ports and ranges is also supported. Empty (default) allows all ports as passive ports.
binding.config.ftpupload.port.label = TCP Port
binding.config.ftpupload.port.description = TCP port of the FTP server
# thing types
thing-type.ftpupload.imagereceiver.label = Image Receiver
thing-type.ftpupload.imagereceiver.description = Receive image files via FTP.
# thing types config
thing-type.config.ftpupload.imagereceiver.password.label = Password
thing-type.config.ftpupload.imagereceiver.password.description = Password
thing-type.config.ftpupload.imagereceiver.userName.label = User Name
thing-type.config.ftpupload.imagereceiver.userName.description = Username
# channel types
channel-type.ftpupload.image-channel.label = Image
channel-type.ftpupload.image-channel.description = Image received via FTP
channel-type.ftpupload.image-received.label = Image File Received Trigger Channel
# channel types config
channel-type.config.ftpupload.image-channel.filename.label = Filename
channel-type.config.ftpupload.image-channel.filename.description = Filename to match received files. Supports regular expression patterns.
channel-type.config.ftpupload.image-received.filename.label = Filename
channel-type.config.ftpupload.image-received.filename.description = Filename to match received files. Supports regular expression patterns.