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,56 @@
# binding
binding.dbquery.name = DBQuery Binding
binding.dbquery.description = This is the binding for DBQuery that allows to execute native database queries and bind their results to items.
# thing types
thing-type.dbquery.influxdb2.label = InfluxDB2 Bridge
thing-type.dbquery.influxdb2.description = The InfluxDB 2.0 represents a connection to a InfluxDB 2.0 server
thing-type.dbquery.query.label = Query Thing
thing-type.dbquery.query.description = Thing that represents a native query
# thing types config
thing-type.config.dbquery.influxdb2.bucket.label = Bucket
thing-type.config.dbquery.influxdb2.bucket.description = Name of the database bucket
thing-type.config.dbquery.influxdb2.organization.label = Organization
thing-type.config.dbquery.influxdb2.organization.description = Name of the database organization
thing-type.config.dbquery.influxdb2.token.label = Token
thing-type.config.dbquery.influxdb2.token.description = Token to authenticate to the database
thing-type.config.dbquery.influxdb2.url.label = Url
thing-type.config.dbquery.influxdb2.url.description = Database url
thing-type.config.dbquery.influxdb2.user.label = Username
thing-type.config.dbquery.influxdb2.user.description = Name of the database user
thing-type.config.dbquery.query.hasParameters.label = Query has Parameters
thing-type.config.dbquery.query.hasParameters.description = True if the query has parameters, otherwise false
thing-type.config.dbquery.query.interval.label = Interval
thing-type.config.dbquery.query.interval.description = An interval, in seconds, the query will be repeatedly executed. Default values is 0, which means that query is never executed automatically. You need to send the ON command each time you wish to execute.
thing-type.config.dbquery.query.query.label = Query Definition
thing-type.config.dbquery.query.query.description = Query definition using native query language
thing-type.config.dbquery.query.scalarColumn.label = Scalar Column Name
thing-type.config.dbquery.query.scalarColumn.description = The column's name that is used to extract scalarResult. If only one column is returned this parameter can be blank
thing-type.config.dbquery.query.scalarResult.label = Scalar Result
thing-type.config.dbquery.query.scalarResult.description = True if the query always return only one single scalar value (only one row and one value-column in this row), otherwise false
thing-type.config.dbquery.query.timeout.label = Timeout Query
thing-type.config.dbquery.query.timeout.description = A time-out in seconds to wait for the query result, if it's exceeded result will be discarded. Use 0 for no timeout
# channel types
channel-type.dbquery.calculate-parameters-channel.label = Calculate Parameters
channel-type.dbquery.calculate-parameters-channel.description = Event to calculate query parameters
channel-type.dbquery.correct-channel.label = Last Query Worked
channel-type.dbquery.correct-channel.description = True if last query executed correctly
channel-type.dbquery.execute-channel.label = Execute Query
channel-type.dbquery.execute-channel.description = Send ON to execute the query, the current state tells if the query is running
channel-type.dbquery.parameters-channel.label = JSON Result
channel-type.dbquery.result-channel-contact.label = Contact Result
channel-type.dbquery.result-channel-contact.description = Execute query and binds result value to channel as a Contact
channel-type.dbquery.result-channel-datetime.label = DateTime Result
channel-type.dbquery.result-channel-datetime.description = Execute query and binds result value to channel as a DateTime
channel-type.dbquery.result-channel-number.label = Number Result
channel-type.dbquery.result-channel-number.description = Execute query and binds result value to channel as a Number
channel-type.dbquery.result-channel-string.label = String Result
channel-type.dbquery.result-channel-string.description = Execute query and binds result value to channel as a String
channel-type.dbquery.result-channel-switch.label = Switch Result
channel-type.dbquery.result-channel-switch.description = Execute query and binds result value to channel as a Switch