Merge PR #251: Netatmo: Added userandpassword setup method

This commit is contained in:
Jenkins nymea 2020-04-14 17:29:26 +02:00
commit 0b33f3f859
12 changed files with 2465 additions and 2405 deletions

View File

@ -42,14 +42,45 @@ IntegrationPluginNetatmo::IntegrationPluginNetatmo()
}
IntegrationPluginNetatmo::~IntegrationPluginNetatmo()
void IntegrationPluginNetatmo::startPairing(ThingPairingInfo *info)
{
// Checking the internet connection
NetworkAccessManager *network = hardwareManager()->networkManager();
QNetworkReply *reply = network->get(QNetworkRequest(QUrl("https://api.netatmo.net")));
connect(reply, &QNetworkReply::finished, this, [reply, info] {
reply->deleteLater();
//The server replies usually 404 not found on this request
//int status = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
if (reply->error() == QNetworkReply::NetworkError::HostNotFoundError) {
info->finish(Thing::ThingErrorHardwareNotAvailable, QT_TR_NOOP("Netatmo server is not reachable."));
} else {
info->finish(Thing::ThingErrorNoError, QT_TR_NOOP("Please enter the login credentials for your Netatmo account."));
}
});
}
void IntegrationPluginNetatmo::init()
void IntegrationPluginNetatmo::confirmPairing(ThingPairingInfo *info, const QString &username, const QString &password)
{
OAuth2 *authentication = new OAuth2("561c015d49c75f0d1cce6e13", "GuvKkdtu7JQlPD47qTTepRR9hQ0CUPAj4Tae3Ohcq", this);
authentication->setUrl(QUrl("https://api.netatmo.net/oauth2/token"));
authentication->setUsername(username);
authentication->setPassword(password);
authentication->setScope("read_station read_thermostat write_thermostat");
connect(authentication, &OAuth2::authenticationChanged, info, [this, info, username, password, authentication](){
if (authentication->authenticated()) {
pluginStorage()->beginGroup(info->thingId().toString());
pluginStorage()->setValue("username", username);
pluginStorage()->setValue("password", password);
pluginStorage()->endGroup();
info->finish(Thing::ThingErrorNoError);
} else {
info->finish(Thing::ThingErrorAuthenticationFailure, QT_TR_NOOP("Wrong username or password"));
}
});
authentication->startAuthentication();
connect(info, &QObject::destroyed, authentication, &OAuth2::deleteLater);
}
void IntegrationPluginNetatmo::setupThing(ThingSetupInfo *info)
@ -59,39 +90,66 @@ void IntegrationPluginNetatmo::setupThing(ThingSetupInfo *info)
if (thing->thingClassId() == netatmoConnectionThingClassId) {
qCDebug(dcNetatmo) << "Setup netatmo connection" << thing->name() << thing->params();
if (!m_pluginTimer) {
m_pluginTimer = hardwareManager()->pluginTimerManager()->registerTimer(600);
connect(m_pluginTimer, &PluginTimer::timeout, this, &IntegrationPluginNetatmo::onPluginTimer);
QString username;
QString password;
if (pluginStorage()->childGroups().contains(thing->id().toString())) {
pluginStorage()->beginGroup(thing->id().toString());
username = pluginStorage()->value("username").toString();
password = pluginStorage()->value("password").toString();
pluginStorage()->endGroup();
} else {
/* username and password have been stored as thingParams,
* this is to migrate the params to plug-in storage. */
ParamTypeId usernameParamTypeId = ParamTypeId("763c2c10-dee5-41c8-9f7e-ded741945e73");
ParamTypeId passwordParamTypeId = ParamTypeId("c0d892d6-f359-4782-9d7d-8f74a3b53e3e");
username = thing->paramValue(usernameParamTypeId).toString();
password = thing->paramValue(passwordParamTypeId).toString();
pluginStorage()->beginGroup(info->thing()->id().toString());
pluginStorage()->setValue("username", username);
pluginStorage()->setValue("password", password);
pluginStorage()->endGroup();
// Delete username and password so it wont be visible in the things.conf file.
thing->setParamValue(ParamTypeId("763c2c10-dee5-41c8-9f7e-ded741945e73"), "");
thing->setParamValue(ParamTypeId("c0d892d6-f359-4782-9d7d-8f74a3b53e3e"), "");
}
OAuth2 *authentication = new OAuth2("561c015d49c75f0d1cce6e13", "GuvKkdtu7JQlPD47qTTepRR9hQ0CUPAj4Tae3Ohcq", this);
authentication->setUrl(QUrl("https://api.netatmo.net/oauth2/token"));
authentication->setUsername(thing->paramValue(netatmoConnectionThingUsernameParamTypeId).toString());
authentication->setPassword(thing->paramValue(netatmoConnectionThingPasswordParamTypeId).toString());
authentication->setScope("read_station read_thermostat write_thermostat");
m_authentications.insert(authentication, thing);
// Update thing connected state based on OAuth connected state
connect(authentication, &OAuth2::authenticationChanged, thing, [this, thing, authentication](){
thing->setStateValue(netatmoConnectionConnectedStateTypeId, authentication->authenticated());
if (authentication->authenticated()) {
refreshData(thing, authentication->token());
}
});
OAuth2 *authentication;
if (m_authentications.values().contains(thing)) {
qCDebug(dcNetatmo()) << "Re-Discovery, not creating a new authentication";
authentication = m_authentications.key(thing);
authentication->setUsername(username);
authentication->setPassword(password);
} else {
authentication = new OAuth2("561c015d49c75f0d1cce6e13", "GuvKkdtu7JQlPD47qTTepRR9hQ0CUPAj4Tae3Ohcq", this);
authentication->setUrl(QUrl("https://api.netatmo.net/oauth2/token"));
authentication->setUsername(username);
authentication->setPassword(password);
authentication->setScope("read_station read_thermostat write_thermostat");
// Update thing connected state based on OAuth connected state
connect(authentication, &OAuth2::authenticationChanged, thing, [this, thing, authentication](){
thing->setStateValue(netatmoConnectionConnectedStateTypeId, authentication->authenticated());
if (authentication->authenticated()) {
refreshData(thing, authentication->token());
}
});
}
authentication->startAuthentication();
// Report thing setup finished when authentication reports success
connect(authentication, &OAuth2::authenticationChanged, info, [info, authentication](){
connect(authentication, &OAuth2::authenticationChanged, info, [this, info, thing, authentication](){
if (!authentication->authenticated()) {
authentication->deleteLater();
info->finish(Thing::ThingErrorAuthenticationFailure, QT_TR_NOOP("Error logging in to Netatmo server."));
return;
}
m_authentications.insert(authentication, thing);
info->finish(Thing::ThingErrorNoError);
});
return;
} else if (thing->thingClassId() == indoorThingClassId) {
@ -130,7 +188,6 @@ void IntegrationPluginNetatmo::setupThing(ThingSetupInfo *info)
thing->setParams(migratedParams);
// Migration done
NetatmoOutdoorModule *outdoor = new NetatmoOutdoorModule(thing->paramValue(outdoorThingNameParamTypeId).toString(),
thing->paramValue(outdoorThingMacParamTypeId).toString(),
thing->paramValue(outdoorThingBaseStationParamTypeId).toString(),
@ -141,7 +198,7 @@ void IntegrationPluginNetatmo::setupThing(ThingSetupInfo *info)
return info->finish(Thing::ThingErrorNoError);
}
info->finish(Thing::ThingErrorThingClassNotFound);
qCWarning(dcNetatmo()) << "Unhandled thing class in setupDevice";
}
@ -162,7 +219,7 @@ void IntegrationPluginNetatmo::thingRemoved(Thing *thing)
}
if (myThings().isEmpty() && m_pluginTimer) {
m_pluginTimer->deleteLater();
hardwareManager()->pluginTimerManager()->unregisterTimer(m_pluginTimer);
m_pluginTimer = nullptr;
}
}
@ -180,6 +237,11 @@ void IntegrationPluginNetatmo::postSetupThing(Thing *thing)
m_outdoorDevices.key(thing)->updateStates(m_outdoorStationInitData.take(stationId));
}
}
if (!m_pluginTimer) {
m_pluginTimer = hardwareManager()->pluginTimerManager()->registerTimer(600);
connect(m_pluginTimer, &PluginTimer::timeout, this, &IntegrationPluginNetatmo::onPluginTimer);
}
}
void IntegrationPluginNetatmo::refreshData(Thing *thing, const QString &token)
@ -191,9 +253,29 @@ void IntegrationPluginNetatmo::refreshData(Thing *thing, const QString &token)
url.setQuery(query);
QNetworkReply *reply = hardwareManager()->networkManager()->get(QNetworkRequest(url));
connect(reply, &QNetworkReply::finished, this, &IntegrationPluginNetatmo::onNetworkReplyFinished);
connect(reply, &QNetworkReply::finished, this, [this, reply, thing] {
reply->deleteLater();
m_refreshRequest.insert(reply, thing);
int status = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
// check HTTP status code
if (status != 200) {
qCWarning(dcNetatmo) << "Refresh data reply HTTP error:" << status << reply->errorString();
thing->setStateValue(netatmoConnectionConnectedStateTypeId, false);
return;
}
thing->setStateValue(netatmoConnectionConnectedStateTypeId, true);
// check JSON file
QJsonParseError error;
QJsonDocument jsonDoc = QJsonDocument::fromJson(reply->readAll(), &error);
if (error.error != QJsonParseError::NoError) {
qCWarning(dcNetatmo) << "Refresh data reply JSON error:" << error.errorString();
return;
}
qCDebug(dcNetatmo) << qUtf8Printable(jsonDoc.toJson());
processRefreshData(jsonDoc.toVariant().toMap(), thing);
});
}
void IntegrationPluginNetatmo::processRefreshData(const QVariantMap &data, Thing *connectionDevice)
@ -284,49 +366,20 @@ Thing *IntegrationPluginNetatmo::findOutdoorDevice(const QString &macAddress)
void IntegrationPluginNetatmo::onPluginTimer()
{
foreach (OAuth2 *authentication, m_authentications.keys()) {
Thing *thing = m_authentications.value(authentication);
if (!thing) {
qCWarning(dcNetatmo()) << "Authentication without an associated Netatmo connection thing" << authentication->username();
m_authentications.remove(authentication);
continue;
}
if (authentication->authenticated()) {
refreshData(m_authentications.value(authentication), authentication->token());
refreshData(thing, authentication->token());
} else {
authentication->startAuthentication();
}
}
}
void IntegrationPluginNetatmo::onNetworkReplyFinished()
{
QNetworkReply *reply = static_cast<QNetworkReply *>(sender());
reply->deleteLater();
int status = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
// update values request
if (m_refreshRequest.keys().contains(reply)) {
Thing *thing = m_refreshRequest.take(reply);
// check HTTP status code
if (status != 200) {
qCWarning(dcNetatmo) << "Device list reply HTTP error:" << status << reply->errorString();
thing->setStateValue(netatmoConnectionConnectedStateTypeId, false);
return;
}
// check JSON file
QJsonParseError error;
QJsonDocument jsonDoc = QJsonDocument::fromJson(reply->readAll(), &error);
if (error.error != QJsonParseError::NoError) {
qCWarning(dcNetatmo) << "Device list reply JSON error:" << error.errorString();
return;
}
qCDebug(dcNetatmo) << qUtf8Printable(jsonDoc.toJson());
processRefreshData(jsonDoc.toVariant().toMap(), thing);
}
}
void IntegrationPluginNetatmo::onAuthenticationChanged()
{
}
void IntegrationPluginNetatmo::onIndoorStatesChanged()
{
NetatmoBaseStation *indoor = static_cast<NetatmoBaseStation *>(sender());
@ -357,5 +410,3 @@ void IntegrationPluginNetatmo::onOutdoorStatesChanged()
thing->setStateValue(outdoorBatteryLevelStateTypeId, outdoor->battery());
thing->setStateValue(outdoorBatteryCriticalStateTypeId, outdoor->battery() < 10);
}

View File

@ -48,9 +48,9 @@ class IntegrationPluginNetatmo : public IntegrationPlugin
public:
explicit IntegrationPluginNetatmo();
~IntegrationPluginNetatmo();
void init() override;
void startPairing(ThingPairingInfo *info) override;
void confirmPairing(ThingPairingInfo *info, const QString &username, const QString &secret) override;
void setupThing(ThingSetupInfo *info) override;
void thingRemoved(Thing *thing) override;
void postSetupThing(Thing *thing) override;
@ -75,11 +75,8 @@ private:
private slots:
void onPluginTimer();
void onNetworkReplyFinished();
void onAuthenticationChanged();
void onIndoorStatesChanged();
void onOutdoorStatesChanged();
};
#endif // INTEGRATIONPLUGINNETATMO_H

View File

