Fronius: Improve and translate error message for the user
parent
f0abb00942
commit
79fae718a3
|
|
@ -51,7 +51,7 @@ void IntegrationPluginFronius::discoverThings(ThingDiscoveryInfo *info)
|
|||
{
|
||||
if (!hardwareManager()->networkDeviceDiscovery()->available()) {
|
||||
qCWarning(dcFronius()) << "Failed to discover network devices. The network device discovery is not available.";
|
||||
info->finish(Thing::ThingErrorHardwareNotAvailable, QT_TR_NOOP("Unable to discovery devices in your network."));
|
||||
info->finish(Thing::ThingErrorHardwareNotAvailable, QT_TR_NOOP("Unable to discover devices in your network."));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -127,7 +127,11 @@ void IntegrationPluginFronius::setupThing(ThingSetupInfo *info)
|
|||
QByteArray data = reply->networkReply()->readAll();
|
||||
if (reply->networkReply()->error() != QNetworkReply::NoError) {
|
||||
qCWarning(dcFronius()) << "Network request error:" << reply->networkReply()->error() << reply->networkReply()->errorString() << reply->networkReply()->url();
|
||||
info->finish(Thing::ThingErrorHardwareNotAvailable, QT_TR_NOOP("The device is not reachable"));
|
||||
if (reply->networkReply()->error() == QNetworkReply::ContentNotFoundError) {
|
||||
info->finish(Thing::ThingErrorHardwareNotAvailable, QT_TR_NOOP("The device does not reply to our requests. Please verify that the Fronius Solar API is enabled on the device."));
|
||||
} else {
|
||||
info->finish(Thing::ThingErrorHardwareNotAvailable, QT_TR_NOOP("The device is not reachable."));
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -136,7 +140,7 @@ void IntegrationPluginFronius::setupThing(ThingSetupInfo *info)
|
|||
QJsonDocument jsonDoc = QJsonDocument::fromJson(data, &error);
|
||||
if (error.error != QJsonParseError::NoError) {
|
||||
qCWarning(dcFronius()) << "Failed to parse JSON data" << data << ":" << error.errorString() << data;
|
||||
info->finish(Thing::ThingErrorHardwareFailure, QT_TR_NOOP("Unable to read the data. Please try again."));
|
||||
info->finish(Thing::ThingErrorHardwareFailure, QT_TR_NOOP("The data received from the device could not be processed because the format is unknown."));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -146,7 +150,7 @@ void IntegrationPluginFronius::setupThing(ThingSetupInfo *info)
|
|||
// Knwon version with broken JSON API
|
||||
if (versionResponseMap.value("CompatibilityRange").toString() == "1.6-2") {
|
||||
qCWarning(dcFronius()) << "The Fronius data logger has a version which is known to have a broken JSON API firmware.";
|
||||
info->finish(Thing::ThingErrorHardwareFailure, QT_TR_NOOP("The firmware version 1.6-2 of this Fronius data logger has a broken API. Please update your Fronius device."));
|
||||
info->finish(Thing::ThingErrorHardwareFailure, QT_TR_NOOP("The firmware version 1.6-2 of this Fronius data logger contains errors preventing proper operation. Please update your Fronius device and try again."));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,108 +5,119 @@
|
|||
<name>IntegrationPluginFronius</name>
|
||||
<message>
|
||||
<location filename="../integrationpluginfronius.cpp" line="54"/>
|
||||
<source>Unable to discovery devices in your network.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../integrationpluginfronius.cpp" line="122"/>
|
||||
<source>The device is not reachable</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<source>Unable to discover devices in your network.</source>
|
||||
<translation>Das Netzwerk kann nicht durchsucht werden.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../integrationpluginfronius.cpp" line="131"/>
|
||||
<source>Unable to read the data. Please try again.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<source>The device does not reply to our requests. Please verify that the Fronius Solar API is enabled on the device.</source>
|
||||
<translation>Das Gerät antwortet nicht auf Anfragen. Bitte überprüfe ob die Fronius Solar API am Gerät aktiviert ist.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../integrationpluginfronius.cpp" line="141"/>
|
||||
<source>The firmware version 1.6-2 of this Fronius data logger has a broken API. Please update your Fronius device.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<location filename="../integrationpluginfronius.cpp" line="133"/>
|
||||
<source>The device is not reachable.</source>
|
||||
<translation>Das Gerät ist nicht erreichbar.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../integrationpluginfronius.cpp" line="143"/>
|
||||
<source>The data received from the device could not be processed because the format is unknown.</source>
|
||||
<translation>Die erhaltene Antwort des Gerätes konnte nicht verarbeitet werden da das Format unbekannt ist.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../integrationpluginfronius.cpp" line="153"/>
|
||||
<source>The firmware version 1.6-2 of this Fronius data logger contains errors preventing proper operation. Please update your Fronius device and try again.</source>
|
||||
<translation>Die Firmware Version 1.6-2 dieses Fronius Geräts enthält Fehler welche eine ordnungsgemäße Funktion verhindern. Bitte update die Firmware des Fronius Geräts und versuche es erneut.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>fronius</name>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="67"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="67"/>
|
||||
<source>Battery level</source>
|
||||
<extracomment>The name of the StateType ({5c6da672-9662-41bc-8c8c-aa0f32481251}) of ThingClass storage</extracomment>
|
||||
<translation>Batteriestand</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="70"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="70"/>
|
||||
<source>Battery level critical</source>
|
||||
<extracomment>The name of the StateType ({e5396312-b50e-4d6f-b628-5b51448971d3}) of ThingClass storage</extracomment>
|
||||
<translation>Batteriestand kritisch</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="73"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="73"/>
|
||||
<source>Capacity</source>
|
||||
<extracomment>The name of the StateType ({3b163deb-67a2-41d1-8441-b2d53ad846ef}) of ThingClass storage</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="76"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="76"/>
|
||||
<source>Cell temperature</source>
|
||||
<extracomment>The name of the StateType ({4417499c-1757-4309-868a-be5cf3455c4a}) of ThingClass storage</extracomment>
|
||||
<translation>Zellentemperatur</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="82"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="82"/>
|
||||
<source>Current phase A</source>
|
||||
<extracomment>The name of the StateType ({a9673688-d84a-4848-8583-a70739130252}) of ThingClass meter</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="85"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="85"/>
|
||||
<source>Current phase B</source>
|
||||
<extracomment>The name of the StateType ({15632e49-95f9-496d-830c-53a31ca6d98e}) of ThingClass meter</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="88"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="88"/>
|
||||
<source>Current phase C</source>
|
||||
<extracomment>The name of the StateType ({10a24ba9-a57a-48a9-98f3-52671c09e855}) of ThingClass meter</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="97"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="97"/>
|
||||
<source>Current power phase A</source>
|
||||
<extracomment>The name of the StateType ({6dbbb062-447b-47d6-b2e4-dceac9aff795}) of ThingClass meter</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="100"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="100"/>
|
||||
<source>Current power phase B</source>
|
||||
<extracomment>The name of the StateType ({f230e78e-15b0-47a4-b494-bae65be00755}) of ThingClass meter</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="103"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="103"/>
|
||||
<source>Current power phase C</source>
|
||||
<extracomment>The name of the StateType ({56b5d550-d902-4c33-9288-8ee972735a75}) of ThingClass meter</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="130"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="130"/>
|
||||
<source>Frequency</source>
|
||||
<extracomment>The name of the StateType ({9ff64b29-e023-4395-abd4-b6c366acfd9e}) of ThingClass meter</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="145"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="142"/>
|
||||
<source>Fronius smart meter</source>
|
||||
<extracomment>The name of the ThingClass ({c3cb53a4-32dd-434d-9d9c-aada41f8129c})</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="148"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="145"/>
|
||||
<source>Fronius solar inverter</source>
|
||||
<extracomment>The name of the ThingClass ({540aa956-8b8f-4982-9f58-343a76cea846})</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="148"/>
|
||||
<source>Fronius solar storage</source>
|
||||
<extracomment>The name of the ThingClass ({b00139fa-7386-48b1-8697-2fdd21a57ced})</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="91"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="94"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="91"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="94"/>
|
||||
<source>Current power</source>
|
||||
<extracomment>The name of the StateType ({5a89cd3f-3abf-4f51-ab2b-4039f1d211d9}) of ThingClass storage
|
||||
----------
|
||||
|
|
@ -114,9 +125,9 @@ The name of the StateType ({788accbc-b86e-471b-b37f-14c9c6411526}) of ThingClass
|
|||
<translation>Aktuelle Leistung</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="109"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="112"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="115"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="109"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="112"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="115"/>
|
||||
<source>Device ID</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: storage, Type: thing, ID: {49087f31-abf5-4bb8-946b-a3626ee80566})
|
||||
----------
|
||||
|
|
@ -126,50 +137,50 @@ The name of the ParamType (ThingClass: inverter, Type: thing, ID: {f2f8c2f5-dd6a
|
|||
<translation>Geräte ID</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="118"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="118"/>
|
||||
<source>Energy Consumed</source>
|
||||
<extracomment>The name of the StateType ({f3451818-48d2-42a5-94fd-ad094c06967f}) of ThingClass meter</extracomment>
|
||||
<translation>Energie verbraucht</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="121"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="121"/>
|
||||
<source>Energy produced</source>
|
||||
<extracomment>The name of the StateType ({ca14cca5-d9f0-49c5-a8f7-907d4c0825f0}) of ThingClass meter</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="106"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="106"/>
|
||||
<source>Current power usage</source>
|
||||
<extracomment>The name of the StateType ({e5056ea1-88a2-410b-9c5e-6322aca4cb17}) of ThingClass meter</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="79"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="79"/>
|
||||
<source>Charging state</source>
|
||||
<extracomment>The name of the StateType ({7a045257-d829-4e58-a769-047b3aeec7c5}) of ThingClass storage</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="124"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="124"/>
|
||||
<source>Energy produced today</source>
|
||||
<extracomment>The name of the StateType ({b6af1bf5-753d-47b6-a151-e4d801fe6ff8}) of ThingClass inverter</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="127"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="127"/>
|
||||
<source>Energy produced year</source>
|
||||
<extracomment>The name of the StateType ({7fd2fa28-9bcc-4f01-a823-459437d185f6}) of ThingClass inverter</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="133"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="133"/>
|
||||
<source>Fronius</source>
|
||||
<extracomment>The name of the vendor ({2286fc38-afd9-4128-ab7e-0fba527d53ba})</extracomment>
|
||||
<translation>Fronius</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="136"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="139"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="136"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="139"/>
|
||||
<source>Fronius Solar</source>
|
||||
<extracomment>The name of the ThingClass ({4fd79fed-42f1-4df9-be64-3df7b2e0bda2})
|
||||
----------
|
||||
|
|
@ -177,34 +188,28 @@ The name of the plugin fronius ({02319cfc-8b55-49ba-99bc-0588bbfab063})</extraco
|
|||
<translation>Fronius Solar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="142"/>
|
||||
<source>Fronius Solar Inverter</source>
|
||||
<extracomment>The name of the ThingClass ({540aa956-8b8f-4982-9f58-343a76cea846})</extracomment>
|
||||
<translation>Fronius Solar Inverter</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="154"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="154"/>
|
||||
<source>Mac address</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: connection, Type: thing, ID: {2237972e-385b-4458-b5d3-1d1fb4ae8756})</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="181"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="181"/>
|
||||
<source>Version</source>
|
||||
<extracomment>The name of the StateType ({8fd0c0ed-af89-4887-bf0f-040b13c25268}) of ThingClass connection</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="151"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="151"/>
|
||||
<source>Host address</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: connection, Type: thing, ID: {52da0197-4b78-4fec-aa72-70f949e26edc})</extracomment>
|
||||
<translation>Adresse</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="157"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="160"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="163"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="166"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="157"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="160"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="163"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="166"/>
|
||||
<source>Reachable</source>
|
||||
<extracomment>The name of the StateType ({2f7e1267-b0be-4b78-9aa3-832b86c4efad}) of ThingClass storage
|
||||
----------
|
||||
|
|
@ -216,9 +221,9 @@ The name of the StateType ({98e4476f-e745-4a7f-b795-19269cb70c40}) of ThingClass
|
|||
<translation>Erreichbar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="169"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="172"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="175"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="169"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="172"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="175"/>
|
||||
<source>Serial number</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: storage, Type: thing, ID: {8b6c7053-5ba5-4808-8ff4-9024c624d77d})
|
||||
----------
|
||||
|
|
@ -228,25 +233,25 @@ The name of the ParamType (ThingClass: inverter, Type: thing, ID: {5e073a9d-f2de
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="178"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="178"/>
|
||||
<source>Total produced energy</source>
|
||||
<extracomment>The name of the StateType ({d6dbb879-4cbc-4db3-830e-b92ba91a13e5}) of ThingClass inverter</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="184"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="184"/>
|
||||
<source>Voltage phase A</source>
|
||||
<extracomment>The name of the StateType ({267bc59f-1113-4aff-a502-4618a591aa16}) of ThingClass meter</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="187"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="187"/>
|
||||
<source>Voltage phase B</source>
|
||||
<extracomment>The name of the StateType ({bbcedb80-30f1-493e-81f0-5f77f2847353}) of ThingClass meter</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="190"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="190"/>
|
||||
<source>Voltage phase C</source>
|
||||
<extracomment>The name of the StateType ({8037557b-40dc-411b-8937-bcd1695f898a}) of ThingClass meter</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
|
|
|
|||
|
|
@ -5,108 +5,119 @@
|
|||
<name>IntegrationPluginFronius</name>
|
||||
<message>
|
||||
<location filename="../integrationpluginfronius.cpp" line="54"/>
|
||||
<source>Unable to discovery devices in your network.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../integrationpluginfronius.cpp" line="122"/>
|
||||
<source>The device is not reachable</source>
|
||||
<source>Unable to discover devices in your network.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../integrationpluginfronius.cpp" line="131"/>
|
||||
<source>Unable to read the data. Please try again.</source>
|
||||
<source>The device does not reply to our requests. Please verify that the Fronius Solar API is enabled on the device.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../integrationpluginfronius.cpp" line="141"/>
|
||||
<source>The firmware version 1.6-2 of this Fronius data logger has a broken API. Please update your Fronius device.</source>
|
||||
<location filename="../integrationpluginfronius.cpp" line="133"/>
|
||||
<source>The device is not reachable.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../integrationpluginfronius.cpp" line="143"/>
|
||||
<source>The data received from the device could not be processed because the format is unknown.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../integrationpluginfronius.cpp" line="153"/>
|
||||
<source>The firmware version 1.6-2 of this Fronius data logger contains errors preventing proper operation. Please update your Fronius device and try again.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>fronius</name>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="67"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="67"/>
|
||||
<source>Battery level</source>
|
||||
<extracomment>The name of the StateType ({5c6da672-9662-41bc-8c8c-aa0f32481251}) of ThingClass storage</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="70"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="70"/>
|
||||
<source>Battery level critical</source>
|
||||
<extracomment>The name of the StateType ({e5396312-b50e-4d6f-b628-5b51448971d3}) of ThingClass storage</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="73"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="73"/>
|
||||
<source>Capacity</source>
|
||||
<extracomment>The name of the StateType ({3b163deb-67a2-41d1-8441-b2d53ad846ef}) of ThingClass storage</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="76"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="76"/>
|
||||
<source>Cell temperature</source>
|
||||
<extracomment>The name of the StateType ({4417499c-1757-4309-868a-be5cf3455c4a}) of ThingClass storage</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="82"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="82"/>
|
||||
<source>Current phase A</source>
|
||||
<extracomment>The name of the StateType ({a9673688-d84a-4848-8583-a70739130252}) of ThingClass meter</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="85"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="85"/>
|
||||
<source>Current phase B</source>
|
||||
<extracomment>The name of the StateType ({15632e49-95f9-496d-830c-53a31ca6d98e}) of ThingClass meter</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="88"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="88"/>
|
||||
<source>Current phase C</source>
|
||||
<extracomment>The name of the StateType ({10a24ba9-a57a-48a9-98f3-52671c09e855}) of ThingClass meter</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="97"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="97"/>
|
||||
<source>Current power phase A</source>
|
||||
<extracomment>The name of the StateType ({6dbbb062-447b-47d6-b2e4-dceac9aff795}) of ThingClass meter</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="100"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="100"/>
|
||||
<source>Current power phase B</source>
|
||||
<extracomment>The name of the StateType ({f230e78e-15b0-47a4-b494-bae65be00755}) of ThingClass meter</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="103"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="103"/>
|
||||
<source>Current power phase C</source>
|
||||
<extracomment>The name of the StateType ({56b5d550-d902-4c33-9288-8ee972735a75}) of ThingClass meter</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="130"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="130"/>
|
||||
<source>Frequency</source>
|
||||
<extracomment>The name of the StateType ({9ff64b29-e023-4395-abd4-b6c366acfd9e}) of ThingClass meter</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="145"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="142"/>
|
||||
<source>Fronius smart meter</source>
|
||||
<extracomment>The name of the ThingClass ({c3cb53a4-32dd-434d-9d9c-aada41f8129c})</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="148"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="145"/>
|
||||
<source>Fronius solar inverter</source>
|
||||
<extracomment>The name of the ThingClass ({540aa956-8b8f-4982-9f58-343a76cea846})</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="148"/>
|
||||
<source>Fronius solar storage</source>
|
||||
<extracomment>The name of the ThingClass ({b00139fa-7386-48b1-8697-2fdd21a57ced})</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="91"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="94"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="91"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="94"/>
|
||||
<source>Current power</source>
|
||||
<extracomment>The name of the StateType ({5a89cd3f-3abf-4f51-ab2b-4039f1d211d9}) of ThingClass storage
|
||||
----------
|
||||
|
|
@ -114,9 +125,9 @@ The name of the StateType ({788accbc-b86e-471b-b37f-14c9c6411526}) of ThingClass
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="109"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="112"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="115"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="109"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="112"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="115"/>
|
||||
<source>Device ID</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: storage, Type: thing, ID: {49087f31-abf5-4bb8-946b-a3626ee80566})
|
||||
----------
|
||||
|
|
@ -126,50 +137,50 @@ The name of the ParamType (ThingClass: inverter, Type: thing, ID: {f2f8c2f5-dd6a
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="118"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="118"/>
|
||||
<source>Energy Consumed</source>
|
||||
<extracomment>The name of the StateType ({f3451818-48d2-42a5-94fd-ad094c06967f}) of ThingClass meter</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="121"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="121"/>
|
||||
<source>Energy produced</source>
|
||||
<extracomment>The name of the StateType ({ca14cca5-d9f0-49c5-a8f7-907d4c0825f0}) of ThingClass meter</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="106"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="106"/>
|
||||
<source>Current power usage</source>
|
||||
<extracomment>The name of the StateType ({e5056ea1-88a2-410b-9c5e-6322aca4cb17}) of ThingClass meter</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="79"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="79"/>
|
||||
<source>Charging state</source>
|
||||
<extracomment>The name of the StateType ({7a045257-d829-4e58-a769-047b3aeec7c5}) of ThingClass storage</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="124"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="124"/>
|
||||
<source>Energy produced today</source>
|
||||
<extracomment>The name of the StateType ({b6af1bf5-753d-47b6-a151-e4d801fe6ff8}) of ThingClass inverter</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="127"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="127"/>
|
||||
<source>Energy produced year</source>
|
||||
<extracomment>The name of the StateType ({7fd2fa28-9bcc-4f01-a823-459437d185f6}) of ThingClass inverter</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="133"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="133"/>
|
||||
<source>Fronius</source>
|
||||
<extracomment>The name of the vendor ({2286fc38-afd9-4128-ab7e-0fba527d53ba})</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="136"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="139"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="136"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="139"/>
|
||||
<source>Fronius Solar</source>
|
||||
<extracomment>The name of the ThingClass ({4fd79fed-42f1-4df9-be64-3df7b2e0bda2})
|
||||
----------
|
||||
|
|
@ -177,34 +188,28 @@ The name of the plugin fronius ({02319cfc-8b55-49ba-99bc-0588bbfab063})</extraco
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="142"/>
|
||||
<source>Fronius Solar Inverter</source>
|
||||
<extracomment>The name of the ThingClass ({540aa956-8b8f-4982-9f58-343a76cea846})</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="154"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="154"/>
|
||||
<source>Mac address</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: connection, Type: thing, ID: {2237972e-385b-4458-b5d3-1d1fb4ae8756})</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="181"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="181"/>
|
||||
<source>Version</source>
|
||||
<extracomment>The name of the StateType ({8fd0c0ed-af89-4887-bf0f-040b13c25268}) of ThingClass connection</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="151"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="151"/>
|
||||
<source>Host address</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: connection, Type: thing, ID: {52da0197-4b78-4fec-aa72-70f949e26edc})</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="157"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="160"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="163"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="166"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="157"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="160"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="163"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="166"/>
|
||||
<source>Reachable</source>
|
||||
<extracomment>The name of the StateType ({2f7e1267-b0be-4b78-9aa3-832b86c4efad}) of ThingClass storage
|
||||
----------
|
||||
|
|
@ -216,9 +221,9 @@ The name of the StateType ({98e4476f-e745-4a7f-b795-19269cb70c40}) of ThingClass
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="169"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="172"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="175"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="169"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="172"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="175"/>
|
||||
<source>Serial number</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: storage, Type: thing, ID: {8b6c7053-5ba5-4808-8ff4-9024c624d77d})
|
||||
----------
|
||||
|
|
@ -228,25 +233,25 @@ The name of the ParamType (ThingClass: inverter, Type: thing, ID: {5e073a9d-f2de
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="178"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="178"/>
|
||||
<source>Total produced energy</source>
|
||||
<extracomment>The name of the StateType ({d6dbb879-4cbc-4db3-830e-b92ba91a13e5}) of ThingClass inverter</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="184"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="184"/>
|
||||
<source>Voltage phase A</source>
|
||||
<extracomment>The name of the StateType ({267bc59f-1113-4aff-a502-4618a591aa16}) of ThingClass meter</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="187"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="187"/>
|
||||
<source>Voltage phase B</source>
|
||||
<extracomment>The name of the StateType ({bbcedb80-30f1-493e-81f0-5f77f2847353}) of ThingClass meter</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="190"/>
|
||||
<location filename="../../../build/nymea-plugins-Desktop-Debug/fronius/plugininfo.h" line="190"/>
|
||||
<source>Voltage phase C</source>
|
||||
<extracomment>The name of the StateType ({8037557b-40dc-411b-8937-bcd1695f898a}) of ThingClass meter</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
|
|
|
|||
Loading…
Reference in New Issue