Add default translations for persistence add-ons (#11754)

This makes the texts used by these add-ons translatable with Crowdin.

Signed-off-by: Wouter Born <github@maindrain.net>
This commit is contained in:
Wouter Born
2021-12-11 18:02:00 +01:00
committed by GitHub
parent 1b3818c329
commit e7849c0060
3 changed files with 112 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
persistence.config.dynamodb.accessKey.label = AWS access key
persistence.config.dynamodb.accessKey.description = AWS access key<br /> Give either 1) access key and secret key, or 2) credentials file and profile name.
persistence.config.dynamodb.expireDays.label = Data Expiry, in Days
persistence.config.dynamodb.expireDays.description = Expire time for data.<br /> Data older than this is automatically removed by DynamoDB Time to Live (TTL) feature. Use empty value to disable data expiration.
persistence.config.dynamodb.profile.label = Profile name
persistence.config.dynamodb.profile.description = Profile name in AWS credentials file. <br /> Give either 1) access key and secret key, or 2) credentials file and profile name.
persistence.config.dynamodb.profilesConfigFile.label = AWS credentials file
persistence.config.dynamodb.profilesConfigFile.description = Path to the AWS credentials file. <br /> For example, /etc/openhab/aws_creds. Please note that the user that runs openHAB must have approriate read rights to the credential file. <br /> Give either 1) access key and secret key, or 2) credentials file and profile name.
persistence.config.dynamodb.readCapacityUnits.label = Read Capacity
persistence.config.dynamodb.readCapacityUnits.description = Provisioned read capacity.<br /> Default is 1.
persistence.config.dynamodb.region.label = AWS region ID
persistence.config.dynamodb.region.description = AWS region ID<br /> The region needs to match the region of the AWS user that will access Amazon DynamoDB.<br /> For example, eu-west-1.
persistence.config.dynamodb.secretKey.label = AWS secret key
persistence.config.dynamodb.secretKey.description = AWS secret key<br /> Give either 1) access key and secret key, or 2) credentials file and profile name.
persistence.config.dynamodb.table.label = Table
persistence.config.dynamodb.table.description = Table name. <br /> Specify this parameter over Table Prefix to use the new optimized table format.
persistence.config.dynamodb.tablePrefix.label = Table Prefix
persistence.config.dynamodb.tablePrefix.description = Legacy: Table prefix used in the name of created tables. <br /> Default is "openhab-"
persistence.config.dynamodb.writeCapacityUnits.label = Write Capacity
persistence.config.dynamodb.writeCapacityUnits.description = Provisioned write capacity.<br /> Default is 1.
# service
service.persistence.dynamodb.label = DynamoDB Persistence Service