@ -13,29 +13,14 @@
"name": "netatmoConnection",
"displayName": "Netatmo Connection",
"interfaces": ["gateway"],
"setupMethod": "userandpassword",
"createMethods": ["user"],
"paramTypes": [
{
"id": "763c2c10-dee5-41c8-9f7e-ded741945e73",
"name": "username",
"displayName": "username",
"type": "QString",
"inputType": "TextLine"
},
{
"id": "c0d892d6-f359-4782-9d7d-8f74a3b53e3e",
"name": "password",
"displayName": "password",
"type": "QString",
"inputType": "Password"
}
],
"stateTypes": [
{
"id": "2f79bc1d-27ed-480a-b583-728363c83ea6",
"name": "connected",
"displayName": "available",
"displayNameEvent": "available changed",
"displayName": "Available",
"displayNameEvent": "Available changed",
"type": "bool",
"defaultValue": false
}
@ -58,7 +43,7 @@
{
"id": "157d470a-e579-4d0e-b879-6b5bfa8e34ae",
"name": "mac",
"displayName": "mac address",
"displayName": "MAC Address",
"type": "QString",
"inputType": "TextLine",
"readOnly": true
@ -68,8 +53,8 @@
{
"id": "50da9f6b-c350-401c-a72e-2e4036f3975d",
"name": "updateTime",
"displayName": "last update",
"displayNameEvent": "last update changed",
"displayName": "Last update",
"displayNameEvent": "Last update changed",
"unit": "UnixTime",
"type": "int",
"defaultValue": 0
@ -77,8 +62,8 @@
{
"id": "3cb25538-e463-40ae-92f9-8f34f0c06b92",
"name": "temperature",
"displayName": "temperature",
"displayNameEvent": "temperature changed",
"displayName": "Temperature",
"displayNameEvent": "Temperature changed",
"unit": "DegreeCelsius",
"type": "double",
"defaultValue": 0
@ -86,8 +71,8 @@
{
"id": "ae8bb713-8805-4efd-89a1-bca44a1f1690",
"name": "temperatureMin",
"displayName": "temperature minimum",
"displayNameEvent": "temperature minimum changed",
"displayName": "Temperature minimum",
"displayNameEvent": "Temperature minimum changed",
"unit": "DegreeCelsius",
"type": "double",
"defaultValue": 0
@ -95,8 +80,8 @@
{
"id": "dd30507e-037b-4c74-bcca-e04b94c7c5fe",
"name": "temperatureMax",
"displayName": "temperature maximum",
"displayNameEvent": "temperature maximum changed",
"displayName": "Temperature maximum",
"displayNameEvent": "Temperature maximum changed",
"unit": "DegreeCelsius",
"type": "double",
"defaultValue": 0
@ -104,8 +89,8 @@
{
"id": "e2db5f01-196a-48d1-8874-6b8cbfe0d8c9",
"name": "humidity",
"displayName": "humidity",
"displayNameEvent": "humidity changed",
"displayName": "Humidity",
"displayNameEvent": "Humidity changed",
"unit": "Percentage",
"type": "double",
"defaultValue": 0,
@ -115,8 +100,8 @@
{
"id": "03b0a7b7-987d-4d3b-b3f0-21d9f92ad326",
"name": "pressure",
"displayName": "pressure",
"displayNameEvent": "pressure changed",
"displayName": "Pressure",
"displayNameEvent": "Pressure changed",
"unit": "MilliBar",
"type": "double",
"defaultValue": 0
@ -124,8 +109,8 @@
{
"id": "906cea9d-1daf-4e9c-90b9-e40f43052a34",
"name": "noise",
"displayName": "noise",
"displayNameEvent": "noise changed",
"displayName": "Noise",
"displayNameEvent": "Noise changed",
"unit": "Dezibel",
"type": "double",
"defaultValue": 0
@ -133,8 +118,8 @@
{
"id": "e5710bd1-79fa-4bd4-9052-8416aae909b9",
"name": "co2",
"displayName": "co2",
"displayNameEvent": "co2 changed",
"displayName": "CO2",
"displayNameEvent": "CO2 changed",
"unit": "PartsPerMillion",
"type": "double",
"defaultValue": 0
@ -142,8 +127,8 @@
{
"id": "6ea906d4-5740-454d-a730-6fdb9fa0d624",
"name": "wifiStrength",
"displayName": "wifi signal strength",
"displayNameEvent": "wifi signal strength changed",
"displayName": "WiFi signal strength",
"displayNameEvent": "WiFi signal strength changed",
"unit": "Percentage",
"type": "int",
"defaultValue": 0
@ -167,7 +152,7 @@
{
"id": "73a76c5c-84f5-4e65-8541-457e5aca9bb0",
"name": "mac",
"displayName": "mac address",
"displayName": "MAC Address",
"type": "QString",
"inputType": "TextLine",
"readOnly": true
@ -175,7 +160,7 @@
{
"id": "d7a0ec46-760c-4fdc-9753-fe10c86fe1b9",
"name": "baseStation",
"displayName": "base station",
"displayName": "Base station",
"type": "QString",
"inputType": "TextLine",
"readOnly": true
@ -185,8 +170,8 @@
{
"id": "154aad5c-4998-43c2-b9ee-0b997eb6dd69",
"name": "updateTime",
"displayName": "last update",
"displayNameEvent": "last update changed",
"displayName": "Last update",
"displayNameEvent": "Last update changed",
"unit": "UnixTime",
"type": "int",
"defaultValue": 0
@ -194,8 +179,8 @@
{
"id": "f98776bd-887e-4b01-a87f-3d8224180563",
"name": "temperature",
"displayName": "temperature",
"displayNameEvent": "temperature changed",
"displayName": "Temperature",
"displayNameEvent": "Temperature changed",
"unit": "DegreeCelsius",
"type": "double",
"defaultValue": 0
@ -203,8 +188,8 @@
{
"id": "b71e0c8b-3c94-421e-830e-dab97b6c104e",
"name": "temperatureMin",
"displayName": "temperature minimum",
"displayNameEvent": "temperature minimum changed",
"displayName": "Temperature minimum",
"displayNameEvent": "Temperature minimum changed",
"unit": "DegreeCelsius",
"type": "double",
"defaultValue": 0
@ -212,8 +197,8 @@
{
"id": "aae071dc-70d5-4a6a-8daa-3dca0d150bd7",
"name": "temperatureMax",
"displayName": "temperature maximum",
"displayNameEvent": "temperature maximum changed",
"displayName": "Temperature maximum",
"displayNameEvent": "Temperature maximum changed",
"unit": "DegreeCelsius",
"type": "double",
"defaultValue": 0
@ -221,8 +206,8 @@
{
"id": "7ba6ddeb-5142-4b87-9729-487fcda394df",
"name": "humidity",
"displayName": "humidity",
"displayNameEvent": "humidity changed",
"displayName": "Humidity",
"displayNameEvent": "Humidity changed",
"unit": "Percentage",
"type": "double",
"defaultValue": 0,
@ -232,8 +217,8 @@
{
"id": "0faa3d08-9004-46fb-a5aa-a59b75e454cc",
"name": "signalStrength",
"displayName": "signal strength",
"displayNameEvent": "signal strength changed",
"displayName": "Signal strength",
"displayNameEvent": "Signal strength changed",
"unit": "Percentage",
"type": "int",
"defaultValue": 0
@ -241,8 +226,8 @@
{
"id": "15d8fae1-ba47-42e1-994d-530e8017c965",
"name": "batteryLevel",
"displayName": "battery",
"displayNameEvent": "battery changed",
"displayName": "Battery",
"displayNameEvent": "Battery changed",
"unit": "Percentage",
"type": "int",
"defaultValue": 0,
@ -252,8 +237,8 @@
{
"id": "f8aeb144-014d-4ccb-81db-64ffc70f1c97",
"name": "batteryCritical",
"displayName": "battery critical",
"displayNameEvent": "battery critical changed",
"displayName": "Battery critical",
"displayNameEvent": "Battery critical changed",
"type": "bool",
"defaultValue": false
}

View File

@ -4,7 +4,22 @@
<context>
<name>IntegrationPluginNetatmo</name>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="88"/>
<location filename="../integrationpluginnetatmo.cpp" line="55"/>
<source>Netatmo server is not reachable.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="57"/>
<source>Please enter the login credentials for your Netatmo account.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="79"/>
<source>Wrong username or password</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="147"/>
<source>Error logging in to Netatmo server.</source>
<translation type="unfinished"></translation>
</message>
@ -12,206 +27,77 @@
<context>
<name>Netatmo</name>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="89"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="92"/>
<source>Netatmo</source>
<extracomment>The name of the vendor ({4b46b4ed-5ec9-4aa4-afc3-92d3f80e6351})
----------
The name of the plugin Netatmo ({69d14951-0c02-4877-bcef-dffdf48b7ccb})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="95"/>
<source>Netatmo Connection</source>
<extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment>
<translation>Netatmo připojení</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="182"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="185"/>
<source>name</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {719e1f92-a9c8-42d6-83e1-652a0f182209})
----------
The name of the ParamType (ThingClass: indoor, Type: thing, ID: {a97d256c-e159-4aa0-bc71-6bd7cd0688b3})</extracomment>
<translation>název</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="272"/>
<source>username</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, Type: thing, ID: {763c2c10-dee5-41c8-9f7e-ded741945e73})</extracomment>
<translation>název uživatele</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="197"/>
<source>password</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, Type: thing, ID: {c0d892d6-f359-4782-9d7d-8f74a3b53e3e})</extracomment>
<translation>heslo</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="107"/>
<source>available changed</source>
<extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation>k dispozici změněno</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="101"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="104"/>
<source>available</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="84"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="87"/>
<source>Available</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: connected, ID: {2f79bc1d-27ed-480a-b583-728363c83ea6})
----------
The name of the StateType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation>k dispozici</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="86"/>
<source>Indoor Station</source>
<extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment>
<translation>Vnitřní stanice</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="176"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="179"/>
<source>mac address</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {73a76c5c-84f5-4e65-8541-457e5aca9bb0})
----------
The name of the ParamType (ThingClass: indoor, Type: thing, ID: {157d470a-e579-4d0e-b879-6b5bfa8e34ae})</extracomment>
<translation>mac adresa</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="170"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="173"/>
<source>last update changed</source>
<extracomment>The name of the EventType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
----------
The name of the EventType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass indoor</extracomment>
<translation>poslední aktualizace změněna</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="158"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="161"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="164"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="167"/>
<source>last update</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: updateTime, ID: {154aad5c-4998-43c2-b9ee-0b997eb6dd69})
----------
The name of the StateType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: updateTime, ID: {50da9f6b-c350-401c-a72e-2e4036f3975d})
----------
The name of the StateType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass indoor</extracomment>
<translation>poslední aktualizace</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="230"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="233"/>
<source>temperature changed</source>
<extracomment>The name of the EventType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
----------
The name of the EventType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass indoor</extracomment>
<translation>teplota změněna</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="218"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="221"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="224"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="227"/>
<source>temperature</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperature, ID: {f98776bd-887e-4b01-a87f-3d8224180563})
----------
The name of the StateType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperature, ID: {3cb25538-e463-40ae-92f9-8f34f0c06b92})
----------
The name of the StateType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass indoor</extracomment>
<translation>teplota</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="266"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="269"/>
<source>temperature minimum changed</source>
<extracomment>The name of the EventType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
----------
The name of the EventType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass indoor</extracomment>
<translation>minimální teplota změněna</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="254"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="257"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="260"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="263"/>
<source>temperature minimum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMin, ID: {b71e0c8b-3c94-421e-830e-dab97b6c104e})
----------
The name of the StateType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperatureMin, ID: {ae8bb713-8805-4efd-89a1-bca44a1f1690})
----------
The name of the StateType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass indoor</extracomment>
<translation>minimální teplota</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="248"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="251"/>
<source>temperature maximum changed</source>
<extracomment>The name of the EventType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
----------
The name of the EventType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass indoor</extracomment>
<translation>maximální teplota změněna</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="236"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="239"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="242"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="245"/>
<source>temperature maximum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMax, ID: {aae071dc-70d5-4a6a-8daa-3dca0d150bd7})
----------
The name of the StateType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperatureMax, ID: {dd30507e-037b-4c74-bcca-e04b94c7c5fe})
----------
The name of the StateType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass indoor</extracomment>
<translation>maximální teplota</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="275"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="278"/>
<source>wifi signal strength</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: wifiStrength, ID: {6ea906d4-5740-454d-a730-6fdb9fa0d624})
----------
The name of the StateType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation>wifi signál síla</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="128"/>
<source>battery critical changed</source>
<extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="122"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="125"/>
<source>battery critical</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="90"/>
<source>Available changed</source>
<extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="93"/>
<source>Base station</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="96"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="99"/>
<source>Battery</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryLevel, ID: {15d8fae1-ba47-42e1-994d-530e8017c965})
----------
The name of the StateType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="102"/>
<source>Battery changed</source>
<extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="105"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="108"/>
<source>Battery critical</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryCritical, ID: {f8aeb144-014d-4ccb-81db-64ffc70f1c97})
----------
The name of the StateType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="152"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="155"/>
<source>humidity changed</source>
<extracomment>The name of the EventType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor
----------
The name of the EventType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass indoor</extracomment>
<translation>vlhkost změněna</translation>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="111"/>
<source>Battery critical changed</source>
<extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="140"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="143"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="146"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="149"/>
<source>humidity</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="114"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="117"/>
<source>CO2</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: co2, ID: {e5710bd1-79fa-4bd4-9052-8416aae909b9})
----------
The name of the StateType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="120"/>
<source>CO2 changed</source>
<extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="123"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="126"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="129"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="132"/>
<source>Humidity</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: humidity, ID: {7ba6ddeb-5142-4b87-9729-487fcda394df})
----------
The name of the StateType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor
@ -219,100 +105,217 @@ The name of the StateType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass
The name of the ParamType (ThingClass: indoor, EventType: humidity, ID: {e2db5f01-196a-48d1-8874-6b8cbfe0d8c9})
----------
The name of the StateType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass indoor</extracomment>
<translation>vlhkost</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="206"/>
<source>pressure changed</source>
<extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation>tlak změněn</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="200"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="203"/>
<source>pressure</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: pressure, ID: {03b0a7b7-987d-4d3b-b3f0-21d9f92ad326})
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="135"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="138"/>
<source>Humidity changed</source>
<extracomment>The name of the EventType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor
----------
The name of the StateType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation>tlak</translation>
The name of the EventType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="194"/>
<source>noise changed</source>
<extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation>zvuk změněn</translation>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="144"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="147"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="150"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="153"/>
<source>Last update</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: updateTime, ID: {154aad5c-4998-43c2-b9ee-0b997eb6dd69})
----------
The name of the StateType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: updateTime, ID: {50da9f6b-c350-401c-a72e-2e4036f3975d})
----------
The name of the StateType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="188"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="191"/>
<source>noise</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="156"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="159"/>
<source>Last update changed</source>
<extracomment>The name of the EventType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
----------
The name of the EventType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="162"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="165"/>
<source>MAC Address</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {73a76c5c-84f5-4e65-8541-457e5aca9bb0})
----------
The name of the ParamType (ThingClass: indoor, Type: thing, ID: {157d470a-e579-4d0e-b879-6b5bfa8e34ae})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="168"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="171"/>
<source>Netatmo</source>
<extracomment>The name of the vendor ({4b46b4ed-5ec9-4aa4-afc3-92d3f80e6351})
----------
The name of the plugin Netatmo ({69d14951-0c02-4877-bcef-dffdf48b7ccb})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="174"/>
<source>Netatmo Connection</source>
<extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment>
<translation>Netatmo připojení</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="177"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="180"/>
<source>Noise</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: noise, ID: {906cea9d-1daf-4e9c-90b9-e40f43052a34})
----------
The name of the StateType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation>zvuk</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="137"/>
<source>co2 changed</source>
<extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation>co2 změněn</translation>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="183"/>
<source>Noise changed</source>
<extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="131"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="134"/>
<source>co2</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: co2, ID: {e5710bd1-79fa-4bd4-9052-8416aae909b9})
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="189"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="192"/>
<source>Pressure</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: pressure, ID: {03b0a7b7-987d-4d3b-b3f0-21d9f92ad326})
----------
The name of the StateType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation>co2</translation>
The name of the StateType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="281"/>
<source>wifi signal strength changed</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="195"/>
<source>Pressure changed</source>
<extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="198"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="201"/>
<source>Signal strength</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: signalStrength, ID: {0faa3d08-9004-46fb-a5aa-a59b75e454cc})
----------
The name of the StateType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="204"/>
<source>Signal strength changed</source>
<extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="207"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="210"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="213"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="216"/>
<source>Temperature</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperature, ID: {f98776bd-887e-4b01-a87f-3d8224180563})
----------
The name of the StateType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperature, ID: {3cb25538-e463-40ae-92f9-8f34f0c06b92})
----------
The name of the StateType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="219"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="222"/>
<source>Temperature changed</source>
<extracomment>The name of the EventType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
----------
The name of the EventType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="225"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="228"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="231"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="234"/>
<source>Temperature maximum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMax, ID: {aae071dc-70d5-4a6a-8daa-3dca0d150bd7})
----------
The name of the StateType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperatureMax, ID: {dd30507e-037b-4c74-bcca-e04b94c7c5fe})
----------
The name of the StateType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="237"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="240"/>
<source>Temperature maximum changed</source>
<extracomment>The name of the EventType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
----------
The name of the EventType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="243"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="246"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="249"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="252"/>
<source>Temperature minimum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMin, ID: {b71e0c8b-3c94-421e-830e-dab97b6c104e})
----------
The name of the StateType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperatureMin, ID: {ae8bb713-8805-4efd-89a1-bca44a1f1690})
----------
The name of the StateType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="255"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="258"/>
<source>Temperature minimum changed</source>
<extracomment>The name of the EventType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
----------
The name of the EventType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="261"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="264"/>
<source>WiFi signal strength</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: wifiStrength, ID: {6ea906d4-5740-454d-a730-6fdb9fa0d624})
----------
The name of the StateType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="267"/>
<source>WiFi signal strength changed</source>
<extracomment>The name of the EventType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation>wifi signál síla změněno</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="98"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="270"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="273"/>
<source>name</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {719e1f92-a9c8-42d6-83e1-652a0f182209})
----------
The name of the ParamType (ThingClass: indoor, Type: thing, ID: {a97d256c-e159-4aa0-bc71-6bd7cd0688b3})</extracomment>
<translation>název</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="141"/>
<source>Indoor Station</source>
<extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment>
<translation>Vnitřní stanice</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="186"/>
<source>Outdoor Station</source>
<extracomment>The name of the ThingClass ({6cc01d62-7317-4ec4-8ac4-a4cab762c179})</extracomment>
<translation>Venkovní stanice</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="110"/>
<source>base station</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment>
<translation>základní stanice</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="215"/>
<source>signal strength changed</source>
<extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation>signál síla změněna</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="209"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="212"/>
<source>signal strength</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: signalStrength, ID: {0faa3d08-9004-46fb-a5aa-a59b75e454cc})
----------
The name of the StateType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation>signál síla</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="119"/>
<source>battery changed</source>
<extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation>baterie změněna</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="113"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="116"/>
<source>battery</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryLevel, ID: {15d8fae1-ba47-42e1-994d-530e8017c965})
----------
The name of the StateType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation>baterie</translation>
</message>
</context>
</TS>

