[remoteopenhab] Add all default translations to properties file (#11373)
Allows translating the remote openHAB binding strings with Crowdin. Signed-off-by: Laurent Garnier <lg.hc@free.fr>
This commit is contained in:
@@ -0,0 +1,87 @@
|
||||
# binding
|
||||
|
||||
binding.remoteopenhab.name = Remote openHAB Binding
|
||||
binding.remoteopenhab.description = The Remote openHAB binding allows to communicate with remote openHAB servers.
|
||||
|
||||
# thing types
|
||||
|
||||
thing-type.remoteopenhab.server.label = Remote openHAB Server
|
||||
thing-type.remoteopenhab.server.description = A remote openHAB server. You will find one channel for each item defined in the remote server.
|
||||
thing-type.remoteopenhab.thing.label = Remote Thing
|
||||
thing-type.remoteopenhab.thing.description = A thing from the remote openHAB server. You will find one channel for each trigger channel from the remote thing (state channels from the remote thing will be ignored).
|
||||
|
||||
# thing type configuration
|
||||
|
||||
thing-type.config.remoteopenhab.server.accessibilityInterval.label = Accessibility Interval
|
||||
thing-type.config.remoteopenhab.server.accessibilityInterval.description = Minutes between checking the remote server accessibility. 0 to disable the check. Default is 3.
|
||||
thing-type.config.remoteopenhab.server.aliveInterval.label = Alive Interval
|
||||
thing-type.config.remoteopenhab.server.aliveInterval.description = Number of last minutes to consider when monitoring the receipt of events from the remote server. If an event is received during this interval, the remote server is considered alive and its accessibility will not be verified. Use 0 to disable this feature. Default is 5.
|
||||
thing-type.config.remoteopenhab.server.authenticateAnyway.label = Authenticate Anyway
|
||||
thing-type.config.remoteopenhab.server.authenticateAnyway.description = Set it to true in case you want to pass authentication information even when the communicate with the remote openHAB server is not secured (only HTTP). This is of course not recommended especially if your connection is over the Internet. Default is false.
|
||||
thing-type.config.remoteopenhab.server.host.label = Server Address
|
||||
thing-type.config.remoteopenhab.server.host.description = The host name or IP address of the remote openHAB server.
|
||||
thing-type.config.remoteopenhab.server.password.label = Password
|
||||
thing-type.config.remoteopenhab.server.password.description = The password to use when the remote openHAB server is setup to require basic authorization to run its REST API.
|
||||
thing-type.config.remoteopenhab.server.port.label = Server HTTP Port
|
||||
thing-type.config.remoteopenhab.server.port.description = The HTTP port to use to communicate with the remote openHAB server.
|
||||
thing-type.config.remoteopenhab.server.restartIfNoActivity.label = Restart if no Activity
|
||||
thing-type.config.remoteopenhab.server.restartIfNoActivity.description = Set it to true if you want to restart the connection (SSE) to the remote server when no events are received in the monitored interval. It is not necessary if the goal is to properly handle a short network outage (few seconds). This can be useful if you want to deal with a long network outage. Do not enable it if you remote server does not send events during the monitored interval under normal conditions, it will cause frequent restart of the connection and potential loss of events. Default is false.
|
||||
thing-type.config.remoteopenhab.server.restPath.label = REST API Path
|
||||
thing-type.config.remoteopenhab.server.restPath.description = The subpath of the REST API on the remote openHAB server.
|
||||
thing-type.config.remoteopenhab.server.token.label = Token
|
||||
thing-type.config.remoteopenhab.server.token.description = The token to use when the remote openHAB server is setup to require authorization to run its REST API.
|
||||
thing-type.config.remoteopenhab.server.trustedCertificate.label = Trust SSL Certificate
|
||||
thing-type.config.remoteopenhab.server.trustedCertificate.description = Set it to true in case you want to use HTTPS even without a valid SSL certificate provided by your remote server.
|
||||
thing-type.config.remoteopenhab.server.useHttps.label = Use HTTPS
|
||||
thing-type.config.remoteopenhab.server.useHttps.description = Set it to true in case you want to use HTTPS to communicate with the remote openHAB server. Default is false.
|
||||
thing-type.config.remoteopenhab.server.username.label = Username
|
||||
thing-type.config.remoteopenhab.server.username.description = The username to use when the remote openHAB server is setup to require basic authorization to run its REST API.
|
||||
thing-type.config.remoteopenhab.thing.buildTriggerChannels.label = Automatic Trigger Channels Building
|
||||
thing-type.config.remoteopenhab.thing.buildTriggerChannels.description = If set to true, a trigger channel will be automatically created and linked to each trigger channel from the remote thing.
|
||||
thing-type.config.remoteopenhab.thing.thingUID.label = Remote Thing UID
|
||||
thing-type.config.remoteopenhab.thing.thingUID.description = The thing UID in the remote openHAB server.
|
||||
|
||||
# channel types
|
||||
|
||||
channel-type.remoteopenhab.trigger.label = Trigger Channel
|
||||
|
||||
# channel type configuration
|
||||
|
||||
channel-type.config.remoteopenhab.trigger.channelUID.label = Remote Channel UID
|
||||
channel-type.config.remoteopenhab.trigger.channelUID.description = The channel UID in the remote openHAB server.
|
||||
|
||||
# Thing status descriptions
|
||||
|
||||
offline.config-error-undefined-host = Undefined server address setting in the thing configuration
|
||||
offline.config-error-invalid-rest-path = Invalid REST API path setting in the thing configuration
|
||||
offline.config-error-invalid-rest-url = Invalid REST URL built from the settings in the thing configuration
|
||||
offline.config-error-unsupported-server = OH 1.x server not supported by the binding
|
||||
offline.config-error-undefined-thing-uid = Undefined thing UID setting in the thing configuration
|
||||
offline.error-channels-creation = Dynamic creation of the channels for the remote server items failed
|
||||
offline.comm-error-disconnected = Disconected from the remote server
|
||||
offline.comm-error-receiving-events = Error occurred while receiving events
|
||||
|
||||
# Discovery result
|
||||
|
||||
discovery.server.label = openHAB server
|
||||
|
||||
# Exceptions
|
||||
|
||||
exception.rest-client-not-setup = REST client not correctly setup
|
||||
exception.json-response-empty = JSON response is empty
|
||||
exception.root-rest-api-failed = Failed to execute the root REST API
|
||||
exception.get-list-items-api-failed = Failed to get the list of remote items using the items REST API
|
||||
exception.get-item-state-api-failed = Failed to get the state of remote item {0} using the items REST API
|
||||
exception.send-item-command-api-failed = Failed to send command to the remote item {0} using the items REST API
|
||||
exception.get-list-things-api-failed = Failed to get the list of remote things using the things REST API
|
||||
exception.get-thing-api-failed = Failed to get the remote thing {0} using the things REST API
|
||||
exception.invalid-event-topic = Invalid event topic {0} for event type {1}
|
||||
exception.http-call-failed = HTTP call failed: {0}
|
||||
|
||||
# Other texts
|
||||
|
||||
channel-type.label = Remote {0} Item
|
||||
channel-type.description = An item of type {0} from the remote server.
|
||||
|
||||
channel.label = Item {0}
|
||||
channel.description = Item {0} from the remote server.
|
||||
Reference in New Issue
Block a user