Merge PR #341: Netatmo: Add api key provider and custom api plugin settings

This commit is contained in:
Jenkins nymea 2020-12-21 18:01:36 +01:00
commit 8b93da3bf6
16 changed files with 1318 additions and 659 deletions

View File

@ -42,17 +42,33 @@ IntegrationPluginNetatmo::IntegrationPluginNetatmo()
} }
void IntegrationPluginNetatmo::init()
{
updateClientCredentials();
connect(this, &IntegrationPlugin::configValueChanged, this, &IntegrationPluginNetatmo::updateClientCredentials);
connect(apiKeyStorage(), &ApiKeyStorage::keyAdded, this, &IntegrationPluginNetatmo::updateClientCredentials);
connect(apiKeyStorage(), &ApiKeyStorage::keyUpdated, this, &IntegrationPluginNetatmo::updateClientCredentials);
}
void IntegrationPluginNetatmo::startPairing(ThingPairingInfo *info) void IntegrationPluginNetatmo::startPairing(ThingPairingInfo *info)
{ {
// Checking the client credentials
if (m_clientId.isEmpty() || m_clientSecret.isEmpty()) {
qCWarning(dcNetatmo()) << "Pairing failed, client credentials are not set";
info->finish(Thing::ThingErrorAuthenticationFailure, QT_TR_NOOP("No API key installed"));
return;
}
// Checking the internet connection // Checking the internet connection
NetworkAccessManager *network = hardwareManager()->networkManager(); NetworkAccessManager *network = hardwareManager()->networkManager();
QNetworkReply *reply = network->get(QNetworkRequest(QUrl("https://api.netatmo.net"))); QNetworkReply *reply = network->get(QNetworkRequest(QUrl("https://api.netatmo.net")));
connect(reply, &QNetworkReply::finished, this, [reply, info] { connect(reply, &QNetworkReply::finished, reply, &QNetworkReply::deleteLater);
reply->deleteLater(); connect(reply, &QNetworkReply::finished, info, [reply, info] {
//The server replies usually 404 not found on this request //The server replies usually 404 not found on this request
//int status = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt(); //int status = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
if (reply->error() == QNetworkReply::NetworkError::HostNotFoundError) { if (reply->error() == QNetworkReply::NetworkError::HostNotFoundError) {
info->finish(Thing::ThingErrorHardwareNotAvailable, QT_TR_NOOP("Netatmo server is not reachable.")); qCWarning(dcNetatmo()) << "Netatmo server is not reachable";
info->finish(Thing::ThingErrorAuthenticationFailure, QT_TR_NOOP("Netatmo server is not reachable."));
} else { } else {
info->finish(Thing::ThingErrorNoError, QT_TR_NOOP("Please enter the login credentials for your Netatmo account.")); info->finish(Thing::ThingErrorNoError, QT_TR_NOOP("Please enter the login credentials for your Netatmo account."));
} }
@ -61,26 +77,27 @@ void IntegrationPluginNetatmo::startPairing(ThingPairingInfo *info)
void IntegrationPluginNetatmo::confirmPairing(ThingPairingInfo *info, const QString &username, const QString &password) void IntegrationPluginNetatmo::confirmPairing(ThingPairingInfo *info, const QString &username, const QString &password)
{ {
OAuth2 *authentication = new OAuth2("561c015d49c75f0d1cce6e13", "GuvKkdtu7JQlPD47qTTepRR9hQ0CUPAj4Tae3Ohcq", this); OAuth2 *authentication = new OAuth2(m_clientId, m_clientSecret, this);
authentication->setUrl(QUrl("https://api.netatmo.net/oauth2/token")); authentication->setUrl(QUrl("https://api.netatmo.net/oauth2/token"));
authentication->setUsername(username); authentication->setUsername(username);
authentication->setPassword(password); authentication->setPassword(password);
authentication->setScope("read_station read_thermostat write_thermostat"); authentication->setScope("read_station read_thermostat write_thermostat");
connect(authentication, &OAuth2::authenticationChanged, info, [this, info, username, password, authentication](){ connect(authentication, &OAuth2::authenticationChanged, info, [this, info, username, password, authentication](){
if (authentication->authenticated()) { if (authentication->authenticated()) {
pluginStorage()->beginGroup(info->thingId().toString()); pluginStorage()->beginGroup(info->thingId().toString());
pluginStorage()->setValue("username", username); pluginStorage()->setValue("username", username);
pluginStorage()->setValue("password", password); pluginStorage()->setValue("password", password);
pluginStorage()->endGroup(); pluginStorage()->endGroup();
m_pairingAuthentications.insert(authentication, info->thingId());
info->finish(Thing::ThingErrorNoError); info->finish(Thing::ThingErrorNoError);
} else { } else {
qCWarning(dcNetatmo()) << "Wrong username or password";
info->finish(Thing::ThingErrorAuthenticationFailure, QT_TR_NOOP("Wrong username or password")); info->finish(Thing::ThingErrorAuthenticationFailure, QT_TR_NOOP("Wrong username or password"));
} }
}); });
authentication->startAuthentication(); authentication->startAuthentication();
connect(info, &QObject::destroyed, authentication, &OAuth2::deleteLater); connect(info, &ThingPairingInfo::aborted, authentication, &OAuth2::deleteLater);
} }
void IntegrationPluginNetatmo::setupThing(ThingSetupInfo *info) void IntegrationPluginNetatmo::setupThing(ThingSetupInfo *info)
@ -88,7 +105,7 @@ void IntegrationPluginNetatmo::setupThing(ThingSetupInfo *info)
Thing *thing = info->thing(); Thing *thing = info->thing();
if (thing->thingClassId() == netatmoConnectionThingClassId) { if (thing->thingClassId() == netatmoConnectionThingClassId) {
qCDebug(dcNetatmo) << "Setup netatmo connection" << thing->name() << thing->params(); qCDebug(dcNetatmo) << "Setup Netatmo connection" << thing->name() << thing->params();
QString username; QString username;
QString password; QString password;
@ -117,43 +134,74 @@ void IntegrationPluginNetatmo::setupThing(ThingSetupInfo *info)
thing->setParamValue(ParamTypeId("c0d892d6-f359-4782-9d7d-8f74a3b53e3e"), ""); thing->setParamValue(ParamTypeId("c0d892d6-f359-4782-9d7d-8f74a3b53e3e"), "");
} }
if (username.isEmpty() || password.isEmpty()) {
qCWarning(dcNetatmo()) << "Setup failed because of missing login credentials";
info->finish(Thing::ThingErrorAuthenticationFailure, QT_TR_NOOP("Login credentials not found."));
return;
}
if (m_clientId.isEmpty() || m_clientSecret.isEmpty()) {
qCWarning(dcNetatmo()) << "Setup failed because of missing client credentials";
info->finish(Thing::ThingErrorAuthenticationFailure, QT_TR_NOOP("No API key installed"));
return;
}
if (m_authentications.values().contains(thing->id())) {
qCDebug(dcNetatmo()) << "Setup after reconfiguration, cleaning up";
OAuth2 *auth = m_authentications.key(thing->id());
m_authentications.remove(auth);
if (auth) {
auth->deleteLater();
}
}
OAuth2 *authentication; OAuth2 *authentication;
if (m_authentications.values().contains(thing)) { if (m_pairingAuthentications.values().contains(thing->id())) {
qCDebug(dcNetatmo()) << "Re-Discovery, not creating a new authentication"; authentication = m_pairingAuthentications.key(thing->id());
authentication = m_authentications.key(thing); m_pairingAuthentications.remove(authentication);
authentication->setUsername(username); qCDebug(dcNetatmo()) << "Authenticated from pairing process, not creating a new authentication";
authentication->setPassword(password);
} else { } else {
authentication = new OAuth2("561c015d49c75f0d1cce6e13", "GuvKkdtu7JQlPD47qTTepRR9hQ0CUPAj4Tae3Ohcq", this); authentication = new OAuth2(m_clientId, m_clientSecret, this);
authentication->setUrl(QUrl("https://api.netatmo.net/oauth2/token")); authentication->setUrl(QUrl("https://api.netatmo.net/oauth2/token"));
authentication->setUsername(username); authentication->setUsername(username);
authentication->setPassword(password); authentication->setPassword(password);
authentication->setScope("read_station read_thermostat write_thermostat"); authentication->setScope("read_station read_thermostat write_thermostat");
}
// Update thing connected state based on OAuth connected state if (authentication->authenticated()) {
connect(authentication, &OAuth2::authenticationChanged, thing, [this, thing, authentication](){ thing->setStateValue(netatmoConnectionConnectedStateTypeId, true);
thing->setStateValue(netatmoConnectionConnectedStateTypeId, authentication->authenticated()); thing->setStateValue(netatmoConnectionLoggedInStateTypeId, true);
if (authentication->authenticated()) { thing->setStateValue(netatmoConnectionUserDisplayNameStateTypeId, authentication->username());
refreshData(thing, authentication->token()); m_authentications.insert(authentication, thing->id());
refreshData(thing, authentication->token());
info->finish(Thing::ThingErrorNoError);
} else {
authentication->startAuthentication();
// Report thing setup finished when authentication reports success
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;
} }
thing->setStateValue(netatmoConnectionConnectedStateTypeId, true);
thing->setStateValue(netatmoConnectionLoggedInStateTypeId, true);
thing->setStateValue(netatmoConnectionUserDisplayNameStateTypeId, authentication->username());
m_authentications.insert(authentication, thing->id());
info->finish(Thing::ThingErrorNoError);
}); });
} }
authentication->startAuthentication();
// Report thing setup finished when authentication reports success // Update thing connected state based on OAuth connected state
connect(authentication, &OAuth2::authenticationChanged, info, [this, info, thing, authentication](){ connect(authentication, &OAuth2::authenticationChanged, thing, [this, thing, authentication](){
if (!authentication->authenticated()) { thing->setStateValue(netatmoConnectionLoggedInStateTypeId, authentication->authenticated());
authentication->deleteLater(); if (authentication->authenticated()) {
info->finish(Thing::ThingErrorAuthenticationFailure, QT_TR_NOOP("Error logging in to Netatmo server.")); refreshData(thing, authentication->token());
return;
} }
m_authentications.insert(authentication, thing);
info->finish(Thing::ThingErrorNoError);
}); });
return; return;
} else if (thing->thingClassId() == indoorThingClassId) { } else if (thing->thingClassId() == indoorThingClassId) {
qCDebug(dcNetatmo) << "Setup netatmo indoor base station" << thing->params(); qCDebug(dcNetatmo) << "Setup Netatmo indoor base station" << thing->params();
NetatmoBaseStation *indoor = new NetatmoBaseStation(thing->paramValue(indoorThingNameParamTypeId).toString(), NetatmoBaseStation *indoor = new NetatmoBaseStation(thing->paramValue(indoorThingNameParamTypeId).toString(),
thing->paramValue(indoorThingMacParamTypeId).toString(), thing->paramValue(indoorThingMacParamTypeId).toString(),
this); this);
@ -165,7 +213,6 @@ void IntegrationPluginNetatmo::setupThing(ThingSetupInfo *info)
} else if (thing->thingClassId() == outdoorThingClassId) { } else if (thing->thingClassId() == outdoorThingClassId) {
qCDebug(dcNetatmo) << "Setup netatmo outdoor module" << thing->params(); qCDebug(dcNetatmo) << "Setup netatmo outdoor module" << thing->params();
// Migrate thing parameters after changing param type UUIDs in 0.14. // Migrate thing parameters after changing param type UUIDs in 0.14.
QMap<QString, ParamTypeId> migrationMap; QMap<QString, ParamTypeId> migrationMap;
migrationMap.insert("a97d256c-e159-4aa0-bc71-6bd7cd0688b3", outdoorThingNameParamTypeId); migrationMap.insert("a97d256c-e159-4aa0-bc71-6bd7cd0688b3", outdoorThingNameParamTypeId);
@ -205,7 +252,7 @@ void IntegrationPluginNetatmo::setupThing(ThingSetupInfo *info)
void IntegrationPluginNetatmo::thingRemoved(Thing *thing) void IntegrationPluginNetatmo::thingRemoved(Thing *thing)
{ {
if (thing->thingClassId() == netatmoConnectionThingClassId) { if (thing->thingClassId() == netatmoConnectionThingClassId) {
OAuth2 * authentication = m_authentications.key(thing); OAuth2 * authentication = m_authentications.key(thing->id());
m_authentications.remove(authentication); m_authentications.remove(authentication);
authentication->deleteLater(); authentication->deleteLater();
} else if (thing->thingClassId() == indoorThingClassId) { } else if (thing->thingClassId() == indoorThingClassId) {
@ -218,9 +265,15 @@ void IntegrationPluginNetatmo::thingRemoved(Thing *thing)
outdoor->deleteLater(); outdoor->deleteLater();
} }
if (myThings().isEmpty() && m_pluginTimer) { if (myThings().isEmpty()) {
hardwareManager()->pluginTimerManager()->unregisterTimer(m_pluginTimer); if (m_pluginTimer3s) {
m_pluginTimer = nullptr; hardwareManager()->pluginTimerManager()->unregisterTimer(m_pluginTimer3s);
m_pluginTimer3s = nullptr;
}
if (m_pluginTimer10m) {
hardwareManager()->pluginTimerManager()->unregisterTimer(m_pluginTimer10m);
m_pluginTimer10m = nullptr;
}
} }
} }
@ -238,9 +291,25 @@ void IntegrationPluginNetatmo::postSetupThing(Thing *thing)
} }
} }
if (!m_pluginTimer) { if (!m_pluginTimer3s) {
m_pluginTimer = hardwareManager()->pluginTimerManager()->registerTimer(600); m_pluginTimer3s = hardwareManager()->pluginTimerManager()->registerTimer(3);
connect(m_pluginTimer, &PluginTimer::timeout, this, &IntegrationPluginNetatmo::onPluginTimer); connect(m_pluginTimer3s, &PluginTimer::timeout, this, [this] {
// Checking the connection to the Netatmo server
NetworkAccessManager *network = hardwareManager()->networkManager();
QNetworkReply *reply = network->get(QNetworkRequest(QUrl("https://api.netatmo.net")));
connect(reply, &QNetworkReply::finished, reply, &QNetworkReply::deleteLater);
connect(reply, &QNetworkReply::finished, this, [reply, this] {
bool connected = (reply->error() != QNetworkReply::NetworkError::HostNotFoundError);
Q_FOREACH(Thing *thing, myThings().filterByThingClassId(netatmoConnectionThingClassId)) {
thing->setStateValue(netatmoConnectionConnectedStateTypeId, connected);
}
});
});
}
if (!m_pluginTimer10m) {
m_pluginTimer10m = hardwareManager()->pluginTimerManager()->registerTimer(600);
connect(m_pluginTimer10m, &PluginTimer::timeout, this, &IntegrationPluginNetatmo::onPluginTimer);
} }
} }
@ -366,7 +435,7 @@ Thing *IntegrationPluginNetatmo::findOutdoorDevice(const QString &macAddress)
void IntegrationPluginNetatmo::onPluginTimer() void IntegrationPluginNetatmo::onPluginTimer()
{ {
foreach (OAuth2 *authentication, m_authentications.keys()) { foreach (OAuth2 *authentication, m_authentications.keys()) {
Thing *thing = m_authentications.value(authentication); Thing *thing = myThings().findById(m_authentications.value(authentication));
if (!thing) { if (!thing) {
qCWarning(dcNetatmo()) << "Authentication without an associated Netatmo connection thing" << authentication->username(); qCWarning(dcNetatmo()) << "Authentication without an associated Netatmo connection thing" << authentication->username();
m_authentications.remove(authentication); m_authentications.remove(authentication);
@ -393,7 +462,8 @@ void IntegrationPluginNetatmo::onIndoorStatesChanged()
thing->setStateValue(indoorHumidityStateTypeId, indoor->humidity()); thing->setStateValue(indoorHumidityStateTypeId, indoor->humidity());
thing->setStateValue(indoorCo2StateTypeId, indoor->co2()); thing->setStateValue(indoorCo2StateTypeId, indoor->co2());
thing->setStateValue(indoorNoiseStateTypeId, indoor->noise()); thing->setStateValue(indoorNoiseStateTypeId, indoor->noise());
thing->setStateValue(indoorWifiStrengthStateTypeId, indoor->wifiStrength()); thing->setStateValue(indoorSignalStrengthStateTypeId, indoor->wifiStrength());
thing->setStateValue(indoorConnectedStateTypeId, indoor->reachable());
} }
void IntegrationPluginNetatmo::onOutdoorStatesChanged() void IntegrationPluginNetatmo::onOutdoorStatesChanged()
@ -409,4 +479,31 @@ void IntegrationPluginNetatmo::onOutdoorStatesChanged()
thing->setStateValue(outdoorSignalStrengthStateTypeId, outdoor->signalStrength()); thing->setStateValue(outdoorSignalStrengthStateTypeId, outdoor->signalStrength());
thing->setStateValue(outdoorBatteryLevelStateTypeId, outdoor->battery()); thing->setStateValue(outdoorBatteryLevelStateTypeId, outdoor->battery());
thing->setStateValue(outdoorBatteryCriticalStateTypeId, outdoor->battery() < 10); thing->setStateValue(outdoorBatteryCriticalStateTypeId, outdoor->battery() < 10);
thing->setStateValue(outdoorConnectedStateTypeId, outdoor->reachable());
}
void IntegrationPluginNetatmo::updateClientCredentials()
{
QString clientId = configValue(netatmoPluginCustomClientIdParamTypeId).toString();
QString clientSecret = configValue(netatmoPluginCustomClientSecretParamTypeId).toString();
if (!clientId.isEmpty() && !clientSecret.isEmpty()) {
m_clientId = clientId;
m_clientSecret = clientSecret;
qCDebug(dcNetatmo()) << "Using API key from plugin settings.";
qCDebug(dcNetatmo()) << " Client ID" << m_clientId.mid(0, 4)+"****";
qCDebug(dcNetatmo()) << " Client secret" << m_clientSecret.mid(0, 4)+"****";
return;
}
clientId = apiKeyStorage()->requestKey("netatmo").data("clientId");
clientSecret = apiKeyStorage()->requestKey("netatmo").data("clientSecret");
if (!clientId.isEmpty() && !clientSecret.isEmpty()) {
m_clientId = clientId;
m_clientSecret = clientSecret;
qCDebug(dcNetatmo()) << "Using API key from nymea API keys provider";
qCDebug(dcNetatmo()) << " Client ID" << m_clientId.mid(0, 4)+"****";
qCDebug(dcNetatmo()) << " Client secret" << m_clientSecret.mid(0, 4)+"****";
return;
}
qCWarning(dcNetatmo()) << "No API key set.";
qCWarning(dcNetatmo()) << "Either install an API key package (nymea-apikeysprovider-plugin-*) or provide a key in the plugin settings.";
} }

View File

@ -48,7 +48,7 @@ class IntegrationPluginNetatmo : public IntegrationPlugin
public: public:
explicit IntegrationPluginNetatmo(); explicit IntegrationPluginNetatmo();
void init() override;
void startPairing(ThingPairingInfo *info) override; void startPairing(ThingPairingInfo *info) override;
void confirmPairing(ThingPairingInfo *info, const QString &username, const QString &secret) override; void confirmPairing(ThingPairingInfo *info, const QString &username, const QString &secret) override;
void setupThing(ThingSetupInfo *info) override; void setupThing(ThingSetupInfo *info) override;
@ -56,12 +56,14 @@ public:
void postSetupThing(Thing *thing) override; void postSetupThing(Thing *thing) override;
private: private:
PluginTimer *m_pluginTimer = nullptr; PluginTimer *m_pluginTimer3s = nullptr;
PluginTimer *m_pluginTimer10m = nullptr;
QHash<QString, QVariantMap> m_indoorStationInitData; QHash<QString, QVariantMap> m_indoorStationInitData;
QHash<QString, QVariantMap> m_outdoorStationInitData; QHash<QString, QVariantMap> m_outdoorStationInitData;
QHash<OAuth2 *, Thing *> m_authentications; QHash<OAuth2 *, ThingId> m_pairingAuthentications;
QHash<OAuth2 *, ThingId> m_authentications;
QHash<NetatmoBaseStation *, Thing *> m_indoorDevices; QHash<NetatmoBaseStation *, Thing *> m_indoorDevices;
QHash<NetatmoOutdoorModule *, Thing *> m_outdoorDevices; QHash<NetatmoOutdoorModule *, Thing *> m_outdoorDevices;
@ -73,10 +75,14 @@ private:
Thing *findIndoorDevice(const QString &macAddress); Thing *findIndoorDevice(const QString &macAddress);
Thing *findOutdoorDevice(const QString &macAddress); Thing *findOutdoorDevice(const QString &macAddress);
QString m_clientId;
QString m_clientSecret;
private slots: private slots:
void onPluginTimer(); void onPluginTimer();
void onIndoorStatesChanged(); void onIndoorStatesChanged();
void onOutdoorStatesChanged(); void onOutdoorStatesChanged();
void updateClientCredentials();
}; };
#endif // INTEGRATIONPLUGINNETATMO_H #endif // INTEGRATIONPLUGINNETATMO_H