View File

@ -4,7 +4,22 @@
<context>
<name>IntegrationPluginNetatmo</name>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="88"/>
<location filename="../integrationpluginnetatmo.cpp" line="55"/>
<source>Netatmo server is not reachable.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="57"/>
<source>Please enter the login credentials for your Netatmo account.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="79"/>
<source>Wrong username or password</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="147"/>
<source>Error logging in to Netatmo server.</source>
<translation type="unfinished"></translation>
</message>
@ -12,206 +27,77 @@
<context>
<name>Netatmo</name>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="89"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="92"/>
<source>Netatmo</source>
<extracomment>The name of the vendor ({4b46b4ed-5ec9-4aa4-afc3-92d3f80e6351})
----------
The name of the plugin Netatmo ({69d14951-0c02-4877-bcef-dffdf48b7ccb})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="95"/>
<source>Netatmo Connection</source>
<extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment>
<translation>Netatmo-forbindelse</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="182"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="185"/>
<source>name</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {719e1f92-a9c8-42d6-83e1-652a0f182209})
----------
The name of the ParamType (ThingClass: indoor, Type: thing, ID: {a97d256c-e159-4aa0-bc71-6bd7cd0688b3})</extracomment>
<translation>navn</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="272"/>
<source>username</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, Type: thing, ID: {763c2c10-dee5-41c8-9f7e-ded741945e73})</extracomment>
<translation>brugernavn</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="197"/>
<source>password</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, Type: thing, ID: {c0d892d6-f359-4782-9d7d-8f74a3b53e3e})</extracomment>
<translation>adgangskode</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="107"/>
<source>available changed</source>
<extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation>tilgængelig ændret</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="101"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="104"/>
<source>available</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="84"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="87"/>
<source>Available</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: connected, ID: {2f79bc1d-27ed-480a-b583-728363c83ea6})
----------
The name of the StateType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation>tilgængelig</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="86"/>
<source>Indoor Station</source>
<extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment>
<translation>Indendørsstation</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="176"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="179"/>
<source>mac address</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {73a76c5c-84f5-4e65-8541-457e5aca9bb0})
----------
The name of the ParamType (ThingClass: indoor, Type: thing, ID: {157d470a-e579-4d0e-b879-6b5bfa8e34ae})</extracomment>
<translation>mac-adresse</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="170"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="173"/>
<source>last update changed</source>
<extracomment>The name of the EventType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
----------
The name of the EventType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass indoor</extracomment>
<translation>sidste opdatering ændret</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="158"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="161"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="164"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="167"/>
<source>last update</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: updateTime, ID: {154aad5c-4998-43c2-b9ee-0b997eb6dd69})
----------
The name of the StateType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: updateTime, ID: {50da9f6b-c350-401c-a72e-2e4036f3975d})
----------
The name of the StateType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass indoor</extracomment>
<translation>sidste opdatering</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="230"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="233"/>
<source>temperature changed</source>
<extracomment>The name of the EventType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
----------
The name of the EventType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass indoor</extracomment>
<translation>temperatur ændret</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="218"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="221"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="224"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="227"/>
<source>temperature</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperature, ID: {f98776bd-887e-4b01-a87f-3d8224180563})
----------
The name of the StateType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperature, ID: {3cb25538-e463-40ae-92f9-8f34f0c06b92})
----------
The name of the StateType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass indoor</extracomment>
<translation>temperatur</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="266"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="269"/>
<source>temperature minimum changed</source>
<extracomment>The name of the EventType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
----------
The name of the EventType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass indoor</extracomment>
<translation>minimumstemperatur ændret</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="254"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="257"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="260"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="263"/>
<source>temperature minimum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMin, ID: {b71e0c8b-3c94-421e-830e-dab97b6c104e})
----------
The name of the StateType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperatureMin, ID: {ae8bb713-8805-4efd-89a1-bca44a1f1690})
----------
The name of the StateType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass indoor</extracomment>
<translation>minimumstemperatur</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="248"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="251"/>
<source>temperature maximum changed</source>
<extracomment>The name of the EventType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
----------
The name of the EventType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass indoor</extracomment>
<translation>maksimumstemperatur ændret</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="236"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="239"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="242"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="245"/>
<source>temperature maximum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMax, ID: {aae071dc-70d5-4a6a-8daa-3dca0d150bd7})
----------
The name of the StateType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperatureMax, ID: {dd30507e-037b-4c74-bcca-e04b94c7c5fe})
----------
The name of the StateType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass indoor</extracomment>
<translation>maksimumstemperatur</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="275"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="278"/>
<source>wifi signal strength</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: wifiStrength, ID: {6ea906d4-5740-454d-a730-6fdb9fa0d624})
----------
The name of the StateType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation>wi-fi-signalstyrke</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="128"/>
<source>battery critical changed</source>
<extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="122"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="125"/>
<source>battery critical</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="90"/>
<source>Available changed</source>
<extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="93"/>
<source>Base station</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="96"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="99"/>
<source>Battery</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryLevel, ID: {15d8fae1-ba47-42e1-994d-530e8017c965})
----------
The name of the StateType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="102"/>
<source>Battery changed</source>
<extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="105"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="108"/>
<source>Battery critical</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryCritical, ID: {f8aeb144-014d-4ccb-81db-64ffc70f1c97})
----------
The name of the StateType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="152"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="155"/>
<source>humidity changed</source>
<extracomment>The name of the EventType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor
----------
The name of the EventType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass indoor</extracomment>
<translation>luftfugtighed ændret</translation>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="111"/>
<source>Battery critical changed</source>
<extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="140"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="143"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="146"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="149"/>
<source>humidity</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="114"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="117"/>
<source>CO2</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: co2, ID: {e5710bd1-79fa-4bd4-9052-8416aae909b9})
----------
The name of the StateType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="120"/>
<source>CO2 changed</source>
<extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="123"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="126"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="129"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="132"/>
<source>Humidity</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: humidity, ID: {7ba6ddeb-5142-4b87-9729-487fcda394df})
----------
The name of the StateType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor
@ -219,100 +105,217 @@ The name of the StateType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass
The name of the ParamType (ThingClass: indoor, EventType: humidity, ID: {e2db5f01-196a-48d1-8874-6b8cbfe0d8c9})
----------
The name of the StateType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass indoor</extracomment>
<translation>luftfugtighed</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="206"/>
<source>pressure changed</source>
<extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation>tryk ændret</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="200"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="203"/>
<source>pressure</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: pressure, ID: {03b0a7b7-987d-4d3b-b3f0-21d9f92ad326})
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="135"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="138"/>
<source>Humidity changed</source>
<extracomment>The name of the EventType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor
----------
The name of the StateType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation>tryk</translation>
The name of the EventType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="194"/>
<source>noise changed</source>
<extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation>støj ændret</translation>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="144"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="147"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="150"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="153"/>
<source>Last update</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: updateTime, ID: {154aad5c-4998-43c2-b9ee-0b997eb6dd69})
----------
The name of the StateType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: updateTime, ID: {50da9f6b-c350-401c-a72e-2e4036f3975d})
----------
The name of the StateType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="188"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="191"/>
<source>noise</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="156"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="159"/>
<source>Last update changed</source>
<extracomment>The name of the EventType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
----------
The name of the EventType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="162"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="165"/>
<source>MAC Address</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {73a76c5c-84f5-4e65-8541-457e5aca9bb0})
----------
The name of the ParamType (ThingClass: indoor, Type: thing, ID: {157d470a-e579-4d0e-b879-6b5bfa8e34ae})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="168"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="171"/>
<source>Netatmo</source>
<extracomment>The name of the vendor ({4b46b4ed-5ec9-4aa4-afc3-92d3f80e6351})
----------
The name of the plugin Netatmo ({69d14951-0c02-4877-bcef-dffdf48b7ccb})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="174"/>
<source>Netatmo Connection</source>
<extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment>
<translation>Netatmo-forbindelse</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="177"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="180"/>
<source>Noise</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: noise, ID: {906cea9d-1daf-4e9c-90b9-e40f43052a34})
----------
The name of the StateType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation>støj</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="137"/>
<source>co2 changed</source>
<extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation>co2 ændret</translation>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="183"/>
<source>Noise changed</source>
<extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="131"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="134"/>
<source>co2</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: co2, ID: {e5710bd1-79fa-4bd4-9052-8416aae909b9})
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="189"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="192"/>
<source>Pressure</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: pressure, ID: {03b0a7b7-987d-4d3b-b3f0-21d9f92ad326})
----------
The name of the StateType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation>co2</translation>
The name of the StateType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="281"/>
<source>wifi signal strength changed</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="195"/>
<source>Pressure changed</source>
<extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="198"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="201"/>
<source>Signal strength</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: signalStrength, ID: {0faa3d08-9004-46fb-a5aa-a59b75e454cc})
----------
The name of the StateType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="204"/>
<source>Signal strength changed</source>
<extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="207"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="210"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="213"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="216"/>
<source>Temperature</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperature, ID: {f98776bd-887e-4b01-a87f-3d8224180563})
----------
The name of the StateType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperature, ID: {3cb25538-e463-40ae-92f9-8f34f0c06b92})
----------
The name of the StateType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="219"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="222"/>
<source>Temperature changed</source>
<extracomment>The name of the EventType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
----------
The name of the EventType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="225"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="228"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="231"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="234"/>
<source>Temperature maximum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMax, ID: {aae071dc-70d5-4a6a-8daa-3dca0d150bd7})
----------
The name of the StateType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperatureMax, ID: {dd30507e-037b-4c74-bcca-e04b94c7c5fe})
----------
The name of the StateType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="237"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="240"/>
<source>Temperature maximum changed</source>
<extracomment>The name of the EventType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
----------
The name of the EventType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="243"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="246"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="249"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="252"/>
<source>Temperature minimum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMin, ID: {b71e0c8b-3c94-421e-830e-dab97b6c104e})
----------
The name of the StateType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperatureMin, ID: {ae8bb713-8805-4efd-89a1-bca44a1f1690})
----------
The name of the StateType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="255"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="258"/>
<source>Temperature minimum changed</source>
<extracomment>The name of the EventType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
----------
The name of the EventType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="261"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="264"/>
<source>WiFi signal strength</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: wifiStrength, ID: {6ea906d4-5740-454d-a730-6fdb9fa0d624})
----------
The name of the StateType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="267"/>
<source>WiFi signal strength changed</source>
<extracomment>The name of the EventType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation>wi-fi-signalstyrke ændret</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="98"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="270"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="273"/>
<source>name</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {719e1f92-a9c8-42d6-83e1-652a0f182209})
----------
The name of the ParamType (ThingClass: indoor, Type: thing, ID: {a97d256c-e159-4aa0-bc71-6bd7cd0688b3})</extracomment>
<translation>navn</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="141"/>
<source>Indoor Station</source>
<extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment>
<translation>Indendørsstation</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="186"/>
<source>Outdoor Station</source>
<extracomment>The name of the ThingClass ({6cc01d62-7317-4ec4-8ac4-a4cab762c179})</extracomment>
<translation>Udendørsstation</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="110"/>
<source>base station</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment>
<translation>basisstation</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="215"/>
<source>signal strength changed</source>
<extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation>wi-fi-signalstyrke</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="209"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="212"/>
<source>signal strength</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: signalStrength, ID: {0faa3d08-9004-46fb-a5aa-a59b75e454cc})
----------
The name of the StateType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation>signalstyrke</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="119"/>
<source>battery changed</source>
<extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation>batteri ændret</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="113"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="116"/>
<source>battery</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryLevel, ID: {15d8fae1-ba47-42e1-994d-530e8017c965})
----------
The name of the StateType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation>batteri</translation>
</message>
</context>
</TS>

View File

