From: jimtng <2554958+jimtng@users.noreply.github.com> Date: Thu, 3 Feb 2022 15:27:55 +0000 (+1000) Subject: [mqtt] Fix translation file names (#12193) X-Git-Url: https://git.basschouten.com/?a=commitdiff_plain;h=5f48b72e161348f58809fc43e9ce128600026401;p=openhab-addons.git [mqtt] Fix translation file names (#12193) Signed-off-by: Jimmy Tanagra --- diff --git a/bundles/org.openhab.binding.mqtt/src/main/resources/OH-INF/i18n/mqtt.properties b/bundles/org.openhab.binding.mqtt/src/main/resources/OH-INF/i18n/mqtt.properties new file mode 100644 index 0000000000..3c131e9f1b --- /dev/null +++ b/bundles/org.openhab.binding.mqtt/src/main/resources/OH-INF/i18n/mqtt.properties @@ -0,0 +1,90 @@ +# binding + +binding.mqtt.name = MQTT Binding +binding.mqtt.description = Allows management of MQTT broker connections and linking of MQTT topics to Things and Channels + +# thing types + +thing-type.mqtt.broker.label = MQTT Broker +thing-type.mqtt.broker.description = A connection to a MQTT broker + +# thing types config + +thing-type.config.mqtt.broker.birthMessage.label = Birth Message +thing-type.config.mqtt.broker.birthMessage.description = The message to send to the broker when a connection is established. +thing-type.config.mqtt.broker.birthRetain.label = Birth Message Retain +thing-type.config.mqtt.broker.birthRetain.description = True if the birth message should be retained (defaults to true) +thing-type.config.mqtt.broker.birthTopic.label = Birth Topic +thing-type.config.mqtt.broker.birthTopic.description = Defaults to empty and therefore disables the birth message. +thing-type.config.mqtt.broker.certificate.label = Certificate Hash +thing-type.config.mqtt.broker.certificate.description = If **certificatepin** is set this hash is used to verify the connection. Clear to allow a new certificate pinning on the next connection attempt. If empty will be filled automatically by the next successful connection. An example input would be `SHA-256:83F9171E06A313118889F7D79302BD1B7A2042EE0CFD029ABF8DD06FFA6CD9D3`. +thing-type.config.mqtt.broker.certificatepin.label = Certificate Pinning +thing-type.config.mqtt.broker.certificatepin.description = If this and SSL is set: After the next connection has been successfully established, the certificate is pinned. The connection will be refused if another certificate is used. Clear **certificate** to allow a new certificate for the next connection attempt. This option can increase security. +thing-type.config.mqtt.broker.clientID.label = Client ID +thing-type.config.mqtt.broker.clientID.description = Use a fixed client ID. Defaults to empty which means a client ID is generated for this connection. +thing-type.config.mqtt.broker.enableDiscovery.label = Enable Discovery +thing-type.config.mqtt.broker.enableDiscovery.description = If set to true enables this broker for all discovery services. +thing-type.config.mqtt.broker.host.label = Broker Hostname/IP +thing-type.config.mqtt.broker.host.description = The IP/Hostname of the MQTT broker +thing-type.config.mqtt.broker.keepAlive.label = Heartbeat +thing-type.config.mqtt.broker.keepAlive.description = Keep alive / heartbeat timer in s. It can take up to this time to determine if a server connection is lost. A lower value may keep the broker unnecessarily busy for no or little additional value. +thing-type.config.mqtt.broker.lwtMessage.label = Last Will Message +thing-type.config.mqtt.broker.lwtMessage.description = The last will message. +thing-type.config.mqtt.broker.lwtQos.label = Last Will QoS +thing-type.config.mqtt.broker.lwtQos.description = The quality of service parameter of the last will. +thing-type.config.mqtt.broker.lwtQos.option.0 = At most once (0) +thing-type.config.mqtt.broker.lwtQos.option.1 = At least once (1) +thing-type.config.mqtt.broker.lwtQos.option.2 = Exactly once (2) +thing-type.config.mqtt.broker.lwtRetain.label = Last Will Retain +thing-type.config.mqtt.broker.lwtRetain.description = True if last Will should be retained (defaults to false) +thing-type.config.mqtt.broker.lwtTopic.label = Last Will Topic +thing-type.config.mqtt.broker.lwtTopic.description = Defaults to empty and therefore disables the last will. +thing-type.config.mqtt.broker.password.label = Password +thing-type.config.mqtt.broker.password.description = The MQTT password +thing-type.config.mqtt.broker.port.label = Broker Port +thing-type.config.mqtt.broker.port.description = The port is optional, if none is provided, the typical ports 1883 and 8883 (SSL) are used. +thing-type.config.mqtt.broker.publickey.label = Public Key Hash +thing-type.config.mqtt.broker.publickey.description = If **publickeypin** is set this hash is used to verify the connection. Clear to allow a new public key pinning on the next connection attempt. If empty will be filled automatically by the next successful connection. An example input would be `SHA-256:83F9171E06A313118889F7D79302BD1B7A2042EE0CFD029ABF8DD06FFA6CD9D3` +thing-type.config.mqtt.broker.publickeypin.label = Public Key Pinning +thing-type.config.mqtt.broker.publickeypin.description = If this and SSL is set: After the next connection has been successfully established, the public key of the broker is pinned. The connection will be refused if another public key is used. Clear **publickey** to allow a new public key for the next connection attempt. This option can increase security. +thing-type.config.mqtt.broker.qos.label = Quality of Service +thing-type.config.mqtt.broker.qos.option.0 = At most once (0) +thing-type.config.mqtt.broker.qos.option.1 = At least once (1) +thing-type.config.mqtt.broker.qos.option.2 = Exactly once (2) +thing-type.config.mqtt.broker.reconnectTime.label = Reconnect Time +thing-type.config.mqtt.broker.reconnectTime.description = Reconnect time in ms. If a connection is lost, the binding will wait this time before it tries to reconnect. +thing-type.config.mqtt.broker.secure.label = Secure Connection +thing-type.config.mqtt.broker.secure.description = Uses TLS/SSL to establish a secure connection to the broker. +thing-type.config.mqtt.broker.shutdownMessage.label = Shutdown Message +thing-type.config.mqtt.broker.shutdownMessage.description = The message to send to the broker before the connection terminates. +thing-type.config.mqtt.broker.shutdownRetain.label = Shutdown Message Retain +thing-type.config.mqtt.broker.shutdownRetain.description = True if the shutdown message should be retained (defaults to true) +thing-type.config.mqtt.broker.shutdownTopic.label = Shutdown Topic +thing-type.config.mqtt.broker.shutdownTopic.description = Defaults to empty and therefore disables the shutdown message. +thing-type.config.mqtt.broker.username.label = Username +thing-type.config.mqtt.broker.username.description = The MQTT username + +# channel types + +channel-type.mqtt.publishTrigger.label = Publish Trigger +channel-type.mqtt.publishTrigger.description = This channel is triggered when a value is published to the configured MQTT topic on this broker connection. The event payload will be the received MQTT topic value. + +# channel types config + +channel-type.config.mqtt.publishTrigger.payload.label = Payload Condition +channel-type.config.mqtt.publishTrigger.payload.description = An optional condition on the value of the MQTT topic that must match before this channel is triggered. +channel-type.config.mqtt.publishTrigger.separator.label = Separator Character +channel-type.config.mqtt.publishTrigger.separator.description = The trigger channel payload usually only contains the received MQTT topic value. If you define a separator character, for example '#', the topic and received value will be in the trigger channel payload. For example: my_topic#my_received_value. +channel-type.config.mqtt.publishTrigger.stateTopic.label = MQTT Topic +channel-type.config.mqtt.publishTrigger.stateTopic.description = This channel will trigger on this MQTT topic. This topic can contain wildcards like + and # for example "all/in/#" or "sensors/+/config". + +actionInputTopicLabel = MQTT Topic +actionInputTopicDesc = The topic to publish a value to. +actionInputValueLabel = Value +actionInputValueDesc = The value to publish +actionInputRetainLabel = Retain +actionInputRetainDesc = Retain message +actionLabel = publish an MQTT message +actionDesc = Publishes a value to the given MQTT topic. +offline.notextualconfig = The system connection with the name {0} doesn't exist anymore. +offline.sharedremoved = Another binding unexpectedly removed the internal broker connection. diff --git a/bundles/org.openhab.binding.mqtt/src/main/resources/OH-INF/i18n/mqtt_de.properties b/bundles/org.openhab.binding.mqtt/src/main/resources/OH-INF/i18n/mqtt_de.properties new file mode 100644 index 0000000000..f4a2eef086 --- /dev/null +++ b/bundles/org.openhab.binding.mqtt/src/main/resources/OH-INF/i18n/mqtt_de.properties @@ -0,0 +1,14 @@ +binding.mqtt.name = MQTT Binding +binding.mqtt.description = Erlaubt die Verwaltung von MQTT Verbindungen und das Verknüpfen von MQTT Topics + +offline.notextualconfig=Die Systemverbindung mit dem Namen {0} existiert nicht mehr. +offline.sharedremoved=Eine andere Erweiterung hat unerwartet die Broker Verbindung entfernt. + +actionLabel=sende eine MQTT Nachricht +actionDesc=Sendet einen Wert an das gegebene MQTT Topic. +actionInputTopicLabel=MQTT Topic +actionInputTopicDesc=Ein MQTT Topic an welches der Wert versendet wird +actionInputValueLabel=Wert +actionInputValueDesc=Der zu versendende Wert +actionInputRetainLabel=Retain +actionInputRetainDesc=Ob die Nachricht retained werden soll diff --git a/bundles/org.openhab.binding.mqtt/src/main/resources/OH-INF/i18n/mqtt_hu.properties b/bundles/org.openhab.binding.mqtt/src/main/resources/OH-INF/i18n/mqtt_hu.properties new file mode 100644 index 0000000000..275c41012d --- /dev/null +++ b/bundles/org.openhab.binding.mqtt/src/main/resources/OH-INF/i18n/mqtt_hu.properties @@ -0,0 +1,78 @@ +# binding + +binding.mqtt.name = MQTT kötés +binding.mqtt.description = MQTT bróker kezelését teszi lehetővé, mellyel MQTT témákat kapcsolhat dolgokhoz és csatornákhoz + +# thing types + +thing-type.mqtt.broker.label = MQTT bróker +thing-type.mqtt.broker.description = Kapcsolat az MQTT brókerhez + +# thing types config + +thing-type.config.mqtt.broker.certificate.label = Tanúsítvány hash +thing-type.config.mqtt.broker.certificate.description = Ha egy **tanúsítvány rögzítés** beállításra került ezzel a hash kóddal ellenőrizzü a kapcsolatot. A kód törlése esetén a következő kapcsolat új tanúsítvány rögzítését kezdeményezi. Ha üres, akkor automatikusan kitöltésre kerül a következő kapcsolódáskor. Példa\: `SHA-256\:83F9171E06A313118889F7D79302BD1B7A2042EE0CFD029ABF8DD06FFA6CD9D3`. +thing-type.config.mqtt.broker.certificatepin.label = Tanúsítvány rögzítése +thing-type.config.mqtt.broker.certificatepin.description = Ha ez a mező és az SSL beállításra kerül, a következő sikeres kapcsolódás esetén a tanúsítvány rögzítésre kerül. Eltérő tanúsítvány esetén a kapcsolat visszautasítára kerül. Ez esetben törölje a **tanúsítványt**, hogy az új lépjen érvénybe. Ez az opció javítja a biztonságot. +thing-type.config.mqtt.broker.clientID.label = Ügyfél azonosító +thing-type.config.mqtt.broker.clientID.description = Rögzített klines azonosító használata. Alapértelmezetten üres, ekkor az ügyfél azonosító generálásra kerül új kapcsolat esetén. +thing-type.config.mqtt.broker.enableDiscovery.label = Felderítés használata +thing-type.config.mqtt.broker.enableDiscovery.description = Ha bekapcsolja, a bróker minden felderítő szolgáltatás számára elérhető. +thing-type.config.mqtt.broker.host.label = Bróker gépnév/IP +thing-type.config.mqtt.broker.host.description = Az MQTT bróker IP címe vagy gépneve +thing-type.config.mqtt.broker.keepAlive.label = Szívverés +thing-type.config.mqtt.broker.keepAlive.description = Életben tartás / szívverés időzítő használata másodpercben. Ennyi ideig várakozhat a kiszolgáló kapcsolat megszakadása esetén. Alacsonyabb érték a bróker felesleges terhelését okozhatja egyéb előny nélkül. +thing-type.config.mqtt.broker.lwtMessage.label = Végakarat üzenet +thing-type.config.mqtt.broker.lwtMessage.description = A végakarat üzenet (Last Will Message). +thing-type.config.mqtt.broker.lwtQos.label = Végakarat kapcsolat minőség (QoS) +thing-type.config.mqtt.broker.lwtQos.description = A végakarat kapcsolatminőség paramétere. +thing-type.config.mqtt.broker.lwtQos.option.0 = Maximum egyszer (0) +thing-type.config.mqtt.broker.lwtQos.option.1 = Legalább egyszer (1) +thing-type.config.mqtt.broker.lwtQos.option.2 = Pontosan egyszer (2) +thing-type.config.mqtt.broker.lwtRetain.label = Végakarat megtartása +thing-type.config.mqtt.broker.lwtRetain.description = Ha igaz a végakarat üzenet meg lesz tartva (alapértelmezetten hamis) +thing-type.config.mqtt.broker.lwtTopic.label = Végakarat témája +thing-type.config.mqtt.broker.lwtTopic.description = Alapértelmezetten üres, mely kikapcsolja a végakarat üzenetet. +thing-type.config.mqtt.broker.password.label = Jelszó +thing-type.config.mqtt.broker.password.description = Az MQTT jelszó +thing-type.config.mqtt.broker.port.label = Bóker port +thing-type.config.mqtt.broker.port.description = A port megadása nem kötelező, ha nincs megadva 1883 vagy 8883 (SSL) értéket vesz fel. +thing-type.config.mqtt.broker.publickey.label = Nyilvános kulcs kódja +thing-type.config.mqtt.broker.publickey.description = Ha egy **nyilvánoskulcs rögzítés** beállításra került ezzel a hash kóddal ellenőrizzü a kapcsolatot. A kód törlése esetén a következő kapcsolat új nyilvános kulcs rögzítését kezdeményezi. Ha üres, akkor automatikusan kitöltésre kerül a következő kapcsolódáskor. Példa\: `SHA-256\:83F9171E06A313118889F7D79302BD1B7A2042EE0CFD029ABF8DD06FFA6CD9D3` +thing-type.config.mqtt.broker.publickeypin.label = Nyilvános kulcs rögzítése +thing-type.config.mqtt.broker.publickeypin.description = Ha ez a mező és az SSL beállításra kerül, a következő sikeres kapcsolódás esetén a bróker nyilvános kulcsa rögzítésre kerül. Eltérő nyilvános kulcs esetén a kapcsolat visszautasítára kerül. Ez esetben törölje a **nyilvános kulcsot**, hogy az új lépjen érvénybe. Ez az opció javítja a biztonságot. +thing-type.config.mqtt.broker.qos.label = Szolgáltatás minőség +thing-type.config.mqtt.broker.qos.option.0 = Maximum egyszer (0) +thing-type.config.mqtt.broker.qos.option.1 = Legalább egyszer (1) +thing-type.config.mqtt.broker.qos.option.2 = Pontosan egyszer (2) +thing-type.config.mqtt.broker.reconnectTime.label = Újracsatlakozási idő +thing-type.config.mqtt.broker.reconnectTime.description = Újracsatlakozási idő ms-ban. Ha a kapcsolat megszakad a kötés ennyi ideig várakozik, mielőtt újabb kapcsolódást indítana. +thing-type.config.mqtt.broker.secure.label = Biztonságos kapcsolat +thing-type.config.mqtt.broker.secure.description = TLS/SSL használata a bróker biztonságos kapcsolódásához. +thing-type.config.mqtt.broker.username.label = Felhasználónév +thing-type.config.mqtt.broker.username.description = Az MQTT felhasználói neve + +# channel types + +channel-type.mqtt.publishTrigger.label = Üzenet értesítő +channel-type.mqtt.publishTrigger.description = Ez a csatorna aktiválódik, ha a beállított csatornán MQTT üzenet kerül megosztásra. Az esemény törzse tartalmazza az MQTT témán fogadott értéket. + +# channel types config + +channel-type.config.mqtt.publishTrigger.payload.label = Üzenettörzs feltétele +channel-type.config.mqtt.publishTrigger.payload.description = Az MQTT témán érkező értéken teljesülő kiegészítő kiértékelési feltétel a fenti csatorna aktiválásához. +channel-type.config.mqtt.publishTrigger.separator.label = Elválasztó karakter +channel-type.config.mqtt.publishTrigger.separator.description = A csatorna aktiválásának értéke általában csak az érkező MQTT téma értékét tartalmazza. Ha megad egy elválasztó karaktert, pl.\: \#, akkor a a téma és az érték is a csatorna értékébe kerül. Például\: témám\#értéke. +channel-type.config.mqtt.publishTrigger.stateTopic.label = MQTT téma +channel-type.config.mqtt.publishTrigger.stateTopic.description = Ez a csatorna aktiválódik az MQTT téma esetén. Ez a téma tartalmathat joker karaktereket, mint a + és a \# jel. Pl.\: "mind/egy/ik/\#" vagy "érzékelők/+/beállítás". + +actionInputTopicLabel = MQTT téma +actionInputTopicDesc = A téma, melyre értéket küldünk. +actionInputValueLabel = Érték +actionInputValueDesc = Az érték, melyet küldünk +actionInputRetainLabel = Megtartás +actionInputRetainDesc = Üzenet megtartása +actionLabel = MQTT üzenet küldése +actionDesc = Egy megadott MQTT témára küldött üzenet. +offline.notextualconfig = A {0} nevű rendszerkapcsolat nem létezik. +offline.sharedremoved = Egy másik kötés váratlanul eltávolított a belső bróker kapcsolatot. diff --git a/bundles/org.openhab.binding.mqtt/src/main/resources/OH-INF/i18n/mqtt_it.properties b/bundles/org.openhab.binding.mqtt/src/main/resources/OH-INF/i18n/mqtt_it.properties new file mode 100644 index 0000000000..23d2db9c65 --- /dev/null +++ b/bundles/org.openhab.binding.mqtt/src/main/resources/OH-INF/i18n/mqtt_it.properties @@ -0,0 +1,78 @@ +# binding + +binding.mqtt.name = Binding MQTT +binding.mqtt.description = Consente la gestione delle connessioni dei broker MQTT e il collegamento dei Topic MQTT alle Thing e ai Channel + +# thing types + +thing-type.mqtt.broker.label = Broker MQTT +thing-type.mqtt.broker.description = Una connessione a un broker MQTT + +# thing types config + +thing-type.config.mqtt.broker.certificate.label = Certificato Hash +thing-type.config.mqtt.broker.certificate.description = Se **certificatepin** è impostato, questo hash viene utilizzato per verificare la connessione. Cancella per consentire un nuovo blocco di certificati al prossimo tentativo di connessione. Se vuoto verrà riempito automaticamente dalla prossima connessione di successo. Un esempio di input è `SHA-256\:83F9171E06A313118889F7D79302BD1B7A2042EE0CFD029ABF8DDD06FFA6CD9D3`. +thing-type.config.mqtt.broker.certificatepin.label = Selezione Certificato +thing-type.config.mqtt.broker.certificatepin.description = Se questo e SSL sono impostati\: dopo che la prossima connessione è stata stabilita con successo, il certificato viene selezionato. La connessione verrà rifiutata se viene utilizzato un altro certificato. Cancella **certificato** per consentire un nuovo certificato per il prossimo tentativo di connessione. Questa opzione può aumentare la sicurezza. +thing-type.config.mqtt.broker.clientID.label = ID Client +thing-type.config.mqtt.broker.clientID.description = Usa un ID client fisso. Se lasciato vuoto un ID Client verrà generato per questa connessione. +thing-type.config.mqtt.broker.enableDiscovery.label = Abilita Ricerca +thing-type.config.mqtt.broker.enableDiscovery.description = Se impostato a true abilita questo broker per la ricerca di tutti i servizi. +thing-type.config.mqtt.broker.host.label = Hostname Broker/IP +thing-type.config.mqtt.broker.host.description = Il nome IP/Hostname del broker MQTT +thing-type.config.mqtt.broker.keepAlive.label = Heartbeat +thing-type.config.mqtt.broker.keepAlive.description = Tempo Keep alive / heartbeat in s. Può richiedere fino a questo tempo per determinare se una connessione al server è persa. Un valore inferiore può mantenere il broker inutilmente occupato per nessun o poco valore aggiuntivo. +thing-type.config.mqtt.broker.lwtMessage.label = Messaggio Last Will +thing-type.config.mqtt.broker.lwtMessage.description = Il messaggio Last Will. +thing-type.config.mqtt.broker.lwtQos.label = QoS Last Will +thing-type.config.mqtt.broker.lwtQos.description = Il parametro della Qualità del Servizio del Last Will. +thing-type.config.mqtt.broker.lwtQos.option.0 = Al massimo una volta (0) +thing-type.config.mqtt.broker.lwtQos.option.1 = Almeno una volta (1) +thing-type.config.mqtt.broker.lwtQos.option.2 = Esattamente una volta (2) +thing-type.config.mqtt.broker.lwtRetain.label = Ritenuta Last Will +thing-type.config.mqtt.broker.lwtRetain.description = True se Last Will sarà memorizzato (default a falso) +thing-type.config.mqtt.broker.lwtTopic.label = Topic Last Will +thing-type.config.mqtt.broker.lwtTopic.description = I valori predefiniti sono vuoti e quindi disabilitano Last Will. +thing-type.config.mqtt.broker.password.label = Password +thing-type.config.mqtt.broker.password.description = La password MQTT +thing-type.config.mqtt.broker.port.label = Porta Broker +thing-type.config.mqtt.broker.port.description = La porta è facoltativa, se non viene fornita, vengono utilizzate le porte 1883 e 8883 (SSL). +thing-type.config.mqtt.broker.publickey.label = Hash Chiave Pubblica +thing-type.config.mqtt.broker.publickey.description = Se **publickeypin** è impostato, questo hash viene utilizzato per verificare la connessione. Cancella per consentire un nuovo blocco di chiavi pubbliche al prossimo tentativo di connessione. Se vuoto verrà riempito automaticamente dalla prossima connessione di successo. Un esempio di input è `SHA-256\:83F9171E06A313118889F7D79302BD1B7A2042EE0CFD029ABF8DDD06FFA6CD9D3` +thing-type.config.mqtt.broker.publickeypin.label = Seleziona Chiave Pubblica +thing-type.config.mqtt.broker.publickeypin.description = Se questo e SSL sono impostati\: Dopo che la prossima connessione è stata stabilita con successo, la chiave pubblica del broker viene selezionata. La connessione verrà rifiutata se viene utilizzata un'altra chiave pubblica. Cancella **la chiave pubblica** per consentire una nuova chiave pubblica per il prossimo tentativo di connessione. Questa opzione può aumentare la sicurezza. +thing-type.config.mqtt.broker.qos.label = Qualità del servizio +thing-type.config.mqtt.broker.qos.option.0 = Al massimo una volta (0) +thing-type.config.mqtt.broker.qos.option.1 = Almeno una volta (1) +thing-type.config.mqtt.broker.qos.option.2 = Esattamente una volta (2) +thing-type.config.mqtt.broker.reconnectTime.label = Tempo Riconnessione +thing-type.config.mqtt.broker.reconnectTime.description = Tempo riconnessione in ms. Se una connessione viene persa, l'associazione aspetterà questa tempo prima di tentare di riconnettersi. +thing-type.config.mqtt.broker.secure.label = Connessione Sicura +thing-type.config.mqtt.broker.secure.description = Utilizza TLS/SSL per stabilire una connessione sicura al broker. +thing-type.config.mqtt.broker.username.label = Username +thing-type.config.mqtt.broker.username.description = Il nome utente MQTT + +# channel types + +channel-type.mqtt.publishTrigger.label = Pubblica Trigger +channel-type.mqtt.publishTrigger.description = Questo canale viene attivato quando un valore viene pubblicato sul topic MQTT configurato su questa connessione broker. Il payload dell'evento sarà il valore ricevuto dell'argomento MQTT. + +# channel types config + +channel-type.config.mqtt.publishTrigger.payload.label = Condizione Payload +channel-type.config.mqtt.publishTrigger.payload.description = Una condizione opzionale del valore del topic MQTT che deve verificarsi prima che il canale sia attivato (trigger). +channel-type.config.mqtt.publishTrigger.separator.label = Carattere separatore +channel-type.config.mqtt.publishTrigger.separator.description = Il payload del canale di attivazione di solito contiene solo il valore del topic MQTT ricevuto. Se definisci un carattere separatore, per esempio '\#', l'argomento e il valore ricevuto saranno nel payload del canale attivato. Per esempio\: mio_topic\#mio_valore_ricevuto. +channel-type.config.mqtt.publishTrigger.stateTopic.label = Topic MQTT +channel-type.config.mqtt.publishTrigger.stateTopic.description = Questo canale si attiverà su questo topic MQTT. Questo topic può contenere caratteri jolly come + e \# per esempio "all/in/\#" o "sensori/+/config". + +actionInputTopicLabel = Topic MQTT +actionInputTopicDesc = Il topic a cui pubblicare un valore. +actionInputValueLabel = Valore +actionInputValueDesc = Il valore da pubblicare +actionInputRetainLabel = Conservare (Retain) +actionInputRetainDesc = Messaggio da Conservare +actionLabel = pubblica un messaggio MQTT +actionDesc = Pubblica un valore sul topic MQTT specificato. +offline.notextualconfig = La connessione di sistema con il nome {0} non esiste più. +offline.sharedremoved = Un altro binding ha rimosso inaspettatamente la connessione interna del broker. diff --git a/bundles/org.openhab.binding.mqtt/src/main/resources/OH-INF/i18n/mqttbroker.properties b/bundles/org.openhab.binding.mqtt/src/main/resources/OH-INF/i18n/mqttbroker.properties deleted file mode 100644 index 138981b00c..0000000000 --- a/bundles/org.openhab.binding.mqtt/src/main/resources/OH-INF/i18n/mqttbroker.properties +++ /dev/null @@ -1,80 +0,0 @@ -# binding - -binding.mqtt.name = MQTT Binding -binding.mqtt.description = Allows management of MQTT broker connections and linking of MQTT topics to Things and Channels - -# thing types - -thing-type.mqtt.broker.label = MQTT Broker -thing-type.mqtt.broker.description = A connection to a MQTT broker - -# thing types config - -thing-type.config.mqtt.broker.certificate.label = Certificate Hash -thing-type.config.mqtt.broker.certificate.description = If **certificatepin** is set this hash is used to verify the connection. Clear to allow a new certificate pinning on the next connection attempt. If empty will be filled automatically by the next successful connection. An example input would be `SHA-256:83F9171E06A313118889F7D79302BD1B7A2042EE0CFD029ABF8DD06FFA6CD9D3`. -thing-type.config.mqtt.broker.certificatepin.label = Certificate Pinning -thing-type.config.mqtt.broker.certificatepin.description = If this and SSL is set: After the next connection has been successfully established, the certificate is pinned. The connection will be refused if another certificate is used. Clear **certificate** to allow a new certificate for the next connection attempt. This option can increase security. -thing-type.config.mqtt.broker.clientID.label = Client ID -thing-type.config.mqtt.broker.clientID.description = Use a fixed client ID. Defaults to empty which means a client ID is generated for this connection. -thing-type.config.mqtt.broker.enableDiscovery.label = Enable Discovery -thing-type.config.mqtt.broker.enableDiscovery.description = If set to true enables this broker for all discovery services. -thing-type.config.mqtt.broker.host.label = Broker Hostname/IP -thing-type.config.mqtt.broker.host.description = The IP/Hostname of the MQTT broker -thing-type.config.mqtt.broker.keepAlive.label = Heartbeat -thing-type.config.mqtt.broker.keepAlive.description = Keep alive / heartbeat timer in s. It can take up to this time to determine if a server connection is lost. A lower value may keep the broker unnecessarily busy for no or little additional value. -thing-type.config.mqtt.broker.lwtMessage.label = Last Will Message -thing-type.config.mqtt.broker.lwtMessage.description = The last will message. -thing-type.config.mqtt.broker.lwtQos.label = Last Will QoS -thing-type.config.mqtt.broker.lwtQos.description = The quality of service parameter of the last will. -thing-type.config.mqtt.broker.lwtQos.option.0 = At most once (0) -thing-type.config.mqtt.broker.lwtQos.option.1 = At least once (1) -thing-type.config.mqtt.broker.lwtQos.option.2 = Exactly once (2) -thing-type.config.mqtt.broker.lwtRetain.label = Last Will Retain -thing-type.config.mqtt.broker.lwtRetain.description = True if last Will should be retained (defaults to false) -thing-type.config.mqtt.broker.lwtTopic.label = Last Will Topic -thing-type.config.mqtt.broker.lwtTopic.description = Defaults to empty and therefore disables the last will. -thing-type.config.mqtt.broker.password.label = Password -thing-type.config.mqtt.broker.password.description = The MQTT password -thing-type.config.mqtt.broker.port.label = Broker Port -thing-type.config.mqtt.broker.port.description = The port is optional, if none is provided, the typical ports 1883 and 8883 (SSL) are used. -thing-type.config.mqtt.broker.publickey.label = Public Key Hash -thing-type.config.mqtt.broker.publickey.description = If **publickeypin** is set this hash is used to verify the connection. Clear to allow a new public key pinning on the next connection attempt. If empty will be filled automatically by the next successful connection. An example input would be `SHA-256:83F9171E06A313118889F7D79302BD1B7A2042EE0CFD029ABF8DD06FFA6CD9D3` -thing-type.config.mqtt.broker.publickeypin.label = Public Key Pinning -thing-type.config.mqtt.broker.publickeypin.description = If this and SSL is set: After the next connection has been successfully established, the public key of the broker is pinned. The connection will be refused if another public key is used. Clear **publickey** to allow a new public key for the next connection attempt. This option can increase security. -thing-type.config.mqtt.broker.qos.label = Quality of Service -thing-type.config.mqtt.broker.qos.option.0 = At most once (0) -thing-type.config.mqtt.broker.qos.option.1 = At least once (1) -thing-type.config.mqtt.broker.qos.option.2 = Exactly once (2) -thing-type.config.mqtt.broker.reconnectTime.label = Reconnect Time -thing-type.config.mqtt.broker.reconnectTime.description = Reconnect time in ms. If a connection is lost, the binding will wait this time before it tries to reconnect. -thing-type.config.mqtt.broker.secure.label = Secure Connection -thing-type.config.mqtt.broker.secure.description = Uses TLS/SSL to establish a secure connection to the broker. -thing-type.config.mqtt.broker.username.label = Username -thing-type.config.mqtt.broker.username.description = The MQTT username - -# channel types - -channel-type.mqtt.publishTrigger.label = Publish Trigger -channel-type.mqtt.publishTrigger.description = This channel is triggered when a value is published to the configured MQTT topic on this broker connection. The event payload will be the received MQTT topic value. - -# channel types config - -channel-type.config.mqtt.publishTrigger.payload.label = Payload Condition -channel-type.config.mqtt.publishTrigger.payload.description = An optional condition on the value of the MQTT topic that must match before this channel is triggered. -channel-type.config.mqtt.publishTrigger.separator.label = Separator Character -channel-type.config.mqtt.publishTrigger.separator.description = The trigger channel payload usually only contains the received MQTT topic value. If you define a separator character, for example '#', the topic and received value will be in the trigger channel payload. For example: my_topic#my_received_value. -channel-type.config.mqtt.publishTrigger.stateTopic.label = MQTT Topic -channel-type.config.mqtt.publishTrigger.stateTopic.description = This channel will trigger on this MQTT topic. This topic can contain wildcards like + and # for example "all/in/#" or "sensors/+/config". - -actionInputTopicLabel = MQTT Topic -actionInputTopicDesc = The topic to publish a value to. -actionInputValueLabel = Value -actionInputValueDesc = The value to publish -actionInputRetainLabel = Retain -actionInputRetainDesc = Retain message -actionLabel = publish an MQTT message -actionDesc = Publishes a value to the given MQTT topic. -offline.notextualconfig = The system connection with the name {0} doesn't exist anymore. -offline.dyninsteadoftextual = A binding owned connection was found instead of a system connection for the broker name: {0}. -offline.textualinsteadofdny = A system connection was found instead of a dynamic connection for the broker name: {0}. -offline.sharedremoved = Another binding unexpectedly removed the internal broker connection. diff --git a/bundles/org.openhab.binding.mqtt/src/main/resources/OH-INF/i18n/mqttbroker_de.properties b/bundles/org.openhab.binding.mqtt/src/main/resources/OH-INF/i18n/mqttbroker_de.properties deleted file mode 100644 index ec6bf645c7..0000000000 --- a/bundles/org.openhab.binding.mqtt/src/main/resources/OH-INF/i18n/mqttbroker_de.properties +++ /dev/null @@ -1,16 +0,0 @@ -binding.mqtt.name = MQTT Binding -binding.mqtt.description = Erlaubt die Verwaltung von MQTT Verbindungen und das Verknüpfen von MQTT Topics - -offline.notextualconfig=Die Systemverbindung mit dem Namen {0} existiert nicht mehr. -offline.dyninsteadoftextual=Eine dynamische Verbindung wurde gefunden, statt der erwarteten Systemverbindung: {0}. -offline.textualinsteadofdny=Eine Systemverbindung wurde gefunden, statt der erwarteten dynamischen Verbindung: {0}. -offline.sharedremoved=Eine andere Erweiterung hat unerwartet die Broker Verbindung entfernt. - -actionLabel=sende eine MQTT Nachricht -actionDesc=Sendet einen Wert an das gegebene MQTT Topic. -actionInputTopicLabel=MQTT Topic -actionInputTopicDesc=Ein MQTT Topic an welches der Wert versendet wird -actionInputValueLabel=Wert -actionInputValueDesc=Der zu versendende Wert -actionInputRetainLabel=Retain -actionInputRetainDesc=Ob die Nachricht retained werden soll diff --git a/bundles/org.openhab.binding.mqtt/src/main/resources/OH-INF/i18n/mqttbroker_hu.properties b/bundles/org.openhab.binding.mqtt/src/main/resources/OH-INF/i18n/mqttbroker_hu.properties deleted file mode 100644 index 44d756b2a2..0000000000 --- a/bundles/org.openhab.binding.mqtt/src/main/resources/OH-INF/i18n/mqttbroker_hu.properties +++ /dev/null @@ -1,80 +0,0 @@ -# binding - -binding.mqtt.name = MQTT kötés -binding.mqtt.description = MQTT bróker kezelését teszi lehetővé, mellyel MQTT témákat kapcsolhat dolgokhoz és csatornákhoz - -# thing types - -thing-type.mqtt.broker.label = MQTT bróker -thing-type.mqtt.broker.description = Kapcsolat az MQTT brókerhez - -# thing types config - -thing-type.config.mqtt.broker.certificate.label = Tanúsítvány hash -thing-type.config.mqtt.broker.certificate.description = Ha egy **tanúsítvány rögzítés** beállításra került ezzel a hash kóddal ellenőrizzü a kapcsolatot. A kód törlése esetén a következő kapcsolat új tanúsítvány rögzítését kezdeményezi. Ha üres, akkor automatikusan kitöltésre kerül a következő kapcsolódáskor. Példa\: `SHA-256\:83F9171E06A313118889F7D79302BD1B7A2042EE0CFD029ABF8DD06FFA6CD9D3`. -thing-type.config.mqtt.broker.certificatepin.label = Tanúsítvány rögzítése -thing-type.config.mqtt.broker.certificatepin.description = Ha ez a mező és az SSL beállításra kerül, a következő sikeres kapcsolódás esetén a tanúsítvány rögzítésre kerül. Eltérő tanúsítvány esetén a kapcsolat visszautasítára kerül. Ez esetben törölje a **tanúsítványt**, hogy az új lépjen érvénybe. Ez az opció javítja a biztonságot. -thing-type.config.mqtt.broker.clientID.label = Ügyfél azonosító -thing-type.config.mqtt.broker.clientID.description = Rögzített klines azonosító használata. Alapértelmezetten üres, ekkor az ügyfél azonosító generálásra kerül új kapcsolat esetén. -thing-type.config.mqtt.broker.enableDiscovery.label = Felderítés használata -thing-type.config.mqtt.broker.enableDiscovery.description = Ha bekapcsolja, a bróker minden felderítő szolgáltatás számára elérhető. -thing-type.config.mqtt.broker.host.label = Bróker gépnév/IP -thing-type.config.mqtt.broker.host.description = Az MQTT bróker IP címe vagy gépneve -thing-type.config.mqtt.broker.keepAlive.label = Szívverés -thing-type.config.mqtt.broker.keepAlive.description = Életben tartás / szívverés időzítő használata másodpercben. Ennyi ideig várakozhat a kiszolgáló kapcsolat megszakadása esetén. Alacsonyabb érték a bróker felesleges terhelését okozhatja egyéb előny nélkül. -thing-type.config.mqtt.broker.lwtMessage.label = Végakarat üzenet -thing-type.config.mqtt.broker.lwtMessage.description = A végakarat üzenet (Last Will Message). -thing-type.config.mqtt.broker.lwtQos.label = Végakarat kapcsolat minőség (QoS) -thing-type.config.mqtt.broker.lwtQos.description = A végakarat kapcsolatminőség paramétere. -thing-type.config.mqtt.broker.lwtQos.option.0 = Maximum egyszer (0) -thing-type.config.mqtt.broker.lwtQos.option.1 = Legalább egyszer (1) -thing-type.config.mqtt.broker.lwtQos.option.2 = Pontosan egyszer (2) -thing-type.config.mqtt.broker.lwtRetain.label = Végakarat megtartása -thing-type.config.mqtt.broker.lwtRetain.description = Ha igaz a végakarat üzenet meg lesz tartva (alapértelmezetten hamis) -thing-type.config.mqtt.broker.lwtTopic.label = Végakarat témája -thing-type.config.mqtt.broker.lwtTopic.description = Alapértelmezetten üres, mely kikapcsolja a végakarat üzenetet. -thing-type.config.mqtt.broker.password.label = Jelszó -thing-type.config.mqtt.broker.password.description = Az MQTT jelszó -thing-type.config.mqtt.broker.port.label = Bóker port -thing-type.config.mqtt.broker.port.description = A port megadása nem kötelező, ha nincs megadva 1883 vagy 8883 (SSL) értéket vesz fel. -thing-type.config.mqtt.broker.publickey.label = Nyilvános kulcs kódja -thing-type.config.mqtt.broker.publickey.description = Ha egy **nyilvánoskulcs rögzítés** beállításra került ezzel a hash kóddal ellenőrizzü a kapcsolatot. A kód törlése esetén a következő kapcsolat új nyilvános kulcs rögzítését kezdeményezi. Ha üres, akkor automatikusan kitöltésre kerül a következő kapcsolódáskor. Példa\: `SHA-256\:83F9171E06A313118889F7D79302BD1B7A2042EE0CFD029ABF8DD06FFA6CD9D3` -thing-type.config.mqtt.broker.publickeypin.label = Nyilvános kulcs rögzítése -thing-type.config.mqtt.broker.publickeypin.description = Ha ez a mező és az SSL beállításra kerül, a következő sikeres kapcsolódás esetén a bróker nyilvános kulcsa rögzítésre kerül. Eltérő nyilvános kulcs esetén a kapcsolat visszautasítára kerül. Ez esetben törölje a **nyilvános kulcsot**, hogy az új lépjen érvénybe. Ez az opció javítja a biztonságot. -thing-type.config.mqtt.broker.qos.label = Szolgáltatás minőség -thing-type.config.mqtt.broker.qos.option.0 = Maximum egyszer (0) -thing-type.config.mqtt.broker.qos.option.1 = Legalább egyszer (1) -thing-type.config.mqtt.broker.qos.option.2 = Pontosan egyszer (2) -thing-type.config.mqtt.broker.reconnectTime.label = Újracsatlakozási idő -thing-type.config.mqtt.broker.reconnectTime.description = Újracsatlakozási idő ms-ban. Ha a kapcsolat megszakad a kötés ennyi ideig várakozik, mielőtt újabb kapcsolódást indítana. -thing-type.config.mqtt.broker.secure.label = Biztonságos kapcsolat -thing-type.config.mqtt.broker.secure.description = TLS/SSL használata a bróker biztonságos kapcsolódásához. -thing-type.config.mqtt.broker.username.label = Felhasználónév -thing-type.config.mqtt.broker.username.description = Az MQTT felhasználói neve - -# channel types - -channel-type.mqtt.publishTrigger.label = Üzenet értesítő -channel-type.mqtt.publishTrigger.description = Ez a csatorna aktiválódik, ha a beállított csatornán MQTT üzenet kerül megosztásra. Az esemény törzse tartalmazza az MQTT témán fogadott értéket. - -# channel types config - -channel-type.config.mqtt.publishTrigger.payload.label = Üzenettörzs feltétele -channel-type.config.mqtt.publishTrigger.payload.description = Az MQTT témán érkező értéken teljesülő kiegészítő kiértékelési feltétel a fenti csatorna aktiválásához. -channel-type.config.mqtt.publishTrigger.separator.label = Elválasztó karakter -channel-type.config.mqtt.publishTrigger.separator.description = A csatorna aktiválásának értéke általában csak az érkező MQTT téma értékét tartalmazza. Ha megad egy elválasztó karaktert, pl.\: \#, akkor a a téma és az érték is a csatorna értékébe kerül. Például\: témám\#értéke. -channel-type.config.mqtt.publishTrigger.stateTopic.label = MQTT téma -channel-type.config.mqtt.publishTrigger.stateTopic.description = Ez a csatorna aktiválódik az MQTT téma esetén. Ez a téma tartalmathat joker karaktereket, mint a + és a \# jel. Pl.\: "mind/egy/ik/\#" vagy "érzékelők/+/beállítás". - -actionInputTopicLabel = MQTT téma -actionInputTopicDesc = A téma, melyre értéket küldünk. -actionInputValueLabel = Érték -actionInputValueDesc = Az érték, melyet küldünk -actionInputRetainLabel = Megtartás -actionInputRetainDesc = Üzenet megtartása -actionLabel = MQTT üzenet küldése -actionDesc = Egy megadott MQTT témára küldött üzenet. -offline.notextualconfig = A {0} nevű rendszerkapcsolat nem létezik. -offline.dyninsteadoftextual = A {0} nevű brókerhez kötés alapú kapcsolat léteik, rendszerkapcsolat helyett. -offline.textualinsteadofdny = A {0} nevű brókerhez dinamikus kapcsolat léteik, rendszerkapcsolat helyett. -offline.sharedremoved = Egy másik kötés váratlanul eltávolított a belső bróker kapcsolatot. diff --git a/bundles/org.openhab.binding.mqtt/src/main/resources/OH-INF/i18n/mqttbroker_it.properties b/bundles/org.openhab.binding.mqtt/src/main/resources/OH-INF/i18n/mqttbroker_it.properties deleted file mode 100644 index 3539c39f80..0000000000 --- a/bundles/org.openhab.binding.mqtt/src/main/resources/OH-INF/i18n/mqttbroker_it.properties +++ /dev/null @@ -1,80 +0,0 @@ -# binding - -binding.mqtt.name = Binding MQTT -binding.mqtt.description = Consente la gestione delle connessioni dei broker MQTT e il collegamento dei Topic MQTT alle Thing e ai Channel - -# thing types - -thing-type.mqtt.broker.label = Broker MQTT -thing-type.mqtt.broker.description = Una connessione a un broker MQTT - -# thing types config - -thing-type.config.mqtt.broker.certificate.label = Certificato Hash -thing-type.config.mqtt.broker.certificate.description = Se **certificatepin** è impostato, questo hash viene utilizzato per verificare la connessione. Cancella per consentire un nuovo blocco di certificati al prossimo tentativo di connessione. Se vuoto verrà riempito automaticamente dalla prossima connessione di successo. Un esempio di input è `SHA-256\:83F9171E06A313118889F7D79302BD1B7A2042EE0CFD029ABF8DDD06FFA6CD9D3`. -thing-type.config.mqtt.broker.certificatepin.label = Selezione Certificato -thing-type.config.mqtt.broker.certificatepin.description = Se questo e SSL sono impostati\: dopo che la prossima connessione è stata stabilita con successo, il certificato viene selezionato. La connessione verrà rifiutata se viene utilizzato un altro certificato. Cancella **certificato** per consentire un nuovo certificato per il prossimo tentativo di connessione. Questa opzione può aumentare la sicurezza. -thing-type.config.mqtt.broker.clientID.label = ID Client -thing-type.config.mqtt.broker.clientID.description = Usa un ID client fisso. Se lasciato vuoto un ID Client verrà generato per questa connessione. -thing-type.config.mqtt.broker.enableDiscovery.label = Abilita Ricerca -thing-type.config.mqtt.broker.enableDiscovery.description = Se impostato a true abilita questo broker per la ricerca di tutti i servizi. -thing-type.config.mqtt.broker.host.label = Hostname Broker/IP -thing-type.config.mqtt.broker.host.description = Il nome IP/Hostname del broker MQTT -thing-type.config.mqtt.broker.keepAlive.label = Heartbeat -thing-type.config.mqtt.broker.keepAlive.description = Tempo Keep alive / heartbeat in s. Può richiedere fino a questo tempo per determinare se una connessione al server è persa. Un valore inferiore può mantenere il broker inutilmente occupato per nessun o poco valore aggiuntivo. -thing-type.config.mqtt.broker.lwtMessage.label = Messaggio Last Will -thing-type.config.mqtt.broker.lwtMessage.description = Il messaggio Last Will. -thing-type.config.mqtt.broker.lwtQos.label = QoS Last Will -thing-type.config.mqtt.broker.lwtQos.description = Il parametro della Qualità del Servizio del Last Will. -thing-type.config.mqtt.broker.lwtQos.option.0 = Al massimo una volta (0) -thing-type.config.mqtt.broker.lwtQos.option.1 = Almeno una volta (1) -thing-type.config.mqtt.broker.lwtQos.option.2 = Esattamente una volta (2) -thing-type.config.mqtt.broker.lwtRetain.label = Ritenuta Last Will -thing-type.config.mqtt.broker.lwtRetain.description = True se Last Will sarà memorizzato (default a falso) -thing-type.config.mqtt.broker.lwtTopic.label = Topic Last Will -thing-type.config.mqtt.broker.lwtTopic.description = I valori predefiniti sono vuoti e quindi disabilitano Last Will. -thing-type.config.mqtt.broker.password.label = Password -thing-type.config.mqtt.broker.password.description = La password MQTT -thing-type.config.mqtt.broker.port.label = Porta Broker -thing-type.config.mqtt.broker.port.description = La porta è facoltativa, se non viene fornita, vengono utilizzate le porte 1883 e 8883 (SSL). -thing-type.config.mqtt.broker.publickey.label = Hash Chiave Pubblica -thing-type.config.mqtt.broker.publickey.description = Se **publickeypin** è impostato, questo hash viene utilizzato per verificare la connessione. Cancella per consentire un nuovo blocco di chiavi pubbliche al prossimo tentativo di connessione. Se vuoto verrà riempito automaticamente dalla prossima connessione di successo. Un esempio di input è `SHA-256\:83F9171E06A313118889F7D79302BD1B7A2042EE0CFD029ABF8DDD06FFA6CD9D3` -thing-type.config.mqtt.broker.publickeypin.label = Seleziona Chiave Pubblica -thing-type.config.mqtt.broker.publickeypin.description = Se questo e SSL sono impostati\: Dopo che la prossima connessione è stata stabilita con successo, la chiave pubblica del broker viene selezionata. La connessione verrà rifiutata se viene utilizzata un'altra chiave pubblica. Cancella **la chiave pubblica** per consentire una nuova chiave pubblica per il prossimo tentativo di connessione. Questa opzione può aumentare la sicurezza. -thing-type.config.mqtt.broker.qos.label = Qualità del servizio -thing-type.config.mqtt.broker.qos.option.0 = Al massimo una volta (0) -thing-type.config.mqtt.broker.qos.option.1 = Almeno una volta (1) -thing-type.config.mqtt.broker.qos.option.2 = Esattamente una volta (2) -thing-type.config.mqtt.broker.reconnectTime.label = Tempo Riconnessione -thing-type.config.mqtt.broker.reconnectTime.description = Tempo riconnessione in ms. Se una connessione viene persa, l'associazione aspetterà questa tempo prima di tentare di riconnettersi. -thing-type.config.mqtt.broker.secure.label = Connessione Sicura -thing-type.config.mqtt.broker.secure.description = Utilizza TLS/SSL per stabilire una connessione sicura al broker. -thing-type.config.mqtt.broker.username.label = Username -thing-type.config.mqtt.broker.username.description = Il nome utente MQTT - -# channel types - -channel-type.mqtt.publishTrigger.label = Pubblica Trigger -channel-type.mqtt.publishTrigger.description = Questo canale viene attivato quando un valore viene pubblicato sul topic MQTT configurato su questa connessione broker. Il payload dell'evento sarà il valore ricevuto dell'argomento MQTT. - -# channel types config - -channel-type.config.mqtt.publishTrigger.payload.label = Condizione Payload -channel-type.config.mqtt.publishTrigger.payload.description = Una condizione opzionale del valore del topic MQTT che deve verificarsi prima che il canale sia attivato (trigger). -channel-type.config.mqtt.publishTrigger.separator.label = Carattere separatore -channel-type.config.mqtt.publishTrigger.separator.description = Il payload del canale di attivazione di solito contiene solo il valore del topic MQTT ricevuto. Se definisci un carattere separatore, per esempio '\#', l'argomento e il valore ricevuto saranno nel payload del canale attivato. Per esempio\: mio_topic\#mio_valore_ricevuto. -channel-type.config.mqtt.publishTrigger.stateTopic.label = Topic MQTT -channel-type.config.mqtt.publishTrigger.stateTopic.description = Questo canale si attiverà su questo topic MQTT. Questo topic può contenere caratteri jolly come + e \# per esempio "all/in/\#" o "sensori/+/config". - -actionInputTopicLabel = Topic MQTT -actionInputTopicDesc = Il topic a cui pubblicare un valore. -actionInputValueLabel = Valore -actionInputValueDesc = Il valore da pubblicare -actionInputRetainLabel = Conservare (Retain) -actionInputRetainDesc = Messaggio da Conservare -actionLabel = pubblica un messaggio MQTT -actionDesc = Pubblica un valore sul topic MQTT specificato. -offline.notextualconfig = La connessione di sistema con il nome {0} non esiste più. -offline.dyninsteadoftextual = È stata trovata una connessione associata al binding invece di una connessione di sistema per il nome del broker\: {0}. -offline.textualinsteadofdny = È stata trovata una connessione di sistema invece di una connessione dinamica per il broker di nome\: {0}. -offline.sharedremoved = Un altro binding ha rimosso inaspettatamente la connessione interna del broker.