Skip to content

Commit 4179b89

Browse files
authored
New Crowdin updates (openhab#18981)
* New translations jeelink.properties (German) * New translations nanoleaf.properties (German) * New translations openweathermap.properties (German) * New translations mielecloud.properties (German) * New translations openhabcloud.properties (German) * New translations mqtt.properties (German) * New translations dynamodb.properties (German) * New translations homekit.properties (German) * New translations denonmarantz.properties (German) * New translations heos.properties (German) * New translations homematic.properties (German) * New translations pilight.properties (German) * New translations jsscripting.properties (German) * New translations yamahamusiccast.properties (German) * New translations awattar.properties (German) * New translations fineoffsetweatherstation.properties (German) * New translations chatgpt.properties (German) * New translations pythonscripting.properties (German)
1 parent 4ba2e77 commit 4179b89

18 files changed

Lines changed: 229 additions & 72 deletions

File tree

bundles/org.openhab.automation.jsscripting/src/main/resources/OH-INF/i18n/jsscripting_de.properties

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
1+
# add-on
2+
3+
addon.jsscripting.name = JavaScript Scripting
4+
addon.jsscripting.description = Dies fügt eine JS (ECMAScript-2024) Skript-Engine hinzu.
5+
6+
# add-on config
7+
8+
automation.config.jsscripting.injectionCachingEnabled.label = openHAB JavaScript Bibliothek cachen
9+
automation.config.jsscripting.injectionCachingEnabled.description = Zwischenspeichern der mitgelieferten openHAB JavaScript-Bibliothek für optimale Performance.<br>Deaktiviere diese Option, um das Laden der Bibliothek aus dem lokalen Benutzerkonfigurationsverzeichnis "automation/js/node_modules" zu ermöglichen. Deaktivierung der Zwischenspeicherung kann die Ladezeiten des Skripts erhöhen, insbesondere auf weniger leistungsfähigen Systemen.
10+
automation.config.jsscripting.injectionCachingEnabled.option.true = Bibliotheken zwischenspeichern
11+
automation.config.jsscripting.injectionCachingEnabled.option.false = Bibliotheken nicht zwischenspeichern
112
automation.config.jsscripting.injectionEnabled.label = Globale Integrierte Variablen
213
automation.config.jsscripting.injectionEnabled.description = Importiere alle globalen Variablen der openHAB Scripting Bibliothek in allen Regeln für häufig genutzte Dienste wie z. B. Items, Things, Actions, usw... <br> Wenn diese Option deaktiviert ist, dann kann die openHAB Scripting Bibliothek manuell mit "<i>require('openhab')</i>" importiert werden
314
automation.config.jsscripting.injectionEnabled.option.true = Integrierte Variablen verwenden
415
automation.config.jsscripting.injectionEnabled.option.false = Integrierten Variablen nicht verwenden
5-
automation.config.jsscripting.useIncludedLibrary.label = Integrierte openHAB Scripting Bibliothek
6-
automation.config.jsscripting.useIncludedLibrary.description = Verwende die mitgelieferte openHAB JavaScript-Bibliothek für optimale Performance.<br>Deaktiviere diese Option, um das Laden der Bibliothek aus dem lokalen Benutzerkonfigurationsverzeichnis "automation/js/node_modules" zu ermöglichen. Die Verwendung einer vom Benutzer zur Verfügung gestellten Version der Bibliothek kann die Ladezeiten des Skripts erhöhen, insbesondere auf weniger leistungsfähigen Systemen.
7-
automation.config.jsscripting.useIncludedLibrary.option.true = Integrierte Bibliothek verwenden
8-
automation.config.jsscripting.useIncludedLibrary.option.false = Integrierte Bibliothek nicht verwenden
9-
10-
# service
11-
12-
service.automation.jsscripting.label = JavaScript Scripting
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# add-on
2+
3+
addon.pythonscripting.name = Python Scripting
4+
addon.pythonscripting.description = Fügt eine Python 3.x Skript-Engine hinzu.
5+
6+
# add-on config
7+
8+
automation.config.pythonscripting.cachingEnabled.label = Zwischenspeichern von kompilierten openHAB Python-Helfermodulen (.pyc Dateien)
9+
automation.config.pythonscripting.cachingEnabled.description = Zwischenspeichern der openHAB Python-Module für eine verbesserte Startup-Performance.<br> Deaktivieren dieser Option führt zu einer langsameren Start-Performance, da Skripte bei jedem Start neu kompiliert werden müssen.
10+
automation.config.pythonscripting.dependencyTrackingEnabled.label = Abhängigkeitsüberwachung aktivieren
11+
automation.config.pythonscripting.dependencyTrackingEnabled.description = Die Abhängigkeitsüberwachung ermöglicht es Ihren Skripten, automatisch neu zu laden, wenn eine ihrer Abhängigkeiten aktualisiert wird. Sie können die Überwachung von Abhängigkeiten deaktivieren, wenn Sie eine gemeinsam genutzte Bibliothek bearbeiten oder aktualisieren möchten, aber nicht wollen, dass alle Skripte neu geladen werden, bis Sie sie testen können.
12+
automation.config.pythonscripting.group.environment.label = Python-Umgebung
13+
automation.config.pythonscripting.group.environment.description = Diese Gruppe definiert die Python-Umgebung.
14+
automation.config.pythonscripting.group.system.label = Systemverhalten
15+
automation.config.pythonscripting.group.system.description = Diese Gruppe definiert das Systemverhalten von Python.
16+
automation.config.pythonscripting.helperEnabled.label = Installieren und automatisches Aktualisieren der openHAB Python-Helfermodule (erfordert Scope-Modul)
17+
automation.config.pythonscripting.helperEnabled.description = OpenHAB Python-Helfermodule wie 'rule', 'logger', 'Registry', 'Timer', usw. bereitstellen und aktualisieren.<br> Wenn deaktiviert, kann das openHAB Python-Helfermodul manuell installiert werden, indem es nach "/conf/automation/python/lib/openhab" kopiert wird.
18+
automation.config.pythonscripting.injectionEnabled.label = Bereitstellung von Scope- und Helfer-Objekten für UI-basierte Regeln (erfordert Helfer-Module)
19+
automation.config.pythonscripting.injectionEnabled.description = Dies bettet das Scope-Modul und die Kern-Helfermodule 'Registry' und 'logger' in UI-basierte Regeln ein.
20+
automation.config.pythonscripting.injectionEnabled.option.2 = Automatische Einbettung nur für UI und Transformationsskripte aktivieren (bevorzugt)
21+
automation.config.pythonscripting.injectionEnabled.option.1 = Automatische Einbettung für alle Skripte aktivieren
22+
automation.config.pythonscripting.injectionEnabled.option.0 = Automatische Einbettung deaktivieren und stattdessen 'import'-Anweisungen verwenden
23+
automation.config.pythonscripting.jythonEmulation.label = Jython-Emulation aktivieren
24+
automation.config.pythonscripting.jythonEmulation.description = Ermöglicht Jython-Emulation in GraalPy. Es wird dringend empfohlen, Code auf GraalPy und Python 3 zu aktualisieren, da die Emulation zu Performanceeinbußen führen kann. Für Tipps und Anweisungen wird auf <a href\="https\://www.graalvm.org/latest/reference-manual/python/Modern-Python-on-JVM">Jython Migration Guide</a> verwiesen.
25+
automation.config.pythonscripting.scopeEnabled.label = Scope und Import Wrapper verwenden
26+
automation.config.pythonscripting.scopeEnabled.description = Aktiviert ein Scope-Modul und Import-Wrapper.<br> Ein Scope-Modul ist ein eingekapseltes Modul mit allen openHAB JSR223 Objekten und kann mit <code>import scope</code><br> importiert werden. Zusätzlich können Sie einen Import, wie <code>from org.openhab.core import OpenHAB</code> verwenden.

bundles/org.openhab.binding.awattar/src/main/resources/OH-INF/i18n/awattar_de.properties

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ bridge-type.config.awattar.bridge.basePrice.label = Basispreis
1212
bridge-type.config.awattar.bridge.basePrice.description = Der Netto-Grundpreis pro Kilowattstunde
1313
bridge-type.config.awattar.bridge.timeZone.label = Zeitzone
1414
bridge-type.config.awattar.bridge.timeZone.description = Zeitzone für die Stundenangaben. Default ist CET, passend zur aWATTar API
15+
bridge-type.config.awattar.bridge.serviceFee.label = Service-Gebühr
16+
bridge-type.config.awattar.bridge.serviceFee.description = Service-Gebühr (in Prozent)
1517

1618
# thing types
1719
thing-type.awattar.prices.label = aWATTar Stundenpreise
@@ -29,7 +31,7 @@ thing-type.config.awattar.bestprice.length.description = Die Anzahl der zu finde
2931
thing-type.config.awattar.bestprice.consecutive.label = Durchgehend
3032
thing-type.config.awattar.bestprice.consecutive.description = Wird ein einzelner durchgehender Zeitraum gesucht?
3133
thing-type.config.awattar.bestprice.inverted.label = Invertiert
32-
thing-type.config.awattar.bestprice.inverted.description = Wird nach den teuersten Stunden gesucht?
34+
thing-type.config.awattar.bestprice.inverted.description = Die Suche nach dem höchsten Preis umkehren.
3335

3436
# channel types
3537
channel-type.awattar.price.label = ct/kWh
@@ -167,7 +169,7 @@ error.json=Ungültiges JSON von aWATTar
167169
error.interrupted=Kommunikation unterbrochen
168170
error.execution=Ausführungsfehler
169171
error.timeout=Timeout beim Abrufen der Preise von aWATTar
170-
error.invalid.data=Keine oder ungültige Daten von der aWATTar API erhalten
172+
error.empty.data=Keine oder ungültige Daten von der aWATTar API erhalten
171173
error.length.value=Length muss größer als 0 und kleiner als duration sein.
172174
warn.awattar.statuscode=Der aWATTar Server antwortete nicht mit Statuscode 200
173175
error.start.value=Ungültiger Startwert
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# add-on
2+
3+
addon.chatgpt.name = ChatGPT Binding
4+
addon.chatgpt.description = Diese Bindung ermöglicht die Interaktion mit OpenAI's ChatGPT.
5+
6+
# thing types
7+
8+
thing-type.chatgpt.account.label = OpenAI Account
9+
thing-type.chatgpt.account.description = Account bei OpenAI, der für den Zugriff auf die ChatGPT-API verwendet wird.
10+
11+
# thing types config
12+
13+
thing-type.config.chatgpt.account.apiKey.label = API-Schlüssel
14+
thing-type.config.chatgpt.account.apiKey.description = API-Schlüssel zum Zugriff auf das Konto
15+
thing-type.config.chatgpt.account.apiUrl.label = API URL
16+
thing-type.config.chatgpt.account.apiUrl.description = Adresse der API Schnittstelle des KI-Dienstes.
17+
thing-type.config.chatgpt.account.modelUrl.label = Modell URL
18+
thing-type.config.chatgpt.account.modelUrl.description = Adresse, von der die Liste der verfügbaren Modelle abgerufen werden kann.
19+
20+
# channel types
21+
22+
channel-type.chatgpt.chat.label = Chat
23+
channel-type.chatgpt.chat.description = Eine Chat-Sitzung
24+
25+
# channel types config
26+
27+
channel-type.config.chatgpt.chat.maxTokens.label = Maximale Anzahl an Token
28+
channel-type.config.chatgpt.chat.maxTokens.description = Die maximale Anzahl Tokens, die für die Antwort verwendet werden sollen.
29+
channel-type.config.chatgpt.chat.model.label = Modell
30+
channel-type.config.chatgpt.chat.model.description = Das Modell, das für die Antworten verwendet wird
31+
channel-type.config.chatgpt.chat.systemMessage.label = System-Nachricht
32+
channel-type.config.chatgpt.chat.systemMessage.description = Diese Einstellung dient der Voreinstellung des Verhaltens des Assistenten.
33+
channel-type.config.chatgpt.chat.temperature.label = Temperatur
34+
channel-type.config.chatgpt.chat.temperature.description = Höhere Werte wie z.B. 0,8 machen die Ausgabe zufälliger, während niedrigere Werte sie fokussierter und deterministischer erscheinen lassen.
35+
36+
# status messages
37+
38+
offline.configuration-error = Kein API-Schlüssel konfiguriert
39+
offline.communication-error = Verbindung zu OpenAI API fehlgeschlagen

bundles/org.openhab.binding.denonmarantz/src/main/resources/OH-INF/i18n/denonmarantz_de.properties

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,12 @@ thing-type.config.denonmarantz.avr.zoneCount.description = Anzahl der Zonen des
4141

4242
channel-group-type.denonmarantz.general.label = Allgemeine Steuerung
4343
channel-group-type.denonmarantz.general.description = Allgemeine Channels für diesen AVR.
44+
channel-group-type.denonmarantz.general.channel.power.description = Ein-/Ausschalten des AVR
4445
channel-group-type.denonmarantz.zone.label = Zonensteuerung
4546
channel-group-type.denonmarantz.zone.description = Channels einer Zone des AVR.
47+
channel-group-type.denonmarantz.zone.channel.mute.description = Ton dieser AVR-Zone stumm schalten
48+
channel-group-type.denonmarantz.zone.channel.power.description = Diese AVR-Zone ein/ausschalten
49+
channel-group-type.denonmarantz.zone.channel.volume.description = Lautstärke dieser Zone einstellen
4650

4751
# channel types
4852

@@ -94,17 +98,15 @@ channel-type.denonmarantz.input.state.option.IPD = IPD
9498
channel-type.denonmarantz.input.state.option.IRP = IRP
9599
channel-type.denonmarantz.input.state.option.FVP = FVP
96100
channel-type.denonmarantz.input.state.option.OTP = OTP
97-
channel-type.denonmarantz.mainPower.label = Betrieb
98-
channel-type.denonmarantz.mainPower.description = Ein-/Ausschalten des AVR
99-
channel-type.denonmarantz.mute.label = Stummschaltung
100-
channel-type.denonmarantz.mute.description = Aktiviere/Deaktiviere Stummschaltung in dieser AVR-Zone
101+
channel-type.denonmarantz.input.state.option.BLUETOOTH = Bluetooth
102+
channel-type.denonmarantz.input.state.option.COAXIAL = Koaxial
103+
channel-type.denonmarantz.input.state.option.DIGITALIN1 = Digtialeingang 1
104+
channel-type.denonmarantz.input.state.option.DIGITALIN2 = Digtialeingang 2
105+
channel-type.denonmarantz.input.state.option.ANALOGIN = Analogeingang 1
106+
channel-type.denonmarantz.input.state.option.ANALOGIN2 = Analogeingang 1
101107
channel-type.denonmarantz.surroundProgram.label = Surround-Programm
102108
channel-type.denonmarantz.surroundProgram.description = Surround-Programm des AVR auswählen
103109
channel-type.denonmarantz.track.label = Aktueller Titel
104110
channel-type.denonmarantz.track.description = Der aktuell abgespielte Titel.
105-
channel-type.denonmarantz.volume.label = Lautstärke
106-
channel-type.denonmarantz.volume.description = Festlegen der Lautstärke dieser Zone
107111
channel-type.denonmarantz.volumeDB.label = Lautstärke (dB)
108112
channel-type.denonmarantz.volumeDB.description = Festlegen des Lautstärkepegel (dB), wie [mainVolume - 80].
109-
channel-type.denonmarantz.zonePower.label = Betrieb (Zone)
110-
channel-type.denonmarantz.zonePower.description = Ein-/Ausschalten dieser Zone des AVR

bundles/org.openhab.binding.fineoffsetweatherstation/src/main/resources/OH-INF/i18n/fineoffsetweatherstation_de.properties

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ channel-type.fineoffsetweatherstation.battery-voltage.label = Batteriespannung
3030
channel-type.fineoffsetweatherstation.battery-voltage.description = Die Spannung der Batterie
3131
channel-type.fineoffsetweatherstation.co2.label = CO2
3232
channel-type.fineoffsetweatherstation.co2.description = Indikator für die Luftqualität
33+
channel-type.fineoffsetweatherstation.free-heap-size.description = Der verfügbare Heap-Speicher. Wenn sie sich der Wert verringert, bedeutet dies, dass der Heap-Speicher knapper wird.
34+
channel-type.fineoffsetweatherstation.free-heap-size.label = Freier Heap-Speicher
3335
channel-type.fineoffsetweatherstation.humidity.label = Luftfeuchtigkeit
3436
channel-type.fineoffsetweatherstation.illumination.label = Lichtstärke
3537
channel-type.fineoffsetweatherstation.lightning-counter.label = Anzahl Blitzschläge
@@ -136,3 +138,4 @@ gateway.dynamic-channel.piezo-rain-day.label = Niederschlagsmenge Heute
136138
gateway.dynamic-channel.piezo-rain-week.label = Niederschlagsmenge diese Woche
137139
gateway.dynamic-channel.piezo-rain-month.label = Niederschlagsmenge diesen Monat
138140
gateway.dynamic-channel.piezo-rain-year.label = Niederschlagsmenge dieses Jahr
141+
gateway.dynamic-channel.free-heap-size.label = Freier Stack-Speicher
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
# add-on
2+
3+
addon.heos.name = HEOS Binding
4+
addon.heos.description = Binding für das Denon HEOS System.
5+
6+
# thing types
7+
8+
thing-type.heos.bridge.label = HEOS Bridge
9+
thing-type.heos.bridge.description = Die Bridge für das HEOS-System
10+
thing-type.heos.group.label = HEOS-Gruppe
11+
thing-type.heos.group.description = Eine Gruppe von HEOS-Geräten
12+
thing-type.heos.player.label = HEOS-Gerät
13+
thing-type.heos.player.description = Ein HEOS-Gerät des HEOS-Netzwerks
14+
15+
# thing types config
16+
17+
thing-type.config.heos.bridge.heartbeat.label = Heartbeat
18+
thing-type.config.heos.bridge.heartbeat.description = Das Intervall in Sekunden, in dem sich HEOS Geräte perioidisch im Netzwerk melden (Standard \= 60 s)
19+
thing-type.config.heos.bridge.ipAddress.label = Netzwerkadresse
20+
thing-type.config.heos.bridge.ipAddress.description = Netzwerkadresse der HEOS-Bridge.
21+
thing-type.config.heos.bridge.password.label = Passwort
22+
thing-type.config.heos.bridge.password.description = Passwort für die Anmeldung am HEOS-Konto.
23+
thing-type.config.heos.bridge.username.label = Benutzername
24+
thing-type.config.heos.bridge.username.description = Benutzername für die Anmeldung am HEOS-Konto.
25+
thing-type.config.heos.group.members.label = Geräte-IDs der Gruppenmitglieder
26+
thing-type.config.heos.group.members.description = Zeigt die Geräte-IDs der Gruppenmitglieder
27+
thing-type.config.heos.player.pid.label = Geräte-ID
28+
thing-type.config.heos.player.pid.description = Die interne Geräte-ID
29+
30+
# channel types
31+
32+
channel-type.heos.album.label = Album
33+
channel-type.heos.buildGroup.label = Gruppe erstellen
34+
channel-type.heos.clearQueue.label = Warteschlange leeren
35+
channel-type.heos.cover.label = Cover
36+
channel-type.heos.currentPosition.label = Titelnummer
37+
channel-type.heos.currentPosition.description = Der aktuelle Titel
38+
channel-type.heos.duration.label = Titeldauer
39+
channel-type.heos.duration.description = Die Gesamtdauer des Titels
40+
channel-type.heos.favorites.label = Favoriten
41+
channel-type.heos.input.label = Externe Eingänge
42+
channel-type.heos.playUrl.label = URL abspielen
43+
channel-type.heos.playUrl.description = Spielt eine Mediendatei von der URL ab
44+
channel-type.heos.playlists.label = Wiedergabelisten
45+
channel-type.heos.queue.label = Warteschlange
46+
channel-type.heos.rawCommand.label = Benutzerdefinierten Befehl senden
47+
channel-type.heos.rawCommand.description = Senden eines HEOS-Befehls wie im HEOS CLI-Protokoll angegeben
48+
channel-type.heos.reboot.label = Neustart
49+
channel-type.heos.repeatMode.label = Wiederholungsmodus
50+
channel-type.heos.repeatMode.description = Wiederholungsmodus festlegen
51+
channel-type.heos.repeatMode.state.option.One = Einen Titel
52+
channel-type.heos.repeatMode.state.option.All = Alle
53+
channel-type.heos.repeatMode.state.option.Off = Aus
54+
channel-type.heos.shuffleMode.label = Zufallswiedergabe
55+
channel-type.heos.shuffleMode.description = Aktiviert die Zufallswiedergabe
56+
channel-type.heos.station.label = Sender
57+
channel-type.heos.station.description = Der Name der gerade gespielten Radiostation
58+
channel-type.heos.type.label = Medientyp
59+
channel-type.heos.type.description = Der aktuell abgespielte Medientyp (Sender, Song, ...)
60+
channel-type.heos.ungroup.label = Gruppe

bundles/org.openhab.binding.homematic/src/main/resources/OH-INF/i18n/homematic_de.properties

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ thing-type.config.homematic.bridge.hmIpPort.label = HMIP-Port
3737
thing-type.config.homematic.bridge.hmIpPort.description = Die Portnummer des Homematic IP-Dienstes
3838
thing-type.config.homematic.bridge.installModeDuration.label = Installationsmodus Dauer
3939
thing-type.config.homematic.bridge.installModeDuration.description = Zeit in Sekunden, in denen der Controller im Installationsmodus ist, wenn eine Geräteentdeckung gestartet wird
40+
thing-type.config.homematic.bridge.password.label = Passwort
41+
thing-type.config.homematic.bridge.password.description = Passwort für den Zugriff auf das Gateway, sofern eine Authentifizierung notwendig ist.
4042
thing-type.config.homematic.bridge.rfPort.label = RF-Port
4143
thing-type.config.homematic.bridge.rfPort.description = Die Portnummer des RF-Dienstes
4244
thing-type.config.homematic.bridge.socketMaxAlive.label = Socket MaxAlive
@@ -45,6 +47,10 @@ thing-type.config.homematic.bridge.timeout.label = Zeitüberschreitung
4547
thing-type.config.homematic.bridge.timeout.description = Timeout in Sekunden für Verbindungen zu einem Homematic Gateway
4648
thing-type.config.homematic.bridge.unpairOnDeletion.label = Geräte beim Löschen trennen
4749
thing-type.config.homematic.bridge.unpairOnDeletion.description = Wenn auf "true" gesetzt, werden Geräte vom Gateway getrennt, wenn die entsprechenden Dinge entfernt werden. Die Option "factoryResetOnDeletion" entkoppelt auch ein Gerät. Um beim Löschen zu vermeiden, müssen beide Optionen auf "false" gesetzt werden\!
50+
thing-type.config.homematic.bridge.useAuthentication.label = Authentifizierung verwenden
51+
thing-type.config.homematic.bridge.useAuthentication.description = Authentifizierung für den Zugriff auf das Gateway verwenden. Wenn aktiviert, wird Benutzername und Passwort benötigt.
52+
thing-type.config.homematic.bridge.userName.label = Benutzername
53+
thing-type.config.homematic.bridge.userName.description = Benutzername für den Zugriff aufs Gateway, sofern eine Authentifizierung notwendig ist.
4854
thing-type.config.homematic.bridge.wiredPort.label = Wired Port
4955
thing-type.config.homematic.bridge.wiredPort.description = Die Portnummer des HS485-Dienstes
5056
thing-type.config.homematic.bridge.xmlCallbackPort.label = XML-RPC Callback Port

bundles/org.openhab.binding.jeelink/src/main/resources/OH-INF/i18n/jeelink_de.properties

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ thing-type.ec3k.label = ec3k
1919
thing-type.ec3k.description = Ein mit dem JeeLink USB Empfänger verbundenes EC3000 Energiekosten-Messgerät.
2020
thing-type.pca301.label = PCA301
2121
thing-type.pca301.description = Eine mit dem JeeLink USB Empfänger verbundene PCA301 Steckdose.
22+
thing-type.emt7110.label = EMT7110
23+
thing-type.emt7110.description = Eine mit dem JeeLink USB Empfänger verbundene EMT7110 Funksteckdose.
24+
2225
thing-type.tx22.label = TX22 Sensor
2326
thing-type.tx22.description = Ein mit dem JeeLink USB Empfänger verbundener TX22 Sensor.
2427
thing-type.revolt.label = Revolt Energie-Messgerät

0 commit comments

Comments
 (0)