@ -4,94 +4,124 @@
<context>
<name>IntegrationPluginNetatmo</name>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="88"/>
<location filename="../integrationpluginnetatmo.cpp" line="55"/>
<source>Netatmo server is not reachable.</source>
<translation>Netatmo Server ist nicht erreichbar.</translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="57"/>
<source>Please enter the login credentials for your Netatmo account.</source>
<translation>Bitte geben Sie die Anmeldeinformationen für Ihr Netatmo-Konto ein.</translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="79"/>
<source>Wrong username or password</source>
<translation>Benutzername oder Passwort falsch</translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="147"/>
<source>Error logging in to Netatmo server.</source>
<translation type="unfinished"></translation>
<translation>Fehler beim Anmelden am Netatmo-Server.</translation>
</message>
</context>
<context>
<name>Netatmo</name>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="89"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="92"/>
<source>Netatmo</source>
<extracomment>The name of the vendor ({4b46b4ed-5ec9-4aa4-afc3-92d3f80e6351})
----------
The name of the plugin Netatmo ({69d14951-0c02-4877-bcef-dffdf48b7ccb})</extracomment>
<translation>Netatmo</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="95"/>
<source>Netatmo Connection</source>
<extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment>
<translation>Netatmo Verbindung</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="182"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="185"/>
<source>name</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {719e1f92-a9c8-42d6-83e1-652a0f182209})
----------
The name of the ParamType (ThingClass: indoor, Type: thing, ID: {a97d256c-e159-4aa0-bc71-6bd7cd0688b3})</extracomment>
<translation>Name</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="272"/>
<source>username</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, Type: thing, ID: {763c2c10-dee5-41c8-9f7e-ded741945e73})</extracomment>
<translation>Benutzername</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="197"/>
<source>password</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, Type: thing, ID: {c0d892d6-f359-4782-9d7d-8f74a3b53e3e})</extracomment>
<translation>Passwort</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="107"/>
<source>available changed</source>
<extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation>Verfügbarkeit geändert</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="101"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="104"/>
<source>available</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="84"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="87"/>
<source>Available</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: connected, ID: {2f79bc1d-27ed-480a-b583-728363c83ea6})
----------
The name of the StateType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation>Verfügbar</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="86"/>
<source>Indoor Station</source>
<extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment>
<translation>Innenstation</translation>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="90"/>
<source>Available changed</source>
<extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation>Verfügbar geändert</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="176"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="179"/>
<source>mac address</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {73a76c5c-84f5-4e65-8541-457e5aca9bb0})
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="93"/>
<source>Base station</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment>
<translation>Basisstation</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="96"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="99"/>
<source>Battery</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryLevel, ID: {15d8fae1-ba47-42e1-994d-530e8017c965})
----------
The name of the ParamType (ThingClass: indoor, Type: thing, ID: {157d470a-e579-4d0e-b879-6b5bfa8e34ae})</extracomment>
<translation>MAC Adresse</translation>
The name of the StateType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation>Batterie</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="170"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="173"/>
<source>last update changed</source>
<extracomment>The name of the EventType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="102"/>
<source>Battery changed</source>
<extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation>Batterie geändert</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="105"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="108"/>
<source>Battery critical</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryCritical, ID: {f8aeb144-014d-4ccb-81db-64ffc70f1c97})
----------
The name of the EventType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass indoor</extracomment>
<translation>Letztes Update geändert</translation>
The name of the StateType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation>Batterie kritisch</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="158"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="161"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="164"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="167"/>
<source>last update</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="111"/>
<source>Battery critical changed</source>
<extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation>Batterie kritisch geändert</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="114"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="117"/>
<source>CO2</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: co2, ID: {e5710bd1-79fa-4bd4-9052-8416aae909b9})
----------
The name of the StateType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation>CO2</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="120"/>
<source>CO2 changed</source>
<extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation>CO2 geändert</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="123"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="126"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="129"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="132"/>
<source>Humidity</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: humidity, ID: {7ba6ddeb-5142-4b87-9729-487fcda394df})
----------
The name of the StateType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: humidity, ID: {e2db5f01-196a-48d1-8874-6b8cbfe0d8c9})
----------
The name of the StateType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass indoor</extracomment>
<translation>Luftfeuchte</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="135"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="138"/>
<source>Humidity changed</source>
<extracomment>The name of the EventType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor
----------
The name of the EventType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass indoor</extracomment>
<translation>Luftfeuchte geändert</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="144"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="147"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="150"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="153"/>
<source>Last update</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: updateTime, ID: {154aad5c-4998-43c2-b9ee-0b997eb6dd69})
----------
The name of the StateType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
@ -102,20 +132,89 @@ The name of the StateType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass
<translation>Letztes Update</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="230"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="233"/>
<source>temperature changed</source>
<extracomment>The name of the EventType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="156"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="159"/>
<source>Last update changed</source>
<extracomment>The name of the EventType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
----------
The name of the EventType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass indoor</extracomment>
<translation>Temperatur geändert</translation>
The name of the EventType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass indoor</extracomment>
<translation>Letztes Update geändert</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="218"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="221"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="224"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="227"/>
<source>temperature</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="162"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="165"/>
<source>MAC Address</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {73a76c5c-84f5-4e65-8541-457e5aca9bb0})
----------
The name of the ParamType (ThingClass: indoor, Type: thing, ID: {157d470a-e579-4d0e-b879-6b5bfa8e34ae})</extracomment>
<translation>MAC Adresse</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="168"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="171"/>
<source>Netatmo</source>
<extracomment>The name of the vendor ({4b46b4ed-5ec9-4aa4-afc3-92d3f80e6351})
----------
The name of the plugin Netatmo ({69d14951-0c02-4877-bcef-dffdf48b7ccb})</extracomment>
<translation>Netatmo</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="174"/>
<source>Netatmo Connection</source>
<extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment>
<translation>Netatmo Verbindung</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="177"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="180"/>
<source>Noise</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: noise, ID: {906cea9d-1daf-4e9c-90b9-e40f43052a34})
----------
The name of the StateType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation>Geräusch</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="183"/>
<source>Noise changed</source>
<extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation>Geräusch geändert</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="189"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="192"/>
<source>Pressure</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: pressure, ID: {03b0a7b7-987d-4d3b-b3f0-21d9f92ad326})
----------
The name of the StateType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation>Luftdruck</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="195"/>
<source>Pressure changed</source>
<extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation>Luftdruck geändert</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="198"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="201"/>
<source>Signal strength</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: signalStrength, ID: {0faa3d08-9004-46fb-a5aa-a59b75e454cc})
----------
The name of the StateType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation>Signalstärke</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="204"/>
<source>Signal strength changed</source>
<extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation>Signalstärke geändert</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="207"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="210"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="213"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="216"/>
<source>Temperature</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperature, ID: {f98776bd-887e-4b01-a87f-3d8224180563})
----------
The name of the StateType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
@ -126,44 +225,20 @@ The name of the StateType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass
<translation>Temperatur</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="266"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="269"/>
<source>temperature minimum changed</source>
<extracomment>The name of the EventType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="219"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="222"/>
<source>Temperature changed</source>
<extracomment>The name of the EventType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
----------
The name of the EventType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass indoor</extracomment>
<translation>Temperatur Minimum geändert</translation>
The name of the EventType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass indoor</extracomment>
<translation>Temperatur geändert</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="254"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="257"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="260"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="263"/>
<source>temperature minimum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMin, ID: {b71e0c8b-3c94-421e-830e-dab97b6c104e})
----------
The name of the StateType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperatureMin, ID: {ae8bb713-8805-4efd-89a1-bca44a1f1690})
----------
The name of the StateType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass indoor</extracomment>
<translation>Temperatur Minimum</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="248"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="251"/>
<source>temperature maximum changed</source>
<extracomment>The name of the EventType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
----------
The name of the EventType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass indoor</extracomment>
<translation>Temperatur Maximum geändert</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="236"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="239"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="242"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="245"/>
<source>temperature maximum</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="225"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="228"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="231"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="234"/>
<source>Temperature maximum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMax, ID: {aae071dc-70d5-4a6a-8daa-3dca0d150bd7})
----------
The name of the StateType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
@ -171,148 +246,76 @@ The name of the StateType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass
The name of the ParamType (ThingClass: indoor, EventType: temperatureMax, ID: {dd30507e-037b-4c74-bcca-e04b94c7c5fe})
----------
The name of the StateType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass indoor</extracomment>
<translation>Temperatur Maximum</translation>
<translation>Temperaturmaximum</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="275"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="278"/>
<source>wifi signal strength</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="237"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="240"/>
<source>Temperature maximum changed</source>
<extracomment>The name of the EventType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
----------
The name of the EventType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass indoor</extracomment>
<translation>Temperaturmaximum geändert</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="243"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="246"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="249"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="252"/>
<source>Temperature minimum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMin, ID: {b71e0c8b-3c94-421e-830e-dab97b6c104e})
----------
The name of the StateType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperatureMin, ID: {ae8bb713-8805-4efd-89a1-bca44a1f1690})
----------
The name of the StateType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass indoor</extracomment>
<translation>Temperaturminimum</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="255"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="258"/>
<source>Temperature minimum changed</source>
<extracomment>The name of the EventType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
----------
The name of the EventType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass indoor</extracomment>
<translation>Temperaturminimum geändert</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="261"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="264"/>
<source>WiFi signal strength</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: wifiStrength, ID: {6ea906d4-5740-454d-a730-6fdb9fa0d624})
----------
The name of the StateType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation>Wi-Fi Signalstärke</translation>
<translation>WiFi Signalstärke</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="128"/>
<source>battery critical changed</source>
<extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation>Batterie kritisch geändert</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="122"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="125"/>
<source>battery critical</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryCritical, ID: {f8aeb144-014d-4ccb-81db-64ffc70f1c97})
----------
The name of the StateType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation>Batterie kritisch</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="152"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="155"/>
<source>humidity changed</source>
<extracomment>The name of the EventType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor
----------
The name of the EventType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass indoor</extracomment>
<translation>Luftfeuchtigkeit geändert</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="140"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="143"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="146"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="149"/>
<source>humidity</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: humidity, ID: {7ba6ddeb-5142-4b87-9729-487fcda394df})
----------
The name of the StateType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: humidity, ID: {e2db5f01-196a-48d1-8874-6b8cbfe0d8c9})
----------
The name of the StateType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass indoor</extracomment>
<translation>Luftfeuchtigkeit</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="206"/>
<source>pressure changed</source>
<extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation>Luftdruck geändert</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="200"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="203"/>
<source>pressure</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: pressure, ID: {03b0a7b7-987d-4d3b-b3f0-21d9f92ad326})
----------
The name of the StateType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation>Luftdruck</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="194"/>
<source>noise changed</source>
<extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation>Geräuschpegel geändert</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="188"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="191"/>
<source>noise</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: noise, ID: {906cea9d-1daf-4e9c-90b9-e40f43052a34})
----------
The name of the StateType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation>Geräuschpegel</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="137"/>
<source>co2 changed</source>
<extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation>CO2 Wert geändert</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="131"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="134"/>
<source>co2</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: co2, ID: {e5710bd1-79fa-4bd4-9052-8416aae909b9})
----------
The name of the StateType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation>CO2 Wert</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="281"/>
<source>wifi signal strength changed</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="267"/>
<source>WiFi signal strength changed</source>
<extracomment>The name of the EventType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation>Wifi Signalstärke geändert</translation>
<translation>WiFi Signalstärke geändert</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="98"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="270"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="273"/>
<source>name</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {719e1f92-a9c8-42d6-83e1-652a0f182209})
----------
The name of the ParamType (ThingClass: indoor, Type: thing, ID: {a97d256c-e159-4aa0-bc71-6bd7cd0688b3})</extracomment>
<translation>Name</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="141"/>
<source>Indoor Station</source>
<extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment>
<translation>Innenstation</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="186"/>
<source>Outdoor Station</source>
<extracomment>The name of the ThingClass ({6cc01d62-7317-4ec4-8ac4-a4cab762c179})</extracomment>
<translation>Außenstation</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="110"/>
<source>base station</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment>
<translation>Basisstation</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="215"/>
<source>signal strength changed</source>
<extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation>Signalstärke geändert</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="209"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="212"/>
<source>signal strength</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: signalStrength, ID: {0faa3d08-9004-46fb-a5aa-a59b75e454cc})
----------
The name of the StateType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation>Signalstärke</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="119"/>
<source>battery changed</source>
<extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation>Batteriestatus geändert</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="113"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="116"/>
<source>battery</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryLevel, ID: {15d8fae1-ba47-42e1-994d-530e8017c965})
----------
The name of the StateType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation>Batterie</translation>
</message>
</context>
</TS>

View File

@ -4,7 +4,22 @@
<context>
<name>IntegrationPluginNetatmo</name>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="88"/>
<location filename="../integrationpluginnetatmo.cpp" line="55"/>
<source>Netatmo server is not reachable.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="57"/>
<source>Please enter the login credentials for your Netatmo account.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="79"/>
<source>Wrong username or password</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="147"/>
<source>Error logging in to Netatmo server.</source>
<translation type="unfinished"></translation>
</message>
@ -12,206 +27,77 @@
<context>
<name>Netatmo</name>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="89"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="92"/>
<source>Netatmo</source>
<extracomment>The name of the vendor ({4b46b4ed-5ec9-4aa4-afc3-92d3f80e6351})
----------
The name of the plugin Netatmo ({69d14951-0c02-4877-bcef-dffdf48b7ccb})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="95"/>
<source>Netatmo Connection</source>
<extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="182"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="185"/>
<source>name</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {719e1f92-a9c8-42d6-83e1-652a0f182209})
----------
The name of the ParamType (ThingClass: indoor, Type: thing, ID: {a97d256c-e159-4aa0-bc71-6bd7cd0688b3})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="272"/>
<source>username</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, Type: thing, ID: {763c2c10-dee5-41c8-9f7e-ded741945e73})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="197"/>
<source>password</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, Type: thing, ID: {c0d892d6-f359-4782-9d7d-8f74a3b53e3e})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="107"/>
<source>available changed</source>
<extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="101"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="104"/>
<source>available</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="84"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="87"/>
<source>Available</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: connected, ID: {2f79bc1d-27ed-480a-b583-728363c83ea6})
----------
The name of the StateType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="86"/>
<source>Indoor Station</source>
<extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="90"/>
<source>Available changed</source>
<extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="176"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="179"/>
<source>mac address</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {73a76c5c-84f5-4e65-8541-457e5aca9bb0})
----------
The name of the ParamType (ThingClass: indoor, Type: thing, ID: {157d470a-e579-4d0e-b879-6b5bfa8e34ae})</extracomment>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="93"/>
<source>Base station</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="170"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="173"/>
<source>last update changed</source>
<extracomment>The name of the EventType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="96"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="99"/>
<source>Battery</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryLevel, ID: {15d8fae1-ba47-42e1-994d-530e8017c965})
----------
The name of the EventType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass indoor</extracomment>
The name of the StateType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="158"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="161"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="164"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="167"/>
<source>last update</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: updateTime, ID: {154aad5c-4998-43c2-b9ee-0b997eb6dd69})
----------
The name of the StateType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: updateTime, ID: {50da9f6b-c350-401c-a72e-2e4036f3975d})
----------
The name of the StateType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass indoor</extracomment>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="102"/>
<source>Battery changed</source>
<extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="230"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="233"/>
<source>temperature changed</source>
<extracomment>The name of the EventType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
----------
The name of the EventType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="218"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="221"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="224"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="227"/>
<source>temperature</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperature, ID: {f98776bd-887e-4b01-a87f-3d8224180563})
----------
The name of the StateType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperature, ID: {3cb25538-e463-40ae-92f9-8f34f0c06b92})
----------
The name of the StateType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="266"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="269"/>
<source>temperature minimum changed</source>
<extracomment>The name of the EventType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
----------
The name of the EventType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="254"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="257"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="260"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="263"/>
<source>temperature minimum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMin, ID: {b71e0c8b-3c94-421e-830e-dab97b6c104e})
----------
The name of the StateType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperatureMin, ID: {ae8bb713-8805-4efd-89a1-bca44a1f1690})
----------
The name of the StateType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="248"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="251"/>
<source>temperature maximum changed</source>
<extracomment>The name of the EventType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
----------
The name of the EventType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="236"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="239"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="242"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="245"/>
<source>temperature maximum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMax, ID: {aae071dc-70d5-4a6a-8daa-3dca0d150bd7})
----------
The name of the StateType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperatureMax, ID: {dd30507e-037b-4c74-bcca-e04b94c7c5fe})
----------
The name of the StateType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="275"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="278"/>
<source>wifi signal strength</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: wifiStrength, ID: {6ea906d4-5740-454d-a730-6fdb9fa0d624})
----------
The name of the StateType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="128"/>
<source>battery critical changed</source>
<extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="122"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="125"/>
<source>battery critical</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="105"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="108"/>
<source>Battery critical</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryCritical, ID: {f8aeb144-014d-4ccb-81db-64ffc70f1c97})
----------
The name of the StateType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="152"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="155"/>
<source>humidity changed</source>
<extracomment>The name of the EventType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor
----------
The name of the EventType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass indoor</extracomment>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="111"/>
<source>Battery critical changed</source>
<extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="140"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="143"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="146"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="149"/>
<source>humidity</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="114"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="117"/>
<source>CO2</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: co2, ID: {e5710bd1-79fa-4bd4-9052-8416aae909b9})
----------
The name of the StateType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="120"/>
<source>CO2 changed</source>
<extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="123"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="126"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="129"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="132"/>
<source>Humidity</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: humidity, ID: {7ba6ddeb-5142-4b87-9729-487fcda394df})
----------
The name of the StateType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor
@ -222,96 +108,213 @@ The name of the StateType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="206"/>
<source>pressure changed</source>
<extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="200"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="203"/>
<source>pressure</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: pressure, ID: {03b0a7b7-987d-4d3b-b3f0-21d9f92ad326})
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="135"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="138"/>
<source>Humidity changed</source>
<extracomment>The name of the EventType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor
----------
The name of the StateType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
The name of the EventType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="194"/>
<source>noise changed</source>
<extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="144"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="147"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="150"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="153"/>
<source>Last update</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: updateTime, ID: {154aad5c-4998-43c2-b9ee-0b997eb6dd69})
----------
The name of the StateType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: updateTime, ID: {50da9f6b-c350-401c-a72e-2e4036f3975d})
----------
The name of the StateType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="188"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="191"/>
<source>noise</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="156"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="159"/>
<source>Last update changed</source>
<extracomment>The name of the EventType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
----------
The name of the EventType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="162"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="165"/>
<source>MAC Address</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {73a76c5c-84f5-4e65-8541-457e5aca9bb0})
----------
The name of the ParamType (ThingClass: indoor, Type: thing, ID: {157d470a-e579-4d0e-b879-6b5bfa8e34ae})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="168"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="171"/>
<source>Netatmo</source>
<extracomment>The name of the vendor ({4b46b4ed-5ec9-4aa4-afc3-92d3f80e6351})
----------
The name of the plugin Netatmo ({69d14951-0c02-4877-bcef-dffdf48b7ccb})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="174"/>
<source>Netatmo Connection</source>
<extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="177"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="180"/>
<source>Noise</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: noise, ID: {906cea9d-1daf-4e9c-90b9-e40f43052a34})
----------
The name of the StateType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="137"/>
<source>co2 changed</source>
<extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="183"/>
<source>Noise changed</source>
<extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="131"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="134"/>
<source>co2</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: co2, ID: {e5710bd1-79fa-4bd4-9052-8416aae909b9})
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="189"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="192"/>
<source>Pressure</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: pressure, ID: {03b0a7b7-987d-4d3b-b3f0-21d9f92ad326})
----------
The name of the StateType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
The name of the StateType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="281"/>
<source>wifi signal strength changed</source>
<extracomment>The name of the EventType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="195"/>
<source>Pressure changed</source>
<extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="98"/>
<source>Outdoor Station</source>
<extracomment>The name of the ThingClass ({6cc01d62-7317-4ec4-8ac4-a4cab762c179})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="110"/>
<source>base station</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="215"/>
<source>signal strength changed</source>
<extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="209"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="212"/>
<source>signal strength</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="198"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="201"/>
<source>Signal strength</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: signalStrength, ID: {0faa3d08-9004-46fb-a5aa-a59b75e454cc})
----------
The name of the StateType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="119"/>
<source>battery changed</source>
<extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="204"/>
<source>Signal strength changed</source>
<extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="113"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="116"/>
<source>battery</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryLevel, ID: {15d8fae1-ba47-42e1-994d-530e8017c965})
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="207"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="210"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="213"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="216"/>
<source>Temperature</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperature, ID: {f98776bd-887e-4b01-a87f-3d8224180563})
----------
The name of the StateType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
The name of the StateType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperature, ID: {3cb25538-e463-40ae-92f9-8f34f0c06b92})
----------
The name of the StateType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="219"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="222"/>
<source>Temperature changed</source>
<extracomment>The name of the EventType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
----------
The name of the EventType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="225"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="228"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="231"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="234"/>
<source>Temperature maximum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMax, ID: {aae071dc-70d5-4a6a-8daa-3dca0d150bd7})
----------
The name of the StateType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperatureMax, ID: {dd30507e-037b-4c74-bcca-e04b94c7c5fe})
----------
The name of the StateType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="237"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="240"/>
<source>Temperature maximum changed</source>
<extracomment>The name of the EventType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
----------
The name of the EventType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="243"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="246"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="249"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="252"/>
<source>Temperature minimum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMin, ID: {b71e0c8b-3c94-421e-830e-dab97b6c104e})
----------
The name of the StateType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperatureMin, ID: {ae8bb713-8805-4efd-89a1-bca44a1f1690})
----------
The name of the StateType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="255"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="258"/>
<source>Temperature minimum changed</source>
<extracomment>The name of the EventType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
----------
The name of the EventType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="261"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="264"/>
<source>WiFi signal strength</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: wifiStrength, ID: {6ea906d4-5740-454d-a730-6fdb9fa0d624})
----------
The name of the StateType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="267"/>
<source>WiFi signal strength changed</source>
<extracomment>The name of the EventType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="270"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="273"/>
<source>name</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {719e1f92-a9c8-42d6-83e1-652a0f182209})
----------
The name of the ParamType (ThingClass: indoor, Type: thing, ID: {a97d256c-e159-4aa0-bc71-6bd7cd0688b3})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="141"/>
<source>Indoor Station</source>
<extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="186"/>
<source>Outdoor Station</source>
<extracomment>The name of the ThingClass ({6cc01d62-7317-4ec4-8ac4-a4cab762c179})</extracomment>
<translation type="unfinished"></translation>
</message>
</context>

