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,84 @@
# binding
binding.network.name = Network Binding
binding.network.description = The Network Binding can be used for device presence detection and to determine network device health
# binding config
binding.config.network.allowDHCPlisten.label = Listen for DHCP Requests
binding.config.network.allowDHCPlisten.description = Usually a device requests an IP address in an IPv4 network with the help of DHCP as soon as it enters a network. If we listen to those packets, we can detect a device presence even faster. You need elevated access rights (see readme) for this to work.
binding.config.network.allowSystemPings.label = Allow System Pings
binding.config.network.allowSystemPings.description = Allows or disallows to use system pings next to the java integrated ping functionality. On windows the system ping works more reliable most of the time.
binding.config.network.arpPingToolPath.label = ARP Ping Tool Path
binding.config.network.arpPingToolPath.description = If your arp ping tool is not called arping and cannot be found in the PATH environment, you can configure the absolute path / tool name here.
binding.config.network.cacheDeviceStateTimeInMS.label = Cache Time
binding.config.network.cacheDeviceStateTimeInMS.description = The result of a device presence detection is cached for a small amount of time. Be aware that no new pings will be issued within this time frame, even if explicitly requested.
binding.config.network.preferResponseTimeAsLatency.label = Use Response Time as Latency
binding.config.network.preferResponseTimeAsLatency.description = If enabled, an attempt will be made to extract the latency from the output of the ping command. If no such latency value is found in the ping command output, the time to execute the ping command is used as fallback latency. If disabled, the time to execute the ping command is always used as latency value.
# thing types
thing-type.network.pingdevice.label = Pingable Network Device
thing-type.network.pingdevice.description = The presence detection is performed by using ICMP and, if available, ARP pings. You can change the arping tool path in the binding configuration. DHCP sniffing is performed for faster network reentry discovery.
thing-type.network.servicedevice.label = Network Device with Running Service
thing-type.network.servicedevice.description = A device which reachable state is detected by connecting to a TCP port. DHCP sniffing is performed for faster network reentry discovery.
thing-type.network.speedtest.label = SpeedTest
thing-type.network.speedtest.description = Provides information about bandwidth speed.
thing-type.network.speedtest.channel.testEnd.label = Test End
thing-type.network.speedtest.channel.testStart.label = Test Start
# thing types config
thing-type.config.network.pingdevice.hostname.label = Hostname or IP
thing-type.config.network.pingdevice.hostname.description = Hostname or IP of the device
thing-type.config.network.pingdevice.macAddress.label = MAC Address
thing-type.config.network.pingdevice.macAddress.description = MAC address used for waking the device by the Wake-on-LAN action
thing-type.config.network.pingdevice.refreshInterval.label = Refresh Interval
thing-type.config.network.pingdevice.refreshInterval.description = States how long to wait after a device state update before the next refresh shall occur (in ms)
thing-type.config.network.pingdevice.retry.label = Retry
thing-type.config.network.pingdevice.retry.description = How many refresh interval cycles should a presence detection should take place, before the device is stated as offline
thing-type.config.network.pingdevice.timeout.label = Timeout
thing-type.config.network.pingdevice.timeout.description = States how long to wait for a response (in ms), before if a device is stated as offline
thing-type.config.network.servicedevice.hostname.label = Hostname or IP
thing-type.config.network.servicedevice.hostname.description = Hostname or IP of the device
thing-type.config.network.servicedevice.macAddress.label = MAC Address
thing-type.config.network.servicedevice.macAddress.description = MAC address used for waking the device by the Wake-on-LAN action
thing-type.config.network.servicedevice.port.label = Port
thing-type.config.network.servicedevice.port.description = The port on which the device can be accessed. Windows systems usually have the 445 port open. Webservers are on port 80.
thing-type.config.network.servicedevice.refreshInterval.label = Refresh Interval
thing-type.config.network.servicedevice.refreshInterval.description = States how long to wait after a device state update before the next refresh shall occur (in ms)
thing-type.config.network.servicedevice.retry.label = Retry
thing-type.config.network.servicedevice.retry.description = Defines how many times a connection attempt shall occur, before the device is stated as offline
thing-type.config.network.servicedevice.timeout.label = Timeout
thing-type.config.network.servicedevice.timeout.description = States how long to wait for a response (in ms), before if a device is stated as offline
thing-type.config.network.speedtest.fileName.label = File Name
thing-type.config.network.speedtest.fileName.description = Name of the file to download from test server
thing-type.config.network.speedtest.initialDelay.label = Initial Delay
thing-type.config.network.speedtest.initialDelay.description = Delay before starting the first speed test (minutes) after initialization of the binding.
thing-type.config.network.speedtest.maxTimeout.label = Timeouts
thing-type.config.network.speedtest.maxTimeout.description = Number of timeout that can happend before the device is stated as offline
thing-type.config.network.speedtest.refreshInterval.label = Refresh Time Interval
thing-type.config.network.speedtest.refreshInterval.description = Refresh time interval in minutes.
thing-type.config.network.speedtest.uploadSize.label = Upload Size
thing-type.config.network.speedtest.uploadSize.description = Size of the file to be uploaded (bytes).
thing-type.config.network.speedtest.url.label = Test Server URL
thing-type.config.network.speedtest.url.description = Url of the speed test server
# channel types
channel-type.network.Timestamp.label = Timestamp
channel-type.network.Timestamp.description = Status timestamp
channel-type.network.isRunning.label = Test Running
channel-type.network.isRunning.description = Indicates if a test is currently ongoing
channel-type.network.lastseen.label = Last Seen
channel-type.network.lastseen.description = States the last seen date/time
channel-type.network.latency.label = Latency
channel-type.network.latency.description = States the latency time
channel-type.network.online.label = Online
channel-type.network.online.description = States whether a device is online or offline
channel-type.network.progress.label = Progress
channel-type.network.progress.description = Current Test progression
channel-type.network.rateDown.label = Download Rate
channel-type.network.rateDown.description = Current download rate
channel-type.network.rateUp.label = Upload Rate
channel-type.network.rateUp.description = Current upload rate