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)
{
// 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
NetworkAccessManager *network = hardwareManager()->networkManager();
QNetworkReply *reply = network->get(QNetworkRequest(QUrl("https://api.netatmo.net")));
connect(reply, &QNetworkReply::finished, this, [reply, info] {
reply->deleteLater();
connect(reply, &QNetworkReply::finished, reply, &QNetworkReply::deleteLater);
connect(reply, &QNetworkReply::finished, info, [reply, info] {
//The server replies usually 404 not found on this request
//int status = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
if (reply->error() == QNetworkReply::NetworkError::HostNotFoundError) {
info->finish(Thing::ThingErrorHardwareNotAvailable, QT_TR_NOOP("Netatmo server is not reachable."));
qCWarning(dcNetatmo()) << "Netatmo server is not reachable";
info->finish(Thing::ThingErrorAuthenticationFailure, QT_TR_NOOP("Netatmo server is not reachable."));
} else {
info->finish(Thing::ThingErrorNoError, QT_TR_NOOP("Please enter the login credentials for your Netatmo account."));
}
@ -61,26 +77,27 @@ void IntegrationPluginNetatmo::startPairing(ThingPairingInfo *info)
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->setUsername(username);
authentication->setPassword(password);
authentication->setScope("read_station read_thermostat write_thermostat");
connect(authentication, &OAuth2::authenticationChanged, info, [this, info, username, password, authentication](){
if (authentication->authenticated()) {
pluginStorage()->beginGroup(info->thingId().toString());
pluginStorage()->setValue("username", username);
pluginStorage()->setValue("password", password);
pluginStorage()->endGroup();
m_pairingAuthentications.insert(authentication, info->thingId());
info->finish(Thing::ThingErrorNoError);
} else {
qCWarning(dcNetatmo()) << "Wrong username or password";
info->finish(Thing::ThingErrorAuthenticationFailure, QT_TR_NOOP("Wrong username or password"));
}
});
authentication->startAuthentication();
connect(info, &QObject::destroyed, authentication, &OAuth2::deleteLater);
connect(info, &ThingPairingInfo::aborted, authentication, &OAuth2::deleteLater);
}
void IntegrationPluginNetatmo::setupThing(ThingSetupInfo *info)
@ -88,7 +105,7 @@ void IntegrationPluginNetatmo::setupThing(ThingSetupInfo *info)
Thing *thing = info->thing();
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 password;
@ -117,43 +134,74 @@ void IntegrationPluginNetatmo::setupThing(ThingSetupInfo *info)
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;
if (m_authentications.values().contains(thing)) {
qCDebug(dcNetatmo()) << "Re-Discovery, not creating a new authentication";
authentication = m_authentications.key(thing);
authentication->setUsername(username);
authentication->setPassword(password);
if (m_pairingAuthentications.values().contains(thing->id())) {
authentication = m_pairingAuthentications.key(thing->id());
m_pairingAuthentications.remove(authentication);
qCDebug(dcNetatmo()) << "Authenticated from pairing process, not creating a new authentication";
} 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->setUsername(username);
authentication->setPassword(password);
authentication->setScope("read_station read_thermostat write_thermostat");
}
// Update thing connected state based on OAuth connected state
connect(authentication, &OAuth2::authenticationChanged, thing, [this, thing, authentication](){
thing->setStateValue(netatmoConnectionConnectedStateTypeId, authentication->authenticated());
if (authentication->authenticated()) {
refreshData(thing, authentication->token());
if (authentication->authenticated()) {
thing->setStateValue(netatmoConnectionConnectedStateTypeId, true);
thing->setStateValue(netatmoConnectionLoggedInStateTypeId, true);
thing->setStateValue(netatmoConnectionUserDisplayNameStateTypeId, authentication->username());
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
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;
// Update thing connected state based on OAuth connected state
connect(authentication, &OAuth2::authenticationChanged, thing, [this, thing, authentication](){
thing->setStateValue(netatmoConnectionLoggedInStateTypeId, authentication->authenticated());
if (authentication->authenticated()) {
refreshData(thing, authentication->token());
}
m_authentications.insert(authentication, thing);
info->finish(Thing::ThingErrorNoError);
});
return;
} 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(),
thing->paramValue(indoorThingMacParamTypeId).toString(),
this);
@ -165,7 +213,6 @@ void IntegrationPluginNetatmo::setupThing(ThingSetupInfo *info)
} else if (thing->thingClassId() == outdoorThingClassId) {
qCDebug(dcNetatmo) << "Setup netatmo outdoor module" << thing->params();
// Migrate thing parameters after changing param type UUIDs in 0.14.
QMap<QString, ParamTypeId> migrationMap;
migrationMap.insert("a97d256c-e159-4aa0-bc71-6bd7cd0688b3", outdoorThingNameParamTypeId);
@ -205,7 +252,7 @@ void IntegrationPluginNetatmo::setupThing(ThingSetupInfo *info)
void IntegrationPluginNetatmo::thingRemoved(Thing *thing)
{
if (thing->thingClassId() == netatmoConnectionThingClassId) {
OAuth2 * authentication = m_authentications.key(thing);
OAuth2 * authentication = m_authentications.key(thing->id());
m_authentications.remove(authentication);
authentication->deleteLater();
} else if (thing->thingClassId() == indoorThingClassId) {
@ -218,9 +265,15 @@ void IntegrationPluginNetatmo::thingRemoved(Thing *thing)
outdoor->deleteLater();
}
if (myThings().isEmpty() && m_pluginTimer) {
hardwareManager()->pluginTimerManager()->unregisterTimer(m_pluginTimer);
m_pluginTimer = nullptr;
if (myThings().isEmpty()) {
if (m_pluginTimer3s) {
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) {
m_pluginTimer = hardwareManager()->pluginTimerManager()->registerTimer(600);
connect(m_pluginTimer, &PluginTimer::timeout, this, &IntegrationPluginNetatmo::onPluginTimer);
if (!m_pluginTimer3s) {
m_pluginTimer3s = hardwareManager()->pluginTimerManager()->registerTimer(3);
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()
{
foreach (OAuth2 *authentication, m_authentications.keys()) {
Thing *thing = m_authentications.value(authentication);
Thing *thing = myThings().findById(m_authentications.value(authentication));
if (!thing) {
qCWarning(dcNetatmo()) << "Authentication without an associated Netatmo connection thing" << authentication->username();
m_authentications.remove(authentication);
@ -393,7 +462,8 @@ void IntegrationPluginNetatmo::onIndoorStatesChanged()
thing->setStateValue(indoorHumidityStateTypeId, indoor->humidity());
thing->setStateValue(indoorCo2StateTypeId, indoor->co2());
thing->setStateValue(indoorNoiseStateTypeId, indoor->noise());
thing->setStateValue(indoorWifiStrengthStateTypeId, indoor->wifiStrength());
thing->setStateValue(indoorSignalStrengthStateTypeId, indoor->wifiStrength());
thing->setStateValue(indoorConnectedStateTypeId, indoor->reachable());
}
void IntegrationPluginNetatmo::onOutdoorStatesChanged()
@ -409,4 +479,31 @@ void IntegrationPluginNetatmo::onOutdoorStatesChanged()
thing->setStateValue(outdoorSignalStrengthStateTypeId, outdoor->signalStrength());
thing->setStateValue(outdoorBatteryLevelStateTypeId, outdoor->battery());
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:
explicit IntegrationPluginNetatmo();
void init() override;
void startPairing(ThingPairingInfo *info) override;
void confirmPairing(ThingPairingInfo *info, const QString &username, const QString &secret) override;
void setupThing(ThingSetupInfo *info) override;
@ -56,12 +56,14 @@ public:
void postSetupThing(Thing *thing) override;
private:
PluginTimer *m_pluginTimer = nullptr;
PluginTimer *m_pluginTimer3s = nullptr;
PluginTimer *m_pluginTimer10m = nullptr;
QHash<QString, QVariantMap> m_indoorStationInitData;
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<NetatmoOutdoorModule *, Thing *> m_outdoorDevices;
@ -73,10 +75,14 @@ private:
Thing *findIndoorDevice(const QString &macAddress);
Thing *findOutdoorDevice(const QString &macAddress);
QString m_clientId;
QString m_clientSecret;
private slots:
void onPluginTimer();
void onIndoorStatesChanged();
void onOutdoorStatesChanged();
void updateClientCredentials();
};
#endif // INTEGRATIONPLUGINNETATMO_H

View File

@ -2,6 +2,23 @@
"displayName": "Netatmo",
"name": "Netatmo",
"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": [
{
"displayName": "Netatmo",
@ -12,7 +29,7 @@
"id": "728d5a67-27a3-400e-b83c-2765f5196f69",
"name": "netatmoConnection",
"displayName": "Netatmo Connection",
"interfaces": ["gateway"],
"interfaces": ["account"],
"setupMethod": "userandpassword",
"createMethods": ["user"],
"stateTypes": [
@ -23,6 +40,22 @@
"displayNameEvent": "Available changed",
"type": "bool",
"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",
"name": "indoor",
"displayName": "Indoor Station",
"interfaces": ["temperaturesensor", "humiditysensor", "pressuresensor", "noisesensor", "co2sensor"],
"interfaces": ["temperaturesensor", "humiditysensor", "pressuresensor", "noisesensor", "co2sensor", "wirelessconnectable"],
"createMethods": ["auto"],
"paramTypes": [
{
@ -126,12 +159,23 @@
},
{
"id": "6ea906d4-5740-454d-a730-6fdb9fa0d624",
"name": "wifiStrength",
"name": "signalStrength",
"displayName": "WiFi signal strength",
"displayNameEvent": "WiFi signal strength changed",
"unit": "Percentage",
"type": "int",
"type": "uint",
"minValue": 0,
"maxValue": 100,
"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",
"name": "outdoor",
"displayName": "Outdoor Station",
"interfaces": ["temperaturesensor", "humiditysensor", "batterylevel"],
"interfaces": ["temperaturesensor", "humiditysensor", "batterylevel", "wirelessconnectable"],
"createMethods": ["auto"],
"paramTypes": [
{
@ -220,9 +264,20 @@
"displayName": "Signal strength",
"displayNameEvent": "Signal strength changed",
"unit": "Percentage",
"type": "int",
"type": "uint",
"minValue": 0,
"maxValue": 100,
"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",
"name": "batteryLevel",

View File

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

View File

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

View File

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

View File

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

View File

@ -4,22 +4,33 @@
<context>
<name>IntegrationPluginNetatmo</name>
<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>
<translation>Server Netatmo není dosažitelný.</translation>
</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>
<translation>Zadejte přihlašovací údaje pro účet Netatmo.</translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="79"/>
<location filename="../integrationpluginnetatmo.cpp" line="96"/>
<source>Wrong username or password</source>
<translation>Chybné uživatelské jméno nebo heslo</translation>
</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>
<translation>Při přihlašování k serveru Netatmo došlo k chybě.</translation>
</message>
@ -27,8 +38,8 @@
<context>
<name>Netatmo</name>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="84"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="87"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="97"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="100"/>
<source>Available</source>
<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>
</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>
<extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation>Dostupné změněno</translation>
</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>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment>
<translation>Základna</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="96"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="99"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="109"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="112"/>
<source>Battery</source>
<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>
</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>
<extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation>Baterie byla vyměněna</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="105"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="108"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="118"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="121"/>
<source>Battery critical</source>
<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>
</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>
<extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation>Kritická baterie se změnila</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="114"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="117"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="127"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="130"/>
<source>CO2</source>
<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>
</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>
<extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation>CO2 se změnil</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="123"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="126"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="129"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="132"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="136"/>
<source>Custom client id</source>
<extracomment>The name of the ParamType (ThingClass: netatmo, Type: plugin, ID: {fbda653d-d59e-438c-a70c-0ccbe8080215})</extracomment>
<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>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="135"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="138"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="154"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="157"/>
<source>Humidity changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="144"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="147"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="150"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="153"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="163"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="166"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="169"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="172"/>
<source>Last update</source>
<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>
</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="159"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="175"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="178"/>
<source>Last update changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="162"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="165"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="181"/>
<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>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="168"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="171"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="196"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="199"/>
<source>Netatmo</source>
<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>
</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>
<extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment>
<translation>Netatmo připojení</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="177"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="180"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="205"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="208"/>
<source>Noise</source>
<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>
</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>
<extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation>Hluk se změnil</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="189"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="192"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="217"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="220"/>
<source>Pressure</source>
<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>
</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>
<extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation>Tlak se změnil</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="198"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="201"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="226"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="229"/>
<source>Signal strength</source>
<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>
</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>
<extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation>Síla signálu se změnila</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="207"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="210"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="213"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="216"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="235"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="238"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="241"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="244"/>
<source>Temperature</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="219"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="222"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="247"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="250"/>
<source>Temperature changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="225"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="228"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="231"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="234"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="253"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="256"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="259"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="262"/>
<source>Temperature maximum</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="237"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="240"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="265"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="268"/>
<source>Temperature maximum changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="243"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="246"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="249"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="252"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="271"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="274"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="277"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="280"/>
<source>Temperature minimum</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="255"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="258"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="283"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="286"/>
<source>Temperature minimum changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="261"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="264"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="289"/>
<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>
<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>
</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>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="270"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="273"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="307"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="310"/>
<source>name</source>
<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>
</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>
<extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment>
<translation>Vnitřní stanice</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="186"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="214"/>
<source>Outdoor Station</source>
<extracomment>The name of the ThingClass ({6cc01d62-7317-4ec4-8ac4-a4cab762c179})</extracomment>
<translation>Venkovní stanice</translation>

View File

@ -4,22 +4,33 @@
<context>
<name>IntegrationPluginNetatmo</name>
<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>
<translation>Netatmo-serveren kan ikke nås.</translation>
</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>
<translation>Indtast login-legitimationsoplysninger for din Netatmo-konto.</translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="79"/>
<location filename="../integrationpluginnetatmo.cpp" line="96"/>
<source>Wrong username or password</source>
<translation>Forkert brugernavn eller adgangskode</translation>
</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>
<translation>Fejl ved login Netatmo-serveren.</translation>
</message>
@ -27,8 +38,8 @@
<context>
<name>Netatmo</name>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="84"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="87"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="97"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="100"/>
<source>Available</source>
<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>
</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>
<extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation>Tilgængelig ændret</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="93"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="106"/>
<source>Base station</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment>
<translation>Basisstation</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="96"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="99"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="109"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="112"/>
<source>Battery</source>
<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>
</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>
<extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation>Batteri ændret</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="105"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="108"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="118"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="121"/>
<source>Battery critical</source>
<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>
</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>
<extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation>Batterikritisk ændret</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="114"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="117"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="127"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="130"/>
<source>CO2</source>
<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>
</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>
<extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation>CO2 ændret</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="123"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="126"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="129"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="132"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="136"/>
<source>Custom client id</source>
<extracomment>The name of the ParamType (ThingClass: netatmo, Type: plugin, ID: {fbda653d-d59e-438c-a70c-0ccbe8080215})</extracomment>
<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>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="135"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="138"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="154"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="157"/>
<source>Humidity changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="144"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="147"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="150"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="153"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="163"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="166"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="169"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="172"/>
<source>Last update</source>
<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>
</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="159"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="175"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="178"/>
<source>Last update changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="162"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="165"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="181"/>
<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>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="168"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="171"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="196"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="199"/>
<source>Netatmo</source>
<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>
</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>
<extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment>
<translation>Netatmo-forbindelse</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="177"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="180"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="205"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="208"/>
<source>Noise</source>
<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>
</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>
<extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation>Støj ændret</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="189"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="192"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="217"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="220"/>
<source>Pressure</source>
<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>
</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>
<extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation>Lufttryk ændret</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="198"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="201"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="226"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="229"/>
<source>Signal strength</source>
<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>
</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>
<extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation>Signalstyrke ændret</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="207"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="210"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="213"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="216"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="235"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="238"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="241"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="244"/>
<source>Temperature</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="219"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="222"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="247"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="250"/>
<source>Temperature changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="225"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="228"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="231"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="234"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="253"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="256"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="259"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="262"/>
<source>Temperature maximum</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="237"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="240"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="265"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="268"/>
<source>Temperature maximum changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="243"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="246"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="249"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="252"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="271"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="274"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="277"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="280"/>
<source>Temperature minimum</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="255"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="258"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="283"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="286"/>
<source>Temperature minimum changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="261"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="264"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="289"/>
<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>
<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>
</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>
<extracomment>The name of the EventType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation>WiFi signalstyrke ændret</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="270"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="273"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="307"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="310"/>
<source>name</source>
<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>
</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>
<extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment>
<translation>Indendørsstation</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="186"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="214"/>
<source>Outdoor Station</source>
<extracomment>The name of the ThingClass ({6cc01d62-7317-4ec4-8ac4-a4cab762c179})</extracomment>
<translation>Udendørsstation</translation>

View File

@ -4,22 +4,33 @@
<context>
<name>IntegrationPluginNetatmo</name>
<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>
<translation>Netatmo Server ist nicht erreichbar.</translation>
</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>
<translation>Bitte geben Sie die Anmeldeinformationen für Ihr Netatmo-Konto ein.</translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="79"/>
<location filename="../integrationpluginnetatmo.cpp" line="96"/>
<source>Wrong username or password</source>
<translation>Benutzername oder Passwort falsch</translation>
</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>
<translation>Fehler beim Anmelden am Netatmo-Server.</translation>
</message>
@ -27,8 +38,8 @@
<context>
<name>Netatmo</name>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="84"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="87"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="97"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="100"/>
<source>Available</source>
<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>
</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>
<extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation>Verfügbar geändert</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="93"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="106"/>
<source>Base station</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment>
<translation>Basisstation</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="96"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="99"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="109"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="112"/>
<source>Battery</source>
<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>
</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>
<extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation>Batterie geändert</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="105"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="108"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="118"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="121"/>
<source>Battery critical</source>
<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>
</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>
<extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation>Batterie kritisch geändert</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="114"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="117"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="127"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="130"/>
<source>CO2</source>
<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>
</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>
<extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation>CO2 geändert</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="123"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="126"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="129"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="132"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="136"/>
<source>Custom client id</source>
<extracomment>The name of the ParamType (ThingClass: netatmo, Type: plugin, ID: {fbda653d-d59e-438c-a70c-0ccbe8080215})</extracomment>
<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>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="135"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="138"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="154"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="157"/>
<source>Humidity changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="144"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="147"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="150"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="153"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="163"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="166"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="169"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="172"/>
<source>Last update</source>
<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>
</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="159"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="175"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="178"/>
<source>Last update changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="162"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="165"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="181"/>
<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>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="168"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="171"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="196"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="199"/>
<source>Netatmo</source>
<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>
</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>
<extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment>
<translation>Netatmo Verbindung</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="177"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="180"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="205"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="208"/>
<source>Noise</source>
<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>
</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>
<extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation>Geräusch geändert</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="189"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="192"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="217"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="220"/>
<source>Pressure</source>
<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>
</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>
<extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation>Luftdruck geändert</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="198"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="201"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="226"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="229"/>
<source>Signal strength</source>
<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>
</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>
<extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation>Signalstärke geändert</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="207"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="210"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="213"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="216"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="235"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="238"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="241"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="244"/>
<source>Temperature</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="219"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="222"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="247"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="250"/>
<source>Temperature changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="225"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="228"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="231"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="234"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="253"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="256"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="259"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="262"/>
<source>Temperature maximum</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="237"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="240"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="265"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="268"/>
<source>Temperature maximum changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="243"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="246"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="249"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="252"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="271"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="274"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="277"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="280"/>
<source>Temperature minimum</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="255"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="258"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="283"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="286"/>
<source>Temperature minimum changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="261"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="264"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="289"/>
<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>
<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>
</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>
<extracomment>The name of the EventType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation>WiFi Signalstärke geändert</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="270"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="273"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="307"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="310"/>
<source>name</source>
<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>
</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>
<extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment>
<translation>Innenstation</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="186"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="214"/>
<source>Outdoor Station</source>
<extracomment>The name of the ThingClass ({6cc01d62-7317-4ec4-8ac4-a4cab762c179})</extracomment>
<translation>Außenstation</translation>

View File

@ -4,22 +4,33 @@
<context>
<name>IntegrationPluginNetatmo</name>
<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>
<translation type="unfinished"></translation>
</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>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="79"/>
<location filename="../integrationpluginnetatmo.cpp" line="96"/>
<source>Wrong username or password</source>
<translation type="unfinished"></translation>
</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>
<translation type="unfinished"></translation>
</message>
@ -27,8 +38,8 @@
<context>
<name>Netatmo</name>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="84"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="87"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="97"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="100"/>
<source>Available</source>
<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>
</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>
<extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="93"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="106"/>
<source>Base station</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="96"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="99"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="109"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="112"/>
<source>Battery</source>
<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>
</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>
<extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="105"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="108"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="118"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="121"/>
<source>Battery critical</source>
<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>
</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>
<extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="114"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="117"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="127"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="130"/>
<source>CO2</source>
<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>
</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>
<extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="123"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="126"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="129"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="132"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="136"/>
<source>Custom client id</source>
<extracomment>The name of the ParamType (ThingClass: netatmo, Type: plugin, ID: {fbda653d-d59e-438c-a70c-0ccbe8080215})</extracomment>
<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>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="135"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="138"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="154"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="157"/>
<source>Humidity changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="144"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="147"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="150"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="153"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="163"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="166"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="169"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="172"/>
<source>Last update</source>
<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>
</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="159"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="175"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="178"/>
<source>Last update changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="162"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="165"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="181"/>
<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>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="168"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="171"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="196"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="199"/>
<source>Netatmo</source>
<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>
</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>
<extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="177"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="180"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="205"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="208"/>
<source>Noise</source>
<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>
</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>
<extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="189"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="192"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="217"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="220"/>
<source>Pressure</source>
<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>
</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>
<extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="198"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="201"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="226"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="229"/>
<source>Signal strength</source>
<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>
</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>
<extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="207"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="210"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="213"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="216"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="235"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="238"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="241"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="244"/>
<source>Temperature</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="219"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="222"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="247"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="250"/>
<source>Temperature changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="225"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="228"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="231"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="234"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="253"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="256"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="259"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="262"/>
<source>Temperature maximum</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="237"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="240"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="265"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="268"/>
<source>Temperature maximum changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="243"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="246"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="249"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="252"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="271"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="274"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="277"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="280"/>
<source>Temperature minimum</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="255"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="258"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="283"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="286"/>
<source>Temperature minimum changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="261"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="264"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="289"/>
<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>
<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>
</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>
<extracomment>The name of the EventType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="270"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="273"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="307"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="310"/>
<source>name</source>
<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>
</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>
<extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="186"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="214"/>
<source>Outdoor Station</source>
<extracomment>The name of the ThingClass ({6cc01d62-7317-4ec4-8ac4-a4cab762c179})</extracomment>
<translation type="unfinished"></translation>

View File

@ -4,22 +4,33 @@
<context>
<name>IntegrationPluginNetatmo</name>
<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>
<translation>O servidor Netatmo não é alcançável.</translation>
</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>
<translation>Por favor introduza as credenciais de login para a sua conta Netatmo.</translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="79"/>
<location filename="../integrationpluginnetatmo.cpp" line="96"/>
<source>Wrong username or password</source>
<translation>Nome de utilizador ou palavra-passe errados</translation>
</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>
<translation>Erro ao iniciar sessão no servidor Netatmo.</translation>
</message>
@ -27,8 +38,8 @@
<context>
<name>Netatmo</name>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="84"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="87"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="97"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="100"/>
<source>Available</source>
<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>
</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>
<extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation>Disponible cambiado</translation>
</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>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment>
<translation>Estación base</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="96"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="99"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="109"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="112"/>
<source>Battery</source>
<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>
</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>
<extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation>Batería cambiada</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="105"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="108"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="118"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="121"/>
<source>Battery critical</source>
<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>
</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>
<extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation>Batería crítica cambiada</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="114"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="117"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="127"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="130"/>
<source>CO2</source>
<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>
</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>
<extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation>El CO2 cambió</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="123"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="126"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="129"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="132"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="136"/>
<source>Custom client id</source>
<extracomment>The name of the ParamType (ThingClass: netatmo, Type: plugin, ID: {fbda653d-d59e-438c-a70c-0ccbe8080215})</extracomment>
<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>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="135"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="138"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="154"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="157"/>
<source>Humidity changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="144"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="147"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="150"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="153"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="163"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="166"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="169"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="172"/>
<source>Last update</source>
<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>
</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="159"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="175"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="178"/>
<source>Last update changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="162"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="165"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="181"/>
<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>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="168"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="171"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="196"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="199"/>
<source>Netatmo</source>
<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>
</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>
<extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment>
<translation>Conexión Netatmo</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="177"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="180"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="205"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="208"/>
<source>Noise</source>
<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>
</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>
<extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation>Ruido cambiado</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="189"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="192"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="217"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="220"/>
<source>Pressure</source>
<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>
</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>
<extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation>La presión cambió</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="198"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="201"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="226"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="229"/>
<source>Signal strength</source>
<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>
</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>
<extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation>The strength of the signal</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="207"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="210"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="213"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="216"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="235"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="238"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="241"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="244"/>
<source>Temperature</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="219"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="222"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="247"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="250"/>
<source>Temperature changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="225"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="228"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="231"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="234"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="253"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="256"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="259"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="262"/>
<source>Temperature maximum</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="237"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="240"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="265"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="268"/>
<source>Temperature maximum changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="243"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="246"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="249"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="252"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="271"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="274"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="277"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="280"/>
<source>Temperature minimum</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="255"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="258"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="283"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="286"/>
<source>Temperature minimum changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="261"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="264"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="289"/>
<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>
<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>
</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>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="270"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="273"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="307"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="310"/>
<source>name</source>
<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>
</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>
<extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment>
<translation>Estación interior</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="186"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="214"/>
<source>Outdoor Station</source>
<extracomment>The name of the ThingClass ({6cc01d62-7317-4ec4-8ac4-a4cab762c179})</extracomment>
<translation>Estación exterior</translation>

View File

@ -4,22 +4,33 @@
<context>
<name>IntegrationPluginNetatmo</name>
<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>
<translation>Le serveur Netatmo n&apos;est pas joignable.</translation>
</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>
<translation>Le serveur Netatmo n&apos;est pas joignable.</translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="79"/>
<location filename="../integrationpluginnetatmo.cpp" line="96"/>
<source>Wrong username or password</source>
<translation>Nom d&apos;utilisateur erroné ou</translation>
</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>
<translation>Erreur de connexion au serveur Netatmo.</translation>
</message>
@ -27,8 +38,8 @@
<context>
<name>Netatmo</name>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="84"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="87"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="97"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="100"/>
<source>Available</source>
<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>
</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>
<extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation>Disponible modifié</translation>
</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>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment>
<translation>Station de base</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="96"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="99"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="109"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="112"/>
<source>Battery</source>
<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>
</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>
<extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation>Pile changée</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="105"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="108"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="118"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="121"/>
<source>Battery critical</source>
<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>
</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>
<extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation>Changement de pile critique</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="114"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="117"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="127"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="130"/>
<source>CO2</source>
<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>
</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>
<extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation>CO2 changé</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="123"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="126"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="129"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="132"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="136"/>
<source>Custom client id</source>
<extracomment>The name of the ParamType (ThingClass: netatmo, Type: plugin, ID: {fbda653d-d59e-438c-a70c-0ccbe8080215})</extracomment>
<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>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="135"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="138"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="154"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="157"/>
<source>Humidity changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="144"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="147"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="150"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="153"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="163"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="166"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="169"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="172"/>
<source>Last update</source>
<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>
</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="159"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="175"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="178"/>
<source>Last update changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="162"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="165"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="181"/>
<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>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="168"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="171"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="196"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="199"/>
<source>Netatmo</source>
<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>
</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>
<extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment>
<translation>Connexion Netatmo</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="177"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="180"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="205"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="208"/>
<source>Noise</source>
<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>
</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>
<extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation>Bruit changée</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="189"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="192"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="217"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="220"/>
<source>Pressure</source>
<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>
</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>
<extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation>Pression changée</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="198"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="201"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="226"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="229"/>
<source>Signal strength</source>
<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>
</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>
<extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation>La puissance du signal a changé</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="207"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="210"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="213"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="216"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="235"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="238"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="241"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="244"/>
<source>Temperature</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="219"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="222"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="247"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="250"/>
<source>Temperature changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="225"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="228"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="231"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="234"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="253"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="256"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="259"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="262"/>
<source>Temperature maximum</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="237"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="240"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="265"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="268"/>
<source>Temperature maximum changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="243"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="246"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="249"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="252"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="271"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="274"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="277"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="280"/>
<source>Temperature minimum</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="255"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="258"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="283"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="286"/>
<source>Temperature minimum changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="261"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="264"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="289"/>
<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>
<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>
</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>
<extracomment>The name of the EventType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation>La puissance du signal WiFi a changé</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="270"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="273"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="307"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="310"/>
<source>name</source>
<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>
</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>
<extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment>
<translation>Station intérieure</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="186"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="214"/>
<source>Outdoor Station</source>
<extracomment>The name of the ThingClass ({6cc01d62-7317-4ec4-8ac4-a4cab762c179})</extracomment>
<translation>Station extérieure</translation>

View File

@ -4,22 +4,33 @@
<context>
<name>IntegrationPluginNetatmo</name>
<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>
<translation>Il server Netatmo non è raggiungibile.</translation>
</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>
<translation>Inserite le credenziali di accesso per il vostro account Netatmo.</translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="79"/>
<location filename="../integrationpluginnetatmo.cpp" line="96"/>
<source>Wrong username or password</source>
<translation>Nome utente o password sbagliata</translation>
</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>
<translation>Errore di accesso al server Netatmo.</translation>
</message>
@ -27,8 +38,8 @@
<context>
<name>Netatmo</name>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="84"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="87"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="97"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="100"/>
<source>Available</source>
<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>
</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>
<extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation>Disponibile cambiato</translation>
</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>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment>
<translation>Stazione base</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="96"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="99"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="109"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="112"/>
<source>Battery</source>
<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>
</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>
<extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation>Sostituzione della batteria</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="105"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="108"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="118"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="121"/>
<source>Battery critical</source>
<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>
</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>
<extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation>Sostituzione della batteria critica</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="114"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="117"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="127"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="130"/>
<source>CO2</source>
<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>
</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>
<extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation>CO2 cambiata</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="123"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="126"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="129"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="132"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="136"/>
<source>Custom client id</source>
<extracomment>The name of the ParamType (ThingClass: netatmo, Type: plugin, ID: {fbda653d-d59e-438c-a70c-0ccbe8080215})</extracomment>
<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>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="135"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="138"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="154"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="157"/>
<source>Humidity changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="144"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="147"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="150"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="153"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="163"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="166"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="169"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="172"/>
<source>Last update</source>
<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>
</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="159"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="175"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="178"/>
<source>Last update changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="162"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="165"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="181"/>
<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>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="168"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="171"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="196"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="199"/>
<source>Netatmo</source>
<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>
</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>
<extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment>
<translation>Connessione Netatmo</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="177"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="180"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="205"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="208"/>
<source>Noise</source>
<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>
</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>
<extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation>Rumore cambiato</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="189"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="192"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="217"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="220"/>
<source>Pressure</source>
<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>
</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>
<extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation>Pressione cambiata</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="198"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="201"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="226"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="229"/>
<source>Signal strength</source>
<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>
</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>
<extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation>Forza del segnale cambiata</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="207"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="210"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="213"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="216"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="235"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="238"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="241"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="244"/>
<source>Temperature</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="219"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="222"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="247"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="250"/>
<source>Temperature changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="225"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="228"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="231"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="234"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="253"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="256"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="259"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="262"/>
<source>Temperature maximum</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="237"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="240"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="265"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="268"/>
<source>Temperature maximum changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="243"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="246"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="249"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="252"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="271"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="274"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="277"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="280"/>
<source>Temperature minimum</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="255"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="258"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="283"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="286"/>
<source>Temperature minimum changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="261"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="264"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="289"/>
<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>
<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>
</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>
<extracomment>The name of the EventType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation>Cambiata la potenza del segnale WiFi</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="270"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="273"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="307"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="310"/>
<source>name</source>
<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>
</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>
<extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment>
<translation>Stazione interna</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="186"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="214"/>
<source>Outdoor Station</source>
<extracomment>The name of the ThingClass ({6cc01d62-7317-4ec4-8ac4-a4cab762c179})</extracomment>
<translation>Stazione esterna</translation>

View File

@ -4,22 +4,33 @@
<context>
<name>IntegrationPluginNetatmo</name>
<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>
<translation>Il server Netatmo non è raggiungibile.</translation>
</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>
<translation>Inserite le credenziali di accesso per il vostro account Netatmo.</translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="79"/>
<location filename="../integrationpluginnetatmo.cpp" line="96"/>
<source>Wrong username or password</source>
<translation>Nome utente o password sbagliata</translation>
</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>
<translation>Errore di accesso al server Netatmo.</translation>
</message>
@ -27,8 +38,8 @@
<context>
<name>Netatmo</name>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="84"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="87"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="97"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="100"/>
<source>Available</source>
<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>
</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>
<extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation>Disponibile cambiato</translation>
</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>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment>
<translation>Stazione base</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="96"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="99"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="109"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="112"/>
<source>Battery</source>
<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>
</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>
<extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation>Sostituzione della batteria</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="105"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="108"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="118"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="121"/>
<source>Battery critical</source>
<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>
</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>
<extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation>Sostituzione della batteria critica</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="114"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="117"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="127"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="130"/>
<source>CO2</source>
<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>
</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>
<extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation>CO2 cambiata</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="123"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="126"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="129"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="132"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="136"/>
<source>Custom client id</source>
<extracomment>The name of the ParamType (ThingClass: netatmo, Type: plugin, ID: {fbda653d-d59e-438c-a70c-0ccbe8080215})</extracomment>
<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>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="135"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="138"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="154"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="157"/>
<source>Humidity changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="144"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="147"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="150"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="153"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="163"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="166"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="169"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="172"/>
<source>Last update</source>
<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>
</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="159"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="175"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="178"/>
<source>Last update changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="162"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="165"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="181"/>
<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>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="168"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="171"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="196"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="199"/>
<source>Netatmo</source>
<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>
</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>
<extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment>
<translation>Netatmo-aansluiting</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="177"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="180"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="205"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="208"/>
<source>Noise</source>
<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>
</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>
<extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation>Geluidsoverlast veranderd</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="189"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="192"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="217"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="220"/>
<source>Pressure</source>
<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>
</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>
<extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation>Druk veranderd</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="198"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="201"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="226"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="229"/>
<source>Signal strength</source>
<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>
</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>
<extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation>Signaalsterkte veranderd</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="207"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="210"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="213"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="216"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="235"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="238"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="241"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="244"/>
<source>Temperature</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="219"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="222"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="247"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="250"/>
<source>Temperature changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="225"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="228"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="231"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="234"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="253"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="256"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="259"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="262"/>
<source>Temperature maximum</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="237"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="240"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="265"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="268"/>
<source>Temperature maximum changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="243"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="246"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="249"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="252"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="271"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="274"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="277"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="280"/>
<source>Temperature minimum</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="255"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="258"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="283"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="286"/>
<source>Temperature minimum changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="261"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="264"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="289"/>
<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>
<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>
</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>
<extracomment>The name of the EventType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation>WiFi-signaalsterkte veranderd</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="270"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="273"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="307"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="310"/>
<source>name</source>
<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>
</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>
<extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment>
<translation>Binnenshuis-station</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="186"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="214"/>
<source>Outdoor Station</source>
<extracomment>The name of the ThingClass ({6cc01d62-7317-4ec4-8ac4-a4cab762c179})</extracomment>
<translation>Buitenshuis-station</translation>

View File

@ -4,22 +4,33 @@
<context>
<name>IntegrationPluginNetatmo</name>
<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>
<translation>O servidor Netatmo não é alcançável.</translation>
</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>
<translation>Por favor introduza as credenciais de login para a sua conta Netatmo.</translation>
</message>
<message>
<location filename="../integrationpluginnetatmo.cpp" line="79"/>
<location filename="../integrationpluginnetatmo.cpp" line="96"/>
<source>Wrong username or password</source>
<translation>Nome de utilizador ou palavra-passe errados</translation>
</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>
<translation>Erro ao iniciar sessão no servidor Netatmo.</translation>
</message>
@ -27,8 +38,8 @@
<context>
<name>Netatmo</name>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="84"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="87"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="97"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="100"/>
<source>Available</source>
<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>
</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>
<extracomment>The name of the EventType ({2f79bc1d-27ed-480a-b583-728363c83ea6}) of ThingClass netatmoConnection</extracomment>
<translation>Disponível alterado</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="93"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="106"/>
<source>Base station</source>
<extracomment>The name of the ParamType (ThingClass: outdoor, Type: thing, ID: {d7a0ec46-760c-4fdc-9753-fe10c86fe1b9})</extracomment>
<translation>Estação base</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="96"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="99"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="109"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="112"/>
<source>Battery</source>
<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>
</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>
<extracomment>The name of the EventType ({15d8fae1-ba47-42e1-994d-530e8017c965}) of ThingClass outdoor</extracomment>
<translation>Bateria trocada</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="105"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="108"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="118"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="121"/>
<source>Battery critical</source>
<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>
</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>
<extracomment>The name of the EventType ({f8aeb144-014d-4ccb-81db-64ffc70f1c97}) of ThingClass outdoor</extracomment>
<translation>Mudança de bateria crítica</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="114"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="117"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="127"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="130"/>
<source>CO2</source>
<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>
</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>
<extracomment>The name of the EventType ({e5710bd1-79fa-4bd4-9052-8416aae909b9}) of ThingClass indoor</extracomment>
<translation>CO2 alterado</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="123"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="126"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="129"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="132"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="136"/>
<source>Custom client id</source>
<extracomment>The name of the ParamType (ThingClass: netatmo, Type: plugin, ID: {fbda653d-d59e-438c-a70c-0ccbe8080215})</extracomment>
<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>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="135"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="138"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="154"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="157"/>
<source>Humidity changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="144"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="147"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="150"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="153"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="163"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="166"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="169"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="172"/>
<source>Last update</source>
<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>
</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="159"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="175"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="178"/>
<source>Last update changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="162"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="165"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="181"/>
<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>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="168"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="171"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="196"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="199"/>
<source>Netatmo</source>
<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>
</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>
<extracomment>The name of the ThingClass ({728d5a67-27a3-400e-b83c-2765f5196f69})</extracomment>
<translation>Ligação Netatmo</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="177"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="180"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="205"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="208"/>
<source>Noise</source>
<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>
</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>
<extracomment>The name of the EventType ({906cea9d-1daf-4e9c-90b9-e40f43052a34}) of ThingClass indoor</extracomment>
<translation>Ruído alterado</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="189"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="192"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="217"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="220"/>
<source>Pressure</source>
<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>
</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>
<extracomment>The name of the EventType ({03b0a7b7-987d-4d3b-b3f0-21d9f92ad326}) of ThingClass indoor</extracomment>
<translation>Pressão alterada</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="198"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="201"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="226"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="229"/>
<source>Signal strength</source>
<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>
</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>
<extracomment>The name of the EventType ({0faa3d08-9004-46fb-a5aa-a59b75e454cc}) of ThingClass outdoor</extracomment>
<translation>Força do sinal alterada</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="207"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="210"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="213"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="216"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="235"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="238"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="241"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="244"/>
<source>Temperature</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="219"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="222"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="247"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="250"/>
<source>Temperature changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="225"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="228"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="231"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="234"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="253"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="256"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="259"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="262"/>
<source>Temperature maximum</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="237"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="240"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="265"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="268"/>
<source>Temperature maximum changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="243"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="246"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="249"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="252"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="271"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="274"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="277"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="280"/>
<source>Temperature minimum</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="255"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="258"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="283"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="286"/>
<source>Temperature minimum changed</source>
<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>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="261"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="264"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="289"/>
<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>
<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>
</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>
<extracomment>The name of the EventType ({6ea906d4-5740-454d-a730-6fdb9fa0d624}) of ThingClass indoor</extracomment>
<translation>A força do sinal WiFi mudou</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="270"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="273"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="307"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="310"/>
<source>name</source>
<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>
</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>
<extracomment>The name of the ThingClass ({1c809049-04f2-4710-99f5-6ed379a2934f})</extracomment>
<translation>Estação interior</translation>
</message>
<message>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="186"/>
<location filename="../../../build-nymea-plugins-Desktop-Debug/netatmo/plugininfo.h" line="214"/>
<source>Outdoor Station</source>
<extracomment>The name of the ThingClass ({6cc01d62-7317-4ec4-8ac4-a4cab762c179})</extracomment>
<translation>Estação exterior</translation>