View File

@ -4,7 +4,22 @@
<context>
<name>IntegrationPluginNetatmo</name>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="88"/>
<location filename="../integrationpluginnetatmo.cpp" line="55"/>
<source>Netatmo server is not reachable.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="57"/>
<source>Please enter the login credentials for your Netatmo account.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="79"/>
<source>Wrong username or password</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="147"/>
<source>Error logging in to Netatmo server.</source>
<translation type="unfinished"></translation>
</message>
@ -12,206 +27,77 @@
<context>
<name>Netatmo</name>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="89"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="92"/>
<source>Netatmo</source>
<extracomment>The name of the vendor ({4b46b4ed-5ec9-4aa4-afc3-92d3f80e6351})
----------
The name of the plugin Netatmo ({69d14951-0c02-4877-bcef-dffdf48b7ccb})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="95"/>
<source>Netatmo Connection</source>
<extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment>
<translation>Conexión Netatmo</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="182"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="185"/>
<source>name</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {719e1f92-a9c8-42d6-83e1-652a0f182209})
----------
The name of the ParamType (ThingClass: indoor, Type: thing, ID: {a97d256c-e159-4aa0-bc71-6bd7cd0688b3})</extracomment>
<translation>nombre</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="272"/>
<source>username</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, Type: thing, ID: {763c2c10-dee5-41c8-9f7e-ded741945e73})</extracomment>
<translation>nombre de usuario</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="197"/>
<source>password</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, Type: thing, ID: {c0d892d6-f359-4782-9d7d-8f74a3b53e3e})</extracomment>
<translation>contraseña</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="107"/>
<source>available changed</source>
<extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation>disponibilidad modificada</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="101"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="104"/>
<source>available</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="84"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="87"/>
<source>Available</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: connected, ID: {2f79bc1d-27ed-480a-b583-728363c83ea6})
----------
The name of the StateType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation>disponible</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="86"/>
<source>Indoor Station</source>
<extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment>
<translation>Estación interior</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="176"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="179"/>
<source>mac address</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {73a76c5c-84f5-4e65-8541-457e5aca9bb0})
----------
The name of the ParamType (ThingClass: indoor, Type: thing, ID: {157d470a-e579-4d0e-b879-6b5bfa8e34ae})</extracomment>
<translation>dirección mac</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="170"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="173"/>
<source>last update changed</source>
<extracomment>The name of the EventType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
----------
The name of the EventType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass indoor</extracomment>
<translation>última actualización modificada</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="158"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="161"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="164"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="167"/>
<source>last update</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: updateTime, ID: {154aad5c-4998-43c2-b9ee-0b997eb6dd69})
----------
The name of the StateType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: updateTime, ID: {50da9f6b-c350-401c-a72e-2e4036f3975d})
----------
The name of the StateType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass indoor</extracomment>
<translation>última actualización</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="230"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="233"/>
<source>temperature changed</source>
<extracomment>The name of the EventType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
----------
The name of the EventType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass indoor</extracomment>
<translation>temperatura modificada</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="218"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="221"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="224"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="227"/>
<source>temperature</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperature, ID: {f98776bd-887e-4b01-a87f-3d8224180563})
----------
The name of the StateType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperature, ID: {3cb25538-e463-40ae-92f9-8f34f0c06b92})
----------
The name of the StateType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass indoor</extracomment>
<translation>temperatura</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="266"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="269"/>
<source>temperature minimum changed</source>
<extracomment>The name of the EventType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
----------
The name of the EventType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass indoor</extracomment>
<translation>temperatura mínima modificada</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="254"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="257"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="260"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="263"/>
<source>temperature minimum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMin, ID: {b71e0c8b-3c94-421e-830e-dab97b6c104e})
----------
The name of the StateType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperatureMin, ID: {ae8bb713-8805-4efd-89a1-bca44a1f1690})
----------
The name of the StateType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass indoor</extracomment>
<translation>temperatura mínima</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="248"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="251"/>
<source>temperature maximum changed</source>
<extracomment>The name of the EventType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
----------
The name of the EventType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass indoor</extracomment>
<translation>temperatura máxima modificada</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="236"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="239"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="242"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="245"/>
<source>temperature maximum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMax, ID: {aae071dc-70d5-4a6a-8daa-3dca0d150bd7})
----------
The name of the StateType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperatureMax, ID: {dd30507e-037b-4c74-bcca-e04b94c7c5fe})
----------
The name of the StateType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass indoor</extracomment>
<translation>temperatura máxima</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="275"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="278"/>
<source>wifi signal strength</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: wifiStrength, ID: {6ea906d4-5740-454d-a730-6fdb9fa0d624})
----------
The name of the StateType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation>fuerza de señal wifi</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="128"/>
<source>battery critical changed</source>
<extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="122"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="125"/>
<source>battery critical</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="90"/>
<source>Available changed</source>
<extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="93"/>
<source>Base station</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="96"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="99"/>
<source>Battery</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryLevel, ID: {15d8fae1-ba47-42e1-994d-530e8017c965})
----------
The name of the StateType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="102"/>
<source>Battery changed</source>
<extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="105"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="108"/>
<source>Battery critical</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryCritical, ID: {f8aeb144-014d-4ccb-81db-64ffc70f1c97})
----------
The name of the StateType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="152"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="155"/>
<source>humidity changed</source>
<extracomment>The name of the EventType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor
----------
The name of the EventType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass indoor</extracomment>
<translation>humedad modificada</translation>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="111"/>
<source>Battery critical changed</source>
<extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="140"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="143"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="146"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="149"/>
<source>humidity</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="114"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="117"/>
<source>CO2</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: co2, ID: {e5710bd1-79fa-4bd4-9052-8416aae909b9})
----------
The name of the StateType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="120"/>
<source>CO2 changed</source>
<extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="123"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="126"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="129"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="132"/>
<source>Humidity</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: humidity, ID: {7ba6ddeb-5142-4b87-9729-487fcda394df})
----------
The name of the StateType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor
@ -219,100 +105,217 @@ The name of the StateType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass
The name of the ParamType (ThingClass: indoor, EventType: humidity, ID: {e2db5f01-196a-48d1-8874-6b8cbfe0d8c9})
----------
The name of the StateType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass indoor</extracomment>
<translation>humedad</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="206"/>
<source>pressure changed</source>
<extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation>presión modificada</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="200"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="203"/>
<source>pressure</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: pressure, ID: {03b0a7b7-987d-4d3b-b3f0-21d9f92ad326})
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="135"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="138"/>
<source>Humidity changed</source>
<extracomment>The name of the EventType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor
----------
The name of the StateType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation>presión</translation>
The name of the EventType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="194"/>
<source>noise changed</source>
<extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation>ruido modificado</translation>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="144"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="147"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="150"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="153"/>
<source>Last update</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: updateTime, ID: {154aad5c-4998-43c2-b9ee-0b997eb6dd69})
----------
The name of the StateType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: updateTime, ID: {50da9f6b-c350-401c-a72e-2e4036f3975d})
----------
The name of the StateType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="188"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="191"/>
<source>noise</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="156"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="159"/>
<source>Last update changed</source>
<extracomment>The name of the EventType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
----------
The name of the EventType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="162"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="165"/>
<source>MAC Address</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {73a76c5c-84f5-4e65-8541-457e5aca9bb0})
----------
The name of the ParamType (ThingClass: indoor, Type: thing, ID: {157d470a-e579-4d0e-b879-6b5bfa8e34ae})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="168"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="171"/>
<source>Netatmo</source>
<extracomment>The name of the vendor ({4b46b4ed-5ec9-4aa4-afc3-92d3f80e6351})
----------
The name of the plugin Netatmo ({69d14951-0c02-4877-bcef-dffdf48b7ccb})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="174"/>
<source>Netatmo Connection</source>
<extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment>
<translation>Conexión Netatmo</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="177"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="180"/>
<source>Noise</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: noise, ID: {906cea9d-1daf-4e9c-90b9-e40f43052a34})
----------
The name of the StateType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation>ruido</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="137"/>
<source>co2 changed</source>
<extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation>co2 modificado</translation>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="183"/>
<source>Noise changed</source>
<extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="131"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="134"/>
<source>co2</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: co2, ID: {e5710bd1-79fa-4bd4-9052-8416aae909b9})
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="189"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="192"/>
<source>Pressure</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: pressure, ID: {03b0a7b7-987d-4d3b-b3f0-21d9f92ad326})
----------
The name of the StateType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation>co2</translation>
The name of the StateType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="281"/>
<source>wifi signal strength changed</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="195"/>
<source>Pressure changed</source>
<extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="198"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="201"/>
<source>Signal strength</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: signalStrength, ID: {0faa3d08-9004-46fb-a5aa-a59b75e454cc})
----------
The name of the StateType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="204"/>
<source>Signal strength changed</source>
<extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="207"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="210"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="213"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="216"/>
<source>Temperature</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperature, ID: {f98776bd-887e-4b01-a87f-3d8224180563})
----------
The name of the StateType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperature, ID: {3cb25538-e463-40ae-92f9-8f34f0c06b92})
----------
The name of the StateType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="219"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="222"/>
<source>Temperature changed</source>
<extracomment>The name of the EventType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
----------
The name of the EventType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="225"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="228"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="231"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="234"/>
<source>Temperature maximum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMax, ID: {aae071dc-70d5-4a6a-8daa-3dca0d150bd7})
----------
The name of the StateType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperatureMax, ID: {dd30507e-037b-4c74-bcca-e04b94c7c5fe})
----------
The name of the StateType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="237"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="240"/>
<source>Temperature maximum changed</source>
<extracomment>The name of the EventType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
----------
The name of the EventType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="243"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="246"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="249"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="252"/>
<source>Temperature minimum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMin, ID: {b71e0c8b-3c94-421e-830e-dab97b6c104e})
----------
The name of the StateType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperatureMin, ID: {ae8bb713-8805-4efd-89a1-bca44a1f1690})
----------
The name of the StateType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="255"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="258"/>
<source>Temperature minimum changed</source>
<extracomment>The name of the EventType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
----------
The name of the EventType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="261"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="264"/>
<source>WiFi signal strength</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: wifiStrength, ID: {6ea906d4-5740-454d-a730-6fdb9fa0d624})
----------
The name of the StateType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="267"/>
<source>WiFi signal strength changed</source>
<extracomment>The name of the EventType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation>fuerza de señal wifi modificada</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="98"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="270"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="273"/>
<source>name</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {719e1f92-a9c8-42d6-83e1-652a0f182209})
----------
The name of the ParamType (ThingClass: indoor, Type: thing, ID: {a97d256c-e159-4aa0-bc71-6bd7cd0688b3})</extracomment>
<translation>nombre</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="141"/>
<source>Indoor Station</source>
<extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment>
<translation>Estación interior</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="186"/>
<source>Outdoor Station</source>
<extracomment>The name of the ThingClass ({6cc01d62-7317-4ec4-8ac4-a4cab762c179})</extracomment>
<translation>Estación exterior</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="110"/>
<source>base station</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment>
<translation>estación base</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="215"/>
<source>signal strength changed</source>
<extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation>fuerza de señal modificada</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="209"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="212"/>
<source>signal strength</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: signalStrength, ID: {0faa3d08-9004-46fb-a5aa-a59b75e454cc})
----------
The name of the StateType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation>fuerza de señal</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="119"/>
<source>battery changed</source>
<extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation>batería modificada</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="113"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="116"/>
<source>battery</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryLevel, ID: {15d8fae1-ba47-42e1-994d-530e8017c965})
----------
The name of the StateType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation>batería</translation>
</message>
</context>
</TS>