View File

@ -2,6 +2,23 @@
"displayName": "Netatmo", "displayName": "Netatmo",
"name": "Netatmo", "name": "Netatmo",
"id": "69d14951-0c02-4877-bcef-dffdf48b7ccb", "id": "69d14951-0c02-4877-bcef-dffdf48b7ccb",
"apiKeys": ["netatmo"],
"paramTypes": [
{
"id": "fbda653d-d59e-438c-a70c-0ccbe8080215",
"name": "customClientId",
"displayName": "Custom client id",
"type": "QString",
"defaultValue": ""
},
{
"id": "06439e1e-da15-4483-8737-0a6aa967c479",
"name": "customClientSecret",
"displayName": "Custom client secret",
"type": "QString",
"defaultValue": ""
}
],
"vendors": [ "vendors": [
{ {
"displayName": "Netatmo", "displayName": "Netatmo",
@ -12,7 +29,7 @@
"id": "728d5a67-27a3-400e-b83c-2765f5196f69", "id": "728d5a67-27a3-400e-b83c-2765f5196f69",
"name": "netatmoConnection", "name": "netatmoConnection",
"displayName": "Netatmo Connection", "displayName": "Netatmo Connection",
"interfaces": ["gateway"], "interfaces": ["account"],
"setupMethod": "userandpassword", "setupMethod": "userandpassword",
"createMethods": ["user"], "createMethods": ["user"],
"stateTypes": [ "stateTypes": [
@ -23,6 +40,22 @@
"displayNameEvent": "Available changed", "displayNameEvent": "Available changed",
"type": "bool", "type": "bool",
"defaultValue": false "defaultValue": false
},
{
"id": "d1ca8579-5d5a-4372-9139-4b083efead2e",
"name": "loggedIn",
"displayName": "Logged in",
"displayNameEvent": "Logged inchanged",
"type": "bool",
"defaultValue": false
},
{
"id": "b9c98ae6-3687-4279-8fda-bc02c7b7ea38",
"name": "userDisplayName",
"displayName": "Username",
"displayNameEvent": "Username changed",
"type": "QString",
"defaultValue": ""
} }
] ]
}, },
@ -30,7 +63,7 @@
"id": "1c809049-04f2-4710-99f5-6ed379a2934f", "id": "1c809049-04f2-4710-99f5-6ed379a2934f",
"name": "indoor", "name": "indoor",
"displayName": "Indoor Station", "displayName": "Indoor Station",
"interfaces": ["temperaturesensor", "humiditysensor", "pressuresensor", "noisesensor", "co2sensor"], "interfaces": ["temperaturesensor", "humiditysensor", "pressuresensor", "noisesensor", "co2sensor", "wirelessconnectable"],
"createMethods": ["auto"], "createMethods": ["auto"],
"paramTypes": [ "paramTypes": [
{ {
@ -126,12 +159,23 @@
}, },
{ {
"id": "6ea906d4-5740-454d-a730-6fdb9fa0d624", "id": "6ea906d4-5740-454d-a730-6fdb9fa0d624",
"name": "wifiStrength", "name": "signalStrength",
"displayName": "WiFi signal strength", "displayName": "WiFi signal strength",
"displayNameEvent": "WiFi signal strength changed", "displayNameEvent": "WiFi signal strength changed",
"unit": "Percentage", "unit": "Percentage",
"type": "int", "type": "uint",
"minValue": 0,
"maxValue": 100,
"defaultValue": 0 "defaultValue": 0
},
{
"id": "d84ba5d7-5202-4786-b983-958b594c341f",
"name": "connected",
"displayName": "Connected",
"displayNameEvent": "Connected changed",
"type": "bool",
"cached": false,
"defaultValue": false
} }
] ]
}, },
@ -139,7 +183,7 @@
"id": "6cc01d62-7317-4ec4-8ac4-a4cab762c179", "id": "6cc01d62-7317-4ec4-8ac4-a4cab762c179",
"name": "outdoor", "name": "outdoor",
"displayName": "Outdoor Station", "displayName": "Outdoor Station",
"interfaces": ["temperaturesensor", "humiditysensor", "batterylevel"], "interfaces": ["temperaturesensor", "humiditysensor", "batterylevel", "wirelessconnectable"],
"createMethods": ["auto"], "createMethods": ["auto"],
"paramTypes": [ "paramTypes": [
{ {
@ -220,9 +264,20 @@
"displayName": "Signal strength", "displayName": "Signal strength",
"displayNameEvent": "Signal strength changed", "displayNameEvent": "Signal strength changed",
"unit": "Percentage", "unit": "Percentage",
"type": "int", "type": "uint",
"minValue": 0,
"maxValue": 100,
"defaultValue": 0 "defaultValue": 0
}, },
{
"id": "21d7f2b7-e45b-4986-b3da-d6e8c0421bfc",
"name": "connected",
"displayName": "Connected",
"displayNameEvent": "Connected changed",
"type": "bool",
"cached": false,
"defaultValue": false
},
{ {
"id": "15d8fae1-ba47-42e1-994d-530e8017c965", "id": "15d8fae1-ba47-42e1-994d-530e8017c965",
"name": "batteryLevel", "name": "batteryLevel",

View File

@ -94,6 +94,11 @@ int NetatmoBaseStation::wifiStrength() const
return m_wifiStrength; return m_wifiStrength;
} }
bool NetatmoBaseStation::reachable() const
{
return m_reachable;
}
void NetatmoBaseStation::updateStates(const QVariantMap &data) void NetatmoBaseStation::updateStates(const QVariantMap &data)
{ {
// check data timestamp // check data timestamp
@ -124,5 +129,10 @@ void NetatmoBaseStation::updateStates(const QVariantMap &data)
m_wifiStrength = qRound(100.0 * delta / 30.0); m_wifiStrength = qRound(100.0 * delta / 30.0);
} }
} }
// update reachable state
if (data.contains("reachable")) {
m_reachable = data.value("reachable").toBool();
}
emit statesChanged(); emit statesChanged();
} }

View File

@ -55,6 +55,7 @@ public:
int noise() const; int noise() const;
int co2() const; int co2() const;
int wifiStrength() const; int wifiStrength() const;
bool reachable() const;
void updateStates(const QVariantMap &data); void updateStates(const QVariantMap &data);
@ -73,6 +74,7 @@ private:
int m_noise; int m_noise;
int m_co2; int m_co2;
int m_wifiStrength; int m_wifiStrength;
bool m_reachable;
signals: signals:
void statesChanged(); void statesChanged();

View File

@ -90,6 +90,11 @@ int NetatmoOutdoorModule::battery() const
return m_battery; return m_battery;
} }
bool NetatmoOutdoorModule::reachable() const
{
return m_reachable;
}
void NetatmoOutdoorModule::updateStates(const QVariantMap &data) void NetatmoOutdoorModule::updateStates(const QVariantMap &data)
{ {
// check data timestamp // check data timestamp
@ -130,6 +135,11 @@ void NetatmoOutdoorModule::updateStates(const QVariantMap &data)
m_signalStrength = qRound(100.0 * delta / 30.0); m_signalStrength = qRound(100.0 * delta / 30.0);
} }
} }
// update reachable state
if (data.contains("reachable")) {
m_reachable = data.value("reachable").toBool();
}
emit statesChanged(); emit statesChanged();
} }

View File

@ -52,6 +52,7 @@ public:
double maxTemperature() const; double maxTemperature() const;
int signalStrength() const; int signalStrength() const;
int battery() const; int battery() const;
bool reachable() const;
void updateStates(const QVariantMap &data); void updateStates(const QVariantMap &data);
@ -69,6 +70,7 @@ private:
double m_maxTemperature; double m_maxTemperature;
int m_signalStrength; int m_signalStrength;
int m_battery; int m_battery;
bool m_reachable;
signals: signals:
void statesChanged(); void statesChanged();

View File

