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,101 @@
# binding
binding.snmp.name = SNMP Binding
binding.snmp.description = This is the binding for SNMP.
# binding config
binding.config.snmp.port.label = Incoming SNMP Port
binding.config.snmp.port.description = Port for receiving traps, set to 0 to disable.
# thing types
thing-type.snmp.target.label = SNMP Target
# thing types config
thing-type.config.snmp.target.community.label = SNMP Community
thing-type.config.snmp.target.hostname.label = Target Host
thing-type.config.snmp.target.hostname.description = Hostname or IP address of target host
thing-type.config.snmp.target.port.label = Port
thing-type.config.snmp.target.protocol.label = SNMP Version
thing-type.config.snmp.target.protocol.option.v1 = V1
thing-type.config.snmp.target.protocol.option.v2c = V2c
thing-type.config.snmp.target.refresh.label = Refresh Time
thing-type.config.snmp.target.refresh.description = Refresh time in s (default 60s)
thing-type.config.snmp.target.retries.label = Retries
thing-type.config.snmp.target.retries.description = Number of retries for an update request
thing-type.config.snmp.target.timeout.label = Timeout
thing-type.config.snmp.target.timeout.description = Timeout in ms for a single update request
# channel types
channel-type.snmp.number.label = Number
channel-type.snmp.string.label = String
channel-type.snmp.switch.label = Switch
# channel types config
channel-type.config.snmp.number.datatype.label = Datatype
channel-type.config.snmp.number.datatype.description = Content data type
channel-type.config.snmp.number.datatype.option.UINT32 = Unsigned Integer (32 bit)
channel-type.config.snmp.number.datatype.option.INT32 = Integer (32 bit)
channel-type.config.snmp.number.datatype.option.COUNTER64 = Counter (64 bit)
channel-type.config.snmp.number.datatype.option.FLOAT = Float
channel-type.config.snmp.number.doNotLogException.label = Don't Log Exception
channel-type.config.snmp.number.doNotLogException.description = If enabled, ignore faulty values/exceptions in this channel
channel-type.config.snmp.number.exceptionValue.label = Exception Value
channel-type.config.snmp.number.exceptionValue.description = Value to send if an SNMP exception occurs (default: UNDEF)
channel-type.config.snmp.number.mode.label = Mode
channel-type.config.snmp.number.mode.description = the mode of this channel
channel-type.config.snmp.number.mode.option.READ = Read
channel-type.config.snmp.number.mode.option.WRITE = Write
channel-type.config.snmp.number.mode.option.READ_WRITE = Read/Write
channel-type.config.snmp.number.mode.option.TRAP = Trap
channel-type.config.snmp.number.oid.label = OID
channel-type.config.snmp.number.oid.description = OID in dotted format (eg. .1.3.6.1.4.1.6574.3.1.1.3.0)
channel-type.config.snmp.number.unit.label = Unit Of Measurement
channel-type.config.snmp.number.unit.description = Unit of measurement (optional). The unit is used for representing the value in the GUI as well as for converting incoming values (like from '°F' to '°C'). Examples: "°C", "°F"
channel-type.config.snmp.string.datatype.label = Datatype
channel-type.config.snmp.string.datatype.description = Content data type
channel-type.config.snmp.string.datatype.option.STRING = String
channel-type.config.snmp.string.datatype.option.HEXSTRING = Hex-String
channel-type.config.snmp.string.datatype.option.IPADDRESS = IP Address
channel-type.config.snmp.string.doNotLogException.label = Don't Log Exception
channel-type.config.snmp.string.doNotLogException.description = If enabled, ignore faulty values/exceptions in this channel
channel-type.config.snmp.string.exceptionValue.label = Exception Value
channel-type.config.snmp.string.exceptionValue.description = Value to send if an SNMP exception occurs (default: UNDEF)
channel-type.config.snmp.string.mode.label = Mode
channel-type.config.snmp.string.mode.description = the mode of this channel
channel-type.config.snmp.string.mode.option.READ = Read
channel-type.config.snmp.string.mode.option.WRITE = Write
channel-type.config.snmp.string.mode.option.READ_WRITE = Read/Write
channel-type.config.snmp.string.mode.option.TRAP = Trap
channel-type.config.snmp.string.oid.label = OID
channel-type.config.snmp.string.oid.description = OID in dotted format (eg. .1.3.6.1.4.1.6574.3.1.1.3.0)
channel-type.config.snmp.switch.datatype.label = Datatype
channel-type.config.snmp.switch.datatype.description = Content data type
channel-type.config.snmp.switch.datatype.option.UINT32 = Unsigned Integer (32 bit)
channel-type.config.snmp.switch.datatype.option.INT32 = Integer (32 bit)
channel-type.config.snmp.switch.datatype.option.COUNTER64 = Counter (64 bit)
channel-type.config.snmp.switch.datatype.option.STRING = String
channel-type.config.snmp.switch.datatype.option.HEXSTRING = Hex-String
channel-type.config.snmp.switch.datatype.option.IPADDRESS = IP Address
channel-type.config.snmp.switch.doNotLogException.label = Don't Log Exception
channel-type.config.snmp.switch.doNotLogException.description = If enabled, faulty values/exceptions will not be logged in this channel
channel-type.config.snmp.switch.exceptionValue.label = Exception Value
channel-type.config.snmp.switch.exceptionValue.description = Value to send if an SNMP exception occurs (ON, OFF, default: UNDEF)
channel-type.config.snmp.switch.exceptionValue.option.ON = ON
channel-type.config.snmp.switch.exceptionValue.option.OFF = OFF
channel-type.config.snmp.switch.mode.label = Mode
channel-type.config.snmp.switch.mode.description = the mode of this channel
channel-type.config.snmp.switch.mode.option.READ = Read
channel-type.config.snmp.switch.mode.option.WRITE = Write
channel-type.config.snmp.switch.mode.option.READ_WRITE = Read/Write
channel-type.config.snmp.switch.mode.option.TRAP = Trap
channel-type.config.snmp.switch.offvalue.label = Off-Value
channel-type.config.snmp.switch.offvalue.description = Value that equals OFF
channel-type.config.snmp.switch.oid.label = OID
channel-type.config.snmp.switch.oid.description = OID in dotted format (eg. .1.3.6.1.4.1.6574.3.1.1.3.0)
channel-type.config.snmp.switch.onvalue.label = On-Value
channel-type.config.snmp.switch.onvalue.description = Value that equals ON