View File

@ -4,7 +4,22 @@
<context>
<name>IntegrationPluginNetatmo</name>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="88"/>
<location filename="../integrationpluginnetatmo.cpp" line="55"/>
<source>Netatmo server is not reachable.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="57"/>
<source>Please enter the login credentials for your Netatmo account.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="79"/>
<source>Wrong username or password</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="147"/>
<source>Error logging in to Netatmo server.</source>
<translation type="unfinished"></translation>
</message>
@ -12,206 +27,77 @@
<context>
<name>Netatmo</name>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="89"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="92"/>
<source>Netatmo</source>
<extracomment>The name of the vendor ({4b46b4ed-5ec9-4aa4-afc3-92d3f80e6351})
----------
The name of the plugin Netatmo ({69d14951-0c02-4877-bcef-dffdf48b7ccb})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="95"/>
<source>Netatmo Connection</source>
<extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment>
<translation>Connexion Netatmo</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="182"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="185"/>
<source>name</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {719e1f92-a9c8-42d6-83e1-652a0f182209})
----------
The name of the ParamType (ThingClass: indoor, Type: thing, ID: {a97d256c-e159-4aa0-bc71-6bd7cd0688b3})</extracomment>
<translation>Nom</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="272"/>
<source>username</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, Type: thing, ID: {763c2c10-dee5-41c8-9f7e-ded741945e73})</extracomment>
<translation>Nom dutilisateur</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="197"/>
<source>password</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, Type: thing, ID: {c0d892d6-f359-4782-9d7d-8f74a3b53e3e})</extracomment>
<translation>Mot de passe</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="107"/>
<source>available changed</source>
<extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation>Disponibilité modifiée</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="101"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="104"/>
<source>available</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="84"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="87"/>
<source>Available</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: connected, ID: {2f79bc1d-27ed-480a-b583-728363c83ea6})
----------
The name of the StateType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation>Disponible</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="86"/>
<source>Indoor Station</source>
<extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment>
<translation>Station intérieure</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="176"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="179"/>
<source>mac address</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {73a76c5c-84f5-4e65-8541-457e5aca9bb0})
----------
The name of the ParamType (ThingClass: indoor, Type: thing, ID: {157d470a-e579-4d0e-b879-6b5bfa8e34ae})</extracomment>
<translation>Adresse MAC</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="170"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="173"/>
<source>last update changed</source>
<extracomment>The name of the EventType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
----------
The name of the EventType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass indoor</extracomment>
<translation>Dernière mise à jour modifiée</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="158"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="161"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="164"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="167"/>
<source>last update</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: updateTime, ID: {154aad5c-4998-43c2-b9ee-0b997eb6dd69})
----------
The name of the StateType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: updateTime, ID: {50da9f6b-c350-401c-a72e-2e4036f3975d})
----------
The name of the StateType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass indoor</extracomment>
<translation>Dernière mise à jour</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="230"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="233"/>
<source>temperature changed</source>
<extracomment>The name of the EventType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
----------
The name of the EventType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass indoor</extracomment>
<translation>Température modifiée</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="218"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="221"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="224"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="227"/>
<source>temperature</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperature, ID: {f98776bd-887e-4b01-a87f-3d8224180563})
----------
The name of the StateType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperature, ID: {3cb25538-e463-40ae-92f9-8f34f0c06b92})
----------
The name of the StateType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass indoor</extracomment>
<translation>Température</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="266"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="269"/>
<source>temperature minimum changed</source>
<extracomment>The name of the EventType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
----------
The name of the EventType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass indoor</extracomment>
<translation>Température minimale modifiée</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="254"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="257"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="260"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="263"/>
<source>temperature minimum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMin, ID: {b71e0c8b-3c94-421e-830e-dab97b6c104e})
----------
The name of the StateType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperatureMin, ID: {ae8bb713-8805-4efd-89a1-bca44a1f1690})
----------
The name of the StateType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass indoor</extracomment>
<translation>Température minimale</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="248"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="251"/>
<source>temperature maximum changed</source>
<extracomment>The name of the EventType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
----------
The name of the EventType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass indoor</extracomment>
<translation>Température maximale modifiée</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="236"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="239"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="242"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="245"/>
<source>temperature maximum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMax, ID: {aae071dc-70d5-4a6a-8daa-3dca0d150bd7})
----------
The name of the StateType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperatureMax, ID: {dd30507e-037b-4c74-bcca-e04b94c7c5fe})
----------
The name of the StateType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass indoor</extracomment>
<translation>Température maximale</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="275"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="278"/>
<source>wifi signal strength</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: wifiStrength, ID: {6ea906d4-5740-454d-a730-6fdb9fa0d624})
----------
The name of the StateType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation>Signal WiFi modifié</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="128"/>
<source>battery critical changed</source>
<extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="122"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="125"/>
<source>battery critical</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="90"/>
<source>Available changed</source>
<extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="93"/>
<source>Base station</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="96"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="99"/>
<source>Battery</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryLevel, ID: {15d8fae1-ba47-42e1-994d-530e8017c965})
----------
The name of the StateType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="102"/>
<source>Battery changed</source>
<extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="105"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="108"/>
<source>Battery critical</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryCritical, ID: {f8aeb144-014d-4ccb-81db-64ffc70f1c97})
----------
The name of the StateType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="152"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="155"/>
<source>humidity changed</source>
<extracomment>The name of the EventType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor
----------
The name of the EventType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass indoor</extracomment>
<translation>Humidité modifiée</translation>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="111"/>
<source>Battery critical changed</source>
<extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="140"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="143"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="146"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="149"/>
<source>humidity</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="114"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="117"/>
<source>CO2</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: co2, ID: {e5710bd1-79fa-4bd4-9052-8416aae909b9})
----------
The name of the StateType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="120"/>
<source>CO2 changed</source>
<extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="123"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="126"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="129"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="132"/>
<source>Humidity</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: humidity, ID: {7ba6ddeb-5142-4b87-9729-487fcda394df})
----------
The name of the StateType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor
@ -219,100 +105,217 @@ The name of the StateType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass
The name of the ParamType (ThingClass: indoor, EventType: humidity, ID: {e2db5f01-196a-48d1-8874-6b8cbfe0d8c9})
----------
The name of the StateType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass indoor</extracomment>
<translation>Humidité</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="206"/>
<source>pressure changed</source>
<extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation>Pression modifiée</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="200"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="203"/>
<source>pressure</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: pressure, ID: {03b0a7b7-987d-4d3b-b3f0-21d9f92ad326})
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="135"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="138"/>
<source>Humidity changed</source>
<extracomment>The name of the EventType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor
----------
The name of the StateType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation>Pression</translation>
The name of the EventType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="194"/>
<source>noise changed</source>
<extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation>Puissance acoustique modifiée</translation>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="144"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="147"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="150"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="153"/>
<source>Last update</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: updateTime, ID: {154aad5c-4998-43c2-b9ee-0b997eb6dd69})
----------
The name of the StateType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: updateTime, ID: {50da9f6b-c350-401c-a72e-2e4036f3975d})
----------
The name of the StateType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="188"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="191"/>
<source>noise</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="156"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="159"/>
<source>Last update changed</source>
<extracomment>The name of the EventType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
----------
The name of the EventType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="162"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="165"/>
<source>MAC Address</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {73a76c5c-84f5-4e65-8541-457e5aca9bb0})
----------
The name of the ParamType (ThingClass: indoor, Type: thing, ID: {157d470a-e579-4d0e-b879-6b5bfa8e34ae})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="168"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="171"/>
<source>Netatmo</source>
<extracomment>The name of the vendor ({4b46b4ed-5ec9-4aa4-afc3-92d3f80e6351})
----------
The name of the plugin Netatmo ({69d14951-0c02-4877-bcef-dffdf48b7ccb})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="174"/>
<source>Netatmo Connection</source>
<extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment>
<translation>Connexion Netatmo</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="177"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="180"/>
<source>Noise</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: noise, ID: {906cea9d-1daf-4e9c-90b9-e40f43052a34})
----------
The name of the StateType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation>Puissance acoustique</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="137"/>
<source>co2 changed</source>
<extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation>Valeur CO2 modifiée</translation>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="183"/>
<source>Noise changed</source>
<extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="131"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="134"/>
<source>co2</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: co2, ID: {e5710bd1-79fa-4bd4-9052-8416aae909b9})
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="189"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="192"/>
<source>Pressure</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: pressure, ID: {03b0a7b7-987d-4d3b-b3f0-21d9f92ad326})
----------
The name of the StateType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation>Valeur CO2</translation>
The name of the StateType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="281"/>
<source>wifi signal strength changed</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="195"/>
<source>Pressure changed</source>
<extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="198"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="201"/>
<source>Signal strength</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: signalStrength, ID: {0faa3d08-9004-46fb-a5aa-a59b75e454cc})
----------
The name of the StateType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="204"/>
<source>Signal strength changed</source>
<extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="207"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="210"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="213"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="216"/>
<source>Temperature</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperature, ID: {f98776bd-887e-4b01-a87f-3d8224180563})
----------
The name of the StateType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperature, ID: {3cb25538-e463-40ae-92f9-8f34f0c06b92})
----------
The name of the StateType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="219"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="222"/>
<source>Temperature changed</source>
<extracomment>The name of the EventType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
----------
The name of the EventType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="225"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="228"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="231"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="234"/>
<source>Temperature maximum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMax, ID: {aae071dc-70d5-4a6a-8daa-3dca0d150bd7})
----------
The name of the StateType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperatureMax, ID: {dd30507e-037b-4c74-bcca-e04b94c7c5fe})
----------
The name of the StateType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="237"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="240"/>
<source>Temperature maximum changed</source>
<extracomment>The name of the EventType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
----------
The name of the EventType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="243"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="246"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="249"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="252"/>
<source>Temperature minimum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMin, ID: {b71e0c8b-3c94-421e-830e-dab97b6c104e})
----------
The name of the StateType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperatureMin, ID: {ae8bb713-8805-4efd-89a1-bca44a1f1690})
----------
The name of the StateType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="255"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="258"/>
<source>Temperature minimum changed</source>
<extracomment>The name of the EventType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
----------
The name of the EventType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="261"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="264"/>
<source>WiFi signal strength</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: wifiStrength, ID: {6ea906d4-5740-454d-a730-6fdb9fa0d624})
----------
The name of the StateType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="267"/>
<source>WiFi signal strength changed</source>
<extracomment>The name of the EventType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation>Puissance du signal WiFi modifiée</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="98"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="270"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="273"/>
<source>name</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {719e1f92-a9c8-42d6-83e1-652a0f182209})
----------
The name of the ParamType (ThingClass: indoor, Type: thing, ID: {a97d256c-e159-4aa0-bc71-6bd7cd0688b3})</extracomment>
<translation>Nom</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="141"/>
<source>Indoor Station</source>
<extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment>
<translation>Station intérieure</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="186"/>
<source>Outdoor Station</source>
<extracomment>The name of the ThingClass ({6cc01d62-7317-4ec4-8ac4-a4cab762c179})</extracomment>
<translation>Station extérieure</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="110"/>
<source>base station</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment>
<translation>Station de base</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="215"/>
<source>signal strength changed</source>
<extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation>Puissance du signal modifiée</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="209"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="212"/>
<source>signal strength</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: signalStrength, ID: {0faa3d08-9004-46fb-a5aa-a59b75e454cc})
----------
The name of the StateType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation>Puissance du signal</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="119"/>
<source>battery changed</source>
<extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation>Batterie changée</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="113"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="116"/>
<source>battery</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryLevel, ID: {15d8fae1-ba47-42e1-994d-530e8017c965})
----------
The name of the StateType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation>Batterie</translation>
</message>
</context>
</TS>

View File