@ -4,22 +4,33 @@
<context> <context>
<name>IntegrationPluginNetatmo</name> <name>IntegrationPluginNetatmo</name>
<message> <message>
<location filename="../integrationpluginnetatmo.cpp" line="55"/> <location filename="../integrationpluginnetatmo.cpp" line="59"/>
<location filename="../integrationpluginnetatmo.cpp" line="144"/>
<source>No API key installed</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="71"/>
<source>Netatmo server is not reachable.</source> <source>Netatmo server is not reachable.</source>
<translation>Server Netatmo není dosažitelný.</translation> <translation>Server Netatmo není dosažitelný.</translation>
</message> </message>
<message> <message>
<location filename="../integrationpluginnetatmo.cpp" line="57"/> <location filename="../integrationpluginnetatmo.cpp" line="73"/>
<source>Please enter the login credentials for your Netatmo account.</source> <source>Please enter the login credentials for your Netatmo account.</source>
<translation>Zadejte přihlašovací údaje pro účet Netatmo.</translation> <translation>Zadejte přihlašovací údaje pro účet Netatmo.</translation>
</message> </message>
<message> <message>
<location filename="../integrationpluginnetatmo.cpp" line="79"/> <location filename="../integrationpluginnetatmo.cpp" line="96"/>
<source>Wrong username or password</source> <source>Wrong username or password</source>
<translation>Chybné uživatelské jméno nebo heslo</translation> <translation>Chybné uživatelské jméno nebo heslo</translation>
</message> </message>
<message> <message>
<location filename="../integrationpluginnetatmo.cpp" line="147"/> <location filename="../integrationpluginnetatmo.cpp" line="139"/>
<source>Login credentials not found.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="186"/>
<source>Error logging in to Netatmo server.</source> <source>Error logging in to Netatmo server.</source>
<translation>Při přihlašování k serveru Netatmo došlo k chybě.</translation> <translation>Při přihlašování k serveru Netatmo došlo k chybě.</translation>
</message> </message>
@ -27,8 +38,8 @@
<context> <context>
<name>Netatmo</name> <name>Netatmo</name>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="84"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="97"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="87"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="100"/>
<source>Available</source> <source>Available</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: connected, ID: {2f79bc1d-27ed-480a-b583-728363c83ea6}) <extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: connected, ID: {2f79bc1d-27ed-480a-b583-728363c83ea6})
---------- ----------
@ -36,20 +47,20 @@ The name of the StateType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass
<translation>K dispozici</translation> <translation>K dispozici</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="90"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="103"/>
<source>Available changed</source> <source>Available changed</source>
<extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment> <extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation>Dostupné změněno</translation> <translation>Dostupné změněno</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="93"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="106"/>
<source>Base station</source> <source>Base station</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment> <extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment>
<translation>Základna</translation> <translation>Základna</translation>
</message> </message>
<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="109"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="99"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="112"/>
<source>Battery</source> <source>Battery</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryLevel, ID: {15d8fae1-ba47-42e1-994d-530e8017c965}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryLevel, ID: {15d8fae1-ba47-42e1-994d-530e8017c965})
---------- ----------
@ -57,14 +68,14 @@ The name of the StateType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass
<translation>baterie</translation> <translation>baterie</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="102"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="115"/>
<source>Battery changed</source> <source>Battery changed</source>
<extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment> <extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation>Baterie byla vyměněna</translation> <translation>Baterie byla vyměněna</translation>
</message> </message>
<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="118"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="108"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="121"/>
<source>Battery critical</source> <source>Battery critical</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryCritical, ID: {f8aeb144-014d-4ccb-81db-64ffc70f1c97}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryCritical, ID: {f8aeb144-014d-4ccb-81db-64ffc70f1c97})
---------- ----------
@ -72,14 +83,14 @@ The name of the StateType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass
<translation>Baterie kritická</translation> <translation>Baterie kritická</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="111"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="124"/>
<source>Battery critical changed</source> <source>Battery critical changed</source>
<extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment> <extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation>Kritická baterie se změnila</translation> <translation>Kritická baterie se změnila</translation>
</message> </message>
<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="127"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="117"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="130"/>
<source>CO2</source> <source>CO2</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: co2, ID: {e5710bd1-79fa-4bd4-9052-8416aae909b9}) <extracomment>The name of the ParamType (ThingClass: indoor, EventType: co2, ID: {e5710bd1-79fa-4bd4-9052-8416aae909b9})
---------- ----------
@ -87,16 +98,28 @@ The name of the StateType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass
<translation>CO2</translation> <translation>CO2</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="120"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="133"/>
<source>CO2 changed</source> <source>CO2 changed</source>
<extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment> <extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation>CO2 se změnil</translation> <translation>CO2 se změnil</translation>
</message> </message>
<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="136"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="126"/> <source>Custom client id</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="129"/> <extracomment>The name of the ParamType (ThingClass: netatmo, Type: plugin, ID: {fbda653d-d59e-438c-a70c-0ccbe8080215})</extracomment>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="132"/> <translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="139"/>
<source>Custom client secret</source>
<extracomment>The name of the ParamType (ThingClass: netatmo, Type: plugin, ID: {06439e1e-da15-4483-8737-0a6aa967c479})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="142"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="145"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="148"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="151"/>
<source>Humidity</source> <source>Humidity</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: humidity, ID: {7ba6ddeb-5142-4b87-9729-487fcda394df}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: humidity, ID: {7ba6ddeb-5142-4b87-9729-487fcda394df})
---------- ----------
@ -108,8 +131,8 @@ The name of the StateType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass
<translation>Vlhkost vzduchu</translation> <translation>Vlhkost vzduchu</translation>
</message> </message>
<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="154"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="138"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="157"/>
<source>Humidity changed</source> <source>Humidity changed</source>
<extracomment>The name of the EventType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor <extracomment>The name of the EventType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor
---------- ----------
@ -117,10 +140,10 @@ The name of the EventType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass
<translation>Vlhkost se změnila</translation> <translation>Vlhkost se změnila</translation>
</message> </message>
<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="163"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="147"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="166"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="150"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="169"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="153"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="172"/>
<source>Last update</source> <source>Last update</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: updateTime, ID: {154aad5c-4998-43c2-b9ee-0b997eb6dd69}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: updateTime, ID: {154aad5c-4998-43c2-b9ee-0b997eb6dd69})
---------- ----------
@ -132,8 +155,8 @@ The name of the StateType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass
<translation>Poslední aktualizace</translation> <translation>Poslední aktualizace</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="156"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="175"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="159"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="178"/>
<source>Last update changed</source> <source>Last update changed</source>
<extracomment>The name of the EventType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor <extracomment>The name of the EventType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
---------- ----------
@ -141,8 +164,23 @@ The name of the EventType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass
<translation>Poslední aktualizace byla změněna</translation> <translation>Poslední aktualizace byla změněna</translation>
</message> </message>
<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="181"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="165"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="184"/>
<source>Logged in</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: loggedIn, ID: {d1ca8579-5d5a-4372-9139-4b083efead2e})
----------
The name of the StateType ({d1ca8579-5d5a-4372-9139-4b083efead2e}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="187"/>
<source>Logged inchanged</source>
<extracomment>The name of the EventType ({d1ca8579-5d5a-4372-9139-4b083efead2e}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="190"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="193"/>
<source>MAC Address</source> <source>MAC Address</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {73a76c5c-84f5-4e65-8541-457e5aca9bb0}) <extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {73a76c5c-84f5-4e65-8541-457e5aca9bb0})
---------- ----------
@ -150,8 +188,8 @@ The name of the ParamType (ThingClass: indoor, Type: thing, ID: {157d470a-e579-4
<translation>MAC Address</translation> <translation>MAC Address</translation>
</message> </message>
<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="196"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="171"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="199"/>
<source>Netatmo</source> <source>Netatmo</source>
<extracomment>The name of the vendor ({4b46b4ed-5ec9-4aa4-afc3-92d3f80e6351}) <extracomment>The name of the vendor ({4b46b4ed-5ec9-4aa4-afc3-92d3f80e6351})
---------- ----------
@ -159,14 +197,14 @@ The name of the plugin Netatmo ({69d14951-0c02-4877-bcef-dffdf48b7ccb})</extraco
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="174"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="202"/>
<source>Netatmo Connection</source> <source>Netatmo Connection</source>
<extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment> <extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment>
<translation>Netatmo připojení</translation> <translation>Netatmo připojení</translation>
</message> </message>
<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="205"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="180"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="208"/>
<source>Noise</source> <source>Noise</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: noise, ID: {906cea9d-1daf-4e9c-90b9-e40f43052a34}) <extracomment>The name of the ParamType (ThingClass: indoor, EventType: noise, ID: {906cea9d-1daf-4e9c-90b9-e40f43052a34})
---------- ----------
@ -174,14 +212,14 @@ The name of the StateType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass
<translation>Hluk</translation> <translation>Hluk</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="183"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="211"/>
<source>Noise changed</source> <source>Noise changed</source>
<extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment> <extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation>Hluk se změnil</translation> <translation>Hluk se změnil</translation>
</message> </message>
<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="217"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="192"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="220"/>
<source>Pressure</source> <source>Pressure</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: pressure, ID: {03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) <extracomment>The name of the ParamType (ThingClass: indoor, EventType: pressure, ID: {03b0a7b7-987d-4d3b-b3f0-21d9f92ad326})
---------- ----------
@ -189,14 +227,14 @@ The name of the StateType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass
<translation>Tlak</translation> <translation>Tlak</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="195"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="223"/>
<source>Pressure changed</source> <source>Pressure changed</source>
<extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment> <extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation>Tlak se změnil</translation> <translation>Tlak se změnil</translation>
</message> </message>
<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="226"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="201"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="229"/>
<source>Signal strength</source> <source>Signal strength</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: signalStrength, ID: {0faa3d08-9004-46fb-a5aa-a59b75e454cc}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: signalStrength, ID: {0faa3d08-9004-46fb-a5aa-a59b75e454cc})
---------- ----------
@ -204,16 +242,16 @@ The name of the StateType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass
<translation>Síla signálu</translation> <translation>Síla signálu</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="204"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="232"/>
<source>Signal strength changed</source> <source>Signal strength changed</source>
<extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment> <extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation>Síla signálu se změnila</translation> <translation>Síla signálu se změnila</translation>
</message> </message>
<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="235"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="210"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="238"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="213"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="241"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="216"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="244"/>
<source>Temperature</source> <source>Temperature</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperature, ID: {f98776bd-887e-4b01-a87f-3d8224180563}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperature, ID: {f98776bd-887e-4b01-a87f-3d8224180563})
---------- ----------
@ -225,8 +263,8 @@ The name of the StateType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass
<translation>Teplota</translation> <translation>Teplota</translation>
</message> </message>
<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="247"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="222"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="250"/>
<source>Temperature changed</source> <source>Temperature changed</source>
<extracomment>The name of the EventType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor <extracomment>The name of the EventType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
---------- ----------
@ -234,10 +272,10 @@ The name of the EventType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass
<translation>Teplota se změnila</translation> <translation>Teplota se změnila</translation>
</message> </message>
<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="253"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="228"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="256"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="231"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="259"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="234"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="262"/>
<source>Temperature maximum</source> <source>Temperature maximum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMax, ID: {aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMax, ID: {aae071dc-70d5-4a6a-8daa-3dca0d150bd7})
---------- ----------
@ -249,8 +287,8 @@ The name of the StateType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass
<translation>maximum emperatury</translation> <translation>maximum emperatury</translation>
</message> </message>
<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="265"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="240"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="268"/>
<source>Temperature maximum changed</source> <source>Temperature maximum changed</source>
<extracomment>The name of the EventType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor <extracomment>The name of the EventType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
---------- ----------
@ -258,10 +296,10 @@ The name of the EventType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass
<translation>Maximální teplota se změnila</translation> <translation>Maximální teplota se změnila</translation>
</message> </message>
<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="271"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="246"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="274"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="249"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="277"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="252"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="280"/>
<source>Temperature minimum</source> <source>Temperature minimum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMin, ID: {b71e0c8b-3c94-421e-830e-dab97b6c104e}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMin, ID: {b71e0c8b-3c94-421e-830e-dab97b6c104e})
---------- ----------
@ -273,8 +311,8 @@ The name of the StateType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass
<translation>Minimální teplota</translation> <translation>Minimální teplota</translation>
</message> </message>
<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="283"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="258"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="286"/>
<source>Temperature minimum changed</source> <source>Temperature minimum changed</source>
<extracomment>The name of the EventType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor <extracomment>The name of the EventType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
---------- ----------
@ -282,8 +320,23 @@ The name of the EventType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass
<translation>Minimální teplota se změnila</translation> <translation>Minimální teplota se změnila</translation>
</message> </message>
<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="289"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="264"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="292"/>
<source>Username</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: userDisplayName, ID: {b9c98ae6-3687-4279-8fda-bc02c7b7ea38})
----------
The name of the StateType ({b9c98ae6-3687-4279-8fda-bc02c7b7ea38}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="295"/>
<source>Username changed</source>
<extracomment>The name of the EventType ({b9c98ae6-3687-4279-8fda-bc02c7b7ea38}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="298"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="301"/>
<source>WiFi signal strength</source> <source>WiFi signal strength</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: wifiStrength, ID: {6ea906d4-5740-454d-a730-6fdb9fa0d624}) <extracomment>The name of the ParamType (ThingClass: indoor, EventType: wifiStrength, ID: {6ea906d4-5740-454d-a730-6fdb9fa0d624})
---------- ----------
@ -291,14 +344,14 @@ The name of the StateType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass
<translation>Síla signálu WiFi</translation> <translation>Síla signálu WiFi</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="267"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="304"/>
<source>WiFi signal strength changed</source> <source>WiFi signal strength changed</source>
<extracomment>The name of the EventType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment> <extracomment>The name of the EventType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation>Síla signálu WiFi se změnila</translation> <translation>Síla signálu WiFi se změnila</translation>
</message> </message>
<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="307"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="273"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="310"/>
<source>name</source> <source>name</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {719e1f92-a9c8-42d6-83e1-652a0f182209}) <extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {719e1f92-a9c8-42d6-83e1-652a0f182209})
---------- ----------
@ -306,13 +359,13 @@ The name of the ParamType (ThingClass: indoor, Type: thing, ID: {a97d256c-e159-4
<translation>název</translation> <translation>název</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="141"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="160"/>
<source>Indoor Station</source> <source>Indoor Station</source>
<extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment> <extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment>
<translation>Vnitřní stanice</translation> <translation>Vnitřní stanice</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="186"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="214"/>
<source>Outdoor Station</source> <source>Outdoor Station</source>
<extracomment>The name of the ThingClass ({6cc01d62-7317-4ec4-8ac4-a4cab762c179})</extracomment> <extracomment>The name of the ThingClass ({6cc01d62-7317-4ec4-8ac4-a4cab762c179})</extracomment>
<translation>Venkovní stanice</translation> <translation>Venkovní stanice</translation>

View File

@ -4,22 +4,33 @@
<context> <context>
<name>IntegrationPluginNetatmo</name> <name>IntegrationPluginNetatmo</name>
<message> <message>
<location filename="../integrationpluginnetatmo.cpp" line="55"/> <location filename="../integrationpluginnetatmo.cpp" line="59"/>
<location filename="../integrationpluginnetatmo.cpp" line="144"/>
<source>No API key installed</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="71"/>
<source>Netatmo server is not reachable.</source> <source>Netatmo server is not reachable.</source>
<translation>Netatmo-serveren kan ikke nås.</translation> <translation>Netatmo-serveren kan ikke nås.</translation>
</message> </message>
<message> <message>
<location filename="../integrationpluginnetatmo.cpp" line="57"/> <location filename="../integrationpluginnetatmo.cpp" line="73"/>
<source>Please enter the login credentials for your Netatmo account.</source> <source>Please enter the login credentials for your Netatmo account.</source>
<translation>Indtast login-legitimationsoplysninger for din Netatmo-konto.</translation> <translation>Indtast login-legitimationsoplysninger for din Netatmo-konto.</translation>
</message> </message>
<message> <message>
<location filename="../integrationpluginnetatmo.cpp" line="79"/> <location filename="../integrationpluginnetatmo.cpp" line="96"/>
<source>Wrong username or password</source> <source>Wrong username or password</source>
<translation>Forkert brugernavn eller adgangskode</translation> <translation>Forkert brugernavn eller adgangskode</translation>
</message> </message>
<message> <message>
<location filename="../integrationpluginnetatmo.cpp" line="147"/> <location filename="../integrationpluginnetatmo.cpp" line="139"/>
<source>Login credentials not found.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="186"/>
<source>Error logging in to Netatmo server.</source> <source>Error logging in to Netatmo server.</source>
<translation>Fejl ved login Netatmo-serveren.</translation> <translation>Fejl ved login Netatmo-serveren.</translation>
</message> </message>
@ -27,8 +38,8 @@
<context> <context>
<name>Netatmo</name> <name>Netatmo</name>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="84"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="97"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="87"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="100"/>
<source>Available</source> <source>Available</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: connected, ID: {2f79bc1d-27ed-480a-b583-728363c83ea6}) <extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: connected, ID: {2f79bc1d-27ed-480a-b583-728363c83ea6})
---------- ----------
@ -36,20 +47,20 @@ The name of the StateType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass
<translation>Tilgængelig</translation> <translation>Tilgængelig</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="90"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="103"/>
<source>Available changed</source> <source>Available changed</source>
<extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment> <extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation>Tilgængelig ændret</translation> <translation>Tilgængelig ændret</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="93"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="106"/>
<source>Base station</source> <source>Base station</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment> <extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment>
<translation>Basisstation</translation> <translation>Basisstation</translation>
</message> </message>
<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="109"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="99"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="112"/>
<source>Battery</source> <source>Battery</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryLevel, ID: {15d8fae1-ba47-42e1-994d-530e8017c965}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryLevel, ID: {15d8fae1-ba47-42e1-994d-530e8017c965})
---------- ----------
@ -57,14 +68,14 @@ The name of the StateType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass
<translation>Batteri</translation> <translation>Batteri</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="102"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="115"/>
<source>Battery changed</source> <source>Battery changed</source>
<extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment> <extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation>Batteri ændret</translation> <translation>Batteri ændret</translation>
</message> </message>
<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="118"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="108"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="121"/>
<source>Battery critical</source> <source>Battery critical</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryCritical, ID: {f8aeb144-014d-4ccb-81db-64ffc70f1c97}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryCritical, ID: {f8aeb144-014d-4ccb-81db-64ffc70f1c97})
---------- ----------
@ -72,14 +83,14 @@ The name of the StateType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass
<translation>Batterikritisk</translation> <translation>Batterikritisk</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="111"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="124"/>
<source>Battery critical changed</source> <source>Battery critical changed</source>
<extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment> <extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation>Batterikritisk ændret</translation> <translation>Batterikritisk ændret</translation>
</message> </message>
<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="127"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="117"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="130"/>
<source>CO2</source> <source>CO2</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: co2, ID: {e5710bd1-79fa-4bd4-9052-8416aae909b9}) <extracomment>The name of the ParamType (ThingClass: indoor, EventType: co2, ID: {e5710bd1-79fa-4bd4-9052-8416aae909b9})
---------- ----------
@ -87,16 +98,28 @@ The name of the StateType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass
<translation>CO2</translation> <translation>CO2</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="120"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="133"/>
<source>CO2 changed</source> <source>CO2 changed</source>
<extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment> <extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation>CO2 ændret</translation> <translation>CO2 ændret</translation>
</message> </message>
<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="136"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="126"/> <source>Custom client id</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="129"/> <extracomment>The name of the ParamType (ThingClass: netatmo, Type: plugin, ID: {fbda653d-d59e-438c-a70c-0ccbe8080215})</extracomment>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="132"/> <translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="139"/>
<source>Custom client secret</source>
<extracomment>The name of the ParamType (ThingClass: netatmo, Type: plugin, ID: {06439e1e-da15-4483-8737-0a6aa967c479})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="142"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="145"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="148"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="151"/>
<source>Humidity</source> <source>Humidity</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: humidity, ID: {7ba6ddeb-5142-4b87-9729-487fcda394df}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: humidity, ID: {7ba6ddeb-5142-4b87-9729-487fcda394df})
---------- ----------
@ -108,8 +131,8 @@ The name of the StateType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass
<translation>Fugtighed</translation> <translation>Fugtighed</translation>
</message> </message>
<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="154"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="138"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="157"/>
<source>Humidity changed</source> <source>Humidity changed</source>
<extracomment>The name of the EventType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor <extracomment>The name of the EventType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor
---------- ----------
@ -117,10 +140,10 @@ The name of the EventType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass
<translation>Fugtighed ændrede</translation> <translation>Fugtighed ændrede</translation>
</message> </message>
<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="163"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="147"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="166"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="150"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="169"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="153"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="172"/>
<source>Last update</source> <source>Last update</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: updateTime, ID: {154aad5c-4998-43c2-b9ee-0b997eb6dd69}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: updateTime, ID: {154aad5c-4998-43c2-b9ee-0b997eb6dd69})
---------- ----------
@ -132,8 +155,8 @@ The name of the StateType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass
<translation>Sidste opdatering</translation> <translation>Sidste opdatering</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="156"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="175"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="159"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="178"/>
<source>Last update changed</source> <source>Last update changed</source>
<extracomment>The name of the EventType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor <extracomment>The name of the EventType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
---------- ----------
@ -141,8 +164,23 @@ The name of the EventType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass
<translation>Sidste opdatering ændret</translation> <translation>Sidste opdatering ændret</translation>
</message> </message>
<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="181"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="165"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="184"/>
<source>Logged in</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: loggedIn, ID: {d1ca8579-5d5a-4372-9139-4b083efead2e})
----------
The name of the StateType ({d1ca8579-5d5a-4372-9139-4b083efead2e}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="187"/>
<source>Logged inchanged</source>
<extracomment>The name of the EventType ({d1ca8579-5d5a-4372-9139-4b083efead2e}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="190"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="193"/>
<source>MAC Address</source> <source>MAC Address</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {73a76c5c-84f5-4e65-8541-457e5aca9bb0}) <extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {73a76c5c-84f5-4e65-8541-457e5aca9bb0})
---------- ----------
@ -150,8 +188,8 @@ The name of the ParamType (ThingClass: indoor, Type: thing, ID: {157d470a-e579-4
<translation>MAC Address</translation> <translation>MAC Address</translation>
</message> </message>
<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="196"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="171"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="199"/>
<source>Netatmo</source> <source>Netatmo</source>
<extracomment>The name of the vendor ({4b46b4ed-5ec9-4aa4-afc3-92d3f80e6351}) <extracomment>The name of the vendor ({4b46b4ed-5ec9-4aa4-afc3-92d3f80e6351})
---------- ----------
@ -159,14 +197,14 @@ The name of the plugin Netatmo ({69d14951-0c02-4877-bcef-dffdf48b7ccb})</extraco
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="174"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="202"/>
<source>Netatmo Connection</source> <source>Netatmo Connection</source>
<extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment> <extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment>
<translation>Netatmo-forbindelse</translation> <translation>Netatmo-forbindelse</translation>
</message> </message>
<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="205"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="180"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="208"/>
<source>Noise</source> <source>Noise</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: noise, ID: {906cea9d-1daf-4e9c-90b9-e40f43052a34}) <extracomment>The name of the ParamType (ThingClass: indoor, EventType: noise, ID: {906cea9d-1daf-4e9c-90b9-e40f43052a34})
---------- ----------
@ -174,14 +212,14 @@ The name of the StateType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass
<translation>Støj</translation> <translation>Støj</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="183"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="211"/>
<source>Noise changed</source> <source>Noise changed</source>
<extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment> <extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation>Støj ændret</translation> <translation>Støj ændret</translation>
</message> </message>
<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="217"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="192"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="220"/>
<source>Pressure</source> <source>Pressure</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: pressure, ID: {03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) <extracomment>The name of the ParamType (ThingClass: indoor, EventType: pressure, ID: {03b0a7b7-987d-4d3b-b3f0-21d9f92ad326})
---------- ----------
@ -189,14 +227,14 @@ The name of the StateType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass
<translation>Lufttryk</translation> <translation>Lufttryk</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="195"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="223"/>
<source>Pressure changed</source> <source>Pressure changed</source>
<extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment> <extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation>Lufttryk ændret</translation> <translation>Lufttryk ændret</translation>
</message> </message>
<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="226"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="201"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="229"/>
<source>Signal strength</source> <source>Signal strength</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: signalStrength, ID: {0faa3d08-9004-46fb-a5aa-a59b75e454cc}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: signalStrength, ID: {0faa3d08-9004-46fb-a5aa-a59b75e454cc})
---------- ----------
@ -204,16 +242,16 @@ The name of the StateType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass
<translation>Signalstyrke</translation> <translation>Signalstyrke</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="204"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="232"/>
<source>Signal strength changed</source> <source>Signal strength changed</source>
<extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment> <extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation>Signalstyrke ændret</translation> <translation>Signalstyrke ændret</translation>
</message> </message>
<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="235"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="210"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="238"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="213"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="241"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="216"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="244"/>
<source>Temperature</source> <source>Temperature</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperature, ID: {f98776bd-887e-4b01-a87f-3d8224180563}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperature, ID: {f98776bd-887e-4b01-a87f-3d8224180563})
---------- ----------
@ -225,8 +263,8 @@ The name of the StateType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass
<translation>Temperatur</translation> <translation>Temperatur</translation>
</message> </message>
<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="247"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="222"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="250"/>
<source>Temperature changed</source> <source>Temperature changed</source>
<extracomment>The name of the EventType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor <extracomment>The name of the EventType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
---------- ----------
@ -234,10 +272,10 @@ The name of the EventType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass
<translation>Temperatur ændret</translation> <translation>Temperatur ændret</translation>
</message> </message>
<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="253"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="228"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="256"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="231"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="259"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="234"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="262"/>
<source>Temperature maximum</source> <source>Temperature maximum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMax, ID: {aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMax, ID: {aae071dc-70d5-4a6a-8daa-3dca0d150bd7})
---------- ----------
@ -249,8 +287,8 @@ The name of the StateType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass
<translation>Maximal temperatur</translation> <translation>Maximal temperatur</translation>
</message> </message>
<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="265"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="240"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="268"/>
<source>Temperature maximum changed</source> <source>Temperature maximum changed</source>
<extracomment>The name of the EventType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor <extracomment>The name of the EventType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
---------- ----------
@ -258,10 +296,10 @@ The name of the EventType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass
<translation>Maximal temperatur ændret</translation> <translation>Maximal temperatur ændret</translation>
</message> </message>
<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="271"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="246"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="274"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="249"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="277"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="252"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="280"/>
<source>Temperature minimum</source> <source>Temperature minimum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMin, ID: {b71e0c8b-3c94-421e-830e-dab97b6c104e}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMin, ID: {b71e0c8b-3c94-421e-830e-dab97b6c104e})
---------- ----------
@ -273,8 +311,8 @@ The name of the StateType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass
<translation>Minimumstemperatur</translation> <translation>Minimumstemperatur</translation>
</message> </message>
<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="283"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="258"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="286"/>
<source>Temperature minimum changed</source> <source>Temperature minimum changed</source>
<extracomment>The name of the EventType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor <extracomment>The name of the EventType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
---------- ----------
@ -282,8 +320,23 @@ The name of the EventType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass
<translation>Minimumstemperatur ændret</translation> <translation>Minimumstemperatur ændret</translation>
</message> </message>
<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="289"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="264"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="292"/>
<source>Username</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: userDisplayName, ID: {b9c98ae6-3687-4279-8fda-bc02c7b7ea38})
----------
The name of the StateType ({b9c98ae6-3687-4279-8fda-bc02c7b7ea38}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="295"/>
<source>Username changed</source>
<extracomment>The name of the EventType ({b9c98ae6-3687-4279-8fda-bc02c7b7ea38}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="298"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="301"/>
<source>WiFi signal strength</source> <source>WiFi signal strength</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: wifiStrength, ID: {6ea906d4-5740-454d-a730-6fdb9fa0d624}) <extracomment>The name of the ParamType (ThingClass: indoor, EventType: wifiStrength, ID: {6ea906d4-5740-454d-a730-6fdb9fa0d624})
---------- ----------
@ -291,14 +344,14 @@ The name of the StateType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass
<translation>WiFi signalstyrke</translation> <translation>WiFi signalstyrke</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="267"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="304"/>
<source>WiFi signal strength changed</source> <source>WiFi signal strength changed</source>
<extracomment>The name of the EventType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment> <extracomment>The name of the EventType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation>WiFi signalstyrke ændret</translation> <translation>WiFi signalstyrke ændret</translation>
</message> </message>
<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="307"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="273"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="310"/>
<source>name</source> <source>name</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {719e1f92-a9c8-42d6-83e1-652a0f182209}) <extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {719e1f92-a9c8-42d6-83e1-652a0f182209})
---------- ----------
@ -306,13 +359,13 @@ The name of the ParamType (ThingClass: indoor, Type: thing, ID: {a97d256c-e159-4
<translation>navn</translation> <translation>navn</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="141"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="160"/>
<source>Indoor Station</source> <source>Indoor Station</source>
<extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment> <extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment>
<translation>Indendørsstation</translation> <translation>Indendørsstation</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="186"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="214"/>
<source>Outdoor Station</source> <source>Outdoor Station</source>
<extracomment>The name of the ThingClass ({6cc01d62-7317-4ec4-8ac4-a4cab762c179})</extracomment> <extracomment>The name of the ThingClass ({6cc01d62-7317-4ec4-8ac4-a4cab762c179})</extracomment>
<translation>Udendørsstation</translation> <translation>Udendørsstation</translation>

View File

@ -4,22 +4,33 @@
<context> <context>
<name>IntegrationPluginNetatmo</name> <name>IntegrationPluginNetatmo</name>
<message> <message>
<location filename="../integrationpluginnetatmo.cpp" line="55"/> <location filename="../integrationpluginnetatmo.cpp" line="59"/>
<location filename="../integrationpluginnetatmo.cpp" line="144"/>
<source>No API key installed</source>
<translation>Kein API Schlüssel installiert</translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="71"/>
<source>Netatmo server is not reachable.</source> <source>Netatmo server is not reachable.</source>
<translation>Netatmo Server ist nicht erreichbar.</translation> <translation>Netatmo Server ist nicht erreichbar.</translation>
</message> </message>
<message> <message>
<location filename="../integrationpluginnetatmo.cpp" line="57"/> <location filename="../integrationpluginnetatmo.cpp" line="73"/>
<source>Please enter the login credentials for your Netatmo account.</source> <source>Please enter the login credentials for your Netatmo account.</source>
<translation>Bitte geben Sie die Anmeldeinformationen für Ihr Netatmo-Konto ein.</translation> <translation>Bitte geben Sie die Anmeldeinformationen für Ihr Netatmo-Konto ein.</translation>
</message> </message>
<message> <message>
<location filename="../integrationpluginnetatmo.cpp" line="79"/> <location filename="../integrationpluginnetatmo.cpp" line="96"/>
<source>Wrong username or password</source> <source>Wrong username or password</source>
<translation>Benutzername oder Passwort falsch</translation> <translation>Benutzername oder Passwort falsch</translation>
</message> </message>
<message> <message>
<location filename="../integrationpluginnetatmo.cpp" line="147"/> <location filename="../integrationpluginnetatmo.cpp" line="139"/>
<source>Login credentials not found.</source>
<translation>Anmeldeinformationen nicht gefunden.</translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="186"/>
<source>Error logging in to Netatmo server.</source> <source>Error logging in to Netatmo server.</source>
<translation>Fehler beim Anmelden am Netatmo-Server.</translation> <translation>Fehler beim Anmelden am Netatmo-Server.</translation>
</message> </message>
@ -27,8 +38,8 @@
<context> <context>
<name>Netatmo</name> <name>Netatmo</name>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="84"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="97"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="87"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="100"/>
<source>Available</source> <source>Available</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: connected, ID: {2f79bc1d-27ed-480a-b583-728363c83ea6}) <extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: connected, ID: {2f79bc1d-27ed-480a-b583-728363c83ea6})
---------- ----------
@ -36,20 +47,20 @@ The name of the StateType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass
<translation>Verfügbar</translation> <translation>Verfügbar</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="90"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="103"/>
<source>Available changed</source> <source>Available changed</source>
<extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment> <extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation>Verfügbar geändert</translation> <translation>Verfügbar geändert</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="93"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="106"/>
<source>Base station</source> <source>Base station</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment> <extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment>
<translation>Basisstation</translation> <translation>Basisstation</translation>
</message> </message>
<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="109"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="99"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="112"/>
<source>Battery</source> <source>Battery</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryLevel, ID: {15d8fae1-ba47-42e1-994d-530e8017c965}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryLevel, ID: {15d8fae1-ba47-42e1-994d-530e8017c965})
---------- ----------
@ -57,14 +68,14 @@ The name of the StateType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass
<translation>Batterie</translation> <translation>Batterie</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="102"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="115"/>
<source>Battery changed</source> <source>Battery changed</source>
<extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment> <extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation>Batterie geändert</translation> <translation>Batterie geändert</translation>
</message> </message>
<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="118"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="108"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="121"/>
<source>Battery critical</source> <source>Battery critical</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryCritical, ID: {f8aeb144-014d-4ccb-81db-64ffc70f1c97}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryCritical, ID: {f8aeb144-014d-4ccb-81db-64ffc70f1c97})
---------- ----------
@ -72,14 +83,14 @@ The name of the StateType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass
<translation>Batterie kritisch</translation> <translation>Batterie kritisch</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="111"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="124"/>
<source>Battery critical changed</source> <source>Battery critical changed</source>
<extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment> <extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation>Batterie kritisch geändert</translation> <translation>Batterie kritisch geändert</translation>
</message> </message>
<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="127"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="117"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="130"/>
<source>CO2</source> <source>CO2</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: co2, ID: {e5710bd1-79fa-4bd4-9052-8416aae909b9}) <extracomment>The name of the ParamType (ThingClass: indoor, EventType: co2, ID: {e5710bd1-79fa-4bd4-9052-8416aae909b9})
---------- ----------
@ -87,16 +98,28 @@ The name of the StateType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass
<translation>CO2</translation> <translation>CO2</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="120"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="133"/>
<source>CO2 changed</source> <source>CO2 changed</source>
<extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment> <extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation>CO2 geändert</translation> <translation>CO2 geändert</translation>
</message> </message>
<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="136"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="126"/> <source>Custom client id</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="129"/> <extracomment>The name of the ParamType (ThingClass: netatmo, Type: plugin, ID: {fbda653d-d59e-438c-a70c-0ccbe8080215})</extracomment>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="132"/> <translation>Benutzerdefinierte Client-ID</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="139"/>
<source>Custom client secret</source>
<extracomment>The name of the ParamType (ThingClass: netatmo, Type: plugin, ID: {06439e1e-da15-4483-8737-0a6aa967c479})</extracomment>
<translation>Benutzerdefinierte Client-Secret</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="142"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="145"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="148"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="151"/>
<source>Humidity</source> <source>Humidity</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: humidity, ID: {7ba6ddeb-5142-4b87-9729-487fcda394df}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: humidity, ID: {7ba6ddeb-5142-4b87-9729-487fcda394df})
---------- ----------
@ -108,8 +131,8 @@ The name of the StateType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass
<translation>Luftfeuchte</translation> <translation>Luftfeuchte</translation>
</message> </message>
<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="154"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="138"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="157"/>
<source>Humidity changed</source> <source>Humidity changed</source>
<extracomment>The name of the EventType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor <extracomment>The name of the EventType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor
---------- ----------
@ -117,10 +140,10 @@ The name of the EventType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass
<translation>Luftfeuchte geändert</translation> <translation>Luftfeuchte geändert</translation>
</message> </message>
<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="163"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="147"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="166"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="150"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="169"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="153"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="172"/>
<source>Last update</source> <source>Last update</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: updateTime, ID: {154aad5c-4998-43c2-b9ee-0b997eb6dd69}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: updateTime, ID: {154aad5c-4998-43c2-b9ee-0b997eb6dd69})
---------- ----------
@ -132,8 +155,8 @@ The name of the StateType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass
<translation>Letztes Update</translation> <translation>Letztes Update</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="156"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="175"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="159"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="178"/>
<source>Last update changed</source> <source>Last update changed</source>
<extracomment>The name of the EventType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor <extracomment>The name of the EventType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
---------- ----------
@ -141,8 +164,23 @@ The name of the EventType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass
<translation>Letztes Update geändert</translation> <translation>Letztes Update geändert</translation>
</message> </message>
<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="181"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="165"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="184"/>
<source>Logged in</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: loggedIn, ID: {d1ca8579-5d5a-4372-9139-4b083efead2e})
----------
The name of the StateType ({d1ca8579-5d5a-4372-9139-4b083efead2e}) of ThingClass netatmoConnection</extracomment>
<translation>Eingeloggt</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="187"/>
<source>Logged inchanged</source>
<extracomment>The name of the EventType ({d1ca8579-5d5a-4372-9139-4b083efead2e}) of ThingClass netatmoConnection</extracomment>
<translation>Eingeloggt geändert</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="190"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="193"/>
<source>MAC Address</source> <source>MAC Address</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {73a76c5c-84f5-4e65-8541-457e5aca9bb0}) <extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {73a76c5c-84f5-4e65-8541-457e5aca9bb0})
---------- ----------
@ -150,8 +188,8 @@ The name of the ParamType (ThingClass: indoor, Type: thing, ID: {157d470a-e579-4
<translation>MAC Adresse</translation> <translation>MAC Adresse</translation>
</message> </message>
<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="196"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="171"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="199"/>
<source>Netatmo</source> <source>Netatmo</source>
<extracomment>The name of the vendor ({4b46b4ed-5ec9-4aa4-afc3-92d3f80e6351}) <extracomment>The name of the vendor ({4b46b4ed-5ec9-4aa4-afc3-92d3f80e6351})
---------- ----------
@ -159,14 +197,14 @@ The name of the plugin Netatmo ({69d14951-0c02-4877-bcef-dffdf48b7ccb})</extraco
<translation>Netatmo</translation> <translation>Netatmo</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="174"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="202"/>
<source>Netatmo Connection</source> <source>Netatmo Connection</source>
<extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment> <extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment>
<translation>Netatmo Verbindung</translation> <translation>Netatmo Verbindung</translation>
</message> </message>
<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="205"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="180"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="208"/>
<source>Noise</source> <source>Noise</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: noise, ID: {906cea9d-1daf-4e9c-90b9-e40f43052a34}) <extracomment>The name of the ParamType (ThingClass: indoor, EventType: noise, ID: {906cea9d-1daf-4e9c-90b9-e40f43052a34})
---------- ----------
@ -174,14 +212,14 @@ The name of the StateType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass
<translation>Geräusch</translation> <translation>Geräusch</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="183"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="211"/>
<source>Noise changed</source> <source>Noise changed</source>
<extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment> <extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation>Geräusch geändert</translation> <translation>Geräusch geändert</translation>
</message> </message>
<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="217"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="192"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="220"/>
<source>Pressure</source> <source>Pressure</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: pressure, ID: {03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) <extracomment>The name of the ParamType (ThingClass: indoor, EventType: pressure, ID: {03b0a7b7-987d-4d3b-b3f0-21d9f92ad326})
---------- ----------
@ -189,14 +227,14 @@ The name of the StateType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass
<translation>Luftdruck</translation> <translation>Luftdruck</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="195"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="223"/>
<source>Pressure changed</source> <source>Pressure changed</source>
<extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment> <extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation>Luftdruck geändert</translation> <translation>Luftdruck geändert</translation>
</message> </message>
<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="226"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="201"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="229"/>
<source>Signal strength</source> <source>Signal strength</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: signalStrength, ID: {0faa3d08-9004-46fb-a5aa-a59b75e454cc}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: signalStrength, ID: {0faa3d08-9004-46fb-a5aa-a59b75e454cc})
---------- ----------
@ -204,16 +242,16 @@ The name of the StateType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass
<translation>Signalstärke</translation> <translation>Signalstärke</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="204"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="232"/>
<source>Signal strength changed</source> <source>Signal strength changed</source>
<extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment> <extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation>Signalstärke geändert</translation> <translation>Signalstärke geändert</translation>
</message> </message>
<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="235"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="210"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="238"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="213"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="241"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="216"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="244"/>
<source>Temperature</source> <source>Temperature</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperature, ID: {f98776bd-887e-4b01-a87f-3d8224180563}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperature, ID: {f98776bd-887e-4b01-a87f-3d8224180563})
---------- ----------
@ -225,8 +263,8 @@ The name of the StateType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass
<translation>Temperatur</translation> <translation>Temperatur</translation>
</message> </message>
<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="247"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="222"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="250"/>
<source>Temperature changed</source> <source>Temperature changed</source>
<extracomment>The name of the EventType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor <extracomment>The name of the EventType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
---------- ----------
@ -234,10 +272,10 @@ The name of the EventType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass
<translation>Temperatur geändert</translation> <translation>Temperatur geändert</translation>
</message> </message>
<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="253"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="228"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="256"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="231"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="259"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="234"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="262"/>
<source>Temperature maximum</source> <source>Temperature maximum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMax, ID: {aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMax, ID: {aae071dc-70d5-4a6a-8daa-3dca0d150bd7})
---------- ----------
@ -249,8 +287,8 @@ The name of the StateType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass
<translation>Temperaturmaximum</translation> <translation>Temperaturmaximum</translation>
</message> </message>
<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="265"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="240"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="268"/>
<source>Temperature maximum changed</source> <source>Temperature maximum changed</source>
<extracomment>The name of the EventType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor <extracomment>The name of the EventType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
---------- ----------
@ -258,10 +296,10 @@ The name of the EventType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass
<translation>Temperaturmaximum geändert</translation> <translation>Temperaturmaximum geändert</translation>
</message> </message>
<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="271"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="246"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="274"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="249"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="277"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="252"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="280"/>
<source>Temperature minimum</source> <source>Temperature minimum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMin, ID: {b71e0c8b-3c94-421e-830e-dab97b6c104e}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMin, ID: {b71e0c8b-3c94-421e-830e-dab97b6c104e})
---------- ----------
@ -273,8 +311,8 @@ The name of the StateType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass
<translation>Temperaturminimum</translation> <translation>Temperaturminimum</translation>
</message> </message>
<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="283"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="258"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="286"/>
<source>Temperature minimum changed</source> <source>Temperature minimum changed</source>
<extracomment>The name of the EventType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor <extracomment>The name of the EventType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
---------- ----------
@ -282,8 +320,23 @@ The name of the EventType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass
<translation>Temperaturminimum geändert</translation> <translation>Temperaturminimum geändert</translation>
</message> </message>
<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="289"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="264"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="292"/>
<source>Username</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: userDisplayName, ID: {b9c98ae6-3687-4279-8fda-bc02c7b7ea38})
----------
The name of the StateType ({b9c98ae6-3687-4279-8fda-bc02c7b7ea38}) of ThingClass netatmoConnection</extracomment>
<translation>Benutzername</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="295"/>
<source>Username changed</source>
<extracomment>The name of the EventType ({b9c98ae6-3687-4279-8fda-bc02c7b7ea38}) of ThingClass netatmoConnection</extracomment>
<translation>Benutzername geändert</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="298"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="301"/>
<source>WiFi signal strength</source> <source>WiFi signal strength</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: wifiStrength, ID: {6ea906d4-5740-454d-a730-6fdb9fa0d624}) <extracomment>The name of the ParamType (ThingClass: indoor, EventType: wifiStrength, ID: {6ea906d4-5740-454d-a730-6fdb9fa0d624})
---------- ----------
@ -291,14 +344,14 @@ The name of the StateType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass
<translation>WiFi Signalstärke</translation> <translation>WiFi Signalstärke</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="267"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="304"/>
<source>WiFi signal strength changed</source> <source>WiFi signal strength changed</source>
<extracomment>The name of the EventType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment> <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>
<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="307"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="273"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="310"/>
<source>name</source> <source>name</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {719e1f92-a9c8-42d6-83e1-652a0f182209}) <extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {719e1f92-a9c8-42d6-83e1-652a0f182209})
---------- ----------
@ -306,13 +359,13 @@ The name of the ParamType (ThingClass: indoor, Type: thing, ID: {a97d256c-e159-4
<translation>Name</translation> <translation>Name</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="141"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="160"/>
<source>Indoor Station</source> <source>Indoor Station</source>
<extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment> <extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment>
<translation>Innenstation</translation> <translation>Innenstation</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="186"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="214"/>
<source>Outdoor Station</source> <source>Outdoor Station</source>
<extracomment>The name of the ThingClass ({6cc01d62-7317-4ec4-8ac4-a4cab762c179})</extracomment> <extracomment>The name of the ThingClass ({6cc01d62-7317-4ec4-8ac4-a4cab762c179})</extracomment>
<translation>Außenstation</translation> <translation>Außenstation</translation>

View File

@ -4,22 +4,33 @@
<context> <context>
<name>IntegrationPluginNetatmo</name> <name>IntegrationPluginNetatmo</name>
<message> <message>
<location filename="../integrationpluginnetatmo.cpp" line="55"/> <location filename="../integrationpluginnetatmo.cpp" line="59"/>
<location filename="../integrationpluginnetatmo.cpp" line="144"/>
<source>No API key installed</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="71"/>
<source>Netatmo server is not reachable.</source> <source>Netatmo server is not reachable.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../integrationpluginnetatmo.cpp" line="57"/> <location filename="../integrationpluginnetatmo.cpp" line="73"/>
<source>Please enter the login credentials for your Netatmo account.</source> <source>Please enter the login credentials for your Netatmo account.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../integrationpluginnetatmo.cpp" line="79"/> <location filename="../integrationpluginnetatmo.cpp" line="96"/>
<source>Wrong username or password</source> <source>Wrong username or password</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../integrationpluginnetatmo.cpp" line="147"/> <location filename="../integrationpluginnetatmo.cpp" line="139"/>
<source>Login credentials not found.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="186"/>
<source>Error logging in to Netatmo server.</source> <source>Error logging in to Netatmo server.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -27,8 +38,8 @@
<context> <context>
<name>Netatmo</name> <name>Netatmo</name>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="84"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="97"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="87"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="100"/>
<source>Available</source> <source>Available</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: connected, ID: {2f79bc1d-27ed-480a-b583-728363c83ea6}) <extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: connected, ID: {2f79bc1d-27ed-480a-b583-728363c83ea6})
---------- ----------
@ -36,20 +47,20 @@ The name of the StateType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="90"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="103"/>
<source>Available changed</source> <source>Available changed</source>
<extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment> <extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="93"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="106"/>
<source>Base station</source> <source>Base station</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment> <extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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="109"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="99"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="112"/>
<source>Battery</source> <source>Battery</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryLevel, ID: {15d8fae1-ba47-42e1-994d-530e8017c965}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryLevel, ID: {15d8fae1-ba47-42e1-994d-530e8017c965})
---------- ----------
@ -57,14 +68,14 @@ The name of the StateType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="102"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="115"/>
<source>Battery changed</source> <source>Battery changed</source>
<extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment> <extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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="118"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="108"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="121"/>
<source>Battery critical</source> <source>Battery critical</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryCritical, ID: {f8aeb144-014d-4ccb-81db-64ffc70f1c97}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryCritical, ID: {f8aeb144-014d-4ccb-81db-64ffc70f1c97})
---------- ----------
@ -72,14 +83,14 @@ The name of the StateType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="111"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="124"/>
<source>Battery critical changed</source> <source>Battery critical changed</source>
<extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment> <extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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="127"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="117"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="130"/>
<source>CO2</source> <source>CO2</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: co2, ID: {e5710bd1-79fa-4bd4-9052-8416aae909b9}) <extracomment>The name of the ParamType (ThingClass: indoor, EventType: co2, ID: {e5710bd1-79fa-4bd4-9052-8416aae909b9})
---------- ----------
@ -87,16 +98,28 @@ The name of the StateType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="120"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="133"/>
<source>CO2 changed</source> <source>CO2 changed</source>
<extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment> <extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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="136"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="126"/> <source>Custom client id</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="129"/> <extracomment>The name of the ParamType (ThingClass: netatmo, Type: plugin, ID: {fbda653d-d59e-438c-a70c-0ccbe8080215})</extracomment>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="132"/> <translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="139"/>
<source>Custom client secret</source>
<extracomment>The name of the ParamType (ThingClass: netatmo, Type: plugin, ID: {06439e1e-da15-4483-8737-0a6aa967c479})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="142"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="145"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="148"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="151"/>
<source>Humidity</source> <source>Humidity</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: humidity, ID: {7ba6ddeb-5142-4b87-9729-487fcda394df}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: humidity, ID: {7ba6ddeb-5142-4b87-9729-487fcda394df})
---------- ----------
@ -108,8 +131,8 @@ The name of the StateType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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="154"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="138"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="157"/>
<source>Humidity changed</source> <source>Humidity changed</source>
<extracomment>The name of the EventType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor <extracomment>The name of the EventType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor
---------- ----------
@ -117,10 +140,10 @@ The name of the EventType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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="163"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="147"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="166"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="150"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="169"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="153"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="172"/>
<source>Last update</source> <source>Last update</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: updateTime, ID: {154aad5c-4998-43c2-b9ee-0b997eb6dd69}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: updateTime, ID: {154aad5c-4998-43c2-b9ee-0b997eb6dd69})
---------- ----------
@ -132,8 +155,8 @@ The name of the StateType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="156"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="175"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="159"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="178"/>
<source>Last update changed</source> <source>Last update changed</source>
<extracomment>The name of the EventType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor <extracomment>The name of the EventType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
---------- ----------
@ -141,8 +164,23 @@ The name of the EventType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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="181"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="165"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="184"/>
<source>Logged in</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: loggedIn, ID: {d1ca8579-5d5a-4372-9139-4b083efead2e})
----------
The name of the StateType ({d1ca8579-5d5a-4372-9139-4b083efead2e}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="187"/>
<source>Logged inchanged</source>
<extracomment>The name of the EventType ({d1ca8579-5d5a-4372-9139-4b083efead2e}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="190"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="193"/>
<source>MAC Address</source> <source>MAC Address</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {73a76c5c-84f5-4e65-8541-457e5aca9bb0}) <extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {73a76c5c-84f5-4e65-8541-457e5aca9bb0})
---------- ----------
@ -150,8 +188,8 @@ The name of the ParamType (ThingClass: indoor, Type: thing, ID: {157d470a-e579-4
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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="196"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="171"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="199"/>
<source>Netatmo</source> <source>Netatmo</source>
<extracomment>The name of the vendor ({4b46b4ed-5ec9-4aa4-afc3-92d3f80e6351}) <extracomment>The name of the vendor ({4b46b4ed-5ec9-4aa4-afc3-92d3f80e6351})
---------- ----------
@ -159,14 +197,14 @@ The name of the plugin Netatmo ({69d14951-0c02-4877-bcef-dffdf48b7ccb})</extraco
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="174"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="202"/>
<source>Netatmo Connection</source> <source>Netatmo Connection</source>
<extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment> <extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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="205"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="180"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="208"/>
<source>Noise</source> <source>Noise</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: noise, ID: {906cea9d-1daf-4e9c-90b9-e40f43052a34}) <extracomment>The name of the ParamType (ThingClass: indoor, EventType: noise, ID: {906cea9d-1daf-4e9c-90b9-e40f43052a34})
---------- ----------
@ -174,14 +212,14 @@ The name of the StateType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="183"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="211"/>
<source>Noise changed</source> <source>Noise changed</source>
<extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment> <extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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="217"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="192"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="220"/>
<source>Pressure</source> <source>Pressure</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: pressure, ID: {03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) <extracomment>The name of the ParamType (ThingClass: indoor, EventType: pressure, ID: {03b0a7b7-987d-4d3b-b3f0-21d9f92ad326})
---------- ----------
@ -189,14 +227,14 @@ The name of the StateType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="195"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="223"/>
<source>Pressure changed</source> <source>Pressure changed</source>
<extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment> <extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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="226"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="201"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="229"/>
<source>Signal strength</source> <source>Signal strength</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: signalStrength, ID: {0faa3d08-9004-46fb-a5aa-a59b75e454cc}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: signalStrength, ID: {0faa3d08-9004-46fb-a5aa-a59b75e454cc})
---------- ----------
@ -204,16 +242,16 @@ The name of the StateType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="204"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="232"/>
<source>Signal strength changed</source> <source>Signal strength changed</source>
<extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment> <extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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="235"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="210"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="238"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="213"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="241"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="216"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="244"/>
<source>Temperature</source> <source>Temperature</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperature, ID: {f98776bd-887e-4b01-a87f-3d8224180563}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperature, ID: {f98776bd-887e-4b01-a87f-3d8224180563})
---------- ----------
@ -225,8 +263,8 @@ The name of the StateType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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="247"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="222"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="250"/>
<source>Temperature changed</source> <source>Temperature changed</source>
<extracomment>The name of the EventType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor <extracomment>The name of the EventType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
---------- ----------
@ -234,10 +272,10 @@ The name of the EventType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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="253"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="228"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="256"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="231"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="259"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="234"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="262"/>
<source>Temperature maximum</source> <source>Temperature maximum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMax, ID: {aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMax, ID: {aae071dc-70d5-4a6a-8daa-3dca0d150bd7})
---------- ----------
@ -249,8 +287,8 @@ The name of the StateType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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="265"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="240"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="268"/>
<source>Temperature maximum changed</source> <source>Temperature maximum changed</source>
<extracomment>The name of the EventType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor <extracomment>The name of the EventType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
---------- ----------
@ -258,10 +296,10 @@ The name of the EventType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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="271"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="246"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="274"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="249"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="277"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="252"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="280"/>
<source>Temperature minimum</source> <source>Temperature minimum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMin, ID: {b71e0c8b-3c94-421e-830e-dab97b6c104e}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMin, ID: {b71e0c8b-3c94-421e-830e-dab97b6c104e})
---------- ----------
@ -273,8 +311,8 @@ The name of the StateType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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="283"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="258"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="286"/>
<source>Temperature minimum changed</source> <source>Temperature minimum changed</source>
<extracomment>The name of the EventType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor <extracomment>The name of the EventType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
---------- ----------
@ -282,8 +320,23 @@ The name of the EventType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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="289"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="264"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="292"/>
<source>Username</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: userDisplayName, ID: {b9c98ae6-3687-4279-8fda-bc02c7b7ea38})
----------
The name of the StateType ({b9c98ae6-3687-4279-8fda-bc02c7b7ea38}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="295"/>
<source>Username changed</source>
<extracomment>The name of the EventType ({b9c98ae6-3687-4279-8fda-bc02c7b7ea38}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="298"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="301"/>
<source>WiFi signal strength</source> <source>WiFi signal strength</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: wifiStrength, ID: {6ea906d4-5740-454d-a730-6fdb9fa0d624}) <extracomment>The name of the ParamType (ThingClass: indoor, EventType: wifiStrength, ID: {6ea906d4-5740-454d-a730-6fdb9fa0d624})
---------- ----------
@ -291,14 +344,14 @@ The name of the StateType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="267"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="304"/>
<source>WiFi signal strength changed</source> <source>WiFi signal strength changed</source>
<extracomment>The name of the EventType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment> <extracomment>The name of the EventType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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="307"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="273"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="310"/>
<source>name</source> <source>name</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {719e1f92-a9c8-42d6-83e1-652a0f182209}) <extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {719e1f92-a9c8-42d6-83e1-652a0f182209})
---------- ----------
@ -306,13 +359,13 @@ The name of the ParamType (ThingClass: indoor, Type: thing, ID: {a97d256c-e159-4
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="141"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="160"/>
<source>Indoor Station</source> <source>Indoor Station</source>
<extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment> <extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="186"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="214"/>
<source>Outdoor Station</source> <source>Outdoor Station</source>
<extracomment>The name of the ThingClass ({6cc01d62-7317-4ec4-8ac4-a4cab762c179})</extracomment> <extracomment>The name of the ThingClass ({6cc01d62-7317-4ec4-8ac4-a4cab762c179})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>

View File

@ -4,22 +4,33 @@
<context> <context>
<name>IntegrationPluginNetatmo</name> <name>IntegrationPluginNetatmo</name>
<message> <message>
<location filename="../integrationpluginnetatmo.cpp" line="55"/> <location filename="../integrationpluginnetatmo.cpp" line="59"/>
<location filename="../integrationpluginnetatmo.cpp" line="144"/>
<source>No API key installed</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="71"/>
<source>Netatmo server is not reachable.</source> <source>Netatmo server is not reachable.</source>
<translation>O servidor Netatmo não é alcançável.</translation> <translation>O servidor Netatmo não é alcançável.</translation>
</message> </message>
<message> <message>
<location filename="../integrationpluginnetatmo.cpp" line="57"/> <location filename="../integrationpluginnetatmo.cpp" line="73"/>
<source>Please enter the login credentials for your Netatmo account.</source> <source>Please enter the login credentials for your Netatmo account.</source>
<translation>Por favor introduza as credenciais de login para a sua conta Netatmo.</translation> <translation>Por favor introduza as credenciais de login para a sua conta Netatmo.</translation>
</message> </message>
<message> <message>
<location filename="../integrationpluginnetatmo.cpp" line="79"/> <location filename="../integrationpluginnetatmo.cpp" line="96"/>
<source>Wrong username or password</source> <source>Wrong username or password</source>
<translation>Nome de utilizador ou palavra-passe errados</translation> <translation>Nome de utilizador ou palavra-passe errados</translation>
</message> </message>
<message> <message>
<location filename="../integrationpluginnetatmo.cpp" line="147"/> <location filename="../integrationpluginnetatmo.cpp" line="139"/>
<source>Login credentials not found.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="186"/>
<source>Error logging in to Netatmo server.</source> <source>Error logging in to Netatmo server.</source>
<translation>Erro ao iniciar sessão no servidor Netatmo.</translation> <translation>Erro ao iniciar sessão no servidor Netatmo.</translation>
</message> </message>
@ -27,8 +38,8 @@
<context> <context>
<name>Netatmo</name> <name>Netatmo</name>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="84"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="97"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="87"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="100"/>
<source>Available</source> <source>Available</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: connected, ID: {2f79bc1d-27ed-480a-b583-728363c83ea6}) <extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: connected, ID: {2f79bc1d-27ed-480a-b583-728363c83ea6})
---------- ----------
@ -36,20 +47,20 @@ The name of the StateType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass
<translation>Disponible en</translation> <translation>Disponible en</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="90"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="103"/>
<source>Available changed</source> <source>Available changed</source>
<extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment> <extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation>Disponible cambiado</translation> <translation>Disponible cambiado</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="93"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="106"/>
<source>Base station</source> <source>Base station</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment> <extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment>
<translation>Estación base</translation> <translation>Estación base</translation>
</message> </message>
<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="109"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="99"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="112"/>
<source>Battery</source> <source>Battery</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryLevel, ID: {15d8fae1-ba47-42e1-994d-530e8017c965}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryLevel, ID: {15d8fae1-ba47-42e1-994d-530e8017c965})
---------- ----------
@ -57,14 +68,14 @@ The name of the StateType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass
<translation>Batería</translation> <translation>Batería</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="102"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="115"/>
<source>Battery changed</source> <source>Battery changed</source>
<extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment> <extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation>Batería cambiada</translation> <translation>Batería cambiada</translation>
</message> </message>
<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="118"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="108"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="121"/>
<source>Battery critical</source> <source>Battery critical</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryCritical, ID: {f8aeb144-014d-4ccb-81db-64ffc70f1c97}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryCritical, ID: {f8aeb144-014d-4ccb-81db-64ffc70f1c97})
---------- ----------
@ -72,14 +83,14 @@ The name of the StateType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass
<translation>Batería crítica</translation> <translation>Batería crítica</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="111"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="124"/>
<source>Battery critical changed</source> <source>Battery critical changed</source>
<extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment> <extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation>Batería crítica cambiada</translation> <translation>Batería crítica cambiada</translation>
</message> </message>
<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="127"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="117"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="130"/>
<source>CO2</source> <source>CO2</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: co2, ID: {e5710bd1-79fa-4bd4-9052-8416aae909b9}) <extracomment>The name of the ParamType (ThingClass: indoor, EventType: co2, ID: {e5710bd1-79fa-4bd4-9052-8416aae909b9})
---------- ----------
@ -87,16 +98,28 @@ The name of the StateType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass
<translation>CO2</translation> <translation>CO2</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="120"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="133"/>
<source>CO2 changed</source> <source>CO2 changed</source>
<extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment> <extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation>El CO2 cambió</translation> <translation>El CO2 cambió</translation>
</message> </message>
<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="136"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="126"/> <source>Custom client id</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="129"/> <extracomment>The name of the ParamType (ThingClass: netatmo, Type: plugin, ID: {fbda653d-d59e-438c-a70c-0ccbe8080215})</extracomment>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="132"/> <translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="139"/>
<source>Custom client secret</source>
<extracomment>The name of the ParamType (ThingClass: netatmo, Type: plugin, ID: {06439e1e-da15-4483-8737-0a6aa967c479})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="142"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="145"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="148"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="151"/>
<source>Humidity</source> <source>Humidity</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: humidity, ID: {7ba6ddeb-5142-4b87-9729-487fcda394df}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: humidity, ID: {7ba6ddeb-5142-4b87-9729-487fcda394df})
---------- ----------
@ -108,8 +131,8 @@ The name of the StateType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass
<translation>Humedad</translation> <translation>Humedad</translation>
</message> </message>
<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="154"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="138"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="157"/>
<source>Humidity changed</source> <source>Humidity changed</source>
<extracomment>The name of the EventType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor <extracomment>The name of the EventType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor
---------- ----------
@ -117,10 +140,10 @@ The name of the EventType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass
<translation>La humedad cambió</translation> <translation>La humedad cambió</translation>
</message> </message>
<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="163"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="147"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="166"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="150"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="169"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="153"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="172"/>
<source>Last update</source> <source>Last update</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: updateTime, ID: {154aad5c-4998-43c2-b9ee-0b997eb6dd69}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: updateTime, ID: {154aad5c-4998-43c2-b9ee-0b997eb6dd69})
---------- ----------
@ -132,8 +155,8 @@ The name of the StateType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass
<translation>Última actualización</translation> <translation>Última actualización</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="156"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="175"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="159"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="178"/>
<source>Last update changed</source> <source>Last update changed</source>
<extracomment>The name of the EventType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor <extracomment>The name of the EventType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
---------- ----------
@ -141,8 +164,23 @@ The name of the EventType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass
<translation>La última actualización ha cambiado</translation> <translation>La última actualización ha cambiado</translation>
</message> </message>
<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="181"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="165"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="184"/>
<source>Logged in</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: loggedIn, ID: {d1ca8579-5d5a-4372-9139-4b083efead2e})
----------
The name of the StateType ({d1ca8579-5d5a-4372-9139-4b083efead2e}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="187"/>
<source>Logged inchanged</source>
<extracomment>The name of the EventType ({d1ca8579-5d5a-4372-9139-4b083efead2e}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="190"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="193"/>
<source>MAC Address</source> <source>MAC Address</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {73a76c5c-84f5-4e65-8541-457e5aca9bb0}) <extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {73a76c5c-84f5-4e65-8541-457e5aca9bb0})
---------- ----------
@ -150,8 +188,8 @@ The name of the ParamType (ThingClass: indoor, Type: thing, ID: {157d470a-e579-4
<translation>MAC Address</translation> <translation>MAC Address</translation>
</message> </message>
<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="196"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="171"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="199"/>
<source>Netatmo</source> <source>Netatmo</source>
<extracomment>The name of the vendor ({4b46b4ed-5ec9-4aa4-afc3-92d3f80e6351}) <extracomment>The name of the vendor ({4b46b4ed-5ec9-4aa4-afc3-92d3f80e6351})
---------- ----------
@ -159,14 +197,14 @@ The name of the plugin Netatmo ({69d14951-0c02-4877-bcef-dffdf48b7ccb})</extraco
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="174"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="202"/>
<source>Netatmo Connection</source> <source>Netatmo Connection</source>
<extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment> <extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment>
<translation>Conexión Netatmo</translation> <translation>Conexión Netatmo</translation>
</message> </message>
<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="205"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="180"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="208"/>
<source>Noise</source> <source>Noise</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: noise, ID: {906cea9d-1daf-4e9c-90b9-e40f43052a34}) <extracomment>The name of the ParamType (ThingClass: indoor, EventType: noise, ID: {906cea9d-1daf-4e9c-90b9-e40f43052a34})
---------- ----------
@ -174,14 +212,14 @@ The name of the StateType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass
<translation>Ruido</translation> <translation>Ruido</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="183"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="211"/>
<source>Noise changed</source> <source>Noise changed</source>
<extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment> <extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation>Ruido cambiado</translation> <translation>Ruido cambiado</translation>
</message> </message>
<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="217"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="192"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="220"/>
<source>Pressure</source> <source>Pressure</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: pressure, ID: {03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) <extracomment>The name of the ParamType (ThingClass: indoor, EventType: pressure, ID: {03b0a7b7-987d-4d3b-b3f0-21d9f92ad326})
---------- ----------
@ -189,14 +227,14 @@ The name of the StateType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass
<translation>Presión</translation> <translation>Presión</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="195"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="223"/>
<source>Pressure changed</source> <source>Pressure changed</source>
<extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment> <extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation>La presión cambió</translation> <translation>La presión cambió</translation>
</message> </message>
<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="226"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="201"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="229"/>
<source>Signal strength</source> <source>Signal strength</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: signalStrength, ID: {0faa3d08-9004-46fb-a5aa-a59b75e454cc}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: signalStrength, ID: {0faa3d08-9004-46fb-a5aa-a59b75e454cc})
---------- ----------
@ -204,16 +242,16 @@ The name of the StateType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass
<translation>La fuerza de la señal</translation> <translation>La fuerza de la señal</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="204"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="232"/>
<source>Signal strength changed</source> <source>Signal strength changed</source>
<extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment> <extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation>The strength of the signal</translation> <translation>The strength of the signal</translation>
</message> </message>
<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="235"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="210"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="238"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="213"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="241"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="216"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="244"/>
<source>Temperature</source> <source>Temperature</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperature, ID: {f98776bd-887e-4b01-a87f-3d8224180563}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperature, ID: {f98776bd-887e-4b01-a87f-3d8224180563})
---------- ----------
@ -225,8 +263,8 @@ The name of the StateType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass
<translation>Temperature</translation> <translation>Temperature</translation>
</message> </message>
<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="247"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="222"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="250"/>
<source>Temperature changed</source> <source>Temperature changed</source>
<extracomment>The name of the EventType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor <extracomment>The name of the EventType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
---------- ----------
@ -234,10 +272,10 @@ The name of the EventType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass
<translation>La temperatura cambió</translation> <translation>La temperatura cambió</translation>
</message> </message>
<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="253"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="228"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="256"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="231"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="259"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="234"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="262"/>
<source>Temperature maximum</source> <source>Temperature maximum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMax, ID: {aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMax, ID: {aae071dc-70d5-4a6a-8daa-3dca0d150bd7})
---------- ----------
@ -249,8 +287,8 @@ The name of the StateType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass
<translation>Temperatura máxima</translation> <translation>Temperatura máxima</translation>
</message> </message>
<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="265"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="240"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="268"/>
<source>Temperature maximum changed</source> <source>Temperature maximum changed</source>
<extracomment>The name of the EventType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor <extracomment>The name of the EventType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
---------- ----------
@ -258,10 +296,10 @@ The name of the EventType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass
<translation>El máximo de la temperatura ha cambiado</translation> <translation>El máximo de la temperatura ha cambiado</translation>
</message> </message>
<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="271"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="246"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="274"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="249"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="277"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="252"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="280"/>
<source>Temperature minimum</source> <source>Temperature minimum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMin, ID: {b71e0c8b-3c94-421e-830e-dab97b6c104e}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMin, ID: {b71e0c8b-3c94-421e-830e-dab97b6c104e})
---------- ----------
@ -273,8 +311,8 @@ The name of the StateType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass
<translation>Temperatura mínima</translation> <translation>Temperatura mínima</translation>
</message> </message>
<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="283"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="258"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="286"/>
<source>Temperature minimum changed</source> <source>Temperature minimum changed</source>
<extracomment>The name of the EventType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor <extracomment>The name of the EventType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
---------- ----------
@ -282,8 +320,23 @@ The name of the EventType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass
<translation>Mínimo de temperatura cambiado</translation> <translation>Mínimo de temperatura cambiado</translation>
</message> </message>
<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="289"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="264"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="292"/>
<source>Username</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: userDisplayName, ID: {b9c98ae6-3687-4279-8fda-bc02c7b7ea38})
----------
The name of the StateType ({b9c98ae6-3687-4279-8fda-bc02c7b7ea38}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="295"/>
<source>Username changed</source>
<extracomment>The name of the EventType ({b9c98ae6-3687-4279-8fda-bc02c7b7ea38}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="298"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="301"/>
<source>WiFi signal strength</source> <source>WiFi signal strength</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: wifiStrength, ID: {6ea906d4-5740-454d-a730-6fdb9fa0d624}) <extracomment>The name of the ParamType (ThingClass: indoor, EventType: wifiStrength, ID: {6ea906d4-5740-454d-a730-6fdb9fa0d624})
---------- ----------
@ -291,14 +344,14 @@ The name of the StateType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass
<translation>La intensidad de la señal de WiFi</translation> <translation>La intensidad de la señal de WiFi</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="267"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="304"/>
<source>WiFi signal strength changed</source> <source>WiFi signal strength changed</source>
<extracomment>The name of the EventType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment> <extracomment>The name of the EventType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation>La intensidad de la señal de WiFi cambió</translation> <translation>La intensidad de la señal de WiFi cambió</translation>
</message> </message>
<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="307"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="273"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="310"/>
<source>name</source> <source>name</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {719e1f92-a9c8-42d6-83e1-652a0f182209}) <extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {719e1f92-a9c8-42d6-83e1-652a0f182209})
---------- ----------
@ -306,13 +359,13 @@ The name of the ParamType (ThingClass: indoor, Type: thing, ID: {a97d256c-e159-4
<translation>nombre</translation> <translation>nombre</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="141"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="160"/>
<source>Indoor Station</source> <source>Indoor Station</source>
<extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment> <extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment>
<translation>Estación interior</translation> <translation>Estación interior</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="186"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="214"/>
<source>Outdoor Station</source> <source>Outdoor Station</source>
<extracomment>The name of the ThingClass ({6cc01d62-7317-4ec4-8ac4-a4cab762c179})</extracomment> <extracomment>The name of the ThingClass ({6cc01d62-7317-4ec4-8ac4-a4cab762c179})</extracomment>
<translation>Estación exterior</translation> <translation>Estación exterior</translation>

View File

@ -4,22 +4,33 @@
<context> <context>
<name>IntegrationPluginNetatmo</name> <name>IntegrationPluginNetatmo</name>
<message> <message>
<location filename="../integrationpluginnetatmo.cpp" line="55"/> <location filename="../integrationpluginnetatmo.cpp" line="59"/>
<location filename="../integrationpluginnetatmo.cpp" line="144"/>
<source>No API key installed</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="71"/>
<source>Netatmo server is not reachable.</source> <source>Netatmo server is not reachable.</source>
<translation>Le serveur Netatmo n&apos;est pas joignable.</translation> <translation>Le serveur Netatmo n&apos;est pas joignable.</translation>
</message> </message>
<message> <message>
<location filename="../integrationpluginnetatmo.cpp" line="57"/> <location filename="../integrationpluginnetatmo.cpp" line="73"/>
<source>Please enter the login credentials for your Netatmo account.</source> <source>Please enter the login credentials for your Netatmo account.</source>
<translation>Le serveur Netatmo n&apos;est pas joignable.</translation> <translation>Le serveur Netatmo n&apos;est pas joignable.</translation>
</message> </message>
<message> <message>
<location filename="../integrationpluginnetatmo.cpp" line="79"/> <location filename="../integrationpluginnetatmo.cpp" line="96"/>
<source>Wrong username or password</source> <source>Wrong username or password</source>
<translation>Nom d&apos;utilisateur erroné ou</translation> <translation>Nom d&apos;utilisateur erroné ou</translation>
</message> </message>
<message> <message>
<location filename="../integrationpluginnetatmo.cpp" line="147"/> <location filename="../integrationpluginnetatmo.cpp" line="139"/>
<source>Login credentials not found.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="186"/>
<source>Error logging in to Netatmo server.</source> <source>Error logging in to Netatmo server.</source>
<translation>Erreur de connexion au serveur Netatmo.</translation> <translation>Erreur de connexion au serveur Netatmo.</translation>
</message> </message>
@ -27,8 +38,8 @@
<context> <context>
<name>Netatmo</name> <name>Netatmo</name>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="84"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="97"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="87"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="100"/>
<source>Available</source> <source>Available</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: connected, ID: {2f79bc1d-27ed-480a-b583-728363c83ea6}) <extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: connected, ID: {2f79bc1d-27ed-480a-b583-728363c83ea6})
---------- ----------
@ -36,20 +47,20 @@ The name of the StateType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass
<translation>Disponible</translation> <translation>Disponible</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="90"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="103"/>
<source>Available changed</source> <source>Available changed</source>
<extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment> <extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation>Disponible modifié</translation> <translation>Disponible modifié</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="93"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="106"/>
<source>Base station</source> <source>Base station</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment> <extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment>
<translation>Station de base</translation> <translation>Station de base</translation>
</message> </message>
<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="109"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="99"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="112"/>
<source>Battery</source> <source>Battery</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryLevel, ID: {15d8fae1-ba47-42e1-994d-530e8017c965}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryLevel, ID: {15d8fae1-ba47-42e1-994d-530e8017c965})
---------- ----------
@ -57,14 +68,14 @@ The name of the StateType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass
<translation>Batterie</translation> <translation>Batterie</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="102"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="115"/>
<source>Battery changed</source> <source>Battery changed</source>
<extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment> <extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation>Pile changée</translation> <translation>Pile changée</translation>
</message> </message>
<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="118"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="108"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="121"/>
<source>Battery critical</source> <source>Battery critical</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryCritical, ID: {f8aeb144-014d-4ccb-81db-64ffc70f1c97}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryCritical, ID: {f8aeb144-014d-4ccb-81db-64ffc70f1c97})
---------- ----------
@ -72,14 +83,14 @@ The name of the StateType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass
<translation>Batterie critique</translation> <translation>Batterie critique</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="111"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="124"/>
<source>Battery critical changed</source> <source>Battery critical changed</source>
<extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment> <extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation>Changement de pile critique</translation> <translation>Changement de pile critique</translation>
</message> </message>
<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="127"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="117"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="130"/>
<source>CO2</source> <source>CO2</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: co2, ID: {e5710bd1-79fa-4bd4-9052-8416aae909b9}) <extracomment>The name of the ParamType (ThingClass: indoor, EventType: co2, ID: {e5710bd1-79fa-4bd4-9052-8416aae909b9})
---------- ----------
@ -87,16 +98,28 @@ The name of the StateType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass
<translation>CO2</translation> <translation>CO2</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="120"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="133"/>
<source>CO2 changed</source> <source>CO2 changed</source>
<extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment> <extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation>CO2 changé</translation> <translation>CO2 changé</translation>
</message> </message>
<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="136"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="126"/> <source>Custom client id</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="129"/> <extracomment>The name of the ParamType (ThingClass: netatmo, Type: plugin, ID: {fbda653d-d59e-438c-a70c-0ccbe8080215})</extracomment>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="132"/> <translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="139"/>
<source>Custom client secret</source>
<extracomment>The name of the ParamType (ThingClass: netatmo, Type: plugin, ID: {06439e1e-da15-4483-8737-0a6aa967c479})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="142"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="145"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="148"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="151"/>
<source>Humidity</source> <source>Humidity</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: humidity, ID: {7ba6ddeb-5142-4b87-9729-487fcda394df}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: humidity, ID: {7ba6ddeb-5142-4b87-9729-487fcda394df})
---------- ----------
@ -108,8 +131,8 @@ The name of the StateType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass
<translation>Humidité</translation> <translation>Humidité</translation>
</message> </message>
<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="154"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="138"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="157"/>
<source>Humidity changed</source> <source>Humidity changed</source>
<extracomment>The name of the EventType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor <extracomment>The name of the EventType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor
---------- ----------
@ -117,10 +140,10 @@ The name of the EventType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass
<translation>L&apos;humidité a changé</translation> <translation>L&apos;humidité a changé</translation>
</message> </message>
<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="163"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="147"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="166"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="150"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="169"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="153"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="172"/>
<source>Last update</source> <source>Last update</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: updateTime, ID: {154aad5c-4998-43c2-b9ee-0b997eb6dd69}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: updateTime, ID: {154aad5c-4998-43c2-b9ee-0b997eb6dd69})
---------- ----------
@ -132,8 +155,8 @@ The name of the StateType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass
<translation>Dernière mise à jour</translation> <translation>Dernière mise à jour</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="156"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="175"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="159"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="178"/>
<source>Last update changed</source> <source>Last update changed</source>
<extracomment>The name of the EventType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor <extracomment>The name of the EventType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
---------- ----------
@ -141,8 +164,23 @@ The name of the EventType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass
<translation>Dernière mise à jour changée</translation> <translation>Dernière mise à jour changée</translation>
</message> </message>
<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="181"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="165"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="184"/>
<source>Logged in</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: loggedIn, ID: {d1ca8579-5d5a-4372-9139-4b083efead2e})
----------
The name of the StateType ({d1ca8579-5d5a-4372-9139-4b083efead2e}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="187"/>
<source>Logged inchanged</source>
<extracomment>The name of the EventType ({d1ca8579-5d5a-4372-9139-4b083efead2e}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="190"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="193"/>
<source>MAC Address</source> <source>MAC Address</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {73a76c5c-84f5-4e65-8541-457e5aca9bb0}) <extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {73a76c5c-84f5-4e65-8541-457e5aca9bb0})
---------- ----------
@ -150,8 +188,8 @@ The name of the ParamType (ThingClass: indoor, Type: thing, ID: {157d470a-e579-4
<translation>MAC Address</translation> <translation>MAC Address</translation>
</message> </message>
<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="196"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="171"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="199"/>
<source>Netatmo</source> <source>Netatmo</source>
<extracomment>The name of the vendor ({4b46b4ed-5ec9-4aa4-afc3-92d3f80e6351}) <extracomment>The name of the vendor ({4b46b4ed-5ec9-4aa4-afc3-92d3f80e6351})
---------- ----------
@ -159,14 +197,14 @@ The name of the plugin Netatmo ({69d14951-0c02-4877-bcef-dffdf48b7ccb})</extraco
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="174"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="202"/>
<source>Netatmo Connection</source> <source>Netatmo Connection</source>
<extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment> <extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment>
<translation>Connexion Netatmo</translation> <translation>Connexion Netatmo</translation>
</message> </message>
<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="205"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="180"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="208"/>
<source>Noise</source> <source>Noise</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: noise, ID: {906cea9d-1daf-4e9c-90b9-e40f43052a34}) <extracomment>The name of the ParamType (ThingClass: indoor, EventType: noise, ID: {906cea9d-1daf-4e9c-90b9-e40f43052a34})
---------- ----------
@ -174,14 +212,14 @@ The name of the StateType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass
<translation>Bruit</translation> <translation>Bruit</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="183"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="211"/>
<source>Noise changed</source> <source>Noise changed</source>
<extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment> <extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation>Bruit changée</translation> <translation>Bruit changée</translation>
</message> </message>
<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="217"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="192"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="220"/>
<source>Pressure</source> <source>Pressure</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: pressure, ID: {03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) <extracomment>The name of the ParamType (ThingClass: indoor, EventType: pressure, ID: {03b0a7b7-987d-4d3b-b3f0-21d9f92ad326})
---------- ----------
@ -189,14 +227,14 @@ The name of the StateType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass
<translation>Pression</translation> <translation>Pression</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="195"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="223"/>
<source>Pressure changed</source> <source>Pressure changed</source>
<extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment> <extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation>Pression changée</translation> <translation>Pression changée</translation>
</message> </message>
<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="226"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="201"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="229"/>
<source>Signal strength</source> <source>Signal strength</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: signalStrength, ID: {0faa3d08-9004-46fb-a5aa-a59b75e454cc}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: signalStrength, ID: {0faa3d08-9004-46fb-a5aa-a59b75e454cc})
---------- ----------
@ -204,16 +242,16 @@ The name of the StateType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass
<translation>Puissance du signal</translation> <translation>Puissance du signal</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="204"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="232"/>
<source>Signal strength changed</source> <source>Signal strength changed</source>
<extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment> <extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation>La puissance du signal a changé</translation> <translation>La puissance du signal a changé</translation>
</message> </message>
<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="235"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="210"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="238"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="213"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="241"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="216"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="244"/>
<source>Temperature</source> <source>Temperature</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperature, ID: {f98776bd-887e-4b01-a87f-3d8224180563}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperature, ID: {f98776bd-887e-4b01-a87f-3d8224180563})
---------- ----------
@ -225,8 +263,8 @@ The name of the StateType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass
<translation>Température</translation> <translation>Température</translation>
</message> </message>
<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="247"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="222"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="250"/>
<source>Temperature changed</source> <source>Temperature changed</source>
<extracomment>The name of the EventType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor <extracomment>The name of the EventType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
---------- ----------
@ -234,10 +272,10 @@ The name of the EventType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass
<translation>La température a changé</translation> <translation>La température a changé</translation>
</message> </message>
<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="253"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="228"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="256"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="231"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="259"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="234"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="262"/>
<source>Temperature maximum</source> <source>Temperature maximum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMax, ID: {aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMax, ID: {aae071dc-70d5-4a6a-8daa-3dca0d150bd7})
---------- ----------
@ -249,8 +287,8 @@ The name of the StateType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass
<translation>Température maximale</translation> <translation>Température maximale</translation>
</message> </message>
<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="265"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="240"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="268"/>
<source>Temperature maximum changed</source> <source>Temperature maximum changed</source>
<extracomment>The name of the EventType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor <extracomment>The name of the EventType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
---------- ----------
@ -258,10 +296,10 @@ The name of the EventType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass
<translation>Changement de la température maximale</translation> <translation>Changement de la température maximale</translation>
</message> </message>
<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="271"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="246"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="274"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="249"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="277"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="252"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="280"/>
<source>Temperature minimum</source> <source>Temperature minimum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMin, ID: {b71e0c8b-3c94-421e-830e-dab97b6c104e}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMin, ID: {b71e0c8b-3c94-421e-830e-dab97b6c104e})
---------- ----------
@ -273,8 +311,8 @@ The name of the StateType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass
<translation>Température minimale</translation> <translation>Température minimale</translation>
</message> </message>
<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="283"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="258"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="286"/>
<source>Temperature minimum changed</source> <source>Temperature minimum changed</source>
<extracomment>The name of the EventType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor <extracomment>The name of the EventType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
---------- ----------
@ -282,8 +320,23 @@ The name of the EventType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass
<translation>Changement de la température minimale</translation> <translation>Changement de la température minimale</translation>
</message> </message>
<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="289"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="264"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="292"/>
<source>Username</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: userDisplayName, ID: {b9c98ae6-3687-4279-8fda-bc02c7b7ea38})
----------
The name of the StateType ({b9c98ae6-3687-4279-8fda-bc02c7b7ea38}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="295"/>
<source>Username changed</source>
<extracomment>The name of the EventType ({b9c98ae6-3687-4279-8fda-bc02c7b7ea38}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="298"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="301"/>
<source>WiFi signal strength</source> <source>WiFi signal strength</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: wifiStrength, ID: {6ea906d4-5740-454d-a730-6fdb9fa0d624}) <extracomment>The name of the ParamType (ThingClass: indoor, EventType: wifiStrength, ID: {6ea906d4-5740-454d-a730-6fdb9fa0d624})
---------- ----------
@ -291,14 +344,14 @@ The name of the StateType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass
<translation>Puissance du signal WiFi</translation> <translation>Puissance du signal WiFi</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="267"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="304"/>
<source>WiFi signal strength changed</source> <source>WiFi signal strength changed</source>
<extracomment>The name of the EventType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment> <extracomment>The name of the EventType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation>La puissance du signal WiFi a changé</translation> <translation>La puissance du signal WiFi a changé</translation>
</message> </message>
<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="307"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="273"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="310"/>
<source>name</source> <source>name</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {719e1f92-a9c8-42d6-83e1-652a0f182209}) <extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {719e1f92-a9c8-42d6-83e1-652a0f182209})
---------- ----------
@ -306,13 +359,13 @@ The name of the ParamType (ThingClass: indoor, Type: thing, ID: {a97d256c-e159-4
<translation>Nom</translation> <translation>Nom</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="141"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="160"/>
<source>Indoor Station</source> <source>Indoor Station</source>
<extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment> <extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment>
<translation>Station intérieure</translation> <translation>Station intérieure</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="186"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="214"/>
<source>Outdoor Station</source> <source>Outdoor Station</source>
<extracomment>The name of the ThingClass ({6cc01d62-7317-4ec4-8ac4-a4cab762c179})</extracomment> <extracomment>The name of the ThingClass ({6cc01d62-7317-4ec4-8ac4-a4cab762c179})</extracomment>
<translation>Station extérieure</translation> <translation>Station extérieure</translation>

View File

@ -4,22 +4,33 @@
<context> <context>
<name>IntegrationPluginNetatmo</name> <name>IntegrationPluginNetatmo</name>
<message> <message>
<location filename="../integrationpluginnetatmo.cpp" line="55"/> <location filename="../integrationpluginnetatmo.cpp" line="59"/>
<location filename="../integrationpluginnetatmo.cpp" line="144"/>
<source>No API key installed</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="71"/>
<source>Netatmo server is not reachable.</source> <source>Netatmo server is not reachable.</source>
<translation>Il server Netatmo non è raggiungibile.</translation> <translation>Il server Netatmo non è raggiungibile.</translation>
</message> </message>
<message> <message>
<location filename="../integrationpluginnetatmo.cpp" line="57"/> <location filename="../integrationpluginnetatmo.cpp" line="73"/>
<source>Please enter the login credentials for your Netatmo account.</source> <source>Please enter the login credentials for your Netatmo account.</source>
<translation>Inserite le credenziali di accesso per il vostro account Netatmo.</translation> <translation>Inserite le credenziali di accesso per il vostro account Netatmo.</translation>
</message> </message>
<message> <message>
<location filename="../integrationpluginnetatmo.cpp" line="79"/> <location filename="../integrationpluginnetatmo.cpp" line="96"/>
<source>Wrong username or password</source> <source>Wrong username or password</source>
<translation>Nome utente o password sbagliata</translation> <translation>Nome utente o password sbagliata</translation>
</message> </message>
<message> <message>
<location filename="../integrationpluginnetatmo.cpp" line="147"/> <location filename="../integrationpluginnetatmo.cpp" line="139"/>
<source>Login credentials not found.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="186"/>
<source>Error logging in to Netatmo server.</source> <source>Error logging in to Netatmo server.</source>
<translation>Errore di accesso al server Netatmo.</translation> <translation>Errore di accesso al server Netatmo.</translation>
</message> </message>
@ -27,8 +38,8 @@
<context> <context>
<name>Netatmo</name> <name>Netatmo</name>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="84"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="97"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="87"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="100"/>
<source>Available</source> <source>Available</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: connected, ID: {2f79bc1d-27ed-480a-b583-728363c83ea6}) <extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: connected, ID: {2f79bc1d-27ed-480a-b583-728363c83ea6})
---------- ----------
@ -36,20 +47,20 @@ The name of the StateType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass
<translation>Disponibile</translation> <translation>Disponibile</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="90"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="103"/>
<source>Available changed</source> <source>Available changed</source>
<extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment> <extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation>Disponibile cambiato</translation> <translation>Disponibile cambiato</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="93"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="106"/>
<source>Base station</source> <source>Base station</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment> <extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment>
<translation>Stazione base</translation> <translation>Stazione base</translation>
</message> </message>
<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="109"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="99"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="112"/>
<source>Battery</source> <source>Battery</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryLevel, ID: {15d8fae1-ba47-42e1-994d-530e8017c965}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryLevel, ID: {15d8fae1-ba47-42e1-994d-530e8017c965})
---------- ----------
@ -57,14 +68,14 @@ The name of the StateType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass
<translation>Batteria</translation> <translation>Batteria</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="102"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="115"/>
<source>Battery changed</source> <source>Battery changed</source>
<extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment> <extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation>Sostituzione della batteria</translation> <translation>Sostituzione della batteria</translation>
</message> </message>
<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="118"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="108"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="121"/>
<source>Battery critical</source> <source>Battery critical</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryCritical, ID: {f8aeb144-014d-4ccb-81db-64ffc70f1c97}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryCritical, ID: {f8aeb144-014d-4ccb-81db-64ffc70f1c97})
---------- ----------
@ -72,14 +83,14 @@ The name of the StateType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass
<translation>Batteria critica</translation> <translation>Batteria critica</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="111"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="124"/>
<source>Battery critical changed</source> <source>Battery critical changed</source>
<extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment> <extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation>Sostituzione della batteria critica</translation> <translation>Sostituzione della batteria critica</translation>
</message> </message>
<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="127"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="117"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="130"/>
<source>CO2</source> <source>CO2</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: co2, ID: {e5710bd1-79fa-4bd4-9052-8416aae909b9}) <extracomment>The name of the ParamType (ThingClass: indoor, EventType: co2, ID: {e5710bd1-79fa-4bd4-9052-8416aae909b9})
---------- ----------
@ -87,16 +98,28 @@ The name of the StateType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass
<translation>CO2</translation> <translation>CO2</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="120"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="133"/>
<source>CO2 changed</source> <source>CO2 changed</source>
<extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment> <extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation>CO2 cambiata</translation> <translation>CO2 cambiata</translation>
</message> </message>
<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="136"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="126"/> <source>Custom client id</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="129"/> <extracomment>The name of the ParamType (ThingClass: netatmo, Type: plugin, ID: {fbda653d-d59e-438c-a70c-0ccbe8080215})</extracomment>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="132"/> <translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="139"/>
<source>Custom client secret</source>
<extracomment>The name of the ParamType (ThingClass: netatmo, Type: plugin, ID: {06439e1e-da15-4483-8737-0a6aa967c479})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="142"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="145"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="148"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="151"/>
<source>Humidity</source> <source>Humidity</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: humidity, ID: {7ba6ddeb-5142-4b87-9729-487fcda394df}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: humidity, ID: {7ba6ddeb-5142-4b87-9729-487fcda394df})
---------- ----------
@ -108,8 +131,8 @@ The name of the StateType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass
<translation>Umidità</translation> <translation>Umidità</translation>
</message> </message>
<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="154"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="138"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="157"/>
<source>Humidity changed</source> <source>Humidity changed</source>
<extracomment>The name of the EventType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor <extracomment>The name of the EventType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor
---------- ----------
@ -117,10 +140,10 @@ The name of the EventType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass
<translation>Umidità cambiata</translation> <translation>Umidità cambiata</translation>
</message> </message>
<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="163"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="147"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="166"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="150"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="169"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="153"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="172"/>
<source>Last update</source> <source>Last update</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: updateTime, ID: {154aad5c-4998-43c2-b9ee-0b997eb6dd69}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: updateTime, ID: {154aad5c-4998-43c2-b9ee-0b997eb6dd69})
---------- ----------
@ -132,8 +155,8 @@ The name of the StateType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass
<translation>Ultimo aggiornamento</translation> <translation>Ultimo aggiornamento</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="156"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="175"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="159"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="178"/>
<source>Last update changed</source> <source>Last update changed</source>
<extracomment>The name of the EventType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor <extracomment>The name of the EventType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
---------- ----------
@ -141,8 +164,23 @@ The name of the EventType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass
<translation>Ultimo aggiornamento modificato</translation> <translation>Ultimo aggiornamento modificato</translation>
</message> </message>
<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="181"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="165"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="184"/>
<source>Logged in</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: loggedIn, ID: {d1ca8579-5d5a-4372-9139-4b083efead2e})
----------
The name of the StateType ({d1ca8579-5d5a-4372-9139-4b083efead2e}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="187"/>
<source>Logged inchanged</source>
<extracomment>The name of the EventType ({d1ca8579-5d5a-4372-9139-4b083efead2e}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="190"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="193"/>
<source>MAC Address</source> <source>MAC Address</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {73a76c5c-84f5-4e65-8541-457e5aca9bb0}) <extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {73a76c5c-84f5-4e65-8541-457e5aca9bb0})
---------- ----------
@ -150,8 +188,8 @@ The name of the ParamType (ThingClass: indoor, Type: thing, ID: {157d470a-e579-4
<translation>MAC Address</translation> <translation>MAC Address</translation>
</message> </message>
<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="196"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="171"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="199"/>
<source>Netatmo</source> <source>Netatmo</source>
<extracomment>The name of the vendor ({4b46b4ed-5ec9-4aa4-afc3-92d3f80e6351}) <extracomment>The name of the vendor ({4b46b4ed-5ec9-4aa4-afc3-92d3f80e6351})
---------- ----------
@ -159,14 +197,14 @@ The name of the plugin Netatmo ({69d14951-0c02-4877-bcef-dffdf48b7ccb})</extraco
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="174"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="202"/>
<source>Netatmo Connection</source> <source>Netatmo Connection</source>
<extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment> <extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment>
<translation>Connessione Netatmo</translation> <translation>Connessione Netatmo</translation>
</message> </message>
<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="205"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="180"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="208"/>
<source>Noise</source> <source>Noise</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: noise, ID: {906cea9d-1daf-4e9c-90b9-e40f43052a34}) <extracomment>The name of the ParamType (ThingClass: indoor, EventType: noise, ID: {906cea9d-1daf-4e9c-90b9-e40f43052a34})
---------- ----------
@ -174,14 +212,14 @@ The name of the StateType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass
<translation>Rumore</translation> <translation>Rumore</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="183"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="211"/>
<source>Noise changed</source> <source>Noise changed</source>
<extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment> <extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation>Rumore cambiato</translation> <translation>Rumore cambiato</translation>
</message> </message>
<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="217"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="192"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="220"/>
<source>Pressure</source> <source>Pressure</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: pressure, ID: {03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) <extracomment>The name of the ParamType (ThingClass: indoor, EventType: pressure, ID: {03b0a7b7-987d-4d3b-b3f0-21d9f92ad326})
---------- ----------
@ -189,14 +227,14 @@ The name of the StateType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass
<translation>Pressione</translation> <translation>Pressione</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="195"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="223"/>
<source>Pressure changed</source> <source>Pressure changed</source>
<extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment> <extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation>Pressione cambiata</translation> <translation>Pressione cambiata</translation>
</message> </message>
<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="226"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="201"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="229"/>
<source>Signal strength</source> <source>Signal strength</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: signalStrength, ID: {0faa3d08-9004-46fb-a5aa-a59b75e454cc}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: signalStrength, ID: {0faa3d08-9004-46fb-a5aa-a59b75e454cc})
---------- ----------
@ -204,16 +242,16 @@ The name of the StateType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass
<translation>Forza del segnale</translation> <translation>Forza del segnale</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="204"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="232"/>
<source>Signal strength changed</source> <source>Signal strength changed</source>
<extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment> <extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation>Forza del segnale cambiata</translation> <translation>Forza del segnale cambiata</translation>
</message> </message>
<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="235"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="210"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="238"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="213"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="241"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="216"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="244"/>
<source>Temperature</source> <source>Temperature</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperature, ID: {f98776bd-887e-4b01-a87f-3d8224180563}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperature, ID: {f98776bd-887e-4b01-a87f-3d8224180563})
---------- ----------
@ -225,8 +263,8 @@ The name of the StateType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass
<translation>Temperatura</translation> <translation>Temperatura</translation>
</message> </message>
<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="247"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="222"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="250"/>
<source>Temperature changed</source> <source>Temperature changed</source>
<extracomment>The name of the EventType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor <extracomment>The name of the EventType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
---------- ----------
@ -234,10 +272,10 @@ The name of the EventType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass
<translation>Variazione di temperatura</translation> <translation>Variazione di temperatura</translation>
</message> </message>
<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="253"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="228"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="256"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="231"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="259"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="234"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="262"/>
<source>Temperature maximum</source> <source>Temperature maximum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMax, ID: {aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMax, ID: {aae071dc-70d5-4a6a-8daa-3dca0d150bd7})
---------- ----------
@ -249,8 +287,8 @@ The name of the StateType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass
<translation>Temperatura massima</translation> <translation>Temperatura massima</translation>
</message> </message>
<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="265"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="240"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="268"/>
<source>Temperature maximum changed</source> <source>Temperature maximum changed</source>
<extracomment>The name of the EventType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor <extracomment>The name of the EventType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
---------- ----------
@ -258,10 +296,10 @@ The name of the EventType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass
<translation>Temperatura massima modificata</translation> <translation>Temperatura massima modificata</translation>
</message> </message>
<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="271"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="246"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="274"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="249"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="277"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="252"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="280"/>
<source>Temperature minimum</source> <source>Temperature minimum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMin, ID: {b71e0c8b-3c94-421e-830e-dab97b6c104e}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMin, ID: {b71e0c8b-3c94-421e-830e-dab97b6c104e})
---------- ----------
@ -273,8 +311,8 @@ The name of the StateType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass
<translation>Temperatura minima</translation> <translation>Temperatura minima</translation>
</message> </message>
<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="283"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="258"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="286"/>
<source>Temperature minimum changed</source> <source>Temperature minimum changed</source>
<extracomment>The name of the EventType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor <extracomment>The name of the EventType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
---------- ----------
@ -282,8 +320,23 @@ The name of the EventType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass
<translation>Temperatura minima modificata</translation> <translation>Temperatura minima modificata</translation>
</message> </message>
<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="289"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="264"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="292"/>
<source>Username</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: userDisplayName, ID: {b9c98ae6-3687-4279-8fda-bc02c7b7ea38})
----------
The name of the StateType ({b9c98ae6-3687-4279-8fda-bc02c7b7ea38}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="295"/>
<source>Username changed</source>
<extracomment>The name of the EventType ({b9c98ae6-3687-4279-8fda-bc02c7b7ea38}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="298"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="301"/>
<source>WiFi signal strength</source> <source>WiFi signal strength</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: wifiStrength, ID: {6ea906d4-5740-454d-a730-6fdb9fa0d624}) <extracomment>The name of the ParamType (ThingClass: indoor, EventType: wifiStrength, ID: {6ea906d4-5740-454d-a730-6fdb9fa0d624})
---------- ----------
@ -291,14 +344,14 @@ The name of the StateType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass
<translation>Potenza del segnale WiFi</translation> <translation>Potenza del segnale WiFi</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="267"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="304"/>
<source>WiFi signal strength changed</source> <source>WiFi signal strength changed</source>
<extracomment>The name of the EventType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment> <extracomment>The name of the EventType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation>Cambiata la potenza del segnale WiFi</translation> <translation>Cambiata la potenza del segnale WiFi</translation>
</message> </message>
<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="307"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="273"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="310"/>
<source>name</source> <source>name</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {719e1f92-a9c8-42d6-83e1-652a0f182209}) <extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {719e1f92-a9c8-42d6-83e1-652a0f182209})
---------- ----------
@ -306,13 +359,13 @@ The name of the ParamType (ThingClass: indoor, Type: thing, ID: {a97d256c-e159-4
<translation>nome</translation> <translation>nome</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="141"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="160"/>
<source>Indoor Station</source> <source>Indoor Station</source>
<extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment> <extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment>
<translation>Stazione interna</translation> <translation>Stazione interna</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="186"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="214"/>
<source>Outdoor Station</source> <source>Outdoor Station</source>
<extracomment>The name of the ThingClass ({6cc01d62-7317-4ec4-8ac4-a4cab762c179})</extracomment> <extracomment>The name of the ThingClass ({6cc01d62-7317-4ec4-8ac4-a4cab762c179})</extracomment>
<translation>Stazione esterna</translation> <translation>Stazione esterna</translation>

View File

@ -4,22 +4,33 @@
<context> <context>
<name>IntegrationPluginNetatmo</name> <name>IntegrationPluginNetatmo</name>
<message> <message>
<location filename="../integrationpluginnetatmo.cpp" line="55"/> <location filename="../integrationpluginnetatmo.cpp" line="59"/>
<location filename="../integrationpluginnetatmo.cpp" line="144"/>
<source>No API key installed</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="71"/>
<source>Netatmo server is not reachable.</source> <source>Netatmo server is not reachable.</source>
<translation>Il server Netatmo non è raggiungibile.</translation> <translation>Il server Netatmo non è raggiungibile.</translation>
</message> </message>
<message> <message>
<location filename="../integrationpluginnetatmo.cpp" line="57"/> <location filename="../integrationpluginnetatmo.cpp" line="73"/>
<source>Please enter the login credentials for your Netatmo account.</source> <source>Please enter the login credentials for your Netatmo account.</source>
<translation>Inserite le credenziali di accesso per il vostro account Netatmo.</translation> <translation>Inserite le credenziali di accesso per il vostro account Netatmo.</translation>
</message> </message>
<message> <message>
<location filename="../integrationpluginnetatmo.cpp" line="79"/> <location filename="../integrationpluginnetatmo.cpp" line="96"/>
<source>Wrong username or password</source> <source>Wrong username or password</source>
<translation>Nome utente o password sbagliata</translation> <translation>Nome utente o password sbagliata</translation>
</message> </message>
<message> <message>
<location filename="../integrationpluginnetatmo.cpp" line="147"/> <location filename="../integrationpluginnetatmo.cpp" line="139"/>
<source>Login credentials not found.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="186"/>
<source>Error logging in to Netatmo server.</source> <source>Error logging in to Netatmo server.</source>
<translation>Errore di accesso al server Netatmo.</translation> <translation>Errore di accesso al server Netatmo.</translation>
</message> </message>
@ -27,8 +38,8 @@
<context> <context>
<name>Netatmo</name> <name>Netatmo</name>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="84"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="97"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="87"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="100"/>
<source>Available</source> <source>Available</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: connected, ID: {2f79bc1d-27ed-480a-b583-728363c83ea6}) <extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: connected, ID: {2f79bc1d-27ed-480a-b583-728363c83ea6})
---------- ----------
@ -36,20 +47,20 @@ The name of the StateType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass
<translation>Disponibile</translation> <translation>Disponibile</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="90"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="103"/>
<source>Available changed</source> <source>Available changed</source>
<extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment> <extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation>Disponibile cambiato</translation> <translation>Disponibile cambiato</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="93"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="106"/>
<source>Base station</source> <source>Base station</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment> <extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment>
<translation>Stazione base</translation> <translation>Stazione base</translation>
</message> </message>
<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="109"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="99"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="112"/>
<source>Battery</source> <source>Battery</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryLevel, ID: {15d8fae1-ba47-42e1-994d-530e8017c965}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryLevel, ID: {15d8fae1-ba47-42e1-994d-530e8017c965})
---------- ----------
@ -57,14 +68,14 @@ The name of the StateType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass
<translation>Batteria</translation> <translation>Batteria</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="102"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="115"/>
<source>Battery changed</source> <source>Battery changed</source>
<extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment> <extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation>Sostituzione della batteria</translation> <translation>Sostituzione della batteria</translation>
</message> </message>
<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="118"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="108"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="121"/>
<source>Battery critical</source> <source>Battery critical</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryCritical, ID: {f8aeb144-014d-4ccb-81db-64ffc70f1c97}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryCritical, ID: {f8aeb144-014d-4ccb-81db-64ffc70f1c97})
---------- ----------
@ -72,14 +83,14 @@ The name of the StateType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass
<translation>Batteria critica</translation> <translation>Batteria critica</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="111"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="124"/>
<source>Battery critical changed</source> <source>Battery critical changed</source>
<extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment> <extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation>Sostituzione della batteria critica</translation> <translation>Sostituzione della batteria critica</translation>
</message> </message>
<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="127"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="117"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="130"/>
<source>CO2</source> <source>CO2</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: co2, ID: {e5710bd1-79fa-4bd4-9052-8416aae909b9}) <extracomment>The name of the ParamType (ThingClass: indoor, EventType: co2, ID: {e5710bd1-79fa-4bd4-9052-8416aae909b9})
---------- ----------
@ -87,16 +98,28 @@ The name of the StateType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass
<translation>CO2</translation> <translation>CO2</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="120"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="133"/>
<source>CO2 changed</source> <source>CO2 changed</source>
<extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment> <extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation>CO2 cambiata</translation> <translation>CO2 cambiata</translation>
</message> </message>
<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="136"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="126"/> <source>Custom client id</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="129"/> <extracomment>The name of the ParamType (ThingClass: netatmo, Type: plugin, ID: {fbda653d-d59e-438c-a70c-0ccbe8080215})</extracomment>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="132"/> <translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="139"/>
<source>Custom client secret</source>
<extracomment>The name of the ParamType (ThingClass: netatmo, Type: plugin, ID: {06439e1e-da15-4483-8737-0a6aa967c479})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="142"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="145"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="148"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="151"/>
<source>Humidity</source> <source>Humidity</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: humidity, ID: {7ba6ddeb-5142-4b87-9729-487fcda394df}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: humidity, ID: {7ba6ddeb-5142-4b87-9729-487fcda394df})
---------- ----------
@ -108,8 +131,8 @@ The name of the StateType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass
<translation>Umidità</translation> <translation>Umidità</translation>
</message> </message>
<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="154"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="138"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="157"/>
<source>Humidity changed</source> <source>Humidity changed</source>
<extracomment>The name of the EventType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor <extracomment>The name of the EventType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor
---------- ----------
@ -117,10 +140,10 @@ The name of the EventType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass
<translation>Umidità cambiata</translation> <translation>Umidità cambiata</translation>
</message> </message>
<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="163"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="147"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="166"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="150"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="169"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="153"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="172"/>
<source>Last update</source> <source>Last update</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: updateTime, ID: {154aad5c-4998-43c2-b9ee-0b997eb6dd69}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: updateTime, ID: {154aad5c-4998-43c2-b9ee-0b997eb6dd69})
---------- ----------
@ -132,8 +155,8 @@ The name of the StateType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass
<translation>Ultimo aggiornamento</translation> <translation>Ultimo aggiornamento</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="156"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="175"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="159"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="178"/>
<source>Last update changed</source> <source>Last update changed</source>
<extracomment>The name of the EventType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor <extracomment>The name of the EventType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
---------- ----------
@ -141,8 +164,23 @@ The name of the EventType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass
<translation>Ultimo aggiornamento modificato</translation> <translation>Ultimo aggiornamento modificato</translation>
</message> </message>
<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="181"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="165"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="184"/>
<source>Logged in</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: loggedIn, ID: {d1ca8579-5d5a-4372-9139-4b083efead2e})
----------
The name of the StateType ({d1ca8579-5d5a-4372-9139-4b083efead2e}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="187"/>
<source>Logged inchanged</source>
<extracomment>The name of the EventType ({d1ca8579-5d5a-4372-9139-4b083efead2e}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="190"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="193"/>
<source>MAC Address</source> <source>MAC Address</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {73a76c5c-84f5-4e65-8541-457e5aca9bb0}) <extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {73a76c5c-84f5-4e65-8541-457e5aca9bb0})
---------- ----------
@ -150,8 +188,8 @@ The name of the ParamType (ThingClass: indoor, Type: thing, ID: {157d470a-e579-4
<translation>Indirizzo MAC</translation> <translation>Indirizzo MAC</translation>
</message> </message>
<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="196"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="171"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="199"/>
<source>Netatmo</source> <source>Netatmo</source>
<extracomment>The name of the vendor ({4b46b4ed-5ec9-4aa4-afc3-92d3f80e6351}) <extracomment>The name of the vendor ({4b46b4ed-5ec9-4aa4-afc3-92d3f80e6351})
---------- ----------
@ -159,14 +197,14 @@ The name of the plugin Netatmo ({69d14951-0c02-4877-bcef-dffdf48b7ccb})</extraco
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="174"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="202"/>
<source>Netatmo Connection</source> <source>Netatmo Connection</source>
<extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment> <extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment>
<translation>Netatmo-aansluiting</translation> <translation>Netatmo-aansluiting</translation>
</message> </message>
<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="205"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="180"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="208"/>
<source>Noise</source> <source>Noise</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: noise, ID: {906cea9d-1daf-4e9c-90b9-e40f43052a34}) <extracomment>The name of the ParamType (ThingClass: indoor, EventType: noise, ID: {906cea9d-1daf-4e9c-90b9-e40f43052a34})
---------- ----------
@ -174,14 +212,14 @@ The name of the StateType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass
<translation>Geluidsoverlast</translation> <translation>Geluidsoverlast</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="183"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="211"/>
<source>Noise changed</source> <source>Noise changed</source>
<extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment> <extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation>Geluidsoverlast veranderd</translation> <translation>Geluidsoverlast veranderd</translation>
</message> </message>
<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="217"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="192"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="220"/>
<source>Pressure</source> <source>Pressure</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: pressure, ID: {03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) <extracomment>The name of the ParamType (ThingClass: indoor, EventType: pressure, ID: {03b0a7b7-987d-4d3b-b3f0-21d9f92ad326})
---------- ----------
@ -189,14 +227,14 @@ The name of the StateType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass
<translation>Druk</translation> <translation>Druk</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="195"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="223"/>
<source>Pressure changed</source> <source>Pressure changed</source>
<extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment> <extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation>Druk veranderd</translation> <translation>Druk veranderd</translation>
</message> </message>
<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="226"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="201"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="229"/>
<source>Signal strength</source> <source>Signal strength</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: signalStrength, ID: {0faa3d08-9004-46fb-a5aa-a59b75e454cc}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: signalStrength, ID: {0faa3d08-9004-46fb-a5aa-a59b75e454cc})
---------- ----------
@ -204,16 +242,16 @@ The name of the StateType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass
<translation>Signaalsterkte</translation> <translation>Signaalsterkte</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="204"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="232"/>
<source>Signal strength changed</source> <source>Signal strength changed</source>
<extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment> <extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation>Signaalsterkte veranderd</translation> <translation>Signaalsterkte veranderd</translation>
</message> </message>
<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="235"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="210"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="238"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="213"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="241"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="216"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="244"/>
<source>Temperature</source> <source>Temperature</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperature, ID: {f98776bd-887e-4b01-a87f-3d8224180563}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperature, ID: {f98776bd-887e-4b01-a87f-3d8224180563})
---------- ----------
@ -225,8 +263,8 @@ The name of the StateType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass
<translation>Temperatuur</translation> <translation>Temperatuur</translation>
</message> </message>
<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="247"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="222"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="250"/>
<source>Temperature changed</source> <source>Temperature changed</source>
<extracomment>The name of the EventType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor <extracomment>The name of the EventType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
---------- ----------
@ -234,10 +272,10 @@ The name of the EventType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass
<translation>Temperatuur veranderd</translation> <translation>Temperatuur veranderd</translation>
</message> </message>
<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="253"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="228"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="256"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="231"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="259"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="234"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="262"/>
<source>Temperature maximum</source> <source>Temperature maximum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMax, ID: {aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMax, ID: {aae071dc-70d5-4a6a-8daa-3dca0d150bd7})
---------- ----------
@ -249,8 +287,8 @@ The name of the StateType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass
<translation>Temperatuur maximaal</translation> <translation>Temperatuur maximaal</translation>
</message> </message>
<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="265"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="240"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="268"/>
<source>Temperature maximum changed</source> <source>Temperature maximum changed</source>
<extracomment>The name of the EventType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor <extracomment>The name of the EventType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
---------- ----------
@ -258,10 +296,10 @@ The name of the EventType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass
<translation>Temperatuur maximaal gewijzigd</translation> <translation>Temperatuur maximaal gewijzigd</translation>
</message> </message>
<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="271"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="246"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="274"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="249"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="277"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="252"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="280"/>
<source>Temperature minimum</source> <source>Temperature minimum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMin, ID: {b71e0c8b-3c94-421e-830e-dab97b6c104e}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMin, ID: {b71e0c8b-3c94-421e-830e-dab97b6c104e})
---------- ----------
@ -273,8 +311,8 @@ The name of the StateType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass
<translation>Temperatuur minimum</translation> <translation>Temperatuur minimum</translation>
</message> </message>
<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="283"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="258"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="286"/>
<source>Temperature minimum changed</source> <source>Temperature minimum changed</source>
<extracomment>The name of the EventType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor <extracomment>The name of the EventType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
---------- ----------
@ -282,8 +320,23 @@ The name of the EventType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass
<translation>Temperatuur minimum veranderd</translation> <translation>Temperatuur minimum veranderd</translation>
</message> </message>
<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="289"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="264"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="292"/>
<source>Username</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: userDisplayName, ID: {b9c98ae6-3687-4279-8fda-bc02c7b7ea38})
----------
The name of the StateType ({b9c98ae6-3687-4279-8fda-bc02c7b7ea38}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="295"/>
<source>Username changed</source>
<extracomment>The name of the EventType ({b9c98ae6-3687-4279-8fda-bc02c7b7ea38}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="298"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="301"/>
<source>WiFi signal strength</source> <source>WiFi signal strength</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: wifiStrength, ID: {6ea906d4-5740-454d-a730-6fdb9fa0d624}) <extracomment>The name of the ParamType (ThingClass: indoor, EventType: wifiStrength, ID: {6ea906d4-5740-454d-a730-6fdb9fa0d624})
---------- ----------
@ -291,14 +344,14 @@ The name of the StateType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass
<translation>WiFi-signaalsterkte</translation> <translation>WiFi-signaalsterkte</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="267"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="304"/>
<source>WiFi signal strength changed</source> <source>WiFi signal strength changed</source>
<extracomment>The name of the EventType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment> <extracomment>The name of the EventType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation>WiFi-signaalsterkte veranderd</translation> <translation>WiFi-signaalsterkte veranderd</translation>
</message> </message>
<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="307"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="273"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="310"/>
<source>name</source> <source>name</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {719e1f92-a9c8-42d6-83e1-652a0f182209}) <extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {719e1f92-a9c8-42d6-83e1-652a0f182209})
---------- ----------
@ -306,13 +359,13 @@ The name of the ParamType (ThingClass: indoor, Type: thing, ID: {a97d256c-e159-4
<translation>naam</translation> <translation>naam</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="141"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="160"/>
<source>Indoor Station</source> <source>Indoor Station</source>
<extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment> <extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment>
<translation>Binnenshuis-station</translation> <translation>Binnenshuis-station</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="186"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="214"/>
<source>Outdoor Station</source> <source>Outdoor Station</source>
<extracomment>The name of the ThingClass ({6cc01d62-7317-4ec4-8ac4-a4cab762c179})</extracomment> <extracomment>The name of the ThingClass ({6cc01d62-7317-4ec4-8ac4-a4cab762c179})</extracomment>
<translation>Buitenshuis-station</translation> <translation>Buitenshuis-station</translation>

View File

@ -4,22 +4,33 @@
<context> <context>
<name>IntegrationPluginNetatmo</name> <name>IntegrationPluginNetatmo</name>
<message> <message>
<location filename="../integrationpluginnetatmo.cpp" line="55"/> <location filename="../integrationpluginnetatmo.cpp" line="59"/>
<location filename="../integrationpluginnetatmo.cpp" line="144"/>
<source>No API key installed</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="71"/>
<source>Netatmo server is not reachable.</source> <source>Netatmo server is not reachable.</source>
<translation>O servidor Netatmo não é alcançável.</translation> <translation>O servidor Netatmo não é alcançável.</translation>
</message> </message>
<message> <message>
<location filename="../integrationpluginnetatmo.cpp" line="57"/> <location filename="../integrationpluginnetatmo.cpp" line="73"/>
<source>Please enter the login credentials for your Netatmo account.</source> <source>Please enter the login credentials for your Netatmo account.</source>
<translation>Por favor introduza as credenciais de login para a sua conta Netatmo.</translation> <translation>Por favor introduza as credenciais de login para a sua conta Netatmo.</translation>
</message> </message>
<message> <message>
<location filename="../integrationpluginnetatmo.cpp" line="79"/> <location filename="../integrationpluginnetatmo.cpp" line="96"/>
<source>Wrong username or password</source> <source>Wrong username or password</source>
<translation>Nome de utilizador ou palavra-passe errados</translation> <translation>Nome de utilizador ou palavra-passe errados</translation>
</message> </message>
<message> <message>
<location filename="../integrationpluginnetatmo.cpp" line="147"/> <location filename="../integrationpluginnetatmo.cpp" line="139"/>
<source>Login credentials not found.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="186"/>
<source>Error logging in to Netatmo server.</source> <source>Error logging in to Netatmo server.</source>
<translation>Erro ao iniciar sessão no servidor Netatmo.</translation> <translation>Erro ao iniciar sessão no servidor Netatmo.</translation>
</message> </message>
@ -27,8 +38,8 @@
<context> <context>
<name>Netatmo</name> <name>Netatmo</name>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="84"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="97"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="87"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="100"/>
<source>Available</source> <source>Available</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: connected, ID: {2f79bc1d-27ed-480a-b583-728363c83ea6}) <extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: connected, ID: {2f79bc1d-27ed-480a-b583-728363c83ea6})
---------- ----------
@ -36,20 +47,20 @@ The name of the StateType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass
<translation>Disponível</translation> <translation>Disponível</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="90"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="103"/>
<source>Available changed</source> <source>Available changed</source>
<extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment> <extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation>Disponível alterado</translation> <translation>Disponível alterado</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="93"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="106"/>
<source>Base station</source> <source>Base station</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment> <extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment>
<translation>Estação base</translation> <translation>Estação base</translation>
</message> </message>
<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="109"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="99"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="112"/>
<source>Battery</source> <source>Battery</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryLevel, ID: {15d8fae1-ba47-42e1-994d-530e8017c965}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryLevel, ID: {15d8fae1-ba47-42e1-994d-530e8017c965})
---------- ----------
@ -57,14 +68,14 @@ The name of the StateType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass
<translation>Bateria</translation> <translation>Bateria</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="102"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="115"/>
<source>Battery changed</source> <source>Battery changed</source>
<extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment> <extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation>Bateria trocada</translation> <translation>Bateria trocada</translation>
</message> </message>
<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="118"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="108"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="121"/>
<source>Battery critical</source> <source>Battery critical</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryCritical, ID: {f8aeb144-014d-4ccb-81db-64ffc70f1c97}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: batteryCritical, ID: {f8aeb144-014d-4ccb-81db-64ffc70f1c97})
---------- ----------
@ -72,14 +83,14 @@ The name of the StateType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass
<translation>Changed battery</translation> <translation>Changed battery</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="111"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="124"/>
<source>Battery critical changed</source> <source>Battery critical changed</source>
<extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment> <extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation>Mudança de bateria crítica</translation> <translation>Mudança de bateria crítica</translation>
</message> </message>
<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="127"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="117"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="130"/>
<source>CO2</source> <source>CO2</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: co2, ID: {e5710bd1-79fa-4bd4-9052-8416aae909b9}) <extracomment>The name of the ParamType (ThingClass: indoor, EventType: co2, ID: {e5710bd1-79fa-4bd4-9052-8416aae909b9})
---------- ----------
@ -87,16 +98,28 @@ The name of the StateType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass
<translation>CO2</translation> <translation>CO2</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="120"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="133"/>
<source>CO2 changed</source> <source>CO2 changed</source>
<extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment> <extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation>CO2 alterado</translation> <translation>CO2 alterado</translation>
</message> </message>
<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="136"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="126"/> <source>Custom client id</source>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="129"/> <extracomment>The name of the ParamType (ThingClass: netatmo, Type: plugin, ID: {fbda653d-d59e-438c-a70c-0ccbe8080215})</extracomment>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="132"/> <translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="139"/>
<source>Custom client secret</source>
<extracomment>The name of the ParamType (ThingClass: netatmo, Type: plugin, ID: {06439e1e-da15-4483-8737-0a6aa967c479})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="142"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="145"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="148"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="151"/>
<source>Humidity</source> <source>Humidity</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: humidity, ID: {7ba6ddeb-5142-4b87-9729-487fcda394df}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: humidity, ID: {7ba6ddeb-5142-4b87-9729-487fcda394df})
---------- ----------
@ -108,8 +131,8 @@ The name of the StateType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass
<translation>Humidade</translation> <translation>Humidade</translation>
</message> </message>
<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="154"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="138"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="157"/>
<source>Humidity changed</source> <source>Humidity changed</source>
<extracomment>The name of the EventType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor <extracomment>The name of the EventType ({7ba6ddeb-5142-4b87-9729-487fcda394df}) of ThingClass outdoor
---------- ----------
@ -117,10 +140,10 @@ The name of the EventType ({e2db5f01-196a-48d1-8874-6b8cbfe0d8c9}) of ThingClass
<translation>Humidade alterada</translation> <translation>Humidade alterada</translation>
</message> </message>
<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="163"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="147"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="166"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="150"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="169"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="153"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="172"/>
<source>Last update</source> <source>Last update</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: updateTime, ID: {154aad5c-4998-43c2-b9ee-0b997eb6dd69}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: updateTime, ID: {154aad5c-4998-43c2-b9ee-0b997eb6dd69})
---------- ----------
@ -132,8 +155,8 @@ The name of the StateType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass
<translation>Última actualização</translation> <translation>Última actualização</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="156"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="175"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="159"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="178"/>
<source>Last update changed</source> <source>Last update changed</source>
<extracomment>The name of the EventType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor <extracomment>The name of the EventType ({154aad5c-4998-43c2-b9ee-0b997eb6dd69}) of ThingClass outdoor
---------- ----------
@ -141,8 +164,23 @@ The name of the EventType ({50da9f6b-c350-401c-a72e-2e4036f3975d}) of ThingClass
<translation>Última actualização alterada</translation> <translation>Última actualização alterada</translation>
</message> </message>
<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="181"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="165"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="184"/>
<source>Logged in</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: loggedIn, ID: {d1ca8579-5d5a-4372-9139-4b083efead2e})
----------
The name of the StateType ({d1ca8579-5d5a-4372-9139-4b083efead2e}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="187"/>
<source>Logged inchanged</source>
<extracomment>The name of the EventType ({d1ca8579-5d5a-4372-9139-4b083efead2e}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="190"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="193"/>
<source>MAC Address</source> <source>MAC Address</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {73a76c5c-84f5-4e65-8541-457e5aca9bb0}) <extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {73a76c5c-84f5-4e65-8541-457e5aca9bb0})
---------- ----------
@ -150,8 +188,8 @@ The name of the ParamType (ThingClass: indoor, Type: thing, ID: {157d470a-e579-4
<translation>MAC Address</translation> <translation>MAC Address</translation>
</message> </message>
<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="196"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="171"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="199"/>
<source>Netatmo</source> <source>Netatmo</source>
<extracomment>The name of the vendor ({4b46b4ed-5ec9-4aa4-afc3-92d3f80e6351}) <extracomment>The name of the vendor ({4b46b4ed-5ec9-4aa4-afc3-92d3f80e6351})
---------- ----------
@ -159,14 +197,14 @@ The name of the plugin Netatmo ({69d14951-0c02-4877-bcef-dffdf48b7ccb})</extraco
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="174"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="202"/>
<source>Netatmo Connection</source> <source>Netatmo Connection</source>
<extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment> <extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment>
<translation>Ligação Netatmo</translation> <translation>Ligação Netatmo</translation>
</message> </message>
<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="205"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="180"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="208"/>
<source>Noise</source> <source>Noise</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: noise, ID: {906cea9d-1daf-4e9c-90b9-e40f43052a34}) <extracomment>The name of the ParamType (ThingClass: indoor, EventType: noise, ID: {906cea9d-1daf-4e9c-90b9-e40f43052a34})
---------- ----------
@ -174,14 +212,14 @@ The name of the StateType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass
<translation>Ruído</translation> <translation>Ruído</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="183"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="211"/>
<source>Noise changed</source> <source>Noise changed</source>
<extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment> <extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation>Ruído alterado</translation> <translation>Ruído alterado</translation>
</message> </message>
<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="217"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="192"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="220"/>
<source>Pressure</source> <source>Pressure</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: pressure, ID: {03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) <extracomment>The name of the ParamType (ThingClass: indoor, EventType: pressure, ID: {03b0a7b7-987d-4d3b-b3f0-21d9f92ad326})
---------- ----------
@ -189,14 +227,14 @@ The name of the StateType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass
<translation>Pressão</translation> <translation>Pressão</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="195"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="223"/>
<source>Pressure changed</source> <source>Pressure changed</source>
<extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment> <extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation>Pressão alterada</translation> <translation>Pressão alterada</translation>
</message> </message>
<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="226"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="201"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="229"/>
<source>Signal strength</source> <source>Signal strength</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: signalStrength, ID: {0faa3d08-9004-46fb-a5aa-a59b75e454cc}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: signalStrength, ID: {0faa3d08-9004-46fb-a5aa-a59b75e454cc})
---------- ----------
@ -204,16 +242,16 @@ The name of the StateType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass
<translation>Força do sinal</translation> <translation>Força do sinal</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="204"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="232"/>
<source>Signal strength changed</source> <source>Signal strength changed</source>
<extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment> <extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation>Força do sinal alterada</translation> <translation>Força do sinal alterada</translation>
</message> </message>
<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="235"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="210"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="238"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="213"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="241"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="216"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="244"/>
<source>Temperature</source> <source>Temperature</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperature, ID: {f98776bd-887e-4b01-a87f-3d8224180563}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperature, ID: {f98776bd-887e-4b01-a87f-3d8224180563})
---------- ----------
@ -225,8 +263,8 @@ The name of the StateType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass
<translation>Temperatura</translation> <translation>Temperatura</translation>
</message> </message>
<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="247"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="222"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="250"/>
<source>Temperature changed</source> <source>Temperature changed</source>
<extracomment>The name of the EventType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor <extracomment>The name of the EventType ({f98776bd-887e-4b01-a87f-3d8224180563}) of ThingClass outdoor
---------- ----------
@ -234,10 +272,10 @@ The name of the EventType ({3cb25538-e463-40ae-92f9-8f34f0c06b92}) of ThingClass
<translation>Temperatura alterada</translation> <translation>Temperatura alterada</translation>
</message> </message>
<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="253"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="228"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="256"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="231"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="259"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="234"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="262"/>
<source>Temperature maximum</source> <source>Temperature maximum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMax, ID: {aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMax, ID: {aae071dc-70d5-4a6a-8daa-3dca0d150bd7})
---------- ----------
@ -249,8 +287,8 @@ The name of the StateType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass
<translation>Temperatura máxima</translation> <translation>Temperatura máxima</translation>
</message> </message>
<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="265"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="240"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="268"/>
<source>Temperature maximum changed</source> <source>Temperature maximum changed</source>
<extracomment>The name of the EventType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor <extracomment>The name of the EventType ({aae071dc-70d5-4a6a-8daa-3dca0d150bd7}) of ThingClass outdoor
---------- ----------
@ -258,10 +296,10 @@ The name of the EventType ({dd30507e-037b-4c74-bcca-e04b94c7c5fe}) of ThingClass
<translation>Temperatura máxima alterada</translation> <translation>Temperatura máxima alterada</translation>
</message> </message>
<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="271"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="246"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="274"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="249"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="277"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="252"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="280"/>
<source>Temperature minimum</source> <source>Temperature minimum</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMin, ID: {b71e0c8b-3c94-421e-830e-dab97b6c104e}) <extracomment>The name of the ParamType (ThingClass: outdoor, EventType: temperatureMin, ID: {b71e0c8b-3c94-421e-830e-dab97b6c104e})
---------- ----------
@ -273,8 +311,8 @@ The name of the StateType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass
<translation>Temperatura mínima</translation> <translation>Temperatura mínima</translation>
</message> </message>
<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="283"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="258"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="286"/>
<source>Temperature minimum changed</source> <source>Temperature minimum changed</source>
<extracomment>The name of the EventType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor <extracomment>The name of the EventType ({b71e0c8b-3c94-421e-830e-dab97b6c104e}) of ThingClass outdoor
---------- ----------
@ -282,8 +320,23 @@ The name of the EventType ({ae8bb713-8805-4efd-89a1-bca44a1f1690}) of ThingClass
<translation>Temperatura mínima alterada</translation> <translation>Temperatura mínima alterada</translation>
</message> </message>
<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="289"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="264"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="292"/>
<source>Username</source>
<extracomment>The name of the ParamType (ThingClass: netatmoConnection, EventType: userDisplayName, ID: {b9c98ae6-3687-4279-8fda-bc02c7b7ea38})
----------
The name of the StateType ({b9c98ae6-3687-4279-8fda-bc02c7b7ea38}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="295"/>
<source>Username changed</source>
<extracomment>The name of the EventType ({b9c98ae6-3687-4279-8fda-bc02c7b7ea38}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="298"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="301"/>
<source>WiFi signal strength</source> <source>WiFi signal strength</source>
<extracomment>The name of the ParamType (ThingClass: indoor, EventType: wifiStrength, ID: {6ea906d4-5740-454d-a730-6fdb9fa0d624}) <extracomment>The name of the ParamType (ThingClass: indoor, EventType: wifiStrength, ID: {6ea906d4-5740-454d-a730-6fdb9fa0d624})
---------- ----------
@ -291,14 +344,14 @@ The name of the StateType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass
<translation>Força do sinal WiFi</translation> <translation>Força do sinal WiFi</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="267"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="304"/>
<source>WiFi signal strength changed</source> <source>WiFi signal strength changed</source>
<extracomment>The name of the EventType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment> <extracomment>The name of the EventType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation>A força do sinal WiFi mudou</translation> <translation>A força do sinal WiFi mudou</translation>
</message> </message>
<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="307"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="273"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="310"/>
<source>name</source> <source>name</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {719e1f92-a9c8-42d6-83e1-652a0f182209}) <extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {719e1f92-a9c8-42d6-83e1-652a0f182209})
---------- ----------
@ -306,13 +359,13 @@ The name of the ParamType (ThingClass: indoor, Type: thing, ID: {a97d256c-e159-4
<translation>nome</translation> <translation>nome</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="141"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="160"/>
<source>Indoor Station</source> <source>Indoor Station</source>
<extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment> <extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment>
<translation>Estação interior</translation> <translation>Estação interior</translation>
</message> </message>
<message> <message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="186"/> <location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="214"/>
<source>Outdoor Station</source> <source>Outdoor Station</source>
<extracomment>The name of the ThingClass ({6cc01d62-7317-4ec4-8ac4-a4cab762c179})</extracomment> <extracomment>The name of the ThingClass ({6cc01d62-7317-4ec4-8ac4-a4cab762c179})</extracomment>
<translation>Estação exterior</translation> <translation>Estação exterior</translation>