]> git.basschouten.com Git - openhab-addons.git/commitdiff
[persistence] Capitalize add-on names (#15378)
authorFlorian Hotze <florianh_dev@icloud.com>
Tue, 10 Oct 2023 12:04:21 +0000 (14:04 +0200)
committerGitHub <noreply@github.com>
Tue, 10 Oct 2023 12:04:21 +0000 (14:04 +0200)
Signed-off-by: Florian Hotze <florianh_dev@icloud.com>
21 files changed:
bundles/org.openhab.persistence.dynamodb/src/main/resources/OH-INF/addon/addon.xml
bundles/org.openhab.persistence.dynamodb/src/main/resources/OH-INF/i18n/dynamodb.properties
bundles/org.openhab.persistence.influxdb/src/main/resources/OH-INF/addon/addon.xml
bundles/org.openhab.persistence.influxdb/src/main/resources/OH-INF/i18n/influxdb.properties
bundles/org.openhab.persistence.inmemory/src/main/resources/OH-INF/i18n/inmemory.properties [new file with mode: 0644]
bundles/org.openhab.persistence.jdbc/src/main/resources/OH-INF/addon/addon-derby.xml
bundles/org.openhab.persistence.jdbc/src/main/resources/OH-INF/addon/addon-h2.xml
bundles/org.openhab.persistence.jdbc/src/main/resources/OH-INF/addon/addon-hsqldb.xml
bundles/org.openhab.persistence.jdbc/src/main/resources/OH-INF/addon/addon-mariadb.xml
bundles/org.openhab.persistence.jdbc/src/main/resources/OH-INF/addon/addon-mysql.xml
bundles/org.openhab.persistence.jdbc/src/main/resources/OH-INF/addon/addon-postgresql.xml
bundles/org.openhab.persistence.jdbc/src/main/resources/OH-INF/addon/addon-sqlite.xml
bundles/org.openhab.persistence.jdbc/src/main/resources/OH-INF/i18n/jdbc.properties
bundles/org.openhab.persistence.jpa/src/main/resources/OH-INF/addon/addon.xml
bundles/org.openhab.persistence.jpa/src/main/resources/OH-INF/i18n/jpa.properties
bundles/org.openhab.persistence.mapdb/src/main/resources/OH-INF/addon/addon.xml
bundles/org.openhab.persistence.mapdb/src/main/resources/OH-INF/i18n/mapdb.properties [new file with mode: 0644]
bundles/org.openhab.persistence.mongodb/src/main/resources/OH-INF/addon/addon.xml
bundles/org.openhab.persistence.mongodb/src/main/resources/OH-INF/i18n/mongodb.properties [new file with mode: 0644]
bundles/org.openhab.persistence.rrd4j/src/main/resources/OH-INF/addon/addon.xml
bundles/org.openhab.persistence.rrd4j/src/main/resources/OH-INF/i18n/rrd4j.properties [new file with mode: 0644]

index aa04cd410d1d5b8fc5efea93e04a311416cd0196..3e262ca19bd4f8445772a1747189a44a5b2af0c9 100644 (file)
@@ -4,7 +4,7 @@
        xsi:schemaLocation="https://openhab.org/schemas/addon/v1.0.0 https://openhab.org/schemas/addon-1.0.0.xsd">
 
        <type>persistence</type>
-       <name>DynamoDB persistence</name>
+       <name>DynamoDB Persistence</name>
        <description>This is the persistence add-on for DynamoDB.</description>
        <connection>cloud</connection>
 
index a37d972a5bea1613df8fe2663e1b58c20069217d..495f7e82c580fea5092413d5d294840839c794d8 100644 (file)
@@ -1,3 +1,10 @@
+# add-on
+
+addon.dynamodb.name = DynamoDB Persistence
+addon.dynamodb.description = This is the persistence add-on for DynamoDB.
+
+# add-on
+
 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
@@ -18,7 +25,3 @@ 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
index 06bd192644ad48333977fa9165c1650af15264e7..aaa1089789dbaa2294f3f9bf97bd537bf4541f98 100644 (file)
@@ -4,7 +4,7 @@
        xsi:schemaLocation="https://openhab.org/schemas/addon/v1.0.0 https://openhab.org/schemas/addon-1.0.0.xsd">
 
        <type>persistence</type>
-       <name>InfluxDB persistence</name>
+       <name>InfluxDB Persistence</name>
        <description>This is the persistence add-on for InfluxDB.</description>
        <connection>local</connection>
 
index c94e5d4c9ca43e51749dffdbb7b58bf425dbc2ae..11392ed561f57f4414c0dbaafb394ffd4993bf83 100644 (file)
@@ -1,3 +1,10 @@
+# add-on
+
+addon.influxdb.name = InfluxDB Persistence
+addon.influxdb.description = This is the persistence add-on for InfluxDB.
+
+# add-on
+
 persistence.config.influxdb.addCategoryTag.label = Add Category Tag
 persistence.config.influxdb.addCategoryTag.description = Should the category of the item be included as tag "category"? If no category is set, "n/a" is used.
 persistence.config.influxdb.addLabelTag.label = Add Label Tag
@@ -28,7 +35,3 @@ persistence.config.influxdb.version.label = Database Version
 persistence.config.influxdb.version.description = InfluxDB version
 persistence.config.influxdb.version.option.V1 = InfluxDB 1
 persistence.config.influxdb.version.option.V2 = InfluxDB 2
-
-# service
-
-service.persistence.influxdb.label = InfluxDB Persistence Service
diff --git a/bundles/org.openhab.persistence.inmemory/src/main/resources/OH-INF/i18n/inmemory.properties b/bundles/org.openhab.persistence.inmemory/src/main/resources/OH-INF/i18n/inmemory.properties
new file mode 100644 (file)
index 0000000..c292862
--- /dev/null
@@ -0,0 +1,9 @@
+# add-on
+
+addon.inmemory.name = InMemory Persistence
+addon.inmemory.description = A volatile persistence service to temporarily store data.
+
+# add-on config
+
+addon.config.inmemory.maxEntries.label = Maximum Entries
+addon.config.inmemory.maxEntries.description = The maximum number of values stored for each item (0 = infinite).
index 1f92d88fff7eb1405379b4a2d3695aa9f8b55f18..a7814fd819fb7ea3faafac4ce24713a8008e331c 100644 (file)
@@ -4,7 +4,7 @@
        xsi:schemaLocation="https://openhab.org/schemas/addon/v1.0.0 https://openhab.org/schemas/addon-1.0.0.xsd">
 
        <type>persistence</type>
-       <name>JDBC persistence (Derby)</name>
+       <name>JDBC Persistence (Derby)</name>
        <description>This is the persistence add-on for JDBC.</description>
 
        <service-id>org.openhab.jdbc</service-id>
index 4fabe6118b9b16860fba077c0ffdbf18633b70c6..55f78e35d06db2a0941db0f91925132e22917c76 100644 (file)
@@ -4,7 +4,7 @@
        xsi:schemaLocation="https://openhab.org/schemas/addon/v1.0.0 https://openhab.org/schemas/addon-1.0.0.xsd">
 
        <type>persistence</type>
-       <name>JDBC persistence (H2)</name>
+       <name>JDBC Persistence (H2)</name>
        <description>This is the persistence add-on for JDBC.</description>
 
        <service-id>org.openhab.jdbc</service-id>
index 529df6f37d6050c899917fd52904ac83cb35ea01..4d59784a1f77e70aa1b79f3cc4fa48b117db326a 100644 (file)
@@ -4,7 +4,7 @@
        xsi:schemaLocation="https://openhab.org/schemas/addon/v1.0.0 https://openhab.org/schemas/addon-1.0.0.xsd">
 
        <type>persistence</type>
-       <name>JDBC persistence (HSQLDB)</name>
+       <name>JDBC Persistence (HSQLDB)</name>
        <description>This is the persistence add-on for JDBC.</description>
 
        <service-id>org.openhab.jdbc</service-id>
index 699b4e346dd73cc0b6a04c7daceb1a42eaecd96a..3c521c491d5fb05e845177111a1576ee73024098 100644 (file)
@@ -4,7 +4,7 @@
        xsi:schemaLocation="https://openhab.org/schemas/addon/v1.0.0 https://openhab.org/schemas/addon-1.0.0.xsd">
 
        <type>persistence</type>
-       <name>JDBC persistence (MariaDB)</name>
+       <name>JDBC Persistence (MariaDB)</name>
        <description>This is the persistence add-on for JDBC.</description>
 
        <service-id>org.openhab.jdbc</service-id>
index eaa6a909cca8b93655055f822d2d65bc5b060c1f..b5455bc2381ef3991157e8018f4010b5e6925c02 100644 (file)
@@ -4,7 +4,7 @@
        xsi:schemaLocation="https://openhab.org/schemas/addon/v1.0.0 https://openhab.org/schemas/addon-1.0.0.xsd">
 
        <type>persistence</type>
-       <name>JDBC persistence (MySQL)</name>
+       <name>JDBC Persistence (MySQL)</name>
        <description>This is the persistence add-on for JDBC.</description>
 
        <service-id>org.openhab.jdbc</service-id>
index b84e2d0d278c9e5eb8d48f71075b8e734901cb4c..feee644c6ad416c5e39d38c4aaa4d0220ded3d9e 100644 (file)
@@ -4,7 +4,7 @@
        xsi:schemaLocation="https://openhab.org/schemas/addon/v1.0.0 https://openhab.org/schemas/addon-1.0.0.xsd">
 
        <type>persistence</type>
-       <name>JDBC persistence (PostgreSQL)</name>
+       <name>JDBC Persistence (PostgreSQL)</name>
        <description>This is the persistence add-on for JDBC.</description>
 
        <service-id>org.openhab.jdbc</service-id>
index 2ff669ae5ce2b35cfe18ca5b3c7ec65f786a2d60..54c1ba698459c7efc2fcc1c86171dca045bf1a5a 100644 (file)
@@ -4,7 +4,7 @@
        xsi:schemaLocation="https://openhab.org/schemas/addon/v1.0.0 https://openhab.org/schemas/addon-1.0.0.xsd">
 
        <type>persistence</type>
-       <name>JDBC persistence (SQLite)</name>
+       <name>JDBC Persistence (SQLite)</name>
        <description>This is the persistence add-on for JDBC.</description>
 
        <service-id>org.openhab.jdbc</service-id>
index b30f16ea61334cef7e98f4212ce46d00e379496c..260c776542c74038e385be0f1bd3eeed0c5c6120 100644 (file)
@@ -52,7 +52,3 @@ 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;NON_KEYWORDS=VALUE<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
index d23a701759426dea608224443e11607719e1b58b..8004b1a5fd993c9c870b26ec6fb1f04a1f8e7365 100644 (file)
@@ -4,7 +4,7 @@
        xsi:schemaLocation="https://openhab.org/schemas/addon/v1.0.0 https://openhab.org/schemas/addon-1.0.0.xsd">
 
        <type>persistence</type>
-       <name>JPA persistence</name>
+       <name>JPA Persistence</name>
        <description>This is the persistence add-on for JPA.</description>
        <connection>local</connection>
 
index 0032237039f1543e16c5d9a8869579003ce7a80e..8b50982c23b2ab9208d1bcd9596b1332cfe71d67 100644 (file)
@@ -1,3 +1,10 @@
+# add-on
+
+addon.jpa.name = JPA Persistence
+addon.jpa.description = This is the persistence add-on for JPA.
+
+# add-on config
+
 persistence.config.jpa.driver.label = Database Driver
 persistence.config.jpa.driver.description = The JDBC driver class name for the connection.<br>Examples:<br>com.mysql.jdbc.Driver<br>org.apache.derby.jdbc.ClientDriver<br>org.mariadb.jdbc.Driver<br>org.postgresql.Driver
 persistence.config.jpa.password.label = Database Password
@@ -8,7 +15,3 @@ persistence.config.jpa.url.label = Database URL
 persistence.config.jpa.url.description = JDBC connection URL.<br>Examples:<br>jdbc:derby://hab.local:1527/openhab;create=true<br>jdbc:mariadb://localhost:3306/openhab<br>jdbc:mysql://localhost:3306/openhab<br>jdbc:postgresql://hab.local:5432/openhab
 persistence.config.jpa.user.label = Database User
 persistence.config.jpa.user.description = The database user name for the connection.
-
-# service
-
-service.persistence.jpa.label = JPA Persistence Service
index 5cfca1d3388f65e4ecbff84b19b497f3e89be8f7..fead93ef9bc36bee5c4c5c5aed420c9c889e33fc 100644 (file)
@@ -4,7 +4,7 @@
        xsi:schemaLocation="https://openhab.org/schemas/addon/v1.0.0 https://openhab.org/schemas/addon-1.0.0.xsd">
 
        <type>persistence</type>
-       <name>MapDB persistence</name>
+       <name>MapDB Persistence</name>
        <description>This is the persistence add-on for MapDB.</description>
        <connection>none</connection>
 
diff --git a/bundles/org.openhab.persistence.mapdb/src/main/resources/OH-INF/i18n/mapdb.properties b/bundles/org.openhab.persistence.mapdb/src/main/resources/OH-INF/i18n/mapdb.properties
new file mode 100644 (file)
index 0000000..578c616
--- /dev/null
@@ -0,0 +1,4 @@
+# add-on
+
+addon.mapdb.name = MapDB Persistence
+addon.mapdb.description = This is the persistence add-on for MapDB.
index f129d25535e79a8da6d7a75ff3fb44b2022ee29e..bf70a1ebd4a9123029952b196655e87b67af15be 100644 (file)
@@ -4,7 +4,7 @@
        xsi:schemaLocation="https://openhab.org/schemas/addon/v1.0.0 https://openhab.org/schemas/addon-1.0.0.xsd">
 
        <type>persistence</type>
-       <name>MongoDB persistence</name>
+       <name>MongoDB Persistence</name>
        <description>This is the persistence add-on for MongoDB.</description>
        <connection>local</connection>
 
diff --git a/bundles/org.openhab.persistence.mongodb/src/main/resources/OH-INF/i18n/mongodb.properties b/bundles/org.openhab.persistence.mongodb/src/main/resources/OH-INF/i18n/mongodb.properties
new file mode 100644 (file)
index 0000000..d7e21b7
--- /dev/null
@@ -0,0 +1,10 @@
+# add-on
+
+addon.mongodb.name = MongoDB Persistence
+addon.mongodb.description = This is the persistence add-on for MongoDB.
+
+# add-on config
+
+addon.config.mongodb.collection.label = Collection
+addon.config.mongodb.database.label = Database Name
+addon.config.mongodb.url.label = MongoDB connection URL
index d98570d949e33cfddfaf0328f1079695c902402a..afdc87a73ab5268cad9a9abce3ab98a0584cca17 100644 (file)
@@ -4,7 +4,7 @@
        xsi:schemaLocation="https://openhab.org/schemas/addon/v1.0.0 https://openhab.org/schemas/addon-1.0.0.xsd">
 
        <type>persistence</type>
-       <name>RRD4J persistence</name>
+       <name>RRD4J Persistence</name>
        <description>This is the persistence add-on for RRD4J.</description>
        <connection>none</connection>
 
diff --git a/bundles/org.openhab.persistence.rrd4j/src/main/resources/OH-INF/i18n/rrd4j.properties b/bundles/org.openhab.persistence.rrd4j/src/main/resources/OH-INF/i18n/rrd4j.properties
new file mode 100644 (file)
index 0000000..cc72ac9
--- /dev/null
@@ -0,0 +1,4 @@
+# add-on
+
+addon.rrd4j.name = RRD4J Persistence
+addon.rrd4j.description = This is the persistence add-on for RRD4J.