@ -4,7 +4,22 @@
<context>
<name>IntegrationPluginNetatmo</name>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="88"/>
<location filename="../integrationpluginnetatmo.cpp" line="55"/>
<source>Netatmo server is not reachable.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="57"/>
<source>Please enter the login credentials for your Netatmo account.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="79"/>
<source>Wrong username or password</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="147"/>
<source>Error logging in to Netatmo server.</source>
<translation type="unfinished"></translation>
</message>
@ -12,206 +27,77 @@
<context>
<name>Netatmo</name>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="89"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="92"/>
<source>Netatmo</source>
<extracomment>The name of the vendor ({4b46b4ed-5ec9-4aa4-afc3-92d3f80e6351})
----------
The name of the plugin Netatmo ({69d14951-0c02-4877-bcef-dffdf48b7ccb})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="95"/>
<source>Netatmo Connection</source>
<extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment>
<translation>Connessione Netatmo</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="182"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="185"/>
<source>name</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {719e1f92-a9c8-42d6-83e1-652a0f182209})
----------
The name of the ParamType (ThingClass: indoor, Type: thing, ID: {a97d256c-e159-4aa0-bc71-6bd7cd0688b3})</extracomment>
<translation>nome</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="272"/>
<source>username</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, Type: thing, ID: {763c2c10-dee5-41c8-9f7e-ded741945e73})</extracomment>
<translation>nome utente</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="197"/>
<source>password</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, Type: thing, ID: {c0d892d6-f359-4782-9d7d-8f74a3b53e3e})</extracomment>
<translation>password</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="107"/>
<source>available changed</source>
<extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation>disponibile modificato</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="101"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="104"/>
<source>available</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="84"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="87"/>
<source>Available</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: connected, ID: {2f79bc1d-27ed-480a-b583-728363c83ea6})
----------
The name of the StateType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation>disponibile</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="86"/>
<source>Indoor Station</source>
<extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment>
<translation>Stazione interna</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="176"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="179"/>
<source>mac address</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {73a76c5c-84f5-4e65-8541-457e5aca9bb0})
----------
The name of the ParamType (ThingClass: indoor, Type: thing, ID: {157d470a-e579-4d0e-b879-6b5bfa8e34ae})</extracomment>
<translation>indirizzo mac</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="170"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="173"/>
<source>last update changed</source>
<extracomment>The name of the EventType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
----------
The name of the EventType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass indoor</extracomment>
<translation>ultimo aggiornamento modificato</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="158"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="161"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="164"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="167"/>
<source>last update</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: updateTime, ID: {154aad5c-4998-43c2-b9ee-0b997eb6dd69})
----------
The name of the StateType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: updateTime, ID: {50da9f6b-c350-401c-a72e-2e4036f3975d})
----------
The name of the StateType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass indoor</extracomment>
<translation>ultimo aggiornamento</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="230"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="233"/>
<source>temperature changed</source>
<extracomment>The name of the EventType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
----------
The name of the EventType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass indoor</extracomment>
<translation>temperatura modificata</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="218"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="221"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="224"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="227"/>
<source>temperature</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperature, ID: {f98776bd-887e-4b01-a87f-3d8224180563})
----------
The name of the StateType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperature, ID: {3cb25538-e463-40ae-92f9-8f34f0c06b92})
----------
The name of the StateType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass indoor</extracomment>
<translation>temperatura</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="266"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="269"/>
<source>temperature minimum changed</source>
<extracomment>The name of the EventType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
----------
The name of the EventType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass indoor</extracomment>
<translation>temperatura minima modificata</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="254"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="257"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="260"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="263"/>
<source>temperature minimum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMin, ID: {b71e0c8b-3c94-421e-830e-dab97b6c104e})
----------
The name of the StateType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperatureMin, ID: {ae8bb713-8805-4efd-89a1-bca44a1f1690})
----------
The name of the StateType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass indoor</extracomment>
<translation>temperatura minima</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="248"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="251"/>
<source>temperature maximum changed</source>
<extracomment>The name of the EventType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
----------
The name of the EventType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass indoor</extracomment>
<translation>temperatura massima modificata</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="236"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="239"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="242"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="245"/>
<source>temperature maximum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMax, ID: {aae071dc-70d5-4a6a-8daa-3dca0d150bd7})
----------
The name of the StateType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperatureMax, ID: {dd30507e-037b-4c74-bcca-e04b94c7c5fe})
----------
The name of the StateType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass indoor</extracomment>
<translation>temperatura massima</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="275"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="278"/>
<source>wifi signal strength</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: wifiStrength, ID: {6ea906d4-5740-454d-a730-6fdb9fa0d624})
----------
The name of the StateType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation>forza segnale wifi</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="128"/>
<source>battery critical changed</source>
<extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="122"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="125"/>
<source>battery critical</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="90"/>
<source>Available changed</source>
<extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="93"/>
<source>Base station</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="96"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="99"/>
<source>Battery</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryLevel, ID: {15d8fae1-ba47-42e1-994d-530e8017c965})
----------
The name of the StateType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="102"/>
<source>Battery changed</source>
<extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="105"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="108"/>
<source>Battery critical</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryCritical, ID: {f8aeb144-014d-4ccb-81db-64ffc70f1c97})
----------
The name of the StateType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="152"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="155"/>
<source>humidity changed</source>
<extracomment>The name of the EventType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor
----------
The name of the EventType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass indoor</extracomment>
<translation>umidità modificata</translation>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="111"/>
<source>Battery critical changed</source>
<extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="140"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="143"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="146"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="149"/>
<source>humidity</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="114"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="117"/>
<source>CO2</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: co2, ID: {e5710bd1-79fa-4bd4-9052-8416aae909b9})
----------
The name of the StateType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="120"/>
<source>CO2 changed</source>
<extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="123"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="126"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="129"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="132"/>
<source>Humidity</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: humidity, ID: {7ba6ddeb-5142-4b87-9729-487fcda394df})
----------
The name of the StateType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor
@ -219,100 +105,217 @@ The name of the StateType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass
The name of the ParamType (ThingClass: indoor, EventType: humidity, ID: {e2db5f01-196a-48d1-8874-6b8cbfe0d8c9})
----------
The name of the StateType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass indoor</extracomment>
<translation>umidità</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="206"/>
<source>pressure changed</source>
<extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation>pressione modificata</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="200"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="203"/>
<source>pressure</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: pressure, ID: {03b0a7b7-987d-4d3b-b3f0-21d9f92ad326})
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="135"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="138"/>
<source>Humidity changed</source>
<extracomment>The name of the EventType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor
----------
The name of the StateType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation>pressione</translation>
The name of the EventType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="194"/>
<source>noise changed</source>
<extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation>rumore modificato</translation>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="144"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="147"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="150"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="153"/>
<source>Last update</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: updateTime, ID: {154aad5c-4998-43c2-b9ee-0b997eb6dd69})
----------
The name of the StateType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: updateTime, ID: {50da9f6b-c350-401c-a72e-2e4036f3975d})
----------
The name of the StateType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="188"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="191"/>
<source>noise</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="156"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="159"/>
<source>Last update changed</source>
<extracomment>The name of the EventType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
----------
The name of the EventType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="162"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="165"/>
<source>MAC Address</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {73a76c5c-84f5-4e65-8541-457e5aca9bb0})
----------
The name of the ParamType (ThingClass: indoor, Type: thing, ID: {157d470a-e579-4d0e-b879-6b5bfa8e34ae})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="168"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="171"/>
<source>Netatmo</source>
<extracomment>The name of the vendor ({4b46b4ed-5ec9-4aa4-afc3-92d3f80e6351})
----------
The name of the plugin Netatmo ({69d14951-0c02-4877-bcef-dffdf48b7ccb})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="174"/>
<source>Netatmo Connection</source>
<extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment>
<translation>Connessione Netatmo</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="177"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="180"/>
<source>Noise</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: noise, ID: {906cea9d-1daf-4e9c-90b9-e40f43052a34})
----------
The name of the StateType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation>rumore</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="137"/>
<source>co2 changed</source>
<extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation>co2 modificata</translation>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="183"/>
<source>Noise changed</source>
<extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="131"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="134"/>
<source>co2</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: co2, ID: {e5710bd1-79fa-4bd4-9052-8416aae909b9})
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="189"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="192"/>
<source>Pressure</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: pressure, ID: {03b0a7b7-987d-4d3b-b3f0-21d9f92ad326})
----------
The name of the StateType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation>co2</translation>
The name of the StateType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="281"/>
<source>wifi signal strength changed</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="195"/>
<source>Pressure changed</source>
<extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="198"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="201"/>
<source>Signal strength</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: signalStrength, ID: {0faa3d08-9004-46fb-a5aa-a59b75e454cc})
----------
The name of the StateType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="204"/>
<source>Signal strength changed</source>
<extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="207"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="210"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="213"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="216"/>
<source>Temperature</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperature, ID: {f98776bd-887e-4b01-a87f-3d8224180563})
----------
The name of the StateType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperature, ID: {3cb25538-e463-40ae-92f9-8f34f0c06b92})
----------
The name of the StateType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="219"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="222"/>
<source>Temperature changed</source>
<extracomment>The name of the EventType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
----------
The name of the EventType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="225"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="228"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="231"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="234"/>
<source>Temperature maximum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMax, ID: {aae071dc-70d5-4a6a-8daa-3dca0d150bd7})
----------
The name of the StateType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperatureMax, ID: {dd30507e-037b-4c74-bcca-e04b94c7c5fe})
----------
The name of the StateType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="237"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="240"/>
<source>Temperature maximum changed</source>
<extracomment>The name of the EventType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
----------
The name of the EventType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="243"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="246"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="249"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="252"/>
<source>Temperature minimum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMin, ID: {b71e0c8b-3c94-421e-830e-dab97b6c104e})
----------
The name of the StateType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperatureMin, ID: {ae8bb713-8805-4efd-89a1-bca44a1f1690})
----------
The name of the StateType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="255"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="258"/>
<source>Temperature minimum changed</source>
<extracomment>The name of the EventType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
----------
The name of the EventType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="261"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="264"/>
<source>WiFi signal strength</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: wifiStrength, ID: {6ea906d4-5740-454d-a730-6fdb9fa0d624})
----------
The name of the StateType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="267"/>
<source>WiFi signal strength changed</source>
<extracomment>The name of the EventType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation>forza segnale wifi modificata</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="98"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="270"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="273"/>
<source>name</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {719e1f92-a9c8-42d6-83e1-652a0f182209})
----------
The name of the ParamType (ThingClass: indoor, Type: thing, ID: {a97d256c-e159-4aa0-bc71-6bd7cd0688b3})</extracomment>
<translation>nome</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="141"/>
<source>Indoor Station</source>
<extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment>
<translation>Stazione interna</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="186"/>
<source>Outdoor Station</source>
<extracomment>The name of the ThingClass ({6cc01d62-7317-4ec4-8ac4-a4cab762c179})</extracomment>
<translation>Stazione esterna</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="110"/>
<source>base station</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment>
<translation>stazione base</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="215"/>
<source>signal strength changed</source>
<extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation>forza segnale modificata</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="209"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="212"/>
<source>signal strength</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: signalStrength, ID: {0faa3d08-9004-46fb-a5aa-a59b75e454cc})
----------
The name of the StateType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation>forza segnale</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="119"/>
<source>battery changed</source>
<extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation>batteria modificata</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="113"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="116"/>
<source>battery</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryLevel, ID: {15d8fae1-ba47-42e1-994d-530e8017c965})
----------
The name of the StateType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation>batteria</translation>
</message>
</context>
</TS>

View File

@ -4,7 +4,22 @@
<context>
<name>IntegrationPluginNetatmo</name>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="88"/>
<location filename="../integrationpluginnetatmo.cpp" line="55"/>
<source>Netatmo server is not reachable.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="57"/>
<source>Please enter the login credentials for your Netatmo account.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="79"/>
<source>Wrong username or password</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="147"/>
<source>Error logging in to Netatmo server.</source>
<translation type="unfinished"></translation>
</message>
@ -12,206 +27,77 @@
<context>
<name>Netatmo</name>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="89"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="92"/>
<source>Netatmo</source>
<extracomment>The name of the vendor ({4b46b4ed-5ec9-4aa4-afc3-92d3f80e6351})
----------
The name of the plugin Netatmo ({69d14951-0c02-4877-bcef-dffdf48b7ccb})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="95"/>
<source>Netatmo Connection</source>
<extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment>
<translation>Netatmo-verbinding</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="182"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="185"/>
<source>name</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {719e1f92-a9c8-42d6-83e1-652a0f182209})
----------
The name of the ParamType (ThingClass: indoor, Type: thing, ID: {a97d256c-e159-4aa0-bc71-6bd7cd0688b3})</extracomment>
<translation>naam</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="272"/>
<source>username</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, Type: thing, ID: {763c2c10-dee5-41c8-9f7e-ded741945e73})</extracomment>
<translation>gebruikersnaam</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="197"/>
<source>password</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, Type: thing, ID: {c0d892d6-f359-4782-9d7d-8f74a3b53e3e})</extracomment>
<translation>wachtwoord</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="107"/>
<source>available changed</source>
<extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation>beschikbaar gewijzigd</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="101"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="104"/>
<source>available</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="84"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="87"/>
<source>Available</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: connected, ID: {2f79bc1d-27ed-480a-b583-728363c83ea6})
----------
The name of the StateType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation>beschikbaar</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="86"/>
<source>Indoor Station</source>
<extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment>
<translation>Binnenshuis-station</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="176"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="179"/>
<source>mac address</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {73a76c5c-84f5-4e65-8541-457e5aca9bb0})
----------
The name of the ParamType (ThingClass: indoor, Type: thing, ID: {157d470a-e579-4d0e-b879-6b5bfa8e34ae})</extracomment>
<translation>mac address</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="170"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="173"/>
<source>last update changed</source>
<extracomment>The name of the EventType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
----------
The name of the EventType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass indoor</extracomment>
<translation>laatste update gewijzigd</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="158"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="161"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="164"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="167"/>
<source>last update</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: updateTime, ID: {154aad5c-4998-43c2-b9ee-0b997eb6dd69})
----------
The name of the StateType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: updateTime, ID: {50da9f6b-c350-401c-a72e-2e4036f3975d})
----------
The name of the StateType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass indoor</extracomment>
<translation>laatste update</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="230"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="233"/>
<source>temperature changed</source>
<extracomment>The name of the EventType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
----------
The name of the EventType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass indoor</extracomment>
<translation>temperatuur gewijzigd</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="218"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="221"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="224"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="227"/>
<source>temperature</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperature, ID: {f98776bd-887e-4b01-a87f-3d8224180563})
----------
The name of the StateType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperature, ID: {3cb25538-e463-40ae-92f9-8f34f0c06b92})
----------
The name of the StateType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass indoor</extracomment>
<translation>temperatuur</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="266"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="269"/>
<source>temperature minimum changed</source>
<extracomment>The name of the EventType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
----------
The name of the EventType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass indoor</extracomment>
<translation>temperatuur minimum gewijzigd</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="254"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="257"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="260"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="263"/>
<source>temperature minimum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMin, ID: {b71e0c8b-3c94-421e-830e-dab97b6c104e})
----------
The name of the StateType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperatureMin, ID: {ae8bb713-8805-4efd-89a1-bca44a1f1690})
----------
The name of the StateType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass indoor</extracomment>
<translation>temperatuur minimum</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="248"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="251"/>
<source>temperature maximum changed</source>
<extracomment>The name of the EventType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
----------
The name of the EventType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass indoor</extracomment>
<translation>temperatuur maximum gewijzigd</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="236"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="239"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="242"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="245"/>
<source>temperature maximum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMax, ID: {aae071dc-70d5-4a6a-8daa-3dca0d150bd7})
----------
The name of the StateType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperatureMax, ID: {dd30507e-037b-4c74-bcca-e04b94c7c5fe})
----------
The name of the StateType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass indoor</extracomment>
<translation>temperatuur maximum</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="275"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="278"/>
<source>wifi signal strength</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: wifiStrength, ID: {6ea906d4-5740-454d-a730-6fdb9fa0d624})
----------
The name of the StateType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation>wifi signaalsterkte</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="128"/>
<source>battery critical changed</source>
<extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="122"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="125"/>
<source>battery critical</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="90"/>
<source>Available changed</source>
<extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="93"/>
<source>Base station</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="96"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="99"/>
<source>Battery</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryLevel, ID: {15d8fae1-ba47-42e1-994d-530e8017c965})
----------
The name of the StateType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="102"/>
<source>Battery changed</source>
<extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="105"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="108"/>
<source>Battery critical</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryCritical, ID: {f8aeb144-014d-4ccb-81db-64ffc70f1c97})
----------
The name of the StateType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="152"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="155"/>
<source>humidity changed</source>
<extracomment>The name of the EventType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor
----------
The name of the EventType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass indoor</extracomment>
<translation>luchtvochtigheid gewijzigd</translation>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="111"/>
<source>Battery critical changed</source>
<extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="140"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="143"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="146"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="149"/>
<source>humidity</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="114"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="117"/>
<source>CO2</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: co2, ID: {e5710bd1-79fa-4bd4-9052-8416aae909b9})
----------
The name of the StateType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="120"/>
<source>CO2 changed</source>
<extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="123"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="126"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="129"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="132"/>
<source>Humidity</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: humidity, ID: {7ba6ddeb-5142-4b87-9729-487fcda394df})
----------
The name of the StateType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor
@ -219,100 +105,217 @@ The name of the StateType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass
The name of the ParamType (ThingClass: indoor, EventType: humidity, ID: {e2db5f01-196a-48d1-8874-6b8cbfe0d8c9})
----------
The name of the StateType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass indoor</extracomment>
<translation>luchtvochtigheid</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="206"/>
<source>pressure changed</source>
<extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation>luchtdruk gewijzigd</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="200"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="203"/>
<source>pressure</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: pressure, ID: {03b0a7b7-987d-4d3b-b3f0-21d9f92ad326})
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="135"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="138"/>
<source>Humidity changed</source>
<extracomment>The name of the EventType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor
----------
The name of the StateType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation>luchtdruk</translation>
The name of the EventType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="194"/>
<source>noise changed</source>
<extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation>geluid gewijzigd</translation>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="144"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="147"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="150"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="153"/>
<source>Last update</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: updateTime, ID: {154aad5c-4998-43c2-b9ee-0b997eb6dd69})
----------
The name of the StateType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: updateTime, ID: {50da9f6b-c350-401c-a72e-2e4036f3975d})
----------
The name of the StateType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="188"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="191"/>
<source>noise</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="156"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="159"/>
<source>Last update changed</source>
<extracomment>The name of the EventType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
----------
The name of the EventType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="162"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="165"/>
<source>MAC Address</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {73a76c5c-84f5-4e65-8541-457e5aca9bb0})
----------
The name of the ParamType (ThingClass: indoor, Type: thing, ID: {157d470a-e579-4d0e-b879-6b5bfa8e34ae})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="168"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="171"/>
<source>Netatmo</source>
<extracomment>The name of the vendor ({4b46b4ed-5ec9-4aa4-afc3-92d3f80e6351})
----------
The name of the plugin Netatmo ({69d14951-0c02-4877-bcef-dffdf48b7ccb})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="174"/>
<source>Netatmo Connection</source>
<extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment>
<translation>Netatmo-verbinding</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="177"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="180"/>
<source>Noise</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: noise, ID: {906cea9d-1daf-4e9c-90b9-e40f43052a34})
----------
The name of the StateType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation>geluid</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="137"/>
<source>co2 changed</source>
<extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation>co2 gewijzigd</translation>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="183"/>
<source>Noise changed</source>
<extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="131"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="134"/>
<source>co2</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: co2, ID: {e5710bd1-79fa-4bd4-9052-8416aae909b9})
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="189"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="192"/>
<source>Pressure</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: pressure, ID: {03b0a7b7-987d-4d3b-b3f0-21d9f92ad326})
----------
The name of the StateType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation>co2 </translation>
The name of the StateType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="281"/>
<source>wifi signal strength changed</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="195"/>
<source>Pressure changed</source>
<extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="198"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="201"/>
<source>Signal strength</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: signalStrength, ID: {0faa3d08-9004-46fb-a5aa-a59b75e454cc})
----------
The name of the StateType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="204"/>
<source>Signal strength changed</source>
<extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="207"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="210"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="213"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="216"/>
<source>Temperature</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperature, ID: {f98776bd-887e-4b01-a87f-3d8224180563})
----------
The name of the StateType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperature, ID: {3cb25538-e463-40ae-92f9-8f34f0c06b92})
----------
The name of the StateType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="219"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="222"/>
<source>Temperature changed</source>
<extracomment>The name of the EventType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
----------
The name of the EventType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="225"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="228"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="231"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="234"/>
<source>Temperature maximum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMax, ID: {aae071dc-70d5-4a6a-8daa-3dca0d150bd7})
----------
The name of the StateType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperatureMax, ID: {dd30507e-037b-4c74-bcca-e04b94c7c5fe})
----------
The name of the StateType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="237"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="240"/>
<source>Temperature maximum changed</source>
<extracomment>The name of the EventType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
----------
The name of the EventType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="243"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="246"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="249"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="252"/>
<source>Temperature minimum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMin, ID: {b71e0c8b-3c94-421e-830e-dab97b6c104e})
----------
The name of the StateType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperatureMin, ID: {ae8bb713-8805-4efd-89a1-bca44a1f1690})
----------
The name of the StateType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="255"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="258"/>
<source>Temperature minimum changed</source>
<extracomment>The name of the EventType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
----------
The name of the EventType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="261"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="264"/>
<source>WiFi signal strength</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: wifiStrength, ID: {6ea906d4-5740-454d-a730-6fdb9fa0d624})
----------
The name of the StateType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="267"/>
<source>WiFi signal strength changed</source>
<extracomment>The name of the EventType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation>wifi-signaalsterkte gewijzigd</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="98"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="270"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="273"/>
<source>name</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {719e1f92-a9c8-42d6-83e1-652a0f182209})
----------
The name of the ParamType (ThingClass: indoor, Type: thing, ID: {a97d256c-e159-4aa0-bc71-6bd7cd0688b3})</extracomment>
<translation>naam</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="141"/>
<source>Indoor Station</source>
<extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment>
<translation>Binnenshuis-station</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="186"/>
<source>Outdoor Station</source>
<extracomment>The name of the ThingClass ({6cc01d62-7317-4ec4-8ac4-a4cab762c179})</extracomment>
<translation>Buitenshuis-station</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="110"/>
<source>base station</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment>
<translation>basisstation</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="215"/>
<source>signal strength changed</source>
<extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation>signaalsterkte gewijzigd</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="209"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="212"/>
<source>signal strength</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: signalStrength, ID: {0faa3d08-9004-46fb-a5aa-a59b75e454cc})
----------
The name of the StateType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation>signaalsterkte</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="119"/>
<source>battery changed</source>
<extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation>batterij gewijzigd</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="113"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="116"/>
<source>battery</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryLevel, ID: {15d8fae1-ba47-42e1-994d-530e8017c965})
----------
The name of the StateType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation>batterij</translation>
</message>
</context>
</TS>

