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,54 @@
persistence.config.jdbc.enableLogTime.label = Timekeeping Enable
persistence.config.jdbc.enableLogTime.description = Enables a time, performance measurement. <br>(optional, default: disabled)
persistence.config.jdbc.enableLogTime.option.true = Enable
persistence.config.jdbc.enableLogTime.option.false = Disable
persistence.config.jdbc.maximumPoolSize.label = Connections Max Pool Size
persistence.config.jdbc.maximumPoolSize.description = Overrides max pool size in database connection. <br>(optional, default: differs each Database)<br> https://github.com/brettwooldridge/HikariCP/issues/256
persistence.config.jdbc.minimumIdle.label = Connections Min Idle
persistence.config.jdbc.minimumIdle.description = Overrides min idle database connections. <br>(optional, default: differs each Database)<br> https://github.com/brettwooldridge/HikariCP/issues/256
persistence.config.jdbc.password.label = Database Password
persistence.config.jdbc.password.description = Defines the database password.
persistence.config.jdbc.rebuildTableNames.label = Tablename Rebuild
persistence.config.jdbc.rebuildTableNames.description = Rename existing tables using 'Tablename Realname Generation' and 'Tablename Suffix ID Count', (optional, default: disabled). <br> USE WITH CARE! Deactivate after renaming is done!
persistence.config.jdbc.rebuildTableNames.option.true = Enable
persistence.config.jdbc.rebuildTableNames.option.false = Disable
persistence.config.jdbc.sqltype.CALL.label = SqlType CALL
persistence.config.jdbc.sqltype.CALL.description = Overrides used JDBC/SQL datatype for CALL <br>(optional, default: "VARCHAR(200)"). <br> General about JdbcTypes/SqlTypes see: https://mybatis.github.io/mybatis-3/apidocs/reference/org/apache/ibatis/type/JdbcType.html <br> see: http://www.h2database.com/html/datatypes.html <br> see: http://www.postgresql.org/docs/9.5/static/datatype.html
persistence.config.jdbc.sqltype.COLOR.label = SqlType COLOR
persistence.config.jdbc.sqltype.COLOR.description = Overrides used JDBC/SQL datatype for COLOR <br>(optional, default: "VARCHAR(70)").
persistence.config.jdbc.sqltype.CONTACT.label = SqlType CONTACT
persistence.config.jdbc.sqltype.CONTACT.description = Overrides used JDBC/SQL datatype for CONTACT <br>(optional, default: "VARCHAR(6)").
persistence.config.jdbc.sqltype.DATETIME.label = SqlType DATETIME
persistence.config.jdbc.sqltype.DATETIME.description = Overrides used JDBC/SQL datatype for DATETIME <br>(optional, default: "DATETIME").
persistence.config.jdbc.sqltype.DIMMER.label = SqlType DIMMER
persistence.config.jdbc.sqltype.DIMMER.description = Overrides used JDBC/SQL datatype for DIMMER <br>(optional, default: "TINYINT").
persistence.config.jdbc.sqltype.IMAGE.label = SqlType IMAGE
persistence.config.jdbc.sqltype.IMAGE.description = Overrides used JDBC/SQL datatype for IMAGE <br>(optional, default: "VARCHAR(65500)").
persistence.config.jdbc.sqltype.LOCATION.label = SqlType LOCATION
persistence.config.jdbc.sqltype.LOCATION.description = Overrides used JDBC/SQL datatype for LOCATION <br>(optional, default: "VARCHAR(50)").
persistence.config.jdbc.sqltype.NUMBER.label = SqlType NUMBER
persistence.config.jdbc.sqltype.NUMBER.description = Overrides used JDBC/SQL datatype for NUMBER <br>(optional, default: "DOUBLE").
persistence.config.jdbc.sqltype.PLAYER.label = SqlType PLAYER
persistence.config.jdbc.sqltype.PLAYER.description = Overrides used JDBC/SQL datatype for PLAYER <br>(optional, default: "VARCHAR(20)").
persistence.config.jdbc.sqltype.ROLLERSHUTTER.label = SqlType ROLLERSHUTTER
persistence.config.jdbc.sqltype.ROLLERSHUTTER.description = Overrides used JDBC/SQL datatype for ROLLERSHUTTER <br>(optional, default: "TINYINT").
persistence.config.jdbc.sqltype.STRING.label = SqlType STRING
persistence.config.jdbc.sqltype.STRING.description = Overrides used JDBC/SQL datatype for STRING <br>(optional, default: "VARCHAR(65500)").
persistence.config.jdbc.sqltype.SWITCH.label = SqlType SWITCH
persistence.config.jdbc.sqltype.SWITCH.description = Overrides used JDBC/SQL datatype for SWITCH <br>(optional, default: "VARCHAR(6)").
persistence.config.jdbc.tableIdDigitCount.label = Tablename Suffix ID Count
persistence.config.jdbc.tableIdDigitCount.description = Tablename Suffix ID Count <br>(optional, default: 4 -> 0001-9999). <br> For migration from MYSQL-Bundle set to 0.
persistence.config.jdbc.tableNamePrefix.label = Tablename Prefix String
persistence.config.jdbc.tableNamePrefix.description = Tablename prefix string <br>(optional, default: "item"). <br> For migration from MYSQL-Bundle set to 'Item'.
persistence.config.jdbc.tableUseRealItemNames.label = Tablename Realname Generation
persistence.config.jdbc.tableUseRealItemNames.description = Enables Tablename prefix generation per Items realname <br>(optional, default: disabled -> "Tablename Prefix String" is used). <br> If true, 'Tablename Prefix String' is ignored.
persistence.config.jdbc.tableUseRealItemNames.option.true = Enable
persistence.config.jdbc.tableUseRealItemNames.option.false = Disable
persistence.config.jdbc.url.label = Database URL
persistence.config.jdbc.url.description = Defines required database URL and optional path and parameters.<br> Required database url like 'jdbc:<service>:<host>[:<port>;<attributes>]'<br> Parameter 'service' is used as identifier for the selected jdbc driver. URL-Examples:<br> jdbc:derby:./testDerby;create=true<br> jdbc:h2:./testH2<br> jdbc:hsqldb:./testHsqlDb<br> jdbc:mariadb://192.168.0.1:3306/testMariadb<br> jdbc:mysql://192.168.0.1:3306/testMysql<br> jdbc:postgresql://192.168.0.1:5432/testPostgresql<br> jdbc:sqlite:./testSqlite.db
persistence.config.jdbc.user.label = Database User
persistence.config.jdbc.user.description = Defines the database user.
# service
service.persistence.jdbc.label = JDBC Persistence Service