View File

@ -4,7 +4,22 @@
<context>
<name>IntegrationPluginNetatmo</name>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="88"/>
<location filename="../integrationpluginnetatmo.cpp" line="55"/>
<source>Netatmo server is not reachable.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="57"/>
<source>Please enter the login credentials for your Netatmo account.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="79"/>
<source>Wrong username or password</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="147"/>
<source>Error logging in to Netatmo server.</source>
<translation type="unfinished"></translation>
</message>
@ -12,206 +27,77 @@
<context>
<name>Netatmo</name>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="89"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="92"/>
<source>Netatmo</source>
<extracomment>The name of the vendor ({4b46b4ed-5ec9-4aa4-afc3-92d3f80e6351})
----------
The name of the plugin Netatmo ({69d14951-0c02-4877-bcef-dffdf48b7ccb})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="95"/>
<source>Netatmo Connection</source>
<extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment>
<translation>Ligação Netatmo</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="182"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="185"/>
<source>name</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {719e1f92-a9c8-42d6-83e1-652a0f182209})
----------
The name of the ParamType (ThingClass: indoor, Type: thing, ID: {a97d256c-e159-4aa0-bc71-6bd7cd0688b3})</extracomment>
<translation>nome</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="272"/>
<source>username</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, Type: thing, ID: {763c2c10-dee5-41c8-9f7e-ded741945e73})</extracomment>
<translation>nome de utilizador</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="197"/>
<source>password</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, Type: thing, ID: {c0d892d6-f359-4782-9d7d-8f74a3b53e3e})</extracomment>
<translation>palavra-passe</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="107"/>
<source>available changed</source>
<extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation>disponível alterado</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="101"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="104"/>
<source>available</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="84"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="87"/>
<source>Available</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: connected, ID: {2f79bc1d-27ed-480a-b583-728363c83ea6})
----------
The name of the StateType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation>disponível</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="86"/>
<source>Indoor Station</source>
<extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment>
<translation>Estação interior</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="176"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="179"/>
<source>mac address</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {73a76c5c-84f5-4e65-8541-457e5aca9bb0})
----------
The name of the ParamType (ThingClass: indoor, Type: thing, ID: {157d470a-e579-4d0e-b879-6b5bfa8e34ae})</extracomment>
<translation>endereço mac</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="170"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="173"/>
<source>last update changed</source>
<extracomment>The name of the EventType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
----------
The name of the EventType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass indoor</extracomment>
<translation>última atualização alterada</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="158"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="161"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="164"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="167"/>
<source>last update</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: updateTime, ID: {154aad5c-4998-43c2-b9ee-0b997eb6dd69})
----------
The name of the StateType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: updateTime, ID: {50da9f6b-c350-401c-a72e-2e4036f3975d})
----------
The name of the StateType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass indoor</extracomment>
<translation>última atualização</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="230"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="233"/>
<source>temperature changed</source>
<extracomment>The name of the EventType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
----------
The name of the EventType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass indoor</extracomment>
<translation>temperatura alterada</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="218"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="221"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="224"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="227"/>
<source>temperature</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperature, ID: {f98776bd-887e-4b01-a87f-3d8224180563})
----------
The name of the StateType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperature, ID: {3cb25538-e463-40ae-92f9-8f34f0c06b92})
----------
The name of the StateType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass indoor</extracomment>
<translation>temperatura</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="266"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="269"/>
<source>temperature minimum changed</source>
<extracomment>The name of the EventType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
----------
The name of the EventType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass indoor</extracomment>
<translation>temperatura mínima alterada</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="254"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="257"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="260"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="263"/>
<source>temperature minimum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMin, ID: {b71e0c8b-3c94-421e-830e-dab97b6c104e})
----------
The name of the StateType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperatureMin, ID: {ae8bb713-8805-4efd-89a1-bca44a1f1690})
----------
The name of the StateType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass indoor</extracomment>
<translation>temperatura mínima</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="248"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="251"/>
<source>temperature maximum changed</source>
<extracomment>The name of the EventType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
----------
The name of the EventType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass indoor</extracomment>
<translation>temperatura máxima alterada</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="236"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="239"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="242"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="245"/>
<source>temperature maximum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMax, ID: {aae071dc-70d5-4a6a-8daa-3dca0d150bd7})
----------
The name of the StateType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperatureMax, ID: {dd30507e-037b-4c74-bcca-e04b94c7c5fe})
----------
The name of the StateType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass indoor</extracomment>
<translation>temperatura máxima</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="275"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="278"/>
<source>wifi signal strength</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: wifiStrength, ID: {6ea906d4-5740-454d-a730-6fdb9fa0d624})
----------
The name of the StateType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation>força sinal WiFi</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="128"/>
<source>battery critical changed</source>
<extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="122"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="125"/>
<source>battery critical</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="90"/>
<source>Available changed</source>
<extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="93"/>
<source>Base station</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="96"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="99"/>
<source>Battery</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryLevel, ID: {15d8fae1-ba47-42e1-994d-530e8017c965})
----------
The name of the StateType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="102"/>
<source>Battery changed</source>
<extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="105"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="108"/>
<source>Battery critical</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryCritical, ID: {f8aeb144-014d-4ccb-81db-64ffc70f1c97})
----------
The name of the StateType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="152"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="155"/>
<source>humidity changed</source>
<extracomment>The name of the EventType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor
----------
The name of the EventType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass indoor</extracomment>
<translation>humidade alterada</translation>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="111"/>
<source>Battery critical changed</source>
<extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="140"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="143"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="146"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="149"/>
<source>humidity</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="114"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="117"/>
<source>CO2</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: co2, ID: {e5710bd1-79fa-4bd4-9052-8416aae909b9})
----------
The name of the StateType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="120"/>
<source>CO2 changed</source>
<extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="123"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="126"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="129"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="132"/>
<source>Humidity</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: humidity, ID: {7ba6ddeb-5142-4b87-9729-487fcda394df})
----------
The name of the StateType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor
@ -219,100 +105,217 @@ The name of the StateType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass
The name of the ParamType (ThingClass: indoor, EventType: humidity, ID: {e2db5f01-196a-48d1-8874-6b8cbfe0d8c9})
----------
The name of the StateType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass indoor</extracomment>
<translation>humidade</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="206"/>
<source>pressure changed</source>
<extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation>pressão alterada</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="200"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="203"/>
<source>pressure</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: pressure, ID: {03b0a7b7-987d-4d3b-b3f0-21d9f92ad326})
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="135"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="138"/>
<source>Humidity changed</source>
<extracomment>The name of the EventType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor
----------
The name of the StateType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation>pressão</translation>
The name of the EventType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="194"/>
<source>noise changed</source>
<extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation>ruido alterado</translation>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="144"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="147"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="150"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="153"/>
<source>Last update</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: updateTime, ID: {154aad5c-4998-43c2-b9ee-0b997eb6dd69})
----------
The name of the StateType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: updateTime, ID: {50da9f6b-c350-401c-a72e-2e4036f3975d})
----------
The name of the StateType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="188"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="191"/>
<source>noise</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="156"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="159"/>
<source>Last update changed</source>
<extracomment>The name of the EventType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
----------
The name of the EventType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="162"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="165"/>
<source>MAC Address</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {73a76c5c-84f5-4e65-8541-457e5aca9bb0})
----------
The name of the ParamType (ThingClass: indoor, Type: thing, ID: {157d470a-e579-4d0e-b879-6b5bfa8e34ae})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="168"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="171"/>
<source>Netatmo</source>
<extracomment>The name of the vendor ({4b46b4ed-5ec9-4aa4-afc3-92d3f80e6351})
----------
The name of the plugin Netatmo ({69d14951-0c02-4877-bcef-dffdf48b7ccb})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="174"/>
<source>Netatmo Connection</source>
<extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment>
<translation>Ligação Netatmo</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="177"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="180"/>
<source>Noise</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: noise, ID: {906cea9d-1daf-4e9c-90b9-e40f43052a34})
----------
The name of the StateType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation>ruido</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="137"/>
<source>co2 changed</source>
<extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation>Co2 alterado</translation>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="183"/>
<source>Noise changed</source>
<extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="131"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="134"/>
<source>co2</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: co2, ID: {e5710bd1-79fa-4bd4-9052-8416aae909b9})
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="189"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="192"/>
<source>Pressure</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: pressure, ID: {03b0a7b7-987d-4d3b-b3f0-21d9f92ad326})
----------
The name of the StateType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation>Co2</translation>
The name of the StateType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="281"/>
<source>wifi signal strength changed</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="195"/>
<source>Pressure changed</source>
<extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="198"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="201"/>
<source>Signal strength</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: signalStrength, ID: {0faa3d08-9004-46fb-a5aa-a59b75e454cc})
----------
The name of the StateType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="204"/>
<source>Signal strength changed</source>
<extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="207"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="210"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="213"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="216"/>
<source>Temperature</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperature, ID: {f98776bd-887e-4b01-a87f-3d8224180563})
----------
The name of the StateType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperature, ID: {3cb25538-e463-40ae-92f9-8f34f0c06b92})
----------
The name of the StateType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="219"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="222"/>
<source>Temperature changed</source>
<extracomment>The name of the EventType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
----------
The name of the EventType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="225"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="228"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="231"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="234"/>
<source>Temperature maximum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMax, ID: {aae071dc-70d5-4a6a-8daa-3dca0d150bd7})
----------
The name of the StateType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperatureMax, ID: {dd30507e-037b-4c74-bcca-e04b94c7c5fe})
----------
The name of the StateType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="237"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="240"/>
<source>Temperature maximum changed</source>
<extracomment>The name of the EventType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
----------
The name of the EventType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="243"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="246"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="249"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="252"/>
<source>Temperature minimum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMin, ID: {b71e0c8b-3c94-421e-830e-dab97b6c104e})
----------
The name of the StateType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
----------
The name of the ParamType (ThingClass: indoor, EventType: temperatureMin, ID: {ae8bb713-8805-4efd-89a1-bca44a1f1690})
----------
The name of the StateType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="255"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="258"/>
<source>Temperature minimum changed</source>
<extracomment>The name of the EventType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
----------
The name of the EventType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="261"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="264"/>
<source>WiFi signal strength</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: wifiStrength, ID: {6ea906d4-5740-454d-a730-6fdb9fa0d624})
----------
The name of the StateType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="267"/>
<source>WiFi signal strength changed</source>
<extracomment>The name of the EventType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation>força sinal WiFi alterada</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="98"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="270"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="273"/>
<source>name</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {719e1f92-a9c8-42d6-83e1-652a0f182209})
----------
The name of the ParamType (ThingClass: indoor, Type: thing, ID: {a97d256c-e159-4aa0-bc71-6bd7cd0688b3})</extracomment>
<translation>nome</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="141"/>
<source>Indoor Station</source>
<extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment>
<translation>Estação interior</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="186"/>
<source>Outdoor Station</source>
<extracomment>The name of the ThingClass ({6cc01d62-7317-4ec4-8ac4-a4cab762c179})</extracomment>
<translation>Estação exterior</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="110"/>
<source>base station</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment>
<translation>estação de base</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="215"/>
<source>signal strength changed</source>
<extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation>força sinal alterada</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="209"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="212"/>
<source>signal strength</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: signalStrength, ID: {0faa3d08-9004-46fb-a5aa-a59b75e454cc})
----------
The name of the StateType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation>força sinal</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="119"/>
<source>battery changed</source>
<extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation>bateria substituída</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="113"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="116"/>
<source>battery</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryLevel, ID: {15d8fae1-ba47-42e1-994d-530e8017c965})
----------
The name of the StateType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation>bateria</translation>
</message>
</context>
</TS>