diff --git a/philipshue/integrationpluginphilipshue.cpp b/philipshue/integrationpluginphilipshue.cpp index c8959131..4646e6fd 100644 --- a/philipshue/integrationpluginphilipshue.cpp +++ b/philipshue/integrationpluginphilipshue.cpp @@ -113,12 +113,7 @@ void IntegrationPluginPhilipsHue::discoverThings(ThingDiscoveryInfo *info) // Tracking object DiscoveryJob *discovery = new DiscoveryJob(); - m_discoveries.insert(info, discovery); - - // clean up the discovery job when the ThingDiscoveryInfo is destroyed (either finished or cancelled) - connect(info, &ThingDiscoveryInfo::destroyed, this, [this, info](){ - delete m_discoveries.take(info); - }); + connect(info, &ThingDiscoveryInfo::destroyed, this, [=](){ delete discovery; }); foreach (const ZeroConfServiceEntry &entry, m_zeroConfBrowser->serviceEntries()) { @@ -152,6 +147,11 @@ void IntegrationPluginPhilipsHue::discoverThings(ThingDiscoveryInfo *info) discovery->results.append(descriptor); } + finishDiscovery(info, discovery); +} + +void IntegrationPluginPhilipsHue::startUpnPDiscovery(ThingDiscoveryInfo *info, DiscoveryJob *discovery) +{ qCDebug(dcPhilipsHue()) << "Starting UPnP discovery..."; UpnpDiscoveryReply *upnpReply = hardwareManager()->upnpDiscovery()->discoverDevices("libhue:idl"); discovery->upnpReply = upnpReply; @@ -159,9 +159,10 @@ void IntegrationPluginPhilipsHue::discoverThings(ThingDiscoveryInfo *info) connect(upnpReply, &UpnpDiscoveryReply::finished, upnpReply, &UpnpDiscoveryReply::deleteLater); // Process results if info is still around - connect(upnpReply, &UpnpDiscoveryReply::finished, info, [this, upnpReply, discovery](){ + connect(upnpReply, &UpnpDiscoveryReply::finished, info, [=](){ // Indicate we're done... + discovery->upnpDone = true; discovery->upnpReply = nullptr; if (upnpReply->error() != UpnpDiscoveryReply::UpnpDiscoveryReplyErrorNoError) { @@ -189,10 +190,12 @@ void IntegrationPluginPhilipsHue::discoverThings(ThingDiscoveryInfo *info) } } - finishDiscovery(discovery); + finishDiscovery(info, discovery); }); +} - +void IntegrationPluginPhilipsHue::startNUpnpDiscovery(ThingDiscoveryInfo *info, DiscoveryJob *discovery) +{ qCDebug(dcPhilipsHue) << "Starting N-UPNP discovery..."; QNetworkRequest request(QUrl("https://discovery.meethue.com")); QNetworkReply *nUpnpReply = hardwareManager()->networkManager()->get(request); @@ -202,20 +205,21 @@ void IntegrationPluginPhilipsHue::discoverThings(ThingDiscoveryInfo *info) connect(nUpnpReply, &QNetworkReply::finished, nUpnpReply, &QNetworkReply::deleteLater); // Process results if info is still around - connect(nUpnpReply, &QNetworkReply::finished, info, [this, nUpnpReply, discovery](){ - nUpnpReply->deleteLater(); + connect(nUpnpReply, &QNetworkReply::finished, info, [=](){ + discovery->nUpnpReply = nullptr; + discovery->nUpnpDone = true; if (nUpnpReply->error() != QNetworkReply::NoError) { qCWarning(dcPhilipsHue()) << "N-UPnP discovery failed:" << nUpnpReply->error() << nUpnpReply->errorString(); - finishDiscovery(discovery); + finishDiscovery(info, discovery); return; } QJsonParseError error; QJsonDocument jsonDoc = QJsonDocument::fromJson(nUpnpReply->readAll(), &error); if (error.error != QJsonParseError::NoError) { qCWarning(dcPhilipsHue) << "N-UPNP discovery JSON error in response" << error.errorString(); - finishDiscovery(discovery); + finishDiscovery(info, discovery); return; } @@ -232,16 +236,28 @@ void IntegrationPluginPhilipsHue::discoverThings(ThingDiscoveryInfo *info) discovery->results.append(descriptor); } - finishDiscovery(discovery); + finishDiscovery(info, discovery); }); } -void IntegrationPluginPhilipsHue::finishDiscovery(IntegrationPluginPhilipsHue::DiscoveryJob *job) +void IntegrationPluginPhilipsHue::finishDiscovery(ThingDiscoveryInfo *info, IntegrationPluginPhilipsHue::DiscoveryJob *job) { if (job->upnpReply || job->nUpnpReply) { // still pending... return; } + + if (job->results.isEmpty() && !job->upnpDone) { + qCDebug(dcPhilipsHue()) << "No results on mDNS. Trying UPnP..."; + startUpnPDiscovery(info, job); + return; + } + if (job->results.isEmpty() && !job->nUpnpDone) { + qCDebug(dcPhilipsHue()) << "No results on UPnP. Trying NUPnP..."; + startNUpnpDiscovery(info, job); + return; + } + QHash results; foreach (ThingDescriptor result, job->results) { // dedupe @@ -259,8 +275,6 @@ void IntegrationPluginPhilipsHue::finishDiscovery(IntegrationPluginPhilipsHue::D } - ThingDiscoveryInfo *info = m_discoveries.key(job); - info->addThingDescriptors(results.values()); info->finish(Thing::ThingErrorNoError); } @@ -269,7 +283,7 @@ void IntegrationPluginPhilipsHue::startPairing(ThingPairingInfo *info) { Q_ASSERT_X(info->thingClassId() == bridgeThingClassId, "DevicePluginPhilipsHue::startPairing", "Unexpected thing class."); - info->finish(Thing::ThingErrorNoError, QT_TR_NOOP("Please press the button on the Hue Bridge within 30 seconds before you continue")); + info->finish(Thing::ThingErrorNoError, QT_TR_NOOP("Please press the button on the Hue Bridge within 30 seconds before you continue.")); } void IntegrationPluginPhilipsHue::setupThing(ThingSetupInfo *info) @@ -705,7 +719,7 @@ void IntegrationPluginPhilipsHue::confirmPairing(ThingPairingInfo *info, const Q connect(reply, &QNetworkReply::finished, info, [this, info, reply](){ if (reply->error() != QNetworkReply::NoError) { - info->finish(Thing::ThingErrorHardwareFailure, QT_TR_NOOP("Error connecting to hue bridge.")); + info->finish(Thing::ThingErrorHardwareFailure, QT_TR_NOOP("Connecting to the Hue Bridge failed. Please make sure that your Hue Bridge is working and connected to the same network.")); return; } QByteArray data = reply->readAll(); @@ -715,22 +729,29 @@ void IntegrationPluginPhilipsHue::confirmPairing(ThingPairingInfo *info, const Q // check JSON error if (error.error != QJsonParseError::NoError) { qCWarning(dcPhilipsHue) << "Hue Bridge json error in response" << error.errorString(); - info->finish(Thing::ThingErrorHardwareFailure, QT_TR_NOOP("Received unexpected data from hue bridge.")); + info->finish(Thing::ThingErrorHardwareFailure, QT_TR_NOOP("The pairing process failed. Please make sure that your Hue Bridge is working.")); return; } + if (jsonDoc.toVariant().toList().isEmpty()) { + qCWarning(dcPhilipsHue) << "Hue Bridge empty json!"; + info->finish(Thing::ThingErrorHardwareFailure, QT_TR_NOOP("The pairing process failed. Please make sure that your Hue Bridge is working.")); + return; + } + + QVariantMap pairingReply = jsonDoc.toVariant().toList().first().toMap(); // check response error - if (data.contains("error")) { - if (!jsonDoc.toVariant().toList().isEmpty()) { - qCWarning(dcPhilipsHue) << "Failed to pair Hue Bridge:" << jsonDoc.toVariant().toList().first().toMap().value("error").toMap().value("description").toString(); + if (pairingReply.contains("error")) { + qCWarning(dcPhilipsHue) << "Failed to pair Hue Bridge:" << pairingReply; + if (pairingReply.value("error").toMap().value("type").toInt() == 101) { + info->finish(Thing::ThingErrorHardwareFailure, QT_TR_NOOP("The pairing process failed. The link button has not been pressed. Please follow the on-screen instructions again.")); } else { - qCWarning(dcPhilipsHue) << "Failed to pair Hue Bridge: Invalid error message format"; + info->finish(Thing::ThingErrorHardwareFailure, QT_TR_NOOP("Please make sure that your Hue bridge is working and follow the on-screen instructions again.")); } - info->finish(Thing::ThingErrorHardwareFailure, QT_TR_NOOP("An error happened pairing the hue bridge.")); return; } - QString apiKey = jsonDoc.toVariant().toList().first().toMap().value("success").toMap().value("username").toString(); + QString apiKey = pairingReply.value("success").toMap().value("username").toString(); if (apiKey.isEmpty()) { qCWarning(dcPhilipsHue) << "Failed to pair Hue Bridge: did not get any key from the bridge"; diff --git a/philipshue/integrationpluginphilipshue.h b/philipshue/integrationpluginphilipshue.h index cd9a8892..431aff5c 100644 --- a/philipshue/integrationpluginphilipshue.h +++ b/philipshue/integrationpluginphilipshue.h @@ -92,12 +92,16 @@ private: class DiscoveryJob { public: UpnpDiscoveryReply* upnpReply; + bool upnpDone = false; QNetworkReply* nUpnpReply; + bool nUpnpDone = false; ThingDescriptors results; }; ZeroConfServiceBrowser *m_zeroConfBrowser = nullptr; - QHash m_discoveries; - void finishDiscovery(DiscoveryJob* job); + + void startUpnPDiscovery(ThingDiscoveryInfo *info, DiscoveryJob *discovery); + void startNUpnpDiscovery(ThingDiscoveryInfo *info, DiscoveryJob *discovery); + void finishDiscovery(ThingDiscoveryInfo *info, DiscoveryJob* job); PluginTimer *m_pluginTimer1Sec = nullptr; PluginTimer *m_pluginTimer5Sec = nullptr; @@ -131,7 +135,6 @@ private: void setLightName(Thing *thing); void setRemoteName(Thing *thing); - void processNUpnpResponse(const QByteArray &data); void processBridgeLightDiscoveryResponse(Thing *thing, const QByteArray &data); void processBridgeSensorDiscoveryResponse(Thing *thing, const QByteArray &data); void processLightRefreshResponse(Thing *thing, const QByteArray &data); diff --git a/philipshue/integrationpluginphilipshue.json b/philipshue/integrationpluginphilipshue.json index 146b965f..fc1c80a2 100644 --- a/philipshue/integrationpluginphilipshue.json +++ b/philipshue/integrationpluginphilipshue.json @@ -11,7 +11,7 @@ { "id": "642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7", "name": "bridge", - "displayName": "Hue gateway", + "displayName": "Philips Hue Bridge", "interfaces": ["gateway", "update"], "providedInterfaces": ["light", "button", "presencesensor", "powersocket"], "createMethods": ["discovery"], diff --git a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-cs.ts b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-cs.ts index 646f4cac..9bb9d8e3 100644 --- a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-cs.ts +++ b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-cs.ts @@ -4,53 +4,63 @@ IntegrationPluginPhilipsHue - - Please press the button on the Hue Bridge within 30 seconds before you continue - Stiskněte tlačítko na Hue Bridge na 30 sekund než budete pokračovat - - - + Not authenticated to bridge. Please reconfigure the bridge. - - Error connecting to hue bridge. + + The pairing process failed. The link button has not been pressed. Please follow the on-screen instructions again. - - + Received unexpected data from hue bridge. - - An error happened pairing the hue bridge. + + Connecting to the Hue Bridge failed. Please make sure that your Hue Bridge is working and connected to the same network. - + + Please press the button on the Hue Bridge within 30 seconds before you continue. + + + + + + The pairing process failed. Please make sure that your Hue Bridge is working. + + + + + Please make sure that your Hue bridge is working and follow the on-screen instructions again. + + + + The hue bridge has rejected the connection request. - + Error sending command to hue bridge. - + An unexpected error happened when sending the command to the hue bridge. - + Philips Hue Motion sensor - + Philips Hue Outdoor sensor @@ -58,37 +68,31 @@ PhilipsHue - + Philips The name of the vendor ({0ae1e001-2aa6-47ed-b8c0-334c3728a68f}) Philips - - Hue gateway - The name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7}) - Hue brána - - - + host address The name of the ParamType (ThingClass: bridge, Type: thing, ID: {1845975b-1184-4440-bc0d-73d53a9f683c}) adresa hostitele - + id The name of the ParamType (ThingClass: bridge, Type: thing, ID: {a496feb0-3b7b-46cb-a63a-e063447d6b1d}) id - - - - - - - + + + + + + + reachable changed The name of the EventType ({45f75511-7d72-410e-aed0-5720cc497bf8}) of ThingClass dimmerSwitch2 ---------- @@ -106,120 +110,144 @@ The name of the EventType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass dosažitelně změněn - + api version changed The name of the EventType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridge api verze změněna - + update status changed The name of the EventType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridge status aktualizace změněn - + search devices The name of the ActionType ({cca3f171-6318-44e7-a2ac-d841857c1c24}) of ThingClass bridge hledat zařízení - + Serial Number (optional) The name of the ParamType (ThingClass: bridge, ActionType: searchNewDevices, ID: {1924bdb5-f8f1-4dcd-bc09-21ad7c5ce377}) - + check updates The name of the ActionType ({07a85e91-d064-4bce-b017-13fd0c320c0b}) of ThingClass bridge kontrolovat aktualizace - + Upgrade bridge The name of the ActionType ({6dfbc7c0-7372-42f6-82ba-e777cb32dc4c}) of ThingClass bridge Upgradovat můstek - - + + + + Battery level - The name of the ParamType (ThingClass: smartButton, EventType: batteryLevel, ID: {a0a1b480-6822-49bc-b1b1-50c39764d255}) + The name of the ParamType (ThingClass: wallSwitch, EventType: batteryLevel, ID: {b025cab6-d128-43eb-ba63-b16861d6ab10}) +---------- +The name of the StateType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch +---------- +The name of the ParamType (ThingClass: smartButton, EventType: batteryLevel, ID: {a0a1b480-6822-49bc-b1b1-50c39764d255}) ---------- The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - + + Battery level changed - The name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton + The name of the EventType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch +---------- +The name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - + Button longpress The name of the EventType ({d5052592-044d-42e8-b98a-d3fe9f2f53ae}) of ThingClass dimmerSwitch2 - + Friends of Hue Switch The name of the ThingClass ({692bc4be-07b8-4b77-ab0b-a36185b17d76}) - + Hue Dimmer Switch V2 The name of the ThingClass ({2b40aea0-e0f3-4cde-b034-3ae8a69a5d9d}) - + Hue Motion Sensor The name of the ThingClass ({25b79fff-4b88-4af8-b06c-2fe246238790}) - + Hue On/Off light The name of the ThingClass ({f720f31d-9523-4a74-9f10-19cbc9edeb58}) - + Hue Smart Button The name of the ThingClass ({1e34a056-9f37-4741-b249-a5eca7a4ab4e}) - + Hue Smart plug The name of the ThingClass ({01438844-0048-4276-91f8-c93ac0a5171d}) - + + Hue Wall Switch Module + The name of the ThingClass ({e967027f-f8fc-410c-8b48-6ac4c42e2777}) + + + + Long pressed The name of the EventType ({25803922-37f1-47c8-ac00-2d3acb9eb634}) of ThingClass smartButton - - - + + + + Model ID The name of the ParamType (ThingClass: foh, Type: thing, ID: {664c7091-12eb-4402-8239-31da85f73d38}) ---------- The name of the ParamType (ThingClass: tap, Type: thing, ID: {62d92175-db3a-4da2-a72b-f58f34cb6911}) ---------- +The name of the ParamType (ThingClass: wallSwitch, Type: thing, ID: {71c2c485-6a09-4bcd-80e5-24cdc45d323f}) +---------- The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {9271179f-5fe1-4005-9f97-ccde33b1b2c4}) - - - + + Philips Hue Bridge + The name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7}) + + + + + + Powered The name of the ParamType (ThingClass: smartPlug, ActionType: power, ID: {77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) ---------- @@ -229,20 +257,23 @@ The name of the StateType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass - - - + + + + Sensor ID The name of the ParamType (ThingClass: foh, Type: thing, ID: {7559d16c-b56b-42e2-8347-65582fa276c0}) ---------- The name of the ParamType (ThingClass: tap, Type: thing, ID: {5eca2b24-8986-4487-bc12-50e91d023d97}) ---------- +The name of the ParamType (ThingClass: wallSwitch, Type: thing, ID: {62a9df8c-51b5-434f-9d5d-5fa97144076a}) +---------- The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {54744fcc-c052-4c16-a857-fbe0b791e538}) - - + + Software version The name of the ParamType (ThingClass: bridge, EventType: currentVersion, ID: {4c707b18-6604-4e6d-b6bc-4e27769c2adc}) ---------- @@ -250,26 +281,26 @@ The name of the StateType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass - + Software version changed The name of the EventType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge - + Switch The name of the ActionType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - + Switched on or off The name of the EventType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - - + + Time period The name of the ParamType (ThingClass: motionSensor, Type: settings, ID: {beedc4af-c107-4c53-be25-fd01a349fd35}) ---------- @@ -277,37 +308,43 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: settings, ID: {21d46 - - - + + + + Type The name of the ParamType (ThingClass: foh, Type: thing, ID: {16ca2ee1-d738-4f51-8f9a-53547d3d824e}) ---------- The name of the ParamType (ThingClass: tap, Type: thing, ID: {eace85b9-5369-466f-89eb-46c4de718305}) ---------- +The name of the ParamType (ThingClass: wallSwitch, Type: thing, ID: {08606780-2251-4c15-bb7d-7506535e14ed}) +---------- The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {7221aacc-1420-43f2-a05a-448a0f783713}) - - - + + + + UUID The name of the ParamType (ThingClass: foh, Type: thing, ID: {2ca66286-1caf-4e09-8e18-05bb7d7df314}) ---------- The name of the ParamType (ThingClass: tap, Type: thing, ID: {25cf4167-6c28-4497-9fa9-3d02faf4f3ed}) ---------- +The name of the ParamType (ThingClass: wallSwitch, Type: thing, ID: {4cdab881-5d2d-4443-816a-231bbb331f22}) +---------- The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {2378a06d-b748-445b-94e2-4dd885a54f22}) - - - - - - - + + + + + + + model id The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {a5441712-5a4a-43a7-b797-3806cba86e1a}) ---------- @@ -325,13 +362,13 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {095a463b-f5 id modelu - - - - - - - + + + + + + + type The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {87cf0d7a-9ac2-4694-9f5f-1c9c6692a6c5}) ---------- @@ -349,12 +386,12 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {3f3467ef-44 typ - - - - - - + + + + + + uuid The name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {200b5daa-1023-49cb-a933-bdd1ac7df4bd}) ---------- @@ -370,11 +407,11 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {1a5129ca-00 uuid - - - - - + + + + + light id The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {90791861-bb27-4ade-8551-306af322b12d}) ---------- @@ -388,10 +425,10 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {491dc012-cc id světla - - - - + + + + power changed The name of the EventType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight ---------- @@ -403,18 +440,18 @@ The name of the EventType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass výkon změněn - - - - - - - - - - - - + + + + + + + + + + + + power The name of the ParamType (ThingClass: onOffLight, ActionType: power, ID: {5dc5e71b-789e-4c68-abb6-1534c8af019e}) ---------- @@ -442,10 +479,10 @@ The name of the StateType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass výkon - - - - + + + + Set power The name of the ActionType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight ---------- @@ -457,8 +494,8 @@ The name of the ActionType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClas nastavit výkon - - + + color temperature changed The name of the EventType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight ---------- @@ -466,8 +503,8 @@ The name of the EventType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass barevná teplota změněna - - + + Set color temperature The name of the ActionType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight ---------- @@ -475,15 +512,15 @@ The name of the ActionType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClas nastavit barevnou teplotu - + color changed The name of the EventType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight barva změněna - - - + + + color The name of the ParamType (ThingClass: colorLight, ActionType: color, ID: {d25423e7-b924-4b20-80b6-77eecc65d089}) ---------- @@ -493,15 +530,15 @@ The name of the StateType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass barva - + Set color The name of the ActionType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight Nastavit barvu - - - + + + brightness changed The name of the EventType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight ---------- @@ -511,15 +548,15 @@ The name of the EventType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass jas změněn - - - - - - - - - + + + + + + + + + brightness The name of the ParamType (ThingClass: dimmableLight, ActionType: brightness, ID: {2f062912-1159-423b-8143-48a8e69b9348}) ---------- @@ -541,8 +578,8 @@ The name of the StateType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass jas - - + + Set brigtness The name of the ActionType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight ---------- @@ -550,26 +587,26 @@ The name of the ActionType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClas Nastavit jas - + effect changed The name of the EventType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight efekt změněn - + Hue color temperature light The name of the ThingClass ({35f749f7-b60a-4922-bd25-1bdd2eddcbe3}) - + Hue dimmable light The name of the ThingClass ({4fa568ef-7a3a-422b-b0c0-206d37cb4eed}) - - + + battery critical changed The name of the EventType ({88cc3794-3e83-47d4-8889-0b3246336bf7}) of ThingClass dimmerSwitch2 ---------- @@ -577,16 +614,19 @@ The name of the EventType ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass baterie kritický stav změněno - - - - - + + + + + + Button pressed The name of the EventType ({2cc68bd3-ad73-4bf3-9905-639870d071bd}) of ThingClass foh ---------- The name of the EventType ({c45dd703-7cbd-48f7-88dc-31045cc3d39c}) of ThingClass tap ---------- +The name of the EventType ({4623b5ff-b999-4200-ba38-89435d78fcae}) of ThingClass wallSwitch +---------- The name of the EventType ({c809179e-effa-4717-9172-11df7e80d109}) of ThingClass smartButton ---------- The name of the EventType ({b7a5b3df-2c60-4b97-bf99-b97e6012a194}) of ThingClass dimmerSwitch2 @@ -595,17 +635,20 @@ The name of the EventType ({8da28cf1-2457-451e-953e-2685f8daeda8}) of ThingClass Tlačítko stisknuto - - - - - - + + + + + + + Button name The name of the ParamType (ThingClass: foh, EventType: pressed, ID: {f1da229e-fce2-4329-8850-1c92b5bc5925}) ---------- The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b8a-4709-8abf-717cf213f4a4}) ---------- +The name of the ParamType (ThingClass: wallSwitch, EventType: pressed, ID: {adb4ec5e-e48f-4697-a876-e56e8458987a}) +---------- The name of the ParamType (ThingClass: dimmerSwitch2, EventType: longPressed, ID: {c03bb1ad-f8c9-4993-9d25-557ade2d2c13}) ---------- The name of the ParamType (ThingClass: dimmerSwitch2, EventType: pressed, ID: {562f2d4d-351e-4c2c-98bf-187b948587e4}) @@ -616,26 +659,26 @@ The name of the ParamType (ThingClass: remote, EventType: pressed, ID: {e4e3eb3a Název tlačítka - + Button longpressed The name of the EventType ({2c64561b-2381-4769-8e21-0e206c84bbcc}) of ThingClass remote Tlačítko dlouho stisknuto - + Hue Tap The name of the ThingClass ({2b8c1fb8-67ee-42e9-947b-16e0a09f0d4e}) Hue Tap - + Hue Outdoor Sensor The name of the ThingClass ({32dc6390-600f-4eb4-b349-cc2d6796a82a}) - - + + Model id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {9cb488b7-a76f-4389-a6b5-b36250246f2b}) ---------- @@ -643,9 +686,9 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca8632d - - - + + + Uuid The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {5b8a02b9-3a2b-4178-914d-c62d03281d00}) ---------- @@ -655,8 +698,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {4a15f861 - - + + Temperature sensor id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {c9e81e29-f8d4-4370-ada2-f48b32def1fe}) ---------- @@ -664,8 +707,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {c732fefd - - + + Temperature sensor uuid The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {aa29b5f1-5589-4fa9-bbd4-8869723c037c}) ---------- @@ -673,8 +716,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {2fdb34e8 - - + + Presence sensor id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {337b2c6c-e3bf-495c-943c-b45fa08add37}) ---------- @@ -682,8 +725,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca82a24 - - + + Presence sensor uuid The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {3829bddb-e722-4724-be36-3a8402738581}) ---------- @@ -691,8 +734,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {7d55ed97 - - + + Light sensor id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {04fba73e-730e-437a-b6f2-10df21296af5}) ---------- @@ -700,8 +743,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {22a164fc - - + + Light sensor uuid The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {171cc2e7-7a95-4116-986c-66d75e3e23eb}) ---------- @@ -709,12 +752,13 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {db678144 - - - - - - + + + + + + + Reachable changed The name of the EventType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug ---------- @@ -726,22 +770,26 @@ The name of the EventType ({840b220c-656b-4f56-bbaa-ce818cffad64}) of ThingClass ---------- The name of the EventType ({5e21b032-1230-4e93-8543-0c4773da17d3}) of ThingClass tap ---------- +The name of the EventType ({b51071af-1290-41f1-b2eb-e84527342ade}) of ThingClass wallSwitch +---------- The name of the EventType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass smartButton - - - - - - - - - - - - + + + + + + + + + + + + + + Reachable The name of the ParamType (ThingClass: smartPlug, EventType: connected, ID: {6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) ---------- @@ -763,14 +811,18 @@ The name of the ParamType (ThingClass: tap, EventType: connected, ID: {5e21b032- ---------- The name of the StateType ({5e21b032-1230-4e93-8543-0c4773da17d3}) of ThingClass tap ---------- +The name of the ParamType (ThingClass: wallSwitch, EventType: connected, ID: {b51071af-1290-41f1-b2eb-e84527342ade}) +---------- +The name of the StateType ({b51071af-1290-41f1-b2eb-e84527342ade}) of ThingClass wallSwitch +---------- The name of the ParamType (ThingClass: smartButton, EventType: connected, ID: {b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) ---------- The name of the StateType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass smartButton - - + + Battery changed The name of the EventType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ---------- @@ -778,10 +830,10 @@ The name of the EventType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass - - - - + + + + Battery The name of the ParamType (ThingClass: motionSensor, EventType: batteryLevel, ID: {ac463b30-24af-4352-84da-19a3ffc906bd}) ---------- @@ -793,24 +845,29 @@ The name of the StateType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass - - - + + + + Battery critical changed The name of the EventType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor ---------- The name of the EventType ({617aa352-789c-46e7-bf55-7455b1e5018e}) of ThingClass outdoorSensor ---------- +The name of the EventType ({7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) of ThingClass wallSwitch +---------- The name of the EventType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass smartButton - - - - - - + + + + + + + + Battery critical The name of the ParamType (ThingClass: motionSensor, EventType: batteryCritical, ID: {d7c4e143-6f03-411e-a12e-dd22806270fd}) ---------- @@ -820,14 +877,18 @@ The name of the ParamType (ThingClass: outdoorSensor, EventType: batteryCritical ---------- The name of the StateType ({617aa352-789c-46e7-bf55-7455b1e5018e}) of ThingClass outdoorSensor ---------- +The name of the ParamType (ThingClass: wallSwitch, EventType: batteryCritical, ID: {7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) +---------- +The name of the StateType ({7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) of ThingClass wallSwitch +---------- The name of the ParamType (ThingClass: smartButton, EventType: batteryCritical, ID: {7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) ---------- The name of the StateType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass smartButton - - + + Temperature changed The name of the EventType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ---------- @@ -835,10 +896,10 @@ The name of the EventType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass - - - - + + + + Temperature The name of the ParamType (ThingClass: motionSensor, EventType: temperature, ID: {63ee79f7-702b-48c1-86cf-8ddebb78bae6}) ---------- @@ -850,8 +911,8 @@ The name of the StateType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass - - + + Ambient light changed The name of the EventType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor ---------- @@ -859,10 +920,10 @@ The name of the EventType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass - - - - + + + + Ambient light The name of the ParamType (ThingClass: motionSensor, EventType: lightIntensity, ID: {064f48c1-f86d-4a0a-bdae-3420123dff3f}) ---------- @@ -874,8 +935,8 @@ The name of the StateType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass - - + + Person is present changed The name of the EventType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor ---------- @@ -883,10 +944,10 @@ The name of the EventType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass - - - - + + + + Person is present The name of the ParamType (ThingClass: motionSensor, EventType: isPresent, ID: {e38ee39c-c77f-40b5-b122-4efc411da0ed}) ---------- @@ -898,8 +959,8 @@ The name of the StateType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass - - + + Last seen time changed The name of the EventType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor ---------- @@ -907,10 +968,10 @@ The name of the EventType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass - - - - + + + + Last seen time The name of the ParamType (ThingClass: motionSensor, EventType: lastSeenTime, ID: {ef2e564e-2443-448f-bcd9-f85a1126ee6a}) ---------- @@ -922,26 +983,26 @@ The name of the StateType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass - + Philips Hue The name of the plugin PhilipsHue ({5f2e634b-b7f3-48ee-976a-b5ae22aa5c55}) Philips Hue - - - - - - - - - - - - - - + + + + + + + + + + + + + + reachable The name of the ParamType (ThingClass: dimmerSwitch2, EventType: connected, ID: {45f75511-7d72-410e-aed0-5720cc497bf8}) ---------- @@ -973,8 +1034,8 @@ The name of the StateType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass dosažitelně - - + + api version The name of the ParamType (ThingClass: bridge, EventType: apiVersion, ID: {7a230e89-c4ce-4276-90e0-6a9ddb890603}) ---------- @@ -982,8 +1043,8 @@ The name of the StateType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass api verze - - + + update status The name of the ParamType (ThingClass: bridge, EventType: updateStatus, ID: {16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) ---------- @@ -991,18 +1052,18 @@ The name of the StateType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass status aktualizace - + Hue color light The name of the ThingClass ({0edba26c-96ab-44fb-a6a2-c0574d19630e}) - - - - - - + + + + + + color temperature The name of the ParamType (ThingClass: colorTemperatureLight, ActionType: colorTemperature, ID: {fee57738-45c7-48fe-a06b-1397376361f0}) ---------- @@ -1018,9 +1079,9 @@ The name of the StateType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass barevná teplota - - - + + + effect The name of the ParamType (ThingClass: colorLight, ActionType: effect, ID: {0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) ---------- @@ -1030,15 +1091,15 @@ The name of the StateType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass efekt - + Set effect The name of the ActionType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight Nastavit efekt - - - + + + flash The name of the ActionType ({ab30a83a-539e-4b3a-860a-434e87ca165f}) of ThingClass dimmableLight ---------- @@ -1048,9 +1109,9 @@ The name of the ActionType ({d25dcfbc-d28c-4905-80e3-300ffb1248f5}) of ThingClas blikání - - - + + + alert The name of the ParamType (ThingClass: dimmableLight, ActionType: alert, ID: {a546f129-e0e5-497b-9536-2f7a132434df}) ---------- @@ -1060,20 +1121,20 @@ The name of the ParamType (ThingClass: colorLight, ActionType: alert, ID: {8ace6 varování - + Set brightness The name of the ActionType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight Nastavit jas - + Hue Remote The name of the ThingClass ({bb482d39-67ef-46dc-88e9-7b181d642b28}) Hue dálkové ovládání - - + + sensor id The name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {b8121363-321a-4569-bb34-a02f846aa9c5}) ---------- @@ -1081,8 +1142,8 @@ The name of the ParamType (ThingClass: remote, Type: thing, ID: {2ddb571b-149f-4 id senzoru - - + + battery changed The name of the EventType ({cb6e045c-e305-4950-9cd4-fb3989912156}) of ThingClass dimmerSwitch2 ---------- @@ -1090,10 +1151,10 @@ The name of the EventType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass baterie změněna - - - - + + + + battery The name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryLevel, ID: {cb6e045c-e305-4950-9cd4-fb3989912156}) ---------- @@ -1105,10 +1166,10 @@ The name of the StateType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass baterie - - - - + + + + battery critical The name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryCritical, ID: {88cc3794-3e83-47d4-8889-0b3246336bf7}) ---------- diff --git a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-da.ts b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-da.ts index f879553a..4bb222fa 100644 --- a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-da.ts +++ b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-da.ts @@ -4,53 +4,63 @@ IntegrationPluginPhilipsHue - - Please press the button on the Hue Bridge within 30 seconds before you continue - Tryk på knappen på Hue Bridge inden for 30 sekunder, før du fortsætter - - - + Not authenticated to bridge. Please reconfigure the bridge. Ikke godkendt til bridge. Konfigurer venligst bridge. - - Error connecting to hue bridge. - Fejl ved forbindelse til hue bridge. + + The pairing process failed. The link button has not been pressed. Please follow the on-screen instructions again. + - - + Received unexpected data from hue bridge. Modtog uventede data fra hue bridge. - - An error happened pairing the hue bridge. - Der opstod en fejl ved parring af hue bridge. + + Connecting to the Hue Bridge failed. Please make sure that your Hue Bridge is working and connected to the same network. + - + + Please press the button on the Hue Bridge within 30 seconds before you continue. + + + + + + The pairing process failed. Please make sure that your Hue Bridge is working. + + + + + Please make sure that your Hue bridge is working and follow the on-screen instructions again. + + + + The hue bridge has rejected the connection request. Hue bridge har afvist forbindelsesanmodningen. - + Error sending command to hue bridge. Fejl ved afsendelse af kommando til hue bridge. - + An unexpected error happened when sending the command to the hue bridge. Der opstod en uventet fejl, når du sendte kommandoen til hue bridge. - + Philips Hue Motion sensor Philips Hue Motion sensor - + Philips Hue Outdoor sensor Philips Hue Outdoor sensor @@ -58,37 +68,31 @@ PhilipsHue - + Philips The name of the vendor ({0ae1e001-2aa6-47ed-b8c0-334c3728a68f}) Philips - - Hue gateway - The name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7}) - Hue gateway - - - + host address The name of the ParamType (ThingClass: bridge, Type: thing, ID: {1845975b-1184-4440-bc0d-73d53a9f683c}) host-adresse - + id The name of the ParamType (ThingClass: bridge, Type: thing, ID: {a496feb0-3b7b-46cb-a63a-e063447d6b1d}) id - - - - - - - + + + + + + + reachable changed The name of the EventType ({45f75511-7d72-410e-aed0-5720cc497bf8}) of ThingClass dimmerSwitch2 ---------- @@ -106,120 +110,144 @@ The name of the EventType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass rådighed ændret - + api version changed The name of the EventType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridge api-version ændret - + update status changed The name of the EventType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridge opdateringsstatus ændret - + search devices The name of the ActionType ({cca3f171-6318-44e7-a2ac-d841857c1c24}) of ThingClass bridge søg enheder - + Serial Number (optional) The name of the ParamType (ThingClass: bridge, ActionType: searchNewDevices, ID: {1924bdb5-f8f1-4dcd-bc09-21ad7c5ce377}) Serienummer (valgfrit) - + check updates The name of the ActionType ({07a85e91-d064-4bce-b017-13fd0c320c0b}) of ThingClass bridge tjek opdateringer - + Upgrade bridge The name of the ActionType ({6dfbc7c0-7372-42f6-82ba-e777cb32dc4c}) of ThingClass bridge opgradér bridge - - + + + + Battery level - The name of the ParamType (ThingClass: smartButton, EventType: batteryLevel, ID: {a0a1b480-6822-49bc-b1b1-50c39764d255}) + The name of the ParamType (ThingClass: wallSwitch, EventType: batteryLevel, ID: {b025cab6-d128-43eb-ba63-b16861d6ab10}) +---------- +The name of the StateType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch +---------- +The name of the ParamType (ThingClass: smartButton, EventType: batteryLevel, ID: {a0a1b480-6822-49bc-b1b1-50c39764d255}) ---------- The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - + + Battery level changed - The name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton + The name of the EventType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch +---------- +The name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - + Button longpress The name of the EventType ({d5052592-044d-42e8-b98a-d3fe9f2f53ae}) of ThingClass dimmerSwitch2 - + Friends of Hue Switch The name of the ThingClass ({692bc4be-07b8-4b77-ab0b-a36185b17d76}) - + Hue Dimmer Switch V2 The name of the ThingClass ({2b40aea0-e0f3-4cde-b034-3ae8a69a5d9d}) - + Hue Motion Sensor The name of the ThingClass ({25b79fff-4b88-4af8-b06c-2fe246238790}) Hue Motion Sensor - + Hue On/Off light The name of the ThingClass ({f720f31d-9523-4a74-9f10-19cbc9edeb58}) - + Hue Smart Button The name of the ThingClass ({1e34a056-9f37-4741-b249-a5eca7a4ab4e}) Hue Smart Button - + Hue Smart plug The name of the ThingClass ({01438844-0048-4276-91f8-c93ac0a5171d}) - + + Hue Wall Switch Module + The name of the ThingClass ({e967027f-f8fc-410c-8b48-6ac4c42e2777}) + + + + Long pressed The name of the EventType ({25803922-37f1-47c8-ac00-2d3acb9eb634}) of ThingClass smartButton Langt presset - - - + + + + Model ID The name of the ParamType (ThingClass: foh, Type: thing, ID: {664c7091-12eb-4402-8239-31da85f73d38}) ---------- The name of the ParamType (ThingClass: tap, Type: thing, ID: {62d92175-db3a-4da2-a72b-f58f34cb6911}) ---------- +The name of the ParamType (ThingClass: wallSwitch, Type: thing, ID: {71c2c485-6a09-4bcd-80e5-24cdc45d323f}) +---------- The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {9271179f-5fe1-4005-9f97-ccde33b1b2c4}) Model ID - - - + + Philips Hue Bridge + The name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7}) + + + + + + Powered The name of the ParamType (ThingClass: smartPlug, ActionType: power, ID: {77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) ---------- @@ -229,20 +257,23 @@ The name of the StateType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass - - - + + + + Sensor ID The name of the ParamType (ThingClass: foh, Type: thing, ID: {7559d16c-b56b-42e2-8347-65582fa276c0}) ---------- The name of the ParamType (ThingClass: tap, Type: thing, ID: {5eca2b24-8986-4487-bc12-50e91d023d97}) ---------- +The name of the ParamType (ThingClass: wallSwitch, Type: thing, ID: {62a9df8c-51b5-434f-9d5d-5fa97144076a}) +---------- The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {54744fcc-c052-4c16-a857-fbe0b791e538}) Sensor ID - - + + Software version The name of the ParamType (ThingClass: bridge, EventType: currentVersion, ID: {4c707b18-6604-4e6d-b6bc-4e27769c2adc}) ---------- @@ -250,26 +281,26 @@ The name of the StateType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass - + Software version changed The name of the EventType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge - + Switch The name of the ActionType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - + Switched on or off The name of the EventType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - - + + Time period The name of the ParamType (ThingClass: motionSensor, Type: settings, ID: {beedc4af-c107-4c53-be25-fd01a349fd35}) ---------- @@ -277,37 +308,43 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: settings, ID: {21d46 Tidsperiode - - - + + + + Type The name of the ParamType (ThingClass: foh, Type: thing, ID: {16ca2ee1-d738-4f51-8f9a-53547d3d824e}) ---------- The name of the ParamType (ThingClass: tap, Type: thing, ID: {eace85b9-5369-466f-89eb-46c4de718305}) ---------- +The name of the ParamType (ThingClass: wallSwitch, Type: thing, ID: {08606780-2251-4c15-bb7d-7506535e14ed}) +---------- The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {7221aacc-1420-43f2-a05a-448a0f783713}) Type - - - + + + + UUID The name of the ParamType (ThingClass: foh, Type: thing, ID: {2ca66286-1caf-4e09-8e18-05bb7d7df314}) ---------- The name of the ParamType (ThingClass: tap, Type: thing, ID: {25cf4167-6c28-4497-9fa9-3d02faf4f3ed}) ---------- +The name of the ParamType (ThingClass: wallSwitch, Type: thing, ID: {4cdab881-5d2d-4443-816a-231bbb331f22}) +---------- The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {2378a06d-b748-445b-94e2-4dd885a54f22}) UUID - - - - - - - + + + + + + + model id The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {a5441712-5a4a-43a7-b797-3806cba86e1a}) ---------- @@ -325,13 +362,13 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {095a463b-f5 model-id - - - - - - - + + + + + + + type The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {87cf0d7a-9ac2-4694-9f5f-1c9c6692a6c5}) ---------- @@ -349,12 +386,12 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {3f3467ef-44 type - - - - - - + + + + + + uuid The name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {200b5daa-1023-49cb-a933-bdd1ac7df4bd}) ---------- @@ -370,11 +407,11 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {1a5129ca-00 uuid - - - - - + + + + + light id The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {90791861-bb27-4ade-8551-306af322b12d}) ---------- @@ -388,10 +425,10 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {491dc012-cc lys-id - - - - + + + + power changed The name of the EventType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight ---------- @@ -403,18 +440,18 @@ The name of the EventType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass strøm ændret - - - - - - - - - - - - + + + + + + + + + + + + power The name of the ParamType (ThingClass: onOffLight, ActionType: power, ID: {5dc5e71b-789e-4c68-abb6-1534c8af019e}) ---------- @@ -442,10 +479,10 @@ The name of the StateType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass strøm - - - - + + + + Set power The name of the ActionType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight ---------- @@ -457,8 +494,8 @@ The name of the ActionType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClas Indstil strøm - - + + color temperature changed The name of the EventType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight ---------- @@ -466,8 +503,8 @@ The name of the EventType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass farvetemperatur ændret - - + + Set color temperature The name of the ActionType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight ---------- @@ -475,15 +512,15 @@ The name of the ActionType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClas Indstil farvetemperatur - + color changed The name of the EventType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight farve ændret - - - + + + color The name of the ParamType (ThingClass: colorLight, ActionType: color, ID: {d25423e7-b924-4b20-80b6-77eecc65d089}) ---------- @@ -493,15 +530,15 @@ The name of the StateType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass farve - + Set color The name of the ActionType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight Indstil farve - - - + + + brightness changed The name of the EventType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight ---------- @@ -511,15 +548,15 @@ The name of the EventType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass lysstyrke ændret - - - - - - - - - + + + + + + + + + brightness The name of the ParamType (ThingClass: dimmableLight, ActionType: brightness, ID: {2f062912-1159-423b-8143-48a8e69b9348}) ---------- @@ -541,8 +578,8 @@ The name of the StateType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass lysstyrke - - + + Set brigtness The name of the ActionType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight ---------- @@ -550,26 +587,26 @@ The name of the ActionType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClas Indstil lysstyrke - + effect changed The name of the EventType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight effekt ændret - + Hue color temperature light The name of the ThingClass ({35f749f7-b60a-4922-bd25-1bdd2eddcbe3}) Hue farvetemperatur lys - + Hue dimmable light The name of the ThingClass ({4fa568ef-7a3a-422b-b0c0-206d37cb4eed}) Hue dæmpeligt lys - - + + battery critical changed The name of the EventType ({88cc3794-3e83-47d4-8889-0b3246336bf7}) of ThingClass dimmerSwitch2 ---------- @@ -577,16 +614,19 @@ The name of the EventType ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass batteri kritisk ændret - - - - - + + + + + + Button pressed The name of the EventType ({2cc68bd3-ad73-4bf3-9905-639870d071bd}) of ThingClass foh ---------- The name of the EventType ({c45dd703-7cbd-48f7-88dc-31045cc3d39c}) of ThingClass tap ---------- +The name of the EventType ({4623b5ff-b999-4200-ba38-89435d78fcae}) of ThingClass wallSwitch +---------- The name of the EventType ({c809179e-effa-4717-9172-11df7e80d109}) of ThingClass smartButton ---------- The name of the EventType ({b7a5b3df-2c60-4b97-bf99-b97e6012a194}) of ThingClass dimmerSwitch2 @@ -595,17 +635,20 @@ The name of the EventType ({8da28cf1-2457-451e-953e-2685f8daeda8}) of ThingClass Knap trykket ned - - - - - - + + + + + + + Button name The name of the ParamType (ThingClass: foh, EventType: pressed, ID: {f1da229e-fce2-4329-8850-1c92b5bc5925}) ---------- The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b8a-4709-8abf-717cf213f4a4}) ---------- +The name of the ParamType (ThingClass: wallSwitch, EventType: pressed, ID: {adb4ec5e-e48f-4697-a876-e56e8458987a}) +---------- The name of the ParamType (ThingClass: dimmerSwitch2, EventType: longPressed, ID: {c03bb1ad-f8c9-4993-9d25-557ade2d2c13}) ---------- The name of the ParamType (ThingClass: dimmerSwitch2, EventType: pressed, ID: {562f2d4d-351e-4c2c-98bf-187b948587e4}) @@ -616,26 +659,26 @@ The name of the ParamType (ThingClass: remote, EventType: pressed, ID: {e4e3eb3a Navn på knap - + Button longpressed The name of the EventType ({2c64561b-2381-4769-8e21-0e206c84bbcc}) of ThingClass remote Knap trykket ned længe - + Hue Tap The name of the ThingClass ({2b8c1fb8-67ee-42e9-947b-16e0a09f0d4e}) Hue Tap - + Hue Outdoor Sensor The name of the ThingClass ({32dc6390-600f-4eb4-b349-cc2d6796a82a}) Hue udendørs sensor - - + + Model id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {9cb488b7-a76f-4389-a6b5-b36250246f2b}) ---------- @@ -643,9 +686,9 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca8632d Model id - - - + + + Uuid The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {5b8a02b9-3a2b-4178-914d-c62d03281d00}) ---------- @@ -655,8 +698,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {4a15f861 Uuid - - + + Temperature sensor id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {c9e81e29-f8d4-4370-ada2-f48b32def1fe}) ---------- @@ -664,8 +707,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {c732fefd Temperaturføler id - - + + Temperature sensor uuid The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {aa29b5f1-5589-4fa9-bbd4-8869723c037c}) ---------- @@ -673,8 +716,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {2fdb34e8 Temperaturfølerens uuid - - + + Presence sensor id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {337b2c6c-e3bf-495c-943c-b45fa08add37}) ---------- @@ -682,8 +725,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca82a24 Tilstedeværelsessensor id - - + + Presence sensor uuid The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {3829bddb-e722-4724-be36-3a8402738581}) ---------- @@ -691,8 +734,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {7d55ed97 Tilstedeværelsessensor uuid - - + + Light sensor id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {04fba73e-730e-437a-b6f2-10df21296af5}) ---------- @@ -700,8 +743,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {22a164fc Lyssensor id - - + + Light sensor uuid The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {171cc2e7-7a95-4116-986c-66d75e3e23eb}) ---------- @@ -709,12 +752,13 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {db678144 Lyssensor uuid - - - - - - + + + + + + + Reachable changed The name of the EventType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug ---------- @@ -726,22 +770,26 @@ The name of the EventType ({840b220c-656b-4f56-bbaa-ce818cffad64}) of ThingClass ---------- The name of the EventType ({5e21b032-1230-4e93-8543-0c4773da17d3}) of ThingClass tap ---------- +The name of the EventType ({b51071af-1290-41f1-b2eb-e84527342ade}) of ThingClass wallSwitch +---------- The name of the EventType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass smartButton Tilgængelighed ændret - - - - - - - - - - - - + + + + + + + + + + + + + + Reachable The name of the ParamType (ThingClass: smartPlug, EventType: connected, ID: {6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) ---------- @@ -763,14 +811,18 @@ The name of the ParamType (ThingClass: tap, EventType: connected, ID: {5e21b032- ---------- The name of the StateType ({5e21b032-1230-4e93-8543-0c4773da17d3}) of ThingClass tap ---------- +The name of the ParamType (ThingClass: wallSwitch, EventType: connected, ID: {b51071af-1290-41f1-b2eb-e84527342ade}) +---------- +The name of the StateType ({b51071af-1290-41f1-b2eb-e84527342ade}) of ThingClass wallSwitch +---------- The name of the ParamType (ThingClass: smartButton, EventType: connected, ID: {b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) ---------- The name of the StateType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass smartButton Tilgængelig - - + + Battery changed The name of the EventType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ---------- @@ -778,10 +830,10 @@ The name of the EventType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass Batteriladningen ændret - - - - + + + + Battery The name of the ParamType (ThingClass: motionSensor, EventType: batteryLevel, ID: {ac463b30-24af-4352-84da-19a3ffc906bd}) ---------- @@ -793,24 +845,29 @@ The name of the StateType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass Batteri - - - + + + + Battery critical changed The name of the EventType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor ---------- The name of the EventType ({617aa352-789c-46e7-bf55-7455b1e5018e}) of ThingClass outdoorSensor ---------- +The name of the EventType ({7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) of ThingClass wallSwitch +---------- The name of the EventType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass smartButton Batterikritisk ændret - - - - - - + + + + + + + + Battery critical The name of the ParamType (ThingClass: motionSensor, EventType: batteryCritical, ID: {d7c4e143-6f03-411e-a12e-dd22806270fd}) ---------- @@ -820,14 +877,18 @@ The name of the ParamType (ThingClass: outdoorSensor, EventType: batteryCritical ---------- The name of the StateType ({617aa352-789c-46e7-bf55-7455b1e5018e}) of ThingClass outdoorSensor ---------- +The name of the ParamType (ThingClass: wallSwitch, EventType: batteryCritical, ID: {7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) +---------- +The name of the StateType ({7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) of ThingClass wallSwitch +---------- The name of the ParamType (ThingClass: smartButton, EventType: batteryCritical, ID: {7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) ---------- The name of the StateType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass smartButton Batterikritisk - - + + Temperature changed The name of the EventType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ---------- @@ -835,10 +896,10 @@ The name of the EventType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass Temperatur ændret - - - - + + + + Temperature The name of the ParamType (ThingClass: motionSensor, EventType: temperature, ID: {63ee79f7-702b-48c1-86cf-8ddebb78bae6}) ---------- @@ -850,8 +911,8 @@ The name of the StateType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass Temperatur - - + + Ambient light changed The name of the EventType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor ---------- @@ -859,10 +920,10 @@ The name of the EventType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass Omgivende lys ændret - - - - + + + + Ambient light The name of the ParamType (ThingClass: motionSensor, EventType: lightIntensity, ID: {064f48c1-f86d-4a0a-bdae-3420123dff3f}) ---------- @@ -874,8 +935,8 @@ The name of the StateType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass omgivende lys - - + + Person is present changed The name of the EventType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor ---------- @@ -883,10 +944,10 @@ The name of the EventType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass Person til stede ændret - - - - + + + + Person is present The name of the ParamType (ThingClass: motionSensor, EventType: isPresent, ID: {e38ee39c-c77f-40b5-b122-4efc411da0ed}) ---------- @@ -898,8 +959,8 @@ The name of the StateType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass Person til stede - - + + Last seen time changed The name of the EventType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor ---------- @@ -907,10 +968,10 @@ The name of the EventType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass Sidst set ændret - - - - + + + + Last seen time The name of the ParamType (ThingClass: motionSensor, EventType: lastSeenTime, ID: {ef2e564e-2443-448f-bcd9-f85a1126ee6a}) ---------- @@ -922,26 +983,26 @@ The name of the StateType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass Sidst set - + Philips Hue The name of the plugin PhilipsHue ({5f2e634b-b7f3-48ee-976a-b5ae22aa5c55}) Philips Hue - - - - - - - - - - - - - - + + + + + + + + + + + + + + reachable The name of the ParamType (ThingClass: dimmerSwitch2, EventType: connected, ID: {45f75511-7d72-410e-aed0-5720cc497bf8}) ---------- @@ -973,8 +1034,8 @@ The name of the StateType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass til rådighed - - + + api version The name of the ParamType (ThingClass: bridge, EventType: apiVersion, ID: {7a230e89-c4ce-4276-90e0-6a9ddb890603}) ---------- @@ -982,8 +1043,8 @@ The name of the StateType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass api-version - - + + update status The name of the ParamType (ThingClass: bridge, EventType: updateStatus, ID: {16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) ---------- @@ -991,18 +1052,18 @@ The name of the StateType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass opdateringsstatus - + Hue color light The name of the ThingClass ({0edba26c-96ab-44fb-a6a2-c0574d19630e}) Hue farve lys - - - - - - + + + + + + color temperature The name of the ParamType (ThingClass: colorTemperatureLight, ActionType: colorTemperature, ID: {fee57738-45c7-48fe-a06b-1397376361f0}) ---------- @@ -1018,9 +1079,9 @@ The name of the StateType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass farvetemperatur - - - + + + effect The name of the ParamType (ThingClass: colorLight, ActionType: effect, ID: {0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) ---------- @@ -1030,15 +1091,15 @@ The name of the StateType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass effekt - + Set effect The name of the ActionType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight Indstil effekt - - - + + + flash The name of the ActionType ({ab30a83a-539e-4b3a-860a-434e87ca165f}) of ThingClass dimmableLight ---------- @@ -1048,9 +1109,9 @@ The name of the ActionType ({d25dcfbc-d28c-4905-80e3-300ffb1248f5}) of ThingClas blitz - - - + + + alert The name of the ParamType (ThingClass: dimmableLight, ActionType: alert, ID: {a546f129-e0e5-497b-9536-2f7a132434df}) ---------- @@ -1060,20 +1121,20 @@ The name of the ParamType (ThingClass: colorLight, ActionType: alert, ID: {8ace6 advarsel - + Set brightness The name of the ActionType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight Indstil lysstyrke - + Hue Remote The name of the ThingClass ({bb482d39-67ef-46dc-88e9-7b181d642b28}) Hue Remote - - + + sensor id The name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {b8121363-321a-4569-bb34-a02f846aa9c5}) ---------- @@ -1081,8 +1142,8 @@ The name of the ParamType (ThingClass: remote, Type: thing, ID: {2ddb571b-149f-4 sensor-id - - + + battery changed The name of the EventType ({cb6e045c-e305-4950-9cd4-fb3989912156}) of ThingClass dimmerSwitch2 ---------- @@ -1090,10 +1151,10 @@ The name of the EventType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass batteri ændret - - - - + + + + battery The name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryLevel, ID: {cb6e045c-e305-4950-9cd4-fb3989912156}) ---------- @@ -1105,10 +1166,10 @@ The name of the StateType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass batteri - - - - + + + + battery critical The name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryCritical, ID: {88cc3794-3e83-47d4-8889-0b3246336bf7}) ---------- diff --git a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-de.ts b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-de.ts index 12d4ebc2..01374e38 100644 --- a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-de.ts +++ b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-de.ts @@ -4,53 +4,63 @@ IntegrationPluginPhilipsHue - - Please press the button on the Hue Bridge within 30 seconds before you continue - Bitte drücke den Knopf auf der Hue Bridge innerhalb von 30 Sekunden bevor Du fortfährst - - - + Not authenticated to bridge. Please reconfigure the bridge. Keine Berechtigung zum Steuern der Bridge. Bitte konfiguriere die Bridge neu. - - Error connecting to hue bridge. - Fehler beim Verbinden zur Hue Bridge. + + The pairing process failed. The link button has not been pressed. Please follow the on-screen instructions again. + Die Verbindung zur Hue Bridge ist gescheitert. Der Knopf wurde nicht gedrückt. Bitte befolge die Anweisungen erneut. - - + Received unexpected data from hue bridge. Unerwartete Daten von Hue Brige empfangen. - - An error happened pairing the hue bridge. - Ein Fehler ist beim Pairen der Hue Bridge aufgetreten. + + Connecting to the Hue Bridge failed. Please make sure that your Hue Bridge is working and connected to the same network. + Die Verbindung zur Hue Bridge ist gescheitert. Bitte stelle sicher, dass die Hue Bridge funktioniert und mit dem selben Netzwerk verbunden ist. - + + Please press the button on the Hue Bridge within 30 seconds before you continue. + Bitte drücke die Taste auf der Hue Bridge innerhalb 30 Sekunden bevor Du fortfährst. + + + + + The pairing process failed. Please make sure that your Hue Bridge is working. + Verbindung zur Hue Bridge gescheitert. Bitte stelle sicher, dass die Hue Bridge funktioniert. + + + + Please make sure that your Hue bridge is working and follow the on-screen instructions again. + Die Verbindung zur Hue Bridge ist gescheitert. Bitte stelle sicher, dass die Hue Bridge funktioniert und befolge die Anweisungen erneut. + + + The hue bridge has rejected the connection request. Die Hue Bridge hat unsere Verbindungsanfrage abegelehnt. - + Error sending command to hue bridge. Fehler beim Senden der Kommandso zur Hue Bridge. - + An unexpected error happened when sending the command to the hue bridge. Ein unerwarteter Fehler ist beim Senden von Befehlen zur Hue Bridge aufgetreten. - + Philips Hue Motion sensor Philips Hue Bewegungsmelder - + Philips Hue Outdoor sensor Philips Hue Aussensensor @@ -58,37 +68,31 @@ PhilipsHue - + Philips The name of the vendor ({0ae1e001-2aa6-47ed-b8c0-334c3728a68f}) Philips - - Hue gateway - The name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7}) - Hue Gateway - - - + host address The name of the ParamType (ThingClass: bridge, Type: thing, ID: {1845975b-1184-4440-bc0d-73d53a9f683c}) Adresse - + id The name of the ParamType (ThingClass: bridge, Type: thing, ID: {a496feb0-3b7b-46cb-a63a-e063447d6b1d}) ID - - - - - - - + + + + + + + reachable changed The name of the EventType ({45f75511-7d72-410e-aed0-5720cc497bf8}) of ThingClass dimmerSwitch2 ---------- @@ -106,143 +110,170 @@ The name of the EventType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass Erreichbarkeit geändert - + api version changed The name of the EventType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridge API Version geändert - + update status changed The name of the EventType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridge Update Status geändert - + search devices The name of the ActionType ({cca3f171-6318-44e7-a2ac-d841857c1c24}) of ThingClass bridge Suche Geräte - + Serial Number (optional) The name of the ParamType (ThingClass: bridge, ActionType: searchNewDevices, ID: {1924bdb5-f8f1-4dcd-bc09-21ad7c5ce377}) Seriennummer (Optional) - + check updates The name of the ActionType ({07a85e91-d064-4bce-b017-13fd0c320c0b}) of ThingClass bridge Suche Updates - + Upgrade bridge The name of the ActionType ({6dfbc7c0-7372-42f6-82ba-e777cb32dc4c}) of ThingClass bridge Bridge updaten - - + + + + Battery level - The name of the ParamType (ThingClass: smartButton, EventType: batteryLevel, ID: {a0a1b480-6822-49bc-b1b1-50c39764d255}) + The name of the ParamType (ThingClass: wallSwitch, EventType: batteryLevel, ID: {b025cab6-d128-43eb-ba63-b16861d6ab10}) +---------- +The name of the StateType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch +---------- +The name of the ParamType (ThingClass: smartButton, EventType: batteryLevel, ID: {a0a1b480-6822-49bc-b1b1-50c39764d255}) ---------- The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton Akkustand - + + Battery level changed - The name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton + The name of the EventType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch +---------- +The name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton Akkustand geändert - + Button longpress The name of the EventType ({d5052592-044d-42e8-b98a-d3fe9f2f53ae}) of ThingClass dimmerSwitch2 - + Taste lange gedrückt - + Friends of Hue Switch The name of the ThingClass ({692bc4be-07b8-4b77-ab0b-a36185b17d76}) - + Friends of Hue Taster - + Hue Dimmer Switch V2 The name of the ThingClass ({2b40aea0-e0f3-4cde-b034-3ae8a69a5d9d}) - + Hue Dimmer Switch v2 - + Hue Motion Sensor The name of the ThingClass ({25b79fff-4b88-4af8-b06c-2fe246238790}) Hue Bewegungsmelder - + Hue On/Off light The name of the ThingClass ({f720f31d-9523-4a74-9f10-19cbc9edeb58}) - + Hue Leuchte - + Hue Smart Button The name of the ThingClass ({1e34a056-9f37-4741-b249-a5eca7a4ab4e}) Hue Smart Button - + Hue Smart plug The name of the ThingClass ({01438844-0048-4276-91f8-c93ac0a5171d}) - + Hue Smart Plug - + + Hue Wall Switch Module + The name of the ThingClass ({e967027f-f8fc-410c-8b48-6ac4c42e2777}) + Hue Wall Switch Modul + + + Long pressed The name of the EventType ({25803922-37f1-47c8-ac00-2d3acb9eb634}) of ThingClass smartButton Lange gedrückt - - - + + + + Model ID The name of the ParamType (ThingClass: foh, Type: thing, ID: {664c7091-12eb-4402-8239-31da85f73d38}) ---------- The name of the ParamType (ThingClass: tap, Type: thing, ID: {62d92175-db3a-4da2-a72b-f58f34cb6911}) ---------- +The name of the ParamType (ThingClass: wallSwitch, Type: thing, ID: {71c2c485-6a09-4bcd-80e5-24cdc45d323f}) +---------- The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {9271179f-5fe1-4005-9f97-ccde33b1b2c4}) Modell Nummer - - - + + Philips Hue Bridge + The name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7}) + Philips Hue Bridge + + + + + Powered The name of the ParamType (ThingClass: smartPlug, ActionType: power, ID: {77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) ---------- The name of the ParamType (ThingClass: smartPlug, EventType: power, ID: {77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) ---------- The name of the StateType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - + Eingeschaltet - - - + + + + Sensor ID The name of the ParamType (ThingClass: foh, Type: thing, ID: {7559d16c-b56b-42e2-8347-65582fa276c0}) ---------- The name of the ParamType (ThingClass: tap, Type: thing, ID: {5eca2b24-8986-4487-bc12-50e91d023d97}) ---------- +The name of the ParamType (ThingClass: wallSwitch, Type: thing, ID: {62a9df8c-51b5-434f-9d5d-5fa97144076a}) +---------- The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {54744fcc-c052-4c16-a857-fbe0b791e538}) Sensor Nummer - - + + Software version The name of the ParamType (ThingClass: bridge, EventType: currentVersion, ID: {4c707b18-6604-4e6d-b6bc-4e27769c2adc}) ---------- @@ -250,26 +281,26 @@ The name of the StateType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass Softwareversion - + Software version changed The name of the EventType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge Softwareversion geändert - + Switch The name of the ActionType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - + Schalten - + Switched on or off The name of the EventType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - + Ein- oder ausgeschaltet - - + + Time period The name of the ParamType (ThingClass: motionSensor, Type: settings, ID: {beedc4af-c107-4c53-be25-fd01a349fd35}) ---------- @@ -277,37 +308,43 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: settings, ID: {21d46 Zeitspanne - - - + + + + Type The name of the ParamType (ThingClass: foh, Type: thing, ID: {16ca2ee1-d738-4f51-8f9a-53547d3d824e}) ---------- The name of the ParamType (ThingClass: tap, Type: thing, ID: {eace85b9-5369-466f-89eb-46c4de718305}) ---------- +The name of the ParamType (ThingClass: wallSwitch, Type: thing, ID: {08606780-2251-4c15-bb7d-7506535e14ed}) +---------- The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {7221aacc-1420-43f2-a05a-448a0f783713}) Typ - - - + + + + UUID The name of the ParamType (ThingClass: foh, Type: thing, ID: {2ca66286-1caf-4e09-8e18-05bb7d7df314}) ---------- The name of the ParamType (ThingClass: tap, Type: thing, ID: {25cf4167-6c28-4497-9fa9-3d02faf4f3ed}) ---------- +The name of the ParamType (ThingClass: wallSwitch, Type: thing, ID: {4cdab881-5d2d-4443-816a-231bbb331f22}) +---------- The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {2378a06d-b748-445b-94e2-4dd885a54f22}) UUID - - - - - - - + + + + + + + model id The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {a5441712-5a4a-43a7-b797-3806cba86e1a}) ---------- @@ -325,13 +362,13 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {095a463b-f5 Model ID - - - - - - - + + + + + + + type The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {87cf0d7a-9ac2-4694-9f5f-1c9c6692a6c5}) ---------- @@ -349,12 +386,12 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {3f3467ef-44 Typ - - - - - - + + + + + + uuid The name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {200b5daa-1023-49cb-a933-bdd1ac7df4bd}) ---------- @@ -370,11 +407,11 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {1a5129ca-00 UUID - - - - - + + + + + light id The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {90791861-bb27-4ade-8551-306af322b12d}) ---------- @@ -388,10 +425,10 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {491dc012-cc Licht ID - - - - + + + + power changed The name of the EventType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight ---------- @@ -403,18 +440,18 @@ The name of the EventType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass Eingeschaltet geändert - - - - - - - - - - - - + + + + + + + + + + + + power The name of the ParamType (ThingClass: onOffLight, ActionType: power, ID: {5dc5e71b-789e-4c68-abb6-1534c8af019e}) ---------- @@ -442,10 +479,10 @@ The name of the StateType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass Eingeschaltet - - - - + + + + Set power The name of the ActionType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight ---------- @@ -457,8 +494,8 @@ The name of the ActionType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClas Einschalten - - + + color temperature changed The name of the EventType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight ---------- @@ -466,8 +503,8 @@ The name of the EventType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass Farbtemperatur geändert - - + + Set color temperature The name of the ActionType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight ---------- @@ -475,15 +512,15 @@ The name of the ActionType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClas Setze Farbtemperatur - + color changed The name of the EventType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight Farbe geändert - - - + + + color The name of the ParamType (ThingClass: colorLight, ActionType: color, ID: {d25423e7-b924-4b20-80b6-77eecc65d089}) ---------- @@ -493,15 +530,15 @@ The name of the StateType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass Farbe - + Set color The name of the ActionType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight Setze Farbe - - - + + + brightness changed The name of the EventType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight ---------- @@ -511,15 +548,15 @@ The name of the EventType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass Helligkeit geändert - - - - - - - - - + + + + + + + + + brightness The name of the ParamType (ThingClass: dimmableLight, ActionType: brightness, ID: {2f062912-1159-423b-8143-48a8e69b9348}) ---------- @@ -541,8 +578,8 @@ The name of the StateType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass Helligkeit - - + + Set brigtness The name of the ActionType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight ---------- @@ -550,26 +587,26 @@ The name of the ActionType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClas Setze Helligkeit - + effect changed The name of the EventType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight Licht Effekt geändert - + Hue color temperature light The name of the ThingClass ({35f749f7-b60a-4922-bd25-1bdd2eddcbe3}) Hue Farbtemperatur-Licht - + Hue dimmable light The name of the ThingClass ({4fa568ef-7a3a-422b-b0c0-206d37cb4eed}) Hue dimmbares Licht - - + + battery critical changed The name of the EventType ({88cc3794-3e83-47d4-8889-0b3246336bf7}) of ThingClass dimmerSwitch2 ---------- @@ -577,16 +614,19 @@ The name of the EventType ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass Batterie Ladestatus kritisch geändert - - - - - + + + + + + Button pressed The name of the EventType ({2cc68bd3-ad73-4bf3-9905-639870d071bd}) of ThingClass foh ---------- The name of the EventType ({c45dd703-7cbd-48f7-88dc-31045cc3d39c}) of ThingClass tap ---------- +The name of the EventType ({4623b5ff-b999-4200-ba38-89435d78fcae}) of ThingClass wallSwitch +---------- The name of the EventType ({c809179e-effa-4717-9172-11df7e80d109}) of ThingClass smartButton ---------- The name of the EventType ({b7a5b3df-2c60-4b97-bf99-b97e6012a194}) of ThingClass dimmerSwitch2 @@ -595,17 +635,20 @@ The name of the EventType ({8da28cf1-2457-451e-953e-2685f8daeda8}) of ThingClass Taste gedrückt - - - - - - + + + + + + + Button name The name of the ParamType (ThingClass: foh, EventType: pressed, ID: {f1da229e-fce2-4329-8850-1c92b5bc5925}) ---------- The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b8a-4709-8abf-717cf213f4a4}) ---------- +The name of the ParamType (ThingClass: wallSwitch, EventType: pressed, ID: {adb4ec5e-e48f-4697-a876-e56e8458987a}) +---------- The name of the ParamType (ThingClass: dimmerSwitch2, EventType: longPressed, ID: {c03bb1ad-f8c9-4993-9d25-557ade2d2c13}) ---------- The name of the ParamType (ThingClass: dimmerSwitch2, EventType: pressed, ID: {562f2d4d-351e-4c2c-98bf-187b948587e4}) @@ -616,26 +659,26 @@ The name of the ParamType (ThingClass: remote, EventType: pressed, ID: {e4e3eb3a Taste Name - + Button longpressed The name of the EventType ({2c64561b-2381-4769-8e21-0e206c84bbcc}) of ThingClass remote Taste lange gedrückt - + Hue Tap The name of the ThingClass ({2b8c1fb8-67ee-42e9-947b-16e0a09f0d4e}) Hue Tap - + Hue Outdoor Sensor The name of the ThingClass ({32dc6390-600f-4eb4-b349-cc2d6796a82a}) Hue Aussen-Sensor - - + + Model id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {9cb488b7-a76f-4389-a6b5-b36250246f2b}) ---------- @@ -643,9 +686,9 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca8632d Geräte ID - - - + + + Uuid The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {5b8a02b9-3a2b-4178-914d-c62d03281d00}) ---------- @@ -655,8 +698,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {4a15f861 UUID - - + + Temperature sensor id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {c9e81e29-f8d4-4370-ada2-f48b32def1fe}) ---------- @@ -664,8 +707,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {c732fefd Temperaturesensor ID - - + + Temperature sensor uuid The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {aa29b5f1-5589-4fa9-bbd4-8869723c037c}) ---------- @@ -673,8 +716,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {2fdb34e8 Temperatursensor UUID - - + + Presence sensor id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {337b2c6c-e3bf-495c-943c-b45fa08add37}) ---------- @@ -682,8 +725,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca82a24 Anwesenheitssensor ID - - + + Presence sensor uuid The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {3829bddb-e722-4724-be36-3a8402738581}) ---------- @@ -691,8 +734,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {7d55ed97 Anwesenheitssensor UUID - - + + Light sensor id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {04fba73e-730e-437a-b6f2-10df21296af5}) ---------- @@ -700,8 +743,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {22a164fc Lichtsensor ID - - + + Light sensor uuid The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {171cc2e7-7a95-4116-986c-66d75e3e23eb}) ---------- @@ -709,12 +752,13 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {db678144 Lichtsensor UUID - - - - - - + + + + + + + Reachable changed The name of the EventType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug ---------- @@ -726,22 +770,26 @@ The name of the EventType ({840b220c-656b-4f56-bbaa-ce818cffad64}) of ThingClass ---------- The name of the EventType ({5e21b032-1230-4e93-8543-0c4773da17d3}) of ThingClass tap ---------- +The name of the EventType ({b51071af-1290-41f1-b2eb-e84527342ade}) of ThingClass wallSwitch +---------- The name of the EventType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass smartButton Erreichbar geändert - - - - - - - - - - - - + + + + + + + + + + + + + + Reachable The name of the ParamType (ThingClass: smartPlug, EventType: connected, ID: {6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) ---------- @@ -763,14 +811,18 @@ The name of the ParamType (ThingClass: tap, EventType: connected, ID: {5e21b032- ---------- The name of the StateType ({5e21b032-1230-4e93-8543-0c4773da17d3}) of ThingClass tap ---------- +The name of the ParamType (ThingClass: wallSwitch, EventType: connected, ID: {b51071af-1290-41f1-b2eb-e84527342ade}) +---------- +The name of the StateType ({b51071af-1290-41f1-b2eb-e84527342ade}) of ThingClass wallSwitch +---------- The name of the ParamType (ThingClass: smartButton, EventType: connected, ID: {b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) ---------- The name of the StateType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass smartButton Erreichbar - - + + Battery changed The name of the EventType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ---------- @@ -778,10 +830,10 @@ The name of the EventType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass Batterieladung geändert - - - - + + + + Battery The name of the ParamType (ThingClass: motionSensor, EventType: batteryLevel, ID: {ac463b30-24af-4352-84da-19a3ffc906bd}) ---------- @@ -793,24 +845,29 @@ The name of the StateType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass Batterie - - - + + + + Battery critical changed The name of the EventType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor ---------- The name of the EventType ({617aa352-789c-46e7-bf55-7455b1e5018e}) of ThingClass outdoorSensor ---------- +The name of the EventType ({7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) of ThingClass wallSwitch +---------- The name of the EventType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass smartButton Batterieladung kritisch geändert - - - - - - + + + + + + + + Battery critical The name of the ParamType (ThingClass: motionSensor, EventType: batteryCritical, ID: {d7c4e143-6f03-411e-a12e-dd22806270fd}) ---------- @@ -820,14 +877,18 @@ The name of the ParamType (ThingClass: outdoorSensor, EventType: batteryCritical ---------- The name of the StateType ({617aa352-789c-46e7-bf55-7455b1e5018e}) of ThingClass outdoorSensor ---------- +The name of the ParamType (ThingClass: wallSwitch, EventType: batteryCritical, ID: {7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) +---------- +The name of the StateType ({7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) of ThingClass wallSwitch +---------- The name of the ParamType (ThingClass: smartButton, EventType: batteryCritical, ID: {7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) ---------- The name of the StateType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass smartButton Batterieladung kritisch - - + + Temperature changed The name of the EventType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ---------- @@ -835,10 +896,10 @@ The name of the EventType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass Temperatur geändert - - - - + + + + Temperature The name of the ParamType (ThingClass: motionSensor, EventType: temperature, ID: {63ee79f7-702b-48c1-86cf-8ddebb78bae6}) ---------- @@ -850,8 +911,8 @@ The name of the StateType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass Temperatur - - + + Ambient light changed The name of the EventType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor ---------- @@ -859,10 +920,10 @@ The name of the EventType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass Ungebungslicht geändert - - - - + + + + Ambient light The name of the ParamType (ThingClass: motionSensor, EventType: lightIntensity, ID: {064f48c1-f86d-4a0a-bdae-3420123dff3f}) ---------- @@ -874,8 +935,8 @@ The name of the StateType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass Umgebungslicht - - + + Person is present changed The name of the EventType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor ---------- @@ -883,10 +944,10 @@ The name of the EventType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass Person anwesend geändert - - - - + + + + Person is present The name of the ParamType (ThingClass: motionSensor, EventType: isPresent, ID: {e38ee39c-c77f-40b5-b122-4efc411da0ed}) ---------- @@ -898,8 +959,8 @@ The name of the StateType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass Person ist anwesend - - + + Last seen time changed The name of the EventType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor ---------- @@ -907,10 +968,10 @@ The name of the EventType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass Zuletzt gesehen geändert - - - - + + + + Last seen time The name of the ParamType (ThingClass: motionSensor, EventType: lastSeenTime, ID: {ef2e564e-2443-448f-bcd9-f85a1126ee6a}) ---------- @@ -922,26 +983,26 @@ The name of the StateType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass Zuletzt gesehen - + Philips Hue The name of the plugin PhilipsHue ({5f2e634b-b7f3-48ee-976a-b5ae22aa5c55}) Philips Hue - - - - - - - - - - - - - - + + + + + + + + + + + + + + reachable The name of the ParamType (ThingClass: dimmerSwitch2, EventType: connected, ID: {45f75511-7d72-410e-aed0-5720cc497bf8}) ---------- @@ -973,8 +1034,8 @@ The name of the StateType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass Erreichbar - - + + api version The name of the ParamType (ThingClass: bridge, EventType: apiVersion, ID: {7a230e89-c4ce-4276-90e0-6a9ddb890603}) ---------- @@ -982,8 +1043,8 @@ The name of the StateType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass API Version - - + + update status The name of the ParamType (ThingClass: bridge, EventType: updateStatus, ID: {16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) ---------- @@ -991,18 +1052,18 @@ The name of the StateType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass Update Status - + Hue color light The name of the ThingClass ({0edba26c-96ab-44fb-a6a2-c0574d19630e}) Hue Farblicht - - - - - - + + + + + + color temperature The name of the ParamType (ThingClass: colorTemperatureLight, ActionType: colorTemperature, ID: {fee57738-45c7-48fe-a06b-1397376361f0}) ---------- @@ -1018,9 +1079,9 @@ The name of the StateType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass Farbtemperatur - - - + + + effect The name of the ParamType (ThingClass: colorLight, ActionType: effect, ID: {0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) ---------- @@ -1030,15 +1091,15 @@ The name of the StateType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass Effekt - + Set effect The name of the ActionType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight Setze Licht Effekt - - - + + + flash The name of the ActionType ({ab30a83a-539e-4b3a-860a-434e87ca165f}) of ThingClass dimmableLight ---------- @@ -1048,9 +1109,9 @@ The name of the ActionType ({d25dcfbc-d28c-4905-80e3-300ffb1248f5}) of ThingClas Aufleuchten - - - + + + alert The name of the ParamType (ThingClass: dimmableLight, ActionType: alert, ID: {a546f129-e0e5-497b-9536-2f7a132434df}) ---------- @@ -1060,20 +1121,20 @@ The name of the ParamType (ThingClass: colorLight, ActionType: alert, ID: {8ace6 Alarm - + Set brightness The name of the ActionType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight Setze Helligkeit - + Hue Remote The name of the ThingClass ({bb482d39-67ef-46dc-88e9-7b181d642b28}) Hue Fernbedienung - - + + sensor id The name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {b8121363-321a-4569-bb34-a02f846aa9c5}) ---------- @@ -1081,8 +1142,8 @@ The name of the ParamType (ThingClass: remote, Type: thing, ID: {2ddb571b-149f-4 Sensor ID - - + + battery changed The name of the EventType ({cb6e045c-e305-4950-9cd4-fb3989912156}) of ThingClass dimmerSwitch2 ---------- @@ -1090,10 +1151,10 @@ The name of the EventType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass Batterie geändert - - - - + + + + battery The name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryLevel, ID: {cb6e045c-e305-4950-9cd4-fb3989912156}) ---------- @@ -1105,10 +1166,10 @@ The name of the StateType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass Batterie - - - - + + + + battery critical The name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryCritical, ID: {88cc3794-3e83-47d4-8889-0b3246336bf7}) ---------- diff --git a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-en_US.ts b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-en_US.ts index d74f40aa..0e2bd9f2 100644 --- a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-en_US.ts +++ b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-en_US.ts @@ -4,53 +4,63 @@ IntegrationPluginPhilipsHue - - Please press the button on the Hue Bridge within 30 seconds before you continue - - - - + Not authenticated to bridge. Please reconfigure the bridge. - - Error connecting to hue bridge. + + The pairing process failed. The link button has not been pressed. Please follow the on-screen instructions again. - - + Received unexpected data from hue bridge. - - An error happened pairing the hue bridge. + + Connecting to the Hue Bridge failed. Please make sure that your Hue Bridge is working and connected to the same network. - + + Please press the button on the Hue Bridge within 30 seconds before you continue. + + + + + + The pairing process failed. Please make sure that your Hue Bridge is working. + + + + + Please make sure that your Hue bridge is working and follow the on-screen instructions again. + + + + The hue bridge has rejected the connection request. - + Error sending command to hue bridge. - + An unexpected error happened when sending the command to the hue bridge. - + Philips Hue Motion sensor - + Philips Hue Outdoor sensor @@ -58,37 +68,31 @@ PhilipsHue - + Philips The name of the vendor ({0ae1e001-2aa6-47ed-b8c0-334c3728a68f}) - - Hue gateway - The name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7}) - - - - + host address The name of the ParamType (ThingClass: bridge, Type: thing, ID: {1845975b-1184-4440-bc0d-73d53a9f683c}) - + id The name of the ParamType (ThingClass: bridge, Type: thing, ID: {a496feb0-3b7b-46cb-a63a-e063447d6b1d}) - - - - - - - + + + + + + + reachable changed The name of the EventType ({45f75511-7d72-410e-aed0-5720cc497bf8}) of ThingClass dimmerSwitch2 ---------- @@ -106,120 +110,144 @@ The name of the EventType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass - + api version changed The name of the EventType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridge - + update status changed The name of the EventType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridge - + search devices The name of the ActionType ({cca3f171-6318-44e7-a2ac-d841857c1c24}) of ThingClass bridge - + Serial Number (optional) The name of the ParamType (ThingClass: bridge, ActionType: searchNewDevices, ID: {1924bdb5-f8f1-4dcd-bc09-21ad7c5ce377}) - + check updates The name of the ActionType ({07a85e91-d064-4bce-b017-13fd0c320c0b}) of ThingClass bridge - + Upgrade bridge The name of the ActionType ({6dfbc7c0-7372-42f6-82ba-e777cb32dc4c}) of ThingClass bridge - - + + + + Battery level - The name of the ParamType (ThingClass: smartButton, EventType: batteryLevel, ID: {a0a1b480-6822-49bc-b1b1-50c39764d255}) + The name of the ParamType (ThingClass: wallSwitch, EventType: batteryLevel, ID: {b025cab6-d128-43eb-ba63-b16861d6ab10}) +---------- +The name of the StateType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch +---------- +The name of the ParamType (ThingClass: smartButton, EventType: batteryLevel, ID: {a0a1b480-6822-49bc-b1b1-50c39764d255}) ---------- The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - + + Battery level changed - The name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton + The name of the EventType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch +---------- +The name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - + Button longpress The name of the EventType ({d5052592-044d-42e8-b98a-d3fe9f2f53ae}) of ThingClass dimmerSwitch2 - + Friends of Hue Switch The name of the ThingClass ({692bc4be-07b8-4b77-ab0b-a36185b17d76}) - + Hue Dimmer Switch V2 The name of the ThingClass ({2b40aea0-e0f3-4cde-b034-3ae8a69a5d9d}) - + Hue Motion Sensor The name of the ThingClass ({25b79fff-4b88-4af8-b06c-2fe246238790}) - + Hue On/Off light The name of the ThingClass ({f720f31d-9523-4a74-9f10-19cbc9edeb58}) - + Hue Smart Button The name of the ThingClass ({1e34a056-9f37-4741-b249-a5eca7a4ab4e}) - + Hue Smart plug The name of the ThingClass ({01438844-0048-4276-91f8-c93ac0a5171d}) - + + Hue Wall Switch Module + The name of the ThingClass ({e967027f-f8fc-410c-8b48-6ac4c42e2777}) + + + + Long pressed The name of the EventType ({25803922-37f1-47c8-ac00-2d3acb9eb634}) of ThingClass smartButton - - - + + + + Model ID The name of the ParamType (ThingClass: foh, Type: thing, ID: {664c7091-12eb-4402-8239-31da85f73d38}) ---------- The name of the ParamType (ThingClass: tap, Type: thing, ID: {62d92175-db3a-4da2-a72b-f58f34cb6911}) ---------- +The name of the ParamType (ThingClass: wallSwitch, Type: thing, ID: {71c2c485-6a09-4bcd-80e5-24cdc45d323f}) +---------- The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {9271179f-5fe1-4005-9f97-ccde33b1b2c4}) - - - + + Philips Hue Bridge + The name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7}) + + + + + + Powered The name of the ParamType (ThingClass: smartPlug, ActionType: power, ID: {77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) ---------- @@ -229,20 +257,23 @@ The name of the StateType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass - - - + + + + Sensor ID The name of the ParamType (ThingClass: foh, Type: thing, ID: {7559d16c-b56b-42e2-8347-65582fa276c0}) ---------- The name of the ParamType (ThingClass: tap, Type: thing, ID: {5eca2b24-8986-4487-bc12-50e91d023d97}) ---------- +The name of the ParamType (ThingClass: wallSwitch, Type: thing, ID: {62a9df8c-51b5-434f-9d5d-5fa97144076a}) +---------- The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {54744fcc-c052-4c16-a857-fbe0b791e538}) - - + + Software version The name of the ParamType (ThingClass: bridge, EventType: currentVersion, ID: {4c707b18-6604-4e6d-b6bc-4e27769c2adc}) ---------- @@ -250,26 +281,26 @@ The name of the StateType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass - + Software version changed The name of the EventType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge - + Switch The name of the ActionType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - + Switched on or off The name of the EventType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - - + + Time period The name of the ParamType (ThingClass: motionSensor, Type: settings, ID: {beedc4af-c107-4c53-be25-fd01a349fd35}) ---------- @@ -277,37 +308,43 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: settings, ID: {21d46 - - - + + + + Type The name of the ParamType (ThingClass: foh, Type: thing, ID: {16ca2ee1-d738-4f51-8f9a-53547d3d824e}) ---------- The name of the ParamType (ThingClass: tap, Type: thing, ID: {eace85b9-5369-466f-89eb-46c4de718305}) ---------- +The name of the ParamType (ThingClass: wallSwitch, Type: thing, ID: {08606780-2251-4c15-bb7d-7506535e14ed}) +---------- The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {7221aacc-1420-43f2-a05a-448a0f783713}) - - - + + + + UUID The name of the ParamType (ThingClass: foh, Type: thing, ID: {2ca66286-1caf-4e09-8e18-05bb7d7df314}) ---------- The name of the ParamType (ThingClass: tap, Type: thing, ID: {25cf4167-6c28-4497-9fa9-3d02faf4f3ed}) ---------- +The name of the ParamType (ThingClass: wallSwitch, Type: thing, ID: {4cdab881-5d2d-4443-816a-231bbb331f22}) +---------- The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {2378a06d-b748-445b-94e2-4dd885a54f22}) - - - - - - - + + + + + + + model id The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {a5441712-5a4a-43a7-b797-3806cba86e1a}) ---------- @@ -325,13 +362,13 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {095a463b-f5 - - - - - - - + + + + + + + type The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {87cf0d7a-9ac2-4694-9f5f-1c9c6692a6c5}) ---------- @@ -349,12 +386,12 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {3f3467ef-44 - - - - - - + + + + + + uuid The name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {200b5daa-1023-49cb-a933-bdd1ac7df4bd}) ---------- @@ -370,11 +407,11 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {1a5129ca-00 - - - - - + + + + + light id The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {90791861-bb27-4ade-8551-306af322b12d}) ---------- @@ -388,10 +425,10 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {491dc012-cc - - - - + + + + power changed The name of the EventType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight ---------- @@ -403,18 +440,18 @@ The name of the EventType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass - - - - - - - - - - - - + + + + + + + + + + + + power The name of the ParamType (ThingClass: onOffLight, ActionType: power, ID: {5dc5e71b-789e-4c68-abb6-1534c8af019e}) ---------- @@ -442,10 +479,10 @@ The name of the StateType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass - - - - + + + + Set power The name of the ActionType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight ---------- @@ -457,8 +494,8 @@ The name of the ActionType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClas - - + + color temperature changed The name of the EventType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight ---------- @@ -466,8 +503,8 @@ The name of the EventType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass - - + + Set color temperature The name of the ActionType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight ---------- @@ -475,15 +512,15 @@ The name of the ActionType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClas - + color changed The name of the EventType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight - - - + + + color The name of the ParamType (ThingClass: colorLight, ActionType: color, ID: {d25423e7-b924-4b20-80b6-77eecc65d089}) ---------- @@ -493,15 +530,15 @@ The name of the StateType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass - + Set color The name of the ActionType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight - - - + + + brightness changed The name of the EventType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight ---------- @@ -511,15 +548,15 @@ The name of the EventType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass - - - - - - - - - + + + + + + + + + brightness The name of the ParamType (ThingClass: dimmableLight, ActionType: brightness, ID: {2f062912-1159-423b-8143-48a8e69b9348}) ---------- @@ -541,8 +578,8 @@ The name of the StateType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass - - + + Set brigtness The name of the ActionType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight ---------- @@ -550,26 +587,26 @@ The name of the ActionType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClas - + effect changed The name of the EventType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight - + Hue color temperature light The name of the ThingClass ({35f749f7-b60a-4922-bd25-1bdd2eddcbe3}) - + Hue dimmable light The name of the ThingClass ({4fa568ef-7a3a-422b-b0c0-206d37cb4eed}) - - + + battery critical changed The name of the EventType ({88cc3794-3e83-47d4-8889-0b3246336bf7}) of ThingClass dimmerSwitch2 ---------- @@ -577,16 +614,19 @@ The name of the EventType ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass - - - - - + + + + + + Button pressed The name of the EventType ({2cc68bd3-ad73-4bf3-9905-639870d071bd}) of ThingClass foh ---------- The name of the EventType ({c45dd703-7cbd-48f7-88dc-31045cc3d39c}) of ThingClass tap ---------- +The name of the EventType ({4623b5ff-b999-4200-ba38-89435d78fcae}) of ThingClass wallSwitch +---------- The name of the EventType ({c809179e-effa-4717-9172-11df7e80d109}) of ThingClass smartButton ---------- The name of the EventType ({b7a5b3df-2c60-4b97-bf99-b97e6012a194}) of ThingClass dimmerSwitch2 @@ -595,17 +635,20 @@ The name of the EventType ({8da28cf1-2457-451e-953e-2685f8daeda8}) of ThingClass - - - - - - + + + + + + + Button name The name of the ParamType (ThingClass: foh, EventType: pressed, ID: {f1da229e-fce2-4329-8850-1c92b5bc5925}) ---------- The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b8a-4709-8abf-717cf213f4a4}) ---------- +The name of the ParamType (ThingClass: wallSwitch, EventType: pressed, ID: {adb4ec5e-e48f-4697-a876-e56e8458987a}) +---------- The name of the ParamType (ThingClass: dimmerSwitch2, EventType: longPressed, ID: {c03bb1ad-f8c9-4993-9d25-557ade2d2c13}) ---------- The name of the ParamType (ThingClass: dimmerSwitch2, EventType: pressed, ID: {562f2d4d-351e-4c2c-98bf-187b948587e4}) @@ -616,26 +659,26 @@ The name of the ParamType (ThingClass: remote, EventType: pressed, ID: {e4e3eb3a - + Button longpressed The name of the EventType ({2c64561b-2381-4769-8e21-0e206c84bbcc}) of ThingClass remote - + Hue Tap The name of the ThingClass ({2b8c1fb8-67ee-42e9-947b-16e0a09f0d4e}) - + Hue Outdoor Sensor The name of the ThingClass ({32dc6390-600f-4eb4-b349-cc2d6796a82a}) - - + + Model id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {9cb488b7-a76f-4389-a6b5-b36250246f2b}) ---------- @@ -643,9 +686,9 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca8632d - - - + + + Uuid The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {5b8a02b9-3a2b-4178-914d-c62d03281d00}) ---------- @@ -655,8 +698,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {4a15f861 - - + + Temperature sensor id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {c9e81e29-f8d4-4370-ada2-f48b32def1fe}) ---------- @@ -664,8 +707,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {c732fefd - - + + Temperature sensor uuid The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {aa29b5f1-5589-4fa9-bbd4-8869723c037c}) ---------- @@ -673,8 +716,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {2fdb34e8 - - + + Presence sensor id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {337b2c6c-e3bf-495c-943c-b45fa08add37}) ---------- @@ -682,8 +725,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca82a24 - - + + Presence sensor uuid The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {3829bddb-e722-4724-be36-3a8402738581}) ---------- @@ -691,8 +734,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {7d55ed97 - - + + Light sensor id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {04fba73e-730e-437a-b6f2-10df21296af5}) ---------- @@ -700,8 +743,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {22a164fc - - + + Light sensor uuid The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {171cc2e7-7a95-4116-986c-66d75e3e23eb}) ---------- @@ -709,12 +752,13 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {db678144 - - - - - - + + + + + + + Reachable changed The name of the EventType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug ---------- @@ -726,22 +770,26 @@ The name of the EventType ({840b220c-656b-4f56-bbaa-ce818cffad64}) of ThingClass ---------- The name of the EventType ({5e21b032-1230-4e93-8543-0c4773da17d3}) of ThingClass tap ---------- +The name of the EventType ({b51071af-1290-41f1-b2eb-e84527342ade}) of ThingClass wallSwitch +---------- The name of the EventType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass smartButton - - - - - - - - - - - - + + + + + + + + + + + + + + Reachable The name of the ParamType (ThingClass: smartPlug, EventType: connected, ID: {6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) ---------- @@ -763,14 +811,18 @@ The name of the ParamType (ThingClass: tap, EventType: connected, ID: {5e21b032- ---------- The name of the StateType ({5e21b032-1230-4e93-8543-0c4773da17d3}) of ThingClass tap ---------- +The name of the ParamType (ThingClass: wallSwitch, EventType: connected, ID: {b51071af-1290-41f1-b2eb-e84527342ade}) +---------- +The name of the StateType ({b51071af-1290-41f1-b2eb-e84527342ade}) of ThingClass wallSwitch +---------- The name of the ParamType (ThingClass: smartButton, EventType: connected, ID: {b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) ---------- The name of the StateType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass smartButton - - + + Battery changed The name of the EventType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ---------- @@ -778,10 +830,10 @@ The name of the EventType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass - - - - + + + + Battery The name of the ParamType (ThingClass: motionSensor, EventType: batteryLevel, ID: {ac463b30-24af-4352-84da-19a3ffc906bd}) ---------- @@ -793,24 +845,29 @@ The name of the StateType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass - - - + + + + Battery critical changed The name of the EventType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor ---------- The name of the EventType ({617aa352-789c-46e7-bf55-7455b1e5018e}) of ThingClass outdoorSensor ---------- +The name of the EventType ({7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) of ThingClass wallSwitch +---------- The name of the EventType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass smartButton - - - - - - + + + + + + + + Battery critical The name of the ParamType (ThingClass: motionSensor, EventType: batteryCritical, ID: {d7c4e143-6f03-411e-a12e-dd22806270fd}) ---------- @@ -820,14 +877,18 @@ The name of the ParamType (ThingClass: outdoorSensor, EventType: batteryCritical ---------- The name of the StateType ({617aa352-789c-46e7-bf55-7455b1e5018e}) of ThingClass outdoorSensor ---------- +The name of the ParamType (ThingClass: wallSwitch, EventType: batteryCritical, ID: {7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) +---------- +The name of the StateType ({7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) of ThingClass wallSwitch +---------- The name of the ParamType (ThingClass: smartButton, EventType: batteryCritical, ID: {7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) ---------- The name of the StateType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass smartButton - - + + Temperature changed The name of the EventType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ---------- @@ -835,10 +896,10 @@ The name of the EventType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass - - - - + + + + Temperature The name of the ParamType (ThingClass: motionSensor, EventType: temperature, ID: {63ee79f7-702b-48c1-86cf-8ddebb78bae6}) ---------- @@ -850,8 +911,8 @@ The name of the StateType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass - - + + Ambient light changed The name of the EventType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor ---------- @@ -859,10 +920,10 @@ The name of the EventType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass - - - - + + + + Ambient light The name of the ParamType (ThingClass: motionSensor, EventType: lightIntensity, ID: {064f48c1-f86d-4a0a-bdae-3420123dff3f}) ---------- @@ -874,8 +935,8 @@ The name of the StateType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass - - + + Person is present changed The name of the EventType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor ---------- @@ -883,10 +944,10 @@ The name of the EventType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass - - - - + + + + Person is present The name of the ParamType (ThingClass: motionSensor, EventType: isPresent, ID: {e38ee39c-c77f-40b5-b122-4efc411da0ed}) ---------- @@ -898,8 +959,8 @@ The name of the StateType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass - - + + Last seen time changed The name of the EventType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor ---------- @@ -907,10 +968,10 @@ The name of the EventType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass - - - - + + + + Last seen time The name of the ParamType (ThingClass: motionSensor, EventType: lastSeenTime, ID: {ef2e564e-2443-448f-bcd9-f85a1126ee6a}) ---------- @@ -922,26 +983,26 @@ The name of the StateType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass - + Philips Hue The name of the plugin PhilipsHue ({5f2e634b-b7f3-48ee-976a-b5ae22aa5c55}) - - - - - - - - - - - - - - + + + + + + + + + + + + + + reachable The name of the ParamType (ThingClass: dimmerSwitch2, EventType: connected, ID: {45f75511-7d72-410e-aed0-5720cc497bf8}) ---------- @@ -973,8 +1034,8 @@ The name of the StateType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass - - + + api version The name of the ParamType (ThingClass: bridge, EventType: apiVersion, ID: {7a230e89-c4ce-4276-90e0-6a9ddb890603}) ---------- @@ -982,8 +1043,8 @@ The name of the StateType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass - - + + update status The name of the ParamType (ThingClass: bridge, EventType: updateStatus, ID: {16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) ---------- @@ -991,18 +1052,18 @@ The name of the StateType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass - + Hue color light The name of the ThingClass ({0edba26c-96ab-44fb-a6a2-c0574d19630e}) - - - - - - + + + + + + color temperature The name of the ParamType (ThingClass: colorTemperatureLight, ActionType: colorTemperature, ID: {fee57738-45c7-48fe-a06b-1397376361f0}) ---------- @@ -1018,9 +1079,9 @@ The name of the StateType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass - - - + + + effect The name of the ParamType (ThingClass: colorLight, ActionType: effect, ID: {0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) ---------- @@ -1030,15 +1091,15 @@ The name of the StateType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass - + Set effect The name of the ActionType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight - - - + + + flash The name of the ActionType ({ab30a83a-539e-4b3a-860a-434e87ca165f}) of ThingClass dimmableLight ---------- @@ -1048,9 +1109,9 @@ The name of the ActionType ({d25dcfbc-d28c-4905-80e3-300ffb1248f5}) of ThingClas - - - + + + alert The name of the ParamType (ThingClass: dimmableLight, ActionType: alert, ID: {a546f129-e0e5-497b-9536-2f7a132434df}) ---------- @@ -1060,20 +1121,20 @@ The name of the ParamType (ThingClass: colorLight, ActionType: alert, ID: {8ace6 - + Set brightness The name of the ActionType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight - + Hue Remote The name of the ThingClass ({bb482d39-67ef-46dc-88e9-7b181d642b28}) - - + + sensor id The name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {b8121363-321a-4569-bb34-a02f846aa9c5}) ---------- @@ -1081,8 +1142,8 @@ The name of the ParamType (ThingClass: remote, Type: thing, ID: {2ddb571b-149f-4 - - + + battery changed The name of the EventType ({cb6e045c-e305-4950-9cd4-fb3989912156}) of ThingClass dimmerSwitch2 ---------- @@ -1090,10 +1151,10 @@ The name of the EventType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass - - - - + + + + battery The name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryLevel, ID: {cb6e045c-e305-4950-9cd4-fb3989912156}) ---------- @@ -1105,10 +1166,10 @@ The name of the StateType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass - - - - + + + + battery critical The name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryCritical, ID: {88cc3794-3e83-47d4-8889-0b3246336bf7}) ---------- diff --git a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-es.ts b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-es.ts index a176d919..68099707 100644 --- a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-es.ts +++ b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-es.ts @@ -4,53 +4,63 @@ IntegrationPluginPhilipsHue - - Please press the button on the Hue Bridge within 30 seconds before you continue - Pulse el botón del Hue Bridge dentro de 30 segundos antes de continuar - - - + Not authenticated to bridge. Please reconfigure the bridge. Niet geverifieerd om te overbruggen. Gelieve de brug te herconfigureren. - - Error connecting to hue bridge. - Fout bij het aansluiten op de kleurenbrug. + + The pairing process failed. The link button has not been pressed. Please follow the on-screen instructions again. + - - + Received unexpected data from hue bridge. Onverwachte gegevens ontvangen van tintenbrug. - - An error happened pairing the hue bridge. - Er is een fout opgetreden bij het koppelen van de kleurschakeringsbrug. + + Connecting to the Hue Bridge failed. Please make sure that your Hue Bridge is working and connected to the same network. + - + + Please press the button on the Hue Bridge within 30 seconds before you continue. + + + + + + The pairing process failed. Please make sure that your Hue Bridge is working. + + + + + Please make sure that your Hue bridge is working and follow the on-screen instructions again. + + + + The hue bridge has rejected the connection request. De kleurstofbrug heeft de aansluitingsaanvraag afgewezen. - + Error sending command to hue bridge. Fout bij het sturen van het commando naar de Hue Bridge. - + An unexpected error happened when sending the command to the hue bridge. Er is een onverwachte fout opgetreden bij het sturen van het commando naar de kleurenbrug. - + Philips Hue Motion sensor Philips Hue Bewegingssensor - + Philips Hue Outdoor sensor Philips Hue Outdoor sensor @@ -58,37 +68,31 @@ PhilipsHue - + Philips The name of the vendor ({0ae1e001-2aa6-47ed-b8c0-334c3728a68f}) Philips - - Hue gateway - The name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7}) - Puerta hue - - - + host address The name of the ParamType (ThingClass: bridge, Type: thing, ID: {1845975b-1184-4440-bc0d-73d53a9f683c}) dirección del servidor - + id The name of the ParamType (ThingClass: bridge, Type: thing, ID: {a496feb0-3b7b-46cb-a63a-e063447d6b1d}) identificación - - - - - - - + + + + + + + reachable changed The name of the EventType ({45f75511-7d72-410e-aed0-5720cc497bf8}) of ThingClass dimmerSwitch2 ---------- @@ -106,120 +110,144 @@ The name of the EventType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass accesibilidad modificada - + api version changed The name of the EventType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridge versión api modificada - + update status changed The name of the EventType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridge estado de actualización modificado - + search devices The name of the ActionType ({cca3f171-6318-44e7-a2ac-d841857c1c24}) of ThingClass bridge buscar dispositivos - + Serial Number (optional) The name of the ParamType (ThingClass: bridge, ActionType: searchNewDevices, ID: {1924bdb5-f8f1-4dcd-bc09-21ad7c5ce377}) Serienummer (optioneel) - + check updates The name of the ActionType ({07a85e91-d064-4bce-b017-13fd0c320c0b}) of ThingClass bridge buscar actualizaciones - + Upgrade bridge The name of the ActionType ({6dfbc7c0-7372-42f6-82ba-e777cb32dc4c}) of ThingClass bridge Actualización de bridge - - + + + + Battery level - The name of the ParamType (ThingClass: smartButton, EventType: batteryLevel, ID: {a0a1b480-6822-49bc-b1b1-50c39764d255}) + The name of the ParamType (ThingClass: wallSwitch, EventType: batteryLevel, ID: {b025cab6-d128-43eb-ba63-b16861d6ab10}) +---------- +The name of the StateType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch +---------- +The name of the ParamType (ThingClass: smartButton, EventType: batteryLevel, ID: {a0a1b480-6822-49bc-b1b1-50c39764d255}) ---------- The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - + + Battery level changed - The name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton + The name of the EventType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch +---------- +The name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - + Button longpress The name of the EventType ({d5052592-044d-42e8-b98a-d3fe9f2f53ae}) of ThingClass dimmerSwitch2 - + Friends of Hue Switch The name of the ThingClass ({692bc4be-07b8-4b77-ab0b-a36185b17d76}) - + Hue Dimmer Switch V2 The name of the ThingClass ({2b40aea0-e0f3-4cde-b034-3ae8a69a5d9d}) - + Hue Motion Sensor The name of the ThingClass ({25b79fff-4b88-4af8-b06c-2fe246238790}) Hue Motion Sensor - + Hue On/Off light The name of the ThingClass ({f720f31d-9523-4a74-9f10-19cbc9edeb58}) - + Hue Smart Button The name of the ThingClass ({1e34a056-9f37-4741-b249-a5eca7a4ab4e}) Hue Smart Button - + Hue Smart plug The name of the ThingClass ({01438844-0048-4276-91f8-c93ac0a5171d}) - + + Hue Wall Switch Module + The name of the ThingClass ({e967027f-f8fc-410c-8b48-6ac4c42e2777}) + + + + Long pressed The name of the EventType ({25803922-37f1-47c8-ac00-2d3acb9eb634}) of ThingClass smartButton Long pressed - - - + + + + Model ID The name of the ParamType (ThingClass: foh, Type: thing, ID: {664c7091-12eb-4402-8239-31da85f73d38}) ---------- The name of the ParamType (ThingClass: tap, Type: thing, ID: {62d92175-db3a-4da2-a72b-f58f34cb6911}) ---------- +The name of the ParamType (ThingClass: wallSwitch, Type: thing, ID: {71c2c485-6a09-4bcd-80e5-24cdc45d323f}) +---------- The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {9271179f-5fe1-4005-9f97-ccde33b1b2c4}) Model ID - - - + + Philips Hue Bridge + The name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7}) + + + + + + Powered The name of the ParamType (ThingClass: smartPlug, ActionType: power, ID: {77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) ---------- @@ -229,20 +257,23 @@ The name of the StateType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass - - - + + + + Sensor ID The name of the ParamType (ThingClass: foh, Type: thing, ID: {7559d16c-b56b-42e2-8347-65582fa276c0}) ---------- The name of the ParamType (ThingClass: tap, Type: thing, ID: {5eca2b24-8986-4487-bc12-50e91d023d97}) ---------- +The name of the ParamType (ThingClass: wallSwitch, Type: thing, ID: {62a9df8c-51b5-434f-9d5d-5fa97144076a}) +---------- The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {54744fcc-c052-4c16-a857-fbe0b791e538}) Sensor ID - - + + Software version The name of the ParamType (ThingClass: bridge, EventType: currentVersion, ID: {4c707b18-6604-4e6d-b6bc-4e27769c2adc}) ---------- @@ -250,26 +281,26 @@ The name of the StateType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass - + Software version changed The name of the EventType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge - + Switch The name of the ActionType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - + Switched on or off The name of the EventType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - - + + Time period The name of the ParamType (ThingClass: motionSensor, Type: settings, ID: {beedc4af-c107-4c53-be25-fd01a349fd35}) ---------- @@ -277,37 +308,43 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: settings, ID: {21d46 Tijdspanne - - - + + + + Type The name of the ParamType (ThingClass: foh, Type: thing, ID: {16ca2ee1-d738-4f51-8f9a-53547d3d824e}) ---------- The name of the ParamType (ThingClass: tap, Type: thing, ID: {eace85b9-5369-466f-89eb-46c4de718305}) ---------- +The name of the ParamType (ThingClass: wallSwitch, Type: thing, ID: {08606780-2251-4c15-bb7d-7506535e14ed}) +---------- The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {7221aacc-1420-43f2-a05a-448a0f783713}) Type - - - + + + + UUID The name of the ParamType (ThingClass: foh, Type: thing, ID: {2ca66286-1caf-4e09-8e18-05bb7d7df314}) ---------- The name of the ParamType (ThingClass: tap, Type: thing, ID: {25cf4167-6c28-4497-9fa9-3d02faf4f3ed}) ---------- +The name of the ParamType (ThingClass: wallSwitch, Type: thing, ID: {4cdab881-5d2d-4443-816a-231bbb331f22}) +---------- The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {2378a06d-b748-445b-94e2-4dd885a54f22}) UUID - - - - - - - + + + + + + + model id The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {a5441712-5a4a-43a7-b797-3806cba86e1a}) ---------- @@ -325,13 +362,13 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {095a463b-f5 identificación de modelo - - - - - - - + + + + + + + type The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {87cf0d7a-9ac2-4694-9f5f-1c9c6692a6c5}) ---------- @@ -349,12 +386,12 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {3f3467ef-44 modelo - - - - - - + + + + + + uuid The name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {200b5daa-1023-49cb-a933-bdd1ac7df4bd}) ---------- @@ -370,11 +407,11 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {1a5129ca-00 uuid - - - - - + + + + + light id The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {90791861-bb27-4ade-8551-306af322b12d}) ---------- @@ -388,10 +425,10 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {491dc012-cc identificación de luz - - - - + + + + power changed The name of the EventType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight ---------- @@ -403,18 +440,18 @@ The name of the EventType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass alimentación modificada - - - - - - - - - - - - + + + + + + + + + + + + power The name of the ParamType (ThingClass: onOffLight, ActionType: power, ID: {5dc5e71b-789e-4c68-abb6-1534c8af019e}) ---------- @@ -442,10 +479,10 @@ The name of the StateType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass alimentación - - - - + + + + Set power The name of the ActionType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight ---------- @@ -457,8 +494,8 @@ The name of the ActionType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClas Fijar alimentación - - + + color temperature changed The name of the EventType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight ---------- @@ -466,8 +503,8 @@ The name of the EventType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass temperatura de color modificada - - + + Set color temperature The name of the ActionType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight ---------- @@ -475,15 +512,15 @@ The name of the ActionType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClas Fijar color de temperatura - + color changed The name of the EventType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight color modificado - - - + + + color The name of the ParamType (ThingClass: colorLight, ActionType: color, ID: {d25423e7-b924-4b20-80b6-77eecc65d089}) ---------- @@ -493,15 +530,15 @@ The name of the StateType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass color - + Set color The name of the ActionType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight Fijar color - - - + + + brightness changed The name of the EventType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight ---------- @@ -511,15 +548,15 @@ The name of the EventType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass brillo modificado - - - - - - - - - + + + + + + + + + brightness The name of the ParamType (ThingClass: dimmableLight, ActionType: brightness, ID: {2f062912-1159-423b-8143-48a8e69b9348}) ---------- @@ -541,8 +578,8 @@ The name of the StateType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass brillo - - + + Set brigtness The name of the ActionType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight ---------- @@ -550,26 +587,26 @@ The name of the ActionType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClas Fijar brillo - + effect changed The name of the EventType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight efecto modificado - + Hue color temperature light The name of the ThingClass ({35f749f7-b60a-4922-bd25-1bdd2eddcbe3}) Hue kleurtemperatuur licht - + Hue dimmable light The name of the ThingClass ({4fa568ef-7a3a-422b-b0c0-206d37cb4eed}) Hue dimmable light - - + + battery critical changed The name of the EventType ({88cc3794-3e83-47d4-8889-0b3246336bf7}) of ThingClass dimmerSwitch2 ---------- @@ -577,16 +614,19 @@ The name of the EventType ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass batería en estado crítico modificada - - - - - + + + + + + Button pressed The name of the EventType ({2cc68bd3-ad73-4bf3-9905-639870d071bd}) of ThingClass foh ---------- The name of the EventType ({c45dd703-7cbd-48f7-88dc-31045cc3d39c}) of ThingClass tap ---------- +The name of the EventType ({4623b5ff-b999-4200-ba38-89435d78fcae}) of ThingClass wallSwitch +---------- The name of the EventType ({c809179e-effa-4717-9172-11df7e80d109}) of ThingClass smartButton ---------- The name of the EventType ({b7a5b3df-2c60-4b97-bf99-b97e6012a194}) of ThingClass dimmerSwitch2 @@ -595,17 +635,20 @@ The name of the EventType ({8da28cf1-2457-451e-953e-2685f8daeda8}) of ThingClass Botón pulsado - - - - - - + + + + + + + Button name The name of the ParamType (ThingClass: foh, EventType: pressed, ID: {f1da229e-fce2-4329-8850-1c92b5bc5925}) ---------- The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b8a-4709-8abf-717cf213f4a4}) ---------- +The name of the ParamType (ThingClass: wallSwitch, EventType: pressed, ID: {adb4ec5e-e48f-4697-a876-e56e8458987a}) +---------- The name of the ParamType (ThingClass: dimmerSwitch2, EventType: longPressed, ID: {c03bb1ad-f8c9-4993-9d25-557ade2d2c13}) ---------- The name of the ParamType (ThingClass: dimmerSwitch2, EventType: pressed, ID: {562f2d4d-351e-4c2c-98bf-187b948587e4}) @@ -616,26 +659,26 @@ The name of the ParamType (ThingClass: remote, EventType: pressed, ID: {e4e3eb3a Nombre del botón - + Button longpressed The name of the EventType ({2c64561b-2381-4769-8e21-0e206c84bbcc}) of ThingClass remote Botón pulsado durante largo tiempo - + Hue Tap The name of the ThingClass ({2b8c1fb8-67ee-42e9-947b-16e0a09f0d4e}) Llave hue - + Hue Outdoor Sensor The name of the ThingClass ({32dc6390-600f-4eb4-b349-cc2d6796a82a}) Farbton Außensensor - - + + Model id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {9cb488b7-a76f-4389-a6b5-b36250246f2b}) ---------- @@ -643,9 +686,9 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca8632d Modell-ID - - - + + + Uuid The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {5b8a02b9-3a2b-4178-914d-c62d03281d00}) ---------- @@ -655,8 +698,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {4a15f861 Uuid - - + + Temperature sensor id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {c9e81e29-f8d4-4370-ada2-f48b32def1fe}) ---------- @@ -664,8 +707,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {c732fefd Temperature sensor id - - + + Temperature sensor uuid The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {aa29b5f1-5589-4fa9-bbd4-8869723c037c}) ---------- @@ -673,8 +716,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {2fdb34e8 Temperature sensor UUID - - + + Presence sensor id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {337b2c6c-e3bf-495c-943c-b45fa08add37}) ---------- @@ -682,8 +725,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca82a24 Presence sensor id - - + + Presence sensor uuid The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {3829bddb-e722-4724-be36-3a8402738581}) ---------- @@ -691,8 +734,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {7d55ed97 Presence sensor UUID - - + + Light sensor id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {04fba73e-730e-437a-b6f2-10df21296af5}) ---------- @@ -700,8 +743,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {22a164fc Light sensor id - - + + Light sensor uuid The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {171cc2e7-7a95-4116-986c-66d75e3e23eb}) ---------- @@ -709,12 +752,13 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {db678144 Light sensor uuid - - - - - - + + + + + + + Reachable changed The name of the EventType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug ---------- @@ -726,22 +770,26 @@ The name of the EventType ({840b220c-656b-4f56-bbaa-ce818cffad64}) of ThingClass ---------- The name of the EventType ({5e21b032-1230-4e93-8543-0c4773da17d3}) of ThingClass tap ---------- +The name of the EventType ({b51071af-1290-41f1-b2eb-e84527342ade}) of ThingClass wallSwitch +---------- The name of the EventType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass smartButton Reachable cambió - - - - - - - - - - - - + + + + + + + + + + + + + + Reachable The name of the ParamType (ThingClass: smartPlug, EventType: connected, ID: {6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) ---------- @@ -763,14 +811,18 @@ The name of the ParamType (ThingClass: tap, EventType: connected, ID: {5e21b032- ---------- The name of the StateType ({5e21b032-1230-4e93-8543-0c4773da17d3}) of ThingClass tap ---------- +The name of the ParamType (ThingClass: wallSwitch, EventType: connected, ID: {b51071af-1290-41f1-b2eb-e84527342ade}) +---------- +The name of the StateType ({b51071af-1290-41f1-b2eb-e84527342ade}) of ThingClass wallSwitch +---------- The name of the ParamType (ThingClass: smartButton, EventType: connected, ID: {b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) ---------- The name of the StateType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass smartButton Alcanzable - - + + Battery changed The name of the EventType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ---------- @@ -778,10 +830,10 @@ The name of the EventType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass Batería cambiada - - - - + + + + Battery The name of the ParamType (ThingClass: motionSensor, EventType: batteryLevel, ID: {ac463b30-24af-4352-84da-19a3ffc906bd}) ---------- @@ -793,24 +845,29 @@ The name of the StateType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass Batería - - - + + + + Battery critical changed The name of the EventType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor ---------- The name of the EventType ({617aa352-789c-46e7-bf55-7455b1e5018e}) of ThingClass outdoorSensor ---------- +The name of the EventType ({7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) of ThingClass wallSwitch +---------- The name of the EventType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass smartButton Batería crítica cambiada - - - - - - + + + + + + + + Battery critical The name of the ParamType (ThingClass: motionSensor, EventType: batteryCritical, ID: {d7c4e143-6f03-411e-a12e-dd22806270fd}) ---------- @@ -820,14 +877,18 @@ The name of the ParamType (ThingClass: outdoorSensor, EventType: batteryCritical ---------- The name of the StateType ({617aa352-789c-46e7-bf55-7455b1e5018e}) of ThingClass outdoorSensor ---------- +The name of the ParamType (ThingClass: wallSwitch, EventType: batteryCritical, ID: {7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) +---------- +The name of the StateType ({7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) of ThingClass wallSwitch +---------- The name of the ParamType (ThingClass: smartButton, EventType: batteryCritical, ID: {7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) ---------- The name of the StateType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass smartButton Batería crítica - - + + Temperature changed The name of the EventType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ---------- @@ -835,10 +896,10 @@ The name of the EventType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass La temperatura cambió - - - - + + + + Temperature The name of the ParamType (ThingClass: motionSensor, EventType: temperature, ID: {63ee79f7-702b-48c1-86cf-8ddebb78bae6}) ---------- @@ -850,8 +911,8 @@ The name of the StateType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass Temperatura - - + + Ambient light changed The name of the EventType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor ---------- @@ -859,10 +920,10 @@ The name of the EventType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass La luz ambiental cambió - - - - + + + + Ambient light The name of the ParamType (ThingClass: motionSensor, EventType: lightIntensity, ID: {064f48c1-f86d-4a0a-bdae-3420123dff3f}) ---------- @@ -874,8 +935,8 @@ The name of the StateType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass Luz ambiental - - + + Person is present changed The name of the EventType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor ---------- @@ -883,10 +944,10 @@ The name of the EventType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass La persona está presente cambiada - - - - + + + + Person is present The name of the ParamType (ThingClass: motionSensor, EventType: isPresent, ID: {e38ee39c-c77f-40b5-b122-4efc411da0ed}) ---------- @@ -898,8 +959,8 @@ The name of the StateType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass La persona está presente - - + + Last seen time changed The name of the EventType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor ---------- @@ -907,10 +968,10 @@ The name of the EventType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass La última vez que se vio el tiempo cambió - - - - + + + + Last seen time The name of the ParamType (ThingClass: motionSensor, EventType: lastSeenTime, ID: {ef2e564e-2443-448f-bcd9-f85a1126ee6a}) ---------- @@ -922,26 +983,26 @@ The name of the StateType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass - + Philips Hue The name of the plugin PhilipsHue ({5f2e634b-b7f3-48ee-976a-b5ae22aa5c55}) Philips Hue - - - - - - - - - - - - - - + + + + + + + + + + + + + + reachable The name of the ParamType (ThingClass: dimmerSwitch2, EventType: connected, ID: {45f75511-7d72-410e-aed0-5720cc497bf8}) ---------- @@ -973,8 +1034,8 @@ The name of the StateType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass accesible - - + + api version The name of the ParamType (ThingClass: bridge, EventType: apiVersion, ID: {7a230e89-c4ce-4276-90e0-6a9ddb890603}) ---------- @@ -982,8 +1043,8 @@ The name of the StateType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass versión api - - + + update status The name of the ParamType (ThingClass: bridge, EventType: updateStatus, ID: {16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) ---------- @@ -991,18 +1052,18 @@ The name of the StateType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass estado de actualización - + Hue color light The name of the ThingClass ({0edba26c-96ab-44fb-a6a2-c0574d19630e}) - - - - - - + + + + + + color temperature The name of the ParamType (ThingClass: colorTemperatureLight, ActionType: colorTemperature, ID: {fee57738-45c7-48fe-a06b-1397376361f0}) ---------- @@ -1018,9 +1079,9 @@ The name of the StateType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass temperatura de color - - - + + + effect The name of the ParamType (ThingClass: colorLight, ActionType: effect, ID: {0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) ---------- @@ -1030,15 +1091,15 @@ The name of the StateType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass efecto - + Set effect The name of the ActionType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight Fijar efecto - - - + + + flash The name of the ActionType ({ab30a83a-539e-4b3a-860a-434e87ca165f}) of ThingClass dimmableLight ---------- @@ -1048,9 +1109,9 @@ The name of the ActionType ({d25dcfbc-d28c-4905-80e3-300ffb1248f5}) of ThingClas flash - - - + + + alert The name of the ParamType (ThingClass: dimmableLight, ActionType: alert, ID: {a546f129-e0e5-497b-9536-2f7a132434df}) ---------- @@ -1060,20 +1121,20 @@ The name of the ParamType (ThingClass: colorLight, ActionType: alert, ID: {8ace6 alerta - + Set brightness The name of the ActionType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight Fijar brillo - + Hue Remote The name of the ThingClass ({bb482d39-67ef-46dc-88e9-7b181d642b28}) Hue Remote - - + + sensor id The name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {b8121363-321a-4569-bb34-a02f846aa9c5}) ---------- @@ -1081,8 +1142,8 @@ The name of the ParamType (ThingClass: remote, Type: thing, ID: {2ddb571b-149f-4 identificación de sensor - - + + battery changed The name of the EventType ({cb6e045c-e305-4950-9cd4-fb3989912156}) of ThingClass dimmerSwitch2 ---------- @@ -1090,10 +1151,10 @@ The name of the EventType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass batería modificada - - - - + + + + battery The name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryLevel, ID: {cb6e045c-e305-4950-9cd4-fb3989912156}) ---------- @@ -1105,10 +1166,10 @@ The name of the StateType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass batería - - - - + + + + battery critical The name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryCritical, ID: {88cc3794-3e83-47d4-8889-0b3246336bf7}) ---------- diff --git a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-fr.ts b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-fr.ts index 8a673556..f03e876e 100644 --- a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-fr.ts +++ b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-fr.ts @@ -4,53 +4,63 @@ IntegrationPluginPhilipsHue - - Please press the button on the Hue Bridge within 30 seconds before you continue - Veuillez maintenir le bouton de la Hue Bridge enfoncée pendant secondes avant de poursuivre - - - + Not authenticated to bridge. Please reconfigure the bridge. Non authentifié pour le pont. Veuillez reconfigurer le pont. - - Error connecting to hue bridge. - Erreur de connexion au pont de teinte. + + The pairing process failed. The link button has not been pressed. Please follow the on-screen instructions again. + - - + Received unexpected data from hue bridge. Réception de données inattendues de la part de hue bridge. - - An error happened pairing the hue bridge. - Une erreur s'est produite lors de l'appariement du pont de teinte. + + Connecting to the Hue Bridge failed. Please make sure that your Hue Bridge is working and connected to the same network. + - + + Please press the button on the Hue Bridge within 30 seconds before you continue. + + + + + + The pairing process failed. Please make sure that your Hue Bridge is working. + + + + + Please make sure that your Hue bridge is working and follow the on-screen instructions again. + + + + The hue bridge has rejected the connection request. Le pont de teinte a rejeté la demande de connexion. - + Error sending command to hue bridge. Erreur d'envoi de la commande à hue bridge. - + An unexpected error happened when sending the command to the hue bridge. Une erreur inattendue s'est produite lors de l'envoi de la commande au pont de teinte. - + Philips Hue Motion sensor Capteur de mouvement Philips Hue - + Philips Hue Outdoor sensor Capteur Philips Hue Outdoor @@ -58,37 +68,31 @@ PhilipsHue - + Philips The name of the vendor ({0ae1e001-2aa6-47ed-b8c0-334c3728a68f}) Philips - - Hue gateway - The name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7}) - Passerelle Hue - - - + host address The name of the ParamType (ThingClass: bridge, Type: thing, ID: {1845975b-1184-4440-bc0d-73d53a9f683c}) Adresse de l’hôte - + id The name of the ParamType (ThingClass: bridge, Type: thing, ID: {a496feb0-3b7b-46cb-a63a-e063447d6b1d}) ID - - - - - - - + + + + + + + reachable changed The name of the EventType ({45f75511-7d72-410e-aed0-5720cc497bf8}) of ThingClass dimmerSwitch2 ---------- @@ -106,120 +110,144 @@ The name of the EventType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass Accessibilité modifiée - + api version changed The name of the EventType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridge Version API modifiée - + update status changed The name of the EventType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridge Statut mise à jour modifié - + search devices The name of the ActionType ({cca3f171-6318-44e7-a2ac-d841857c1c24}) of ThingClass bridge Chercher des appareils - + Serial Number (optional) The name of the ParamType (ThingClass: bridge, ActionType: searchNewDevices, ID: {1924bdb5-f8f1-4dcd-bc09-21ad7c5ce377}) Numéro de série (facultatif) - + check updates The name of the ActionType ({07a85e91-d064-4bce-b017-13fd0c320c0b}) of ThingClass bridge Chercher des mises à jour - + Upgrade bridge The name of the ActionType ({6dfbc7c0-7372-42f6-82ba-e777cb32dc4c}) of ThingClass bridge Mise à jour de la Bridge - - + + + + Battery level - The name of the ParamType (ThingClass: smartButton, EventType: batteryLevel, ID: {a0a1b480-6822-49bc-b1b1-50c39764d255}) + The name of the ParamType (ThingClass: wallSwitch, EventType: batteryLevel, ID: {b025cab6-d128-43eb-ba63-b16861d6ab10}) +---------- +The name of the StateType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch +---------- +The name of the ParamType (ThingClass: smartButton, EventType: batteryLevel, ID: {a0a1b480-6822-49bc-b1b1-50c39764d255}) ---------- The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - + + Battery level changed - The name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton + The name of the EventType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch +---------- +The name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - + Button longpress The name of the EventType ({d5052592-044d-42e8-b98a-d3fe9f2f53ae}) of ThingClass dimmerSwitch2 - + Friends of Hue Switch The name of the ThingClass ({692bc4be-07b8-4b77-ab0b-a36185b17d76}) - + Hue Dimmer Switch V2 The name of the ThingClass ({2b40aea0-e0f3-4cde-b034-3ae8a69a5d9d}) - + Hue Motion Sensor The name of the ThingClass ({25b79fff-4b88-4af8-b06c-2fe246238790}) Hue Motion Sensor - + Hue On/Off light The name of the ThingClass ({f720f31d-9523-4a74-9f10-19cbc9edeb58}) - + Hue Smart Button The name of the ThingClass ({1e34a056-9f37-4741-b249-a5eca7a4ab4e}) Hue Smart Button - + Hue Smart plug The name of the ThingClass ({01438844-0048-4276-91f8-c93ac0a5171d}) - + + Hue Wall Switch Module + The name of the ThingClass ({e967027f-f8fc-410c-8b48-6ac4c42e2777}) + + + + Long pressed The name of the EventType ({25803922-37f1-47c8-ac00-2d3acb9eb634}) of ThingClass smartButton Longtemps pressée - - - + + + + Model ID The name of the ParamType (ThingClass: foh, Type: thing, ID: {664c7091-12eb-4402-8239-31da85f73d38}) ---------- The name of the ParamType (ThingClass: tap, Type: thing, ID: {62d92175-db3a-4da2-a72b-f58f34cb6911}) ---------- +The name of the ParamType (ThingClass: wallSwitch, Type: thing, ID: {71c2c485-6a09-4bcd-80e5-24cdc45d323f}) +---------- The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {9271179f-5fe1-4005-9f97-ccde33b1b2c4}) Model ID - - - + + Philips Hue Bridge + The name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7}) + + + + + + Powered The name of the ParamType (ThingClass: smartPlug, ActionType: power, ID: {77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) ---------- @@ -229,20 +257,23 @@ The name of the StateType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass - - - + + + + Sensor ID The name of the ParamType (ThingClass: foh, Type: thing, ID: {7559d16c-b56b-42e2-8347-65582fa276c0}) ---------- The name of the ParamType (ThingClass: tap, Type: thing, ID: {5eca2b24-8986-4487-bc12-50e91d023d97}) ---------- +The name of the ParamType (ThingClass: wallSwitch, Type: thing, ID: {62a9df8c-51b5-434f-9d5d-5fa97144076a}) +---------- The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {54744fcc-c052-4c16-a857-fbe0b791e538}) Sensor ID - - + + Software version The name of the ParamType (ThingClass: bridge, EventType: currentVersion, ID: {4c707b18-6604-4e6d-b6bc-4e27769c2adc}) ---------- @@ -250,26 +281,26 @@ The name of the StateType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass - + Software version changed The name of the EventType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge - + Switch The name of the ActionType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - + Switched on or off The name of the EventType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - - + + Time period The name of the ParamType (ThingClass: motionSensor, Type: settings, ID: {beedc4af-c107-4c53-be25-fd01a349fd35}) ---------- @@ -277,37 +308,43 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: settings, ID: {21d46 Période de temps - - - + + + + Type The name of the ParamType (ThingClass: foh, Type: thing, ID: {16ca2ee1-d738-4f51-8f9a-53547d3d824e}) ---------- The name of the ParamType (ThingClass: tap, Type: thing, ID: {eace85b9-5369-466f-89eb-46c4de718305}) ---------- +The name of the ParamType (ThingClass: wallSwitch, Type: thing, ID: {08606780-2251-4c15-bb7d-7506535e14ed}) +---------- The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {7221aacc-1420-43f2-a05a-448a0f783713}) Type - - - + + + + UUID The name of the ParamType (ThingClass: foh, Type: thing, ID: {2ca66286-1caf-4e09-8e18-05bb7d7df314}) ---------- The name of the ParamType (ThingClass: tap, Type: thing, ID: {25cf4167-6c28-4497-9fa9-3d02faf4f3ed}) ---------- +The name of the ParamType (ThingClass: wallSwitch, Type: thing, ID: {4cdab881-5d2d-4443-816a-231bbb331f22}) +---------- The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {2378a06d-b748-445b-94e2-4dd885a54f22}) UUID - - - - - - - + + + + + + + model id The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {a5441712-5a4a-43a7-b797-3806cba86e1a}) ---------- @@ -325,13 +362,13 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {095a463b-f5 ID de modèle - - - - - - - + + + + + + + type The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {87cf0d7a-9ac2-4694-9f5f-1c9c6692a6c5}) ---------- @@ -349,12 +386,12 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {3f3467ef-44 Type - - - - - - + + + + + + uuid The name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {200b5daa-1023-49cb-a933-bdd1ac7df4bd}) ---------- @@ -370,11 +407,11 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {1a5129ca-00 UUID - - - - - + + + + + light id The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {90791861-bb27-4ade-8551-306af322b12d}) ---------- @@ -388,10 +425,10 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {491dc012-cc ID du luminaire - - - - + + + + power changed The name of the EventType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight ---------- @@ -403,18 +440,18 @@ The name of the EventType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass Alimentation modifiée - - - - - - - - - - - - + + + + + + + + + + + + power The name of the ParamType (ThingClass: onOffLight, ActionType: power, ID: {5dc5e71b-789e-4c68-abb6-1534c8af019e}) ---------- @@ -442,10 +479,10 @@ The name of the StateType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass Alimentation - - - - + + + + Set power The name of the ActionType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight ---------- @@ -457,8 +494,8 @@ The name of the ActionType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClas Configurer l’alimentation - - + + color temperature changed The name of the EventType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight ---------- @@ -466,8 +503,8 @@ The name of the EventType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass Température de couleur modifiée - - + + Set color temperature The name of the ActionType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight ---------- @@ -475,15 +512,15 @@ The name of the ActionType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClas Définir la température de couleur - + color changed The name of the EventType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight Couleur modifiée - - - + + + color The name of the ParamType (ThingClass: colorLight, ActionType: color, ID: {d25423e7-b924-4b20-80b6-77eecc65d089}) ---------- @@ -493,15 +530,15 @@ The name of the StateType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass Couleur - + Set color The name of the ActionType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight Définir la couleur - - - + + + brightness changed The name of the EventType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight ---------- @@ -511,15 +548,15 @@ The name of the EventType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass Luminosité modifiée - - - - - - - - - + + + + + + + + + brightness The name of the ParamType (ThingClass: dimmableLight, ActionType: brightness, ID: {2f062912-1159-423b-8143-48a8e69b9348}) ---------- @@ -541,8 +578,8 @@ The name of the StateType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass Luminosité - - + + Set brigtness The name of the ActionType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight ---------- @@ -550,26 +587,26 @@ The name of the ActionType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClas Régler la luminosité - + effect changed The name of the EventType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight Effet de lumière modifié - + Hue color temperature light The name of the ThingClass ({35f749f7-b60a-4922-bd25-1bdd2eddcbe3}) Hue color temperature light - + Hue dimmable light The name of the ThingClass ({4fa568ef-7a3a-422b-b0c0-206d37cb4eed}) Hue dimmable light - - + + battery critical changed The name of the EventType ({88cc3794-3e83-47d4-8889-0b3246336bf7}) of ThingClass dimmerSwitch2 ---------- @@ -577,16 +614,19 @@ The name of the EventType ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass Statut de batterie critique modifié - - - - - + + + + + + Button pressed The name of the EventType ({2cc68bd3-ad73-4bf3-9905-639870d071bd}) of ThingClass foh ---------- The name of the EventType ({c45dd703-7cbd-48f7-88dc-31045cc3d39c}) of ThingClass tap ---------- +The name of the EventType ({4623b5ff-b999-4200-ba38-89435d78fcae}) of ThingClass wallSwitch +---------- The name of the EventType ({c809179e-effa-4717-9172-11df7e80d109}) of ThingClass smartButton ---------- The name of the EventType ({b7a5b3df-2c60-4b97-bf99-b97e6012a194}) of ThingClass dimmerSwitch2 @@ -595,17 +635,20 @@ The name of the EventType ({8da28cf1-2457-451e-953e-2685f8daeda8}) of ThingClass Bouton appuyé - - - - - - + + + + + + + Button name The name of the ParamType (ThingClass: foh, EventType: pressed, ID: {f1da229e-fce2-4329-8850-1c92b5bc5925}) ---------- The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b8a-4709-8abf-717cf213f4a4}) ---------- +The name of the ParamType (ThingClass: wallSwitch, EventType: pressed, ID: {adb4ec5e-e48f-4697-a876-e56e8458987a}) +---------- The name of the ParamType (ThingClass: dimmerSwitch2, EventType: longPressed, ID: {c03bb1ad-f8c9-4993-9d25-557ade2d2c13}) ---------- The name of the ParamType (ThingClass: dimmerSwitch2, EventType: pressed, ID: {562f2d4d-351e-4c2c-98bf-187b948587e4}) @@ -616,26 +659,26 @@ The name of the ParamType (ThingClass: remote, EventType: pressed, ID: {e4e3eb3a Nom de bouton - + Button longpressed The name of the EventType ({2c64561b-2381-4769-8e21-0e206c84bbcc}) of ThingClass remote Bouton appuyé pendant longtemps - + Hue Tap The name of the ThingClass ({2b8c1fb8-67ee-42e9-947b-16e0a09f0d4e}) Hue Tap - + Hue Outdoor Sensor The name of the ThingClass ({32dc6390-600f-4eb4-b349-cc2d6796a82a}) Hue Outdoor Sensor - - + + Model id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {9cb488b7-a76f-4389-a6b5-b36250246f2b}) ---------- @@ -643,9 +686,9 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca8632d Model id - - - + + + Uuid The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {5b8a02b9-3a2b-4178-914d-c62d03281d00}) ---------- @@ -655,8 +698,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {4a15f861 Uuid - - + + Temperature sensor id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {c9e81e29-f8d4-4370-ada2-f48b32def1fe}) ---------- @@ -664,8 +707,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {c732fefd ID du capteur de température - - + + Temperature sensor uuid The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {aa29b5f1-5589-4fa9-bbd4-8869723c037c}) ---------- @@ -673,8 +716,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {2fdb34e8 Capteur de température uuid - - + + Presence sensor id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {337b2c6c-e3bf-495c-943c-b45fa08add37}) ---------- @@ -682,8 +725,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca82a24 Identification du capteur de présence - - + + Presence sensor uuid The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {3829bddb-e722-4724-be36-3a8402738581}) ---------- @@ -691,8 +734,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {7d55ed97 Capteur de présence uuid - - + + Light sensor id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {04fba73e-730e-437a-b6f2-10df21296af5}) ---------- @@ -700,8 +743,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {22a164fc Identification du capteur de lumière - - + + Light sensor uuid The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {171cc2e7-7a95-4116-986c-66d75e3e23eb}) ---------- @@ -709,12 +752,13 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {db678144 Capteur de lumière uuid - - - - - - + + + + + + + Reachable changed The name of the EventType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug ---------- @@ -726,22 +770,26 @@ The name of the EventType ({840b220c-656b-4f56-bbaa-ce818cffad64}) of ThingClass ---------- The name of the EventType ({5e21b032-1230-4e93-8543-0c4773da17d3}) of ThingClass tap ---------- +The name of the EventType ({b51071af-1290-41f1-b2eb-e84527342ade}) of ThingClass wallSwitch +---------- The name of the EventType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass smartButton Atteignable changé - - - - - - - - - - - - + + + + + + + + + + + + + + Reachable The name of the ParamType (ThingClass: smartPlug, EventType: connected, ID: {6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) ---------- @@ -763,14 +811,18 @@ The name of the ParamType (ThingClass: tap, EventType: connected, ID: {5e21b032- ---------- The name of the StateType ({5e21b032-1230-4e93-8543-0c4773da17d3}) of ThingClass tap ---------- +The name of the ParamType (ThingClass: wallSwitch, EventType: connected, ID: {b51071af-1290-41f1-b2eb-e84527342ade}) +---------- +The name of the StateType ({b51071af-1290-41f1-b2eb-e84527342ade}) of ThingClass wallSwitch +---------- The name of the ParamType (ThingClass: smartButton, EventType: connected, ID: {b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) ---------- The name of the StateType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass smartButton Accessible à l'adresse suivante - - + + Battery changed The name of the EventType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ---------- @@ -778,10 +830,10 @@ The name of the EventType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass Batterie changée - - - - + + + + Battery The name of the ParamType (ThingClass: motionSensor, EventType: batteryLevel, ID: {ac463b30-24af-4352-84da-19a3ffc906bd}) ---------- @@ -793,24 +845,29 @@ The name of the StateType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass Batterie - - - + + + + Battery critical changed The name of the EventType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor ---------- The name of the EventType ({617aa352-789c-46e7-bf55-7455b1e5018e}) of ThingClass outdoorSensor ---------- +The name of the EventType ({7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) of ThingClass wallSwitch +---------- The name of the EventType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass smartButton Changement de pile critique - - - - - - + + + + + + + + Battery critical The name of the ParamType (ThingClass: motionSensor, EventType: batteryCritical, ID: {d7c4e143-6f03-411e-a12e-dd22806270fd}) ---------- @@ -820,14 +877,18 @@ The name of the ParamType (ThingClass: outdoorSensor, EventType: batteryCritical ---------- The name of the StateType ({617aa352-789c-46e7-bf55-7455b1e5018e}) of ThingClass outdoorSensor ---------- +The name of the ParamType (ThingClass: wallSwitch, EventType: batteryCritical, ID: {7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) +---------- +The name of the StateType ({7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) of ThingClass wallSwitch +---------- The name of the ParamType (ThingClass: smartButton, EventType: batteryCritical, ID: {7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) ---------- The name of the StateType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass smartButton Batterie critique - - + + Temperature changed The name of the EventType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ---------- @@ -835,10 +896,10 @@ The name of the EventType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass La température a changé - - - - + + + + Temperature The name of the ParamType (ThingClass: motionSensor, EventType: temperature, ID: {63ee79f7-702b-48c1-86cf-8ddebb78bae6}) ---------- @@ -850,8 +911,8 @@ The name of the StateType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass Temperature - - + + Ambient light changed The name of the EventType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor ---------- @@ -859,10 +920,10 @@ The name of the EventType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass La lumière ambiante a changé - - - - + + + + Ambient light The name of the ParamType (ThingClass: motionSensor, EventType: lightIntensity, ID: {064f48c1-f86d-4a0a-bdae-3420123dff3f}) ---------- @@ -874,8 +935,8 @@ The name of the StateType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass Ambient light - - + + Person is present changed The name of the EventType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor ---------- @@ -883,10 +944,10 @@ The name of the EventType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass La personne est présente changée - - - - + + + + Person is present The name of the ParamType (ThingClass: motionSensor, EventType: isPresent, ID: {e38ee39c-c77f-40b5-b122-4efc411da0ed}) ---------- @@ -898,8 +959,8 @@ The name of the StateType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass La personne est présente - - + + Last seen time changed The name of the EventType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor ---------- @@ -907,10 +968,10 @@ The name of the EventType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass Dernière fois vu le temps a changé - - - - + + + + Last seen time The name of the ParamType (ThingClass: motionSensor, EventType: lastSeenTime, ID: {ef2e564e-2443-448f-bcd9-f85a1126ee6a}) ---------- @@ -922,26 +983,26 @@ The name of the StateType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass Dernière fois qu'on l'a vu - + Philips Hue The name of the plugin PhilipsHue ({5f2e634b-b7f3-48ee-976a-b5ae22aa5c55}) Philips Hue - - - - - - - - - - - - - - + + + + + + + + + + + + + + reachable The name of the ParamType (ThingClass: dimmerSwitch2, EventType: connected, ID: {45f75511-7d72-410e-aed0-5720cc497bf8}) ---------- @@ -973,8 +1034,8 @@ The name of the StateType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass Accessible - - + + api version The name of the ParamType (ThingClass: bridge, EventType: apiVersion, ID: {7a230e89-c4ce-4276-90e0-6a9ddb890603}) ---------- @@ -982,8 +1043,8 @@ The name of the StateType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass Version API - - + + update status The name of the ParamType (ThingClass: bridge, EventType: updateStatus, ID: {16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) ---------- @@ -991,18 +1052,18 @@ The name of the StateType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass Statut de mise à jour - + Hue color light The name of the ThingClass ({0edba26c-96ab-44fb-a6a2-c0574d19630e}) Teinte, couleur, lumière - - - - - - + + + + + + color temperature The name of the ParamType (ThingClass: colorTemperatureLight, ActionType: colorTemperature, ID: {fee57738-45c7-48fe-a06b-1397376361f0}) ---------- @@ -1018,9 +1079,9 @@ The name of the StateType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass Température de couleur - - - + + + effect The name of the ParamType (ThingClass: colorLight, ActionType: effect, ID: {0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) ---------- @@ -1030,15 +1091,15 @@ The name of the StateType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass Effet - + Set effect The name of the ActionType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight Régler l’effet - - - + + + flash The name of the ActionType ({ab30a83a-539e-4b3a-860a-434e87ca165f}) of ThingClass dimmableLight ---------- @@ -1048,9 +1109,9 @@ The name of the ActionType ({d25dcfbc-d28c-4905-80e3-300ffb1248f5}) of ThingClas Flash - - - + + + alert The name of the ParamType (ThingClass: dimmableLight, ActionType: alert, ID: {a546f129-e0e5-497b-9536-2f7a132434df}) ---------- @@ -1060,20 +1121,20 @@ The name of the ParamType (ThingClass: colorLight, ActionType: alert, ID: {8ace6 Alarme - + Set brightness The name of the ActionType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight Régler la luminosité - + Hue Remote The name of the ThingClass ({bb482d39-67ef-46dc-88e9-7b181d642b28}) Télécommande Hue - - + + sensor id The name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {b8121363-321a-4569-bb34-a02f846aa9c5}) ---------- @@ -1081,8 +1142,8 @@ The name of the ParamType (ThingClass: remote, Type: thing, ID: {2ddb571b-149f-4 ID de capteur - - + + battery changed The name of the EventType ({cb6e045c-e305-4950-9cd4-fb3989912156}) of ThingClass dimmerSwitch2 ---------- @@ -1090,10 +1151,10 @@ The name of the EventType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass Batterie changée - - - - + + + + battery The name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryLevel, ID: {cb6e045c-e305-4950-9cd4-fb3989912156}) ---------- @@ -1105,10 +1166,10 @@ The name of the StateType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass Batterie - - - - + + + + battery critical The name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryCritical, ID: {88cc3794-3e83-47d4-8889-0b3246336bf7}) ---------- diff --git a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-it.ts b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-it.ts index c39633a8..8dde5895 100644 --- a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-it.ts +++ b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-it.ts @@ -4,53 +4,63 @@ IntegrationPluginPhilipsHue - - Please press the button on the Hue Bridge within 30 seconds before you continue - Premi il pulsante sullo Hue Bridge entro 30 secondi prima di continuare - - - + Not authenticated to bridge. Please reconfigure the bridge. Non autenticato a ponte. Si prega di riconfigurare il ponte. - - Error connecting to hue bridge. - Errore di collegamento al ponte di tinta. + + The pairing process failed. The link button has not been pressed. Please follow the on-screen instructions again. + - - + Received unexpected data from hue bridge. Received unexpected data from hue bridge. - - An error happened pairing the hue bridge. - E' successo un errore nell'accoppiare il ponte di tinta. + + Connecting to the Hue Bridge failed. Please make sure that your Hue Bridge is working and connected to the same network. + - + + Please press the button on the Hue Bridge within 30 seconds before you continue. + + + + + + The pairing process failed. Please make sure that your Hue Bridge is working. + + + + + Please make sure that your Hue bridge is working and follow the on-screen instructions again. + + + + The hue bridge has rejected the connection request. Il ponte tinta ha rifiutato la richiesta di collegamento. - + Error sending command to hue bridge. Errore nell'invio del comando a hue bridge. - + An unexpected error happened when sending the command to the hue bridge. Beim Senden des Befehls an die Farbtonbrücke trat ein unerwarteter Fehler auf. - + Philips Hue Motion sensor Philips Hue Bewegungssensor - + Philips Hue Outdoor sensor Philips Farbton Außensensor @@ -58,37 +68,31 @@ PhilipsHue - + Philips The name of the vendor ({0ae1e001-2aa6-47ed-b8c0-334c3728a68f}) Philips - - Hue gateway - The name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7}) - Gateway Hue - - - + host address The name of the ParamType (ThingClass: bridge, Type: thing, ID: {1845975b-1184-4440-bc0d-73d53a9f683c}) indirizzo host - + id The name of the ParamType (ThingClass: bridge, Type: thing, ID: {a496feb0-3b7b-46cb-a63a-e063447d6b1d}) id - - - - - - - + + + + + + + reachable changed The name of the EventType ({45f75511-7d72-410e-aed0-5720cc497bf8}) of ThingClass dimmerSwitch2 ---------- @@ -106,120 +110,144 @@ The name of the EventType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass raggiungibile modificato - + api version changed The name of the EventType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridge versione api modificata - + update status changed The name of the EventType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridge stato aggiornamento modificato - + search devices The name of the ActionType ({cca3f171-6318-44e7-a2ac-d841857c1c24}) of ThingClass bridge ricerca di dispositivi - + Serial Number (optional) The name of the ParamType (ThingClass: bridge, ActionType: searchNewDevices, ID: {1924bdb5-f8f1-4dcd-bc09-21ad7c5ce377}) Serienummer (optioneel) - + check updates The name of the ActionType ({07a85e91-d064-4bce-b017-13fd0c320c0b}) of ThingClass bridge verifica aggiornamenti - + Upgrade bridge The name of the ActionType ({6dfbc7c0-7372-42f6-82ba-e777cb32dc4c}) of ThingClass bridge Potenzia bridge - - + + + + Battery level - The name of the ParamType (ThingClass: smartButton, EventType: batteryLevel, ID: {a0a1b480-6822-49bc-b1b1-50c39764d255}) + The name of the ParamType (ThingClass: wallSwitch, EventType: batteryLevel, ID: {b025cab6-d128-43eb-ba63-b16861d6ab10}) +---------- +The name of the StateType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch +---------- +The name of the ParamType (ThingClass: smartButton, EventType: batteryLevel, ID: {a0a1b480-6822-49bc-b1b1-50c39764d255}) ---------- The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - + + Battery level changed - The name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton + The name of the EventType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch +---------- +The name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - + Button longpress The name of the EventType ({d5052592-044d-42e8-b98a-d3fe9f2f53ae}) of ThingClass dimmerSwitch2 - + Friends of Hue Switch The name of the ThingClass ({692bc4be-07b8-4b77-ab0b-a36185b17d76}) - + Hue Dimmer Switch V2 The name of the ThingClass ({2b40aea0-e0f3-4cde-b034-3ae8a69a5d9d}) - + Hue Motion Sensor The name of the ThingClass ({25b79fff-4b88-4af8-b06c-2fe246238790}) Hue Motion Sensor - + Hue On/Off light The name of the ThingClass ({f720f31d-9523-4a74-9f10-19cbc9edeb58}) - + Hue Smart Button The name of the ThingClass ({1e34a056-9f37-4741-b249-a5eca7a4ab4e}) Hue Smart Button - + Hue Smart plug The name of the ThingClass ({01438844-0048-4276-91f8-c93ac0a5171d}) - + + Hue Wall Switch Module + The name of the ThingClass ({e967027f-f8fc-410c-8b48-6ac4c42e2777}) + + + + Long pressed The name of the EventType ({25803922-37f1-47c8-ac00-2d3acb9eb634}) of ThingClass smartButton Pressato a lungo - - - + + + + Model ID The name of the ParamType (ThingClass: foh, Type: thing, ID: {664c7091-12eb-4402-8239-31da85f73d38}) ---------- The name of the ParamType (ThingClass: tap, Type: thing, ID: {62d92175-db3a-4da2-a72b-f58f34cb6911}) ---------- +The name of the ParamType (ThingClass: wallSwitch, Type: thing, ID: {71c2c485-6a09-4bcd-80e5-24cdc45d323f}) +---------- The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {9271179f-5fe1-4005-9f97-ccde33b1b2c4}) Model ID - - - + + Philips Hue Bridge + The name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7}) + + + + + + Powered The name of the ParamType (ThingClass: smartPlug, ActionType: power, ID: {77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) ---------- @@ -229,20 +257,23 @@ The name of the StateType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass - - - + + + + Sensor ID The name of the ParamType (ThingClass: foh, Type: thing, ID: {7559d16c-b56b-42e2-8347-65582fa276c0}) ---------- The name of the ParamType (ThingClass: tap, Type: thing, ID: {5eca2b24-8986-4487-bc12-50e91d023d97}) ---------- +The name of the ParamType (ThingClass: wallSwitch, Type: thing, ID: {62a9df8c-51b5-434f-9d5d-5fa97144076a}) +---------- The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {54744fcc-c052-4c16-a857-fbe0b791e538}) Sensor ID - - + + Software version The name of the ParamType (ThingClass: bridge, EventType: currentVersion, ID: {4c707b18-6604-4e6d-b6bc-4e27769c2adc}) ---------- @@ -250,26 +281,26 @@ The name of the StateType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass - + Software version changed The name of the EventType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge - + Switch The name of the ActionType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - + Switched on or off The name of the EventType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - - + + Time period The name of the ParamType (ThingClass: motionSensor, Type: settings, ID: {beedc4af-c107-4c53-be25-fd01a349fd35}) ---------- @@ -277,37 +308,43 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: settings, ID: {21d46 Periodo di tempo - - - + + + + Type The name of the ParamType (ThingClass: foh, Type: thing, ID: {16ca2ee1-d738-4f51-8f9a-53547d3d824e}) ---------- The name of the ParamType (ThingClass: tap, Type: thing, ID: {eace85b9-5369-466f-89eb-46c4de718305}) ---------- +The name of the ParamType (ThingClass: wallSwitch, Type: thing, ID: {08606780-2251-4c15-bb7d-7506535e14ed}) +---------- The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {7221aacc-1420-43f2-a05a-448a0f783713}) Type - - - + + + + UUID The name of the ParamType (ThingClass: foh, Type: thing, ID: {2ca66286-1caf-4e09-8e18-05bb7d7df314}) ---------- The name of the ParamType (ThingClass: tap, Type: thing, ID: {25cf4167-6c28-4497-9fa9-3d02faf4f3ed}) ---------- +The name of the ParamType (ThingClass: wallSwitch, Type: thing, ID: {4cdab881-5d2d-4443-816a-231bbb331f22}) +---------- The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {2378a06d-b748-445b-94e2-4dd885a54f22}) UUID - - - - - - - + + + + + + + model id The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {a5441712-5a4a-43a7-b797-3806cba86e1a}) ---------- @@ -325,13 +362,13 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {095a463b-f5 id modello - - - - - - - + + + + + + + type The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {87cf0d7a-9ac2-4694-9f5f-1c9c6692a6c5}) ---------- @@ -349,12 +386,12 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {3f3467ef-44 tipo - - - - - - + + + + + + uuid The name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {200b5daa-1023-49cb-a933-bdd1ac7df4bd}) ---------- @@ -370,11 +407,11 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {1a5129ca-00 uuid - - - - - + + + + + light id The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {90791861-bb27-4ade-8551-306af322b12d}) ---------- @@ -388,10 +425,10 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {491dc012-cc id illuminazione - - - - + + + + power changed The name of the EventType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight ---------- @@ -403,18 +440,18 @@ The name of the EventType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass potenza modificata - - - - - - - - - - - - + + + + + + + + + + + + power The name of the ParamType (ThingClass: onOffLight, ActionType: power, ID: {5dc5e71b-789e-4c68-abb6-1534c8af019e}) ---------- @@ -442,10 +479,10 @@ The name of the StateType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass potenza - - - - + + + + Set power The name of the ActionType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight ---------- @@ -457,8 +494,8 @@ The name of the ActionType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClas Imposta potenza - - + + color temperature changed The name of the EventType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight ---------- @@ -466,8 +503,8 @@ The name of the EventType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass temperatura del colore modificata - - + + Set color temperature The name of the ActionType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight ---------- @@ -475,15 +512,15 @@ The name of the ActionType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClas Temperatura del colore - + color changed The name of the EventType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight colore modificato - - - + + + color The name of the ParamType (ThingClass: colorLight, ActionType: color, ID: {d25423e7-b924-4b20-80b6-77eecc65d089}) ---------- @@ -493,15 +530,15 @@ The name of the StateType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colore - + Set color The name of the ActionType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight Imposta colore - - - + + + brightness changed The name of the EventType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight ---------- @@ -511,15 +548,15 @@ The name of the EventType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass luminosità modificata - - - - - - - - - + + + + + + + + + brightness The name of the ParamType (ThingClass: dimmableLight, ActionType: brightness, ID: {2f062912-1159-423b-8143-48a8e69b9348}) ---------- @@ -541,8 +578,8 @@ The name of the StateType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass luminosità - - + + Set brigtness The name of the ActionType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight ---------- @@ -550,26 +587,26 @@ The name of the ActionType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClas Imposta luminosità - + effect changed The name of the EventType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight effetto modificato - + Hue color temperature light The name of the ThingClass ({35f749f7-b60a-4922-bd25-1bdd2eddcbe3}) Tinta temperatura colore luce - + Hue dimmable light The name of the ThingClass ({4fa568ef-7a3a-422b-b0c0-206d37cb4eed}) Hue luce dimmerabile - - + + battery critical changed The name of the EventType ({88cc3794-3e83-47d4-8889-0b3246336bf7}) of ThingClass dimmerSwitch2 ---------- @@ -577,16 +614,19 @@ The name of the EventType ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass batteria critica modificata - - - - - + + + + + + Button pressed The name of the EventType ({2cc68bd3-ad73-4bf3-9905-639870d071bd}) of ThingClass foh ---------- The name of the EventType ({c45dd703-7cbd-48f7-88dc-31045cc3d39c}) of ThingClass tap ---------- +The name of the EventType ({4623b5ff-b999-4200-ba38-89435d78fcae}) of ThingClass wallSwitch +---------- The name of the EventType ({c809179e-effa-4717-9172-11df7e80d109}) of ThingClass smartButton ---------- The name of the EventType ({b7a5b3df-2c60-4b97-bf99-b97e6012a194}) of ThingClass dimmerSwitch2 @@ -595,17 +635,20 @@ The name of the EventType ({8da28cf1-2457-451e-953e-2685f8daeda8}) of ThingClass Pulsante premuto - - - - - - + + + + + + + Button name The name of the ParamType (ThingClass: foh, EventType: pressed, ID: {f1da229e-fce2-4329-8850-1c92b5bc5925}) ---------- The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b8a-4709-8abf-717cf213f4a4}) ---------- +The name of the ParamType (ThingClass: wallSwitch, EventType: pressed, ID: {adb4ec5e-e48f-4697-a876-e56e8458987a}) +---------- The name of the ParamType (ThingClass: dimmerSwitch2, EventType: longPressed, ID: {c03bb1ad-f8c9-4993-9d25-557ade2d2c13}) ---------- The name of the ParamType (ThingClass: dimmerSwitch2, EventType: pressed, ID: {562f2d4d-351e-4c2c-98bf-187b948587e4}) @@ -616,26 +659,26 @@ The name of the ParamType (ThingClass: remote, EventType: pressed, ID: {e4e3eb3a Nome pulsante - + Button longpressed The name of the EventType ({2c64561b-2381-4769-8e21-0e206c84bbcc}) of ThingClass remote Pulsante premuto a lungo - + Hue Tap The name of the ThingClass ({2b8c1fb8-67ee-42e9-947b-16e0a09f0d4e}) Hue Tap - + Hue Outdoor Sensor The name of the ThingClass ({32dc6390-600f-4eb4-b349-cc2d6796a82a}) Hue Outdoor Sensor - - + + Model id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {9cb488b7-a76f-4389-a6b5-b36250246f2b}) ---------- @@ -643,9 +686,9 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca8632d Model id - - - + + + Uuid The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {5b8a02b9-3a2b-4178-914d-c62d03281d00}) ---------- @@ -655,8 +698,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {4a15f861 Uuid - - + + Temperature sensor id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {c9e81e29-f8d4-4370-ada2-f48b32def1fe}) ---------- @@ -664,8 +707,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {c732fefd Temperature sensor id - - + + Temperature sensor uuid The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {aa29b5f1-5589-4fa9-bbd4-8869723c037c}) ---------- @@ -673,8 +716,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {2fdb34e8 Temperature sensor uuid - - + + Presence sensor id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {337b2c6c-e3bf-495c-943c-b45fa08add37}) ---------- @@ -682,8 +725,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca82a24 Presence sensor id - - + + Presence sensor uuid The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {3829bddb-e722-4724-be36-3a8402738581}) ---------- @@ -691,8 +734,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {7d55ed97 Presence sensor uuid - - + + Light sensor id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {04fba73e-730e-437a-b6f2-10df21296af5}) ---------- @@ -700,8 +743,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {22a164fc Light sensor id - - + + Light sensor uuid The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {171cc2e7-7a95-4116-986c-66d75e3e23eb}) ---------- @@ -709,12 +752,13 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {db678144 Light sensor uuid - - - - - - + + + + + + + Reachable changed The name of the EventType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug ---------- @@ -726,22 +770,26 @@ The name of the EventType ({840b220c-656b-4f56-bbaa-ce818cffad64}) of ThingClass ---------- The name of the EventType ({5e21b032-1230-4e93-8543-0c4773da17d3}) of ThingClass tap ---------- +The name of the EventType ({b51071af-1290-41f1-b2eb-e84527342ade}) of ThingClass wallSwitch +---------- The name of the EventType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass smartButton Reachable changed - - - - - - - - - - - - + + + + + + + + + + + + + + Reachable The name of the ParamType (ThingClass: smartPlug, EventType: connected, ID: {6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) ---------- @@ -763,14 +811,18 @@ The name of the ParamType (ThingClass: tap, EventType: connected, ID: {5e21b032- ---------- The name of the StateType ({5e21b032-1230-4e93-8543-0c4773da17d3}) of ThingClass tap ---------- +The name of the ParamType (ThingClass: wallSwitch, EventType: connected, ID: {b51071af-1290-41f1-b2eb-e84527342ade}) +---------- +The name of the StateType ({b51071af-1290-41f1-b2eb-e84527342ade}) of ThingClass wallSwitch +---------- The name of the ParamType (ThingClass: smartButton, EventType: connected, ID: {b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) ---------- The name of the StateType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass smartButton Raggiungibile - - + + Battery changed The name of the EventType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ---------- @@ -778,10 +830,10 @@ The name of the EventType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass Sostituzione della batteria - - - - + + + + Battery The name of the ParamType (ThingClass: motionSensor, EventType: batteryLevel, ID: {ac463b30-24af-4352-84da-19a3ffc906bd}) ---------- @@ -793,24 +845,29 @@ The name of the StateType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass Batteria - - - + + + + Battery critical changed The name of the EventType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor ---------- The name of the EventType ({617aa352-789c-46e7-bf55-7455b1e5018e}) of ThingClass outdoorSensor ---------- +The name of the EventType ({7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) of ThingClass wallSwitch +---------- The name of the EventType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass smartButton Sostituzione della batteria critica - - - - - - + + + + + + + + Battery critical The name of the ParamType (ThingClass: motionSensor, EventType: batteryCritical, ID: {d7c4e143-6f03-411e-a12e-dd22806270fd}) ---------- @@ -820,14 +877,18 @@ The name of the ParamType (ThingClass: outdoorSensor, EventType: batteryCritical ---------- The name of the StateType ({617aa352-789c-46e7-bf55-7455b1e5018e}) of ThingClass outdoorSensor ---------- +The name of the ParamType (ThingClass: wallSwitch, EventType: batteryCritical, ID: {7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) +---------- +The name of the StateType ({7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) of ThingClass wallSwitch +---------- The name of the ParamType (ThingClass: smartButton, EventType: batteryCritical, ID: {7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) ---------- The name of the StateType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass smartButton Batteria critica - - + + Temperature changed The name of the EventType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ---------- @@ -835,10 +896,10 @@ The name of the EventType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass Variazione di temperatura - - - - + + + + Temperature The name of the ParamType (ThingClass: motionSensor, EventType: temperature, ID: {63ee79f7-702b-48c1-86cf-8ddebb78bae6}) ---------- @@ -850,8 +911,8 @@ The name of the StateType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass Temperatura - - + + Ambient light changed The name of the EventType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor ---------- @@ -859,10 +920,10 @@ The name of the EventType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass Luce ambiente cambiata - - - - + + + + Ambient light The name of the ParamType (ThingClass: motionSensor, EventType: lightIntensity, ID: {064f48c1-f86d-4a0a-bdae-3420123dff3f}) ---------- @@ -874,8 +935,8 @@ The name of the StateType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass Luce ambiente - - + + Person is present changed The name of the EventType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor ---------- @@ -883,10 +944,10 @@ The name of the EventType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass Persona presente cambiata - - - - + + + + Person is present The name of the ParamType (ThingClass: motionSensor, EventType: isPresent, ID: {e38ee39c-c77f-40b5-b122-4efc411da0ed}) ---------- @@ -898,8 +959,8 @@ The name of the StateType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass La persona è presente - - + + Last seen time changed The name of the EventType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor ---------- @@ -907,10 +968,10 @@ The name of the EventType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass L'ultima volta che è stato visto è cambiato - - - - + + + + Last seen time The name of the ParamType (ThingClass: motionSensor, EventType: lastSeenTime, ID: {ef2e564e-2443-448f-bcd9-f85a1126ee6a}) ---------- @@ -922,26 +983,26 @@ The name of the StateType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass Tempo visto l'ultima volta - + Philips Hue The name of the plugin PhilipsHue ({5f2e634b-b7f3-48ee-976a-b5ae22aa5c55}) Philips Hue - - - - - - - - - - - - - - + + + + + + + + + + + + + + reachable The name of the ParamType (ThingClass: dimmerSwitch2, EventType: connected, ID: {45f75511-7d72-410e-aed0-5720cc497bf8}) ---------- @@ -973,8 +1034,8 @@ The name of the StateType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass raggiungibile - - + + api version The name of the ParamType (ThingClass: bridge, EventType: apiVersion, ID: {7a230e89-c4ce-4276-90e0-6a9ddb890603}) ---------- @@ -982,8 +1043,8 @@ The name of the StateType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass versione api - - + + update status The name of the ParamType (ThingClass: bridge, EventType: updateStatus, ID: {16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) ---------- @@ -991,18 +1052,18 @@ The name of the StateType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass stato aggiornamento - + Hue color light The name of the ThingClass ({0edba26c-96ab-44fb-a6a2-c0574d19630e}) Hue colore luce - - - - - - + + + + + + color temperature The name of the ParamType (ThingClass: colorTemperatureLight, ActionType: colorTemperature, ID: {fee57738-45c7-48fe-a06b-1397376361f0}) ---------- @@ -1018,9 +1079,9 @@ The name of the StateType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass temperatura colore - - - + + + effect The name of the ParamType (ThingClass: colorLight, ActionType: effect, ID: {0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) ---------- @@ -1030,15 +1091,15 @@ The name of the StateType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass effetto - + Set effect The name of the ActionType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight Imposta effetto - - - + + + flash The name of the ActionType ({ab30a83a-539e-4b3a-860a-434e87ca165f}) of ThingClass dimmableLight ---------- @@ -1048,9 +1109,9 @@ The name of the ActionType ({d25dcfbc-d28c-4905-80e3-300ffb1248f5}) of ThingClas flash - - - + + + alert The name of the ParamType (ThingClass: dimmableLight, ActionType: alert, ID: {a546f129-e0e5-497b-9536-2f7a132434df}) ---------- @@ -1060,20 +1121,20 @@ The name of the ParamType (ThingClass: colorLight, ActionType: alert, ID: {8ace6 sveglia - + Set brightness The name of the ActionType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight Imposta luminosità - + Hue Remote The name of the ThingClass ({bb482d39-67ef-46dc-88e9-7b181d642b28}) Telecomando Hue - - + + sensor id The name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {b8121363-321a-4569-bb34-a02f846aa9c5}) ---------- @@ -1081,8 +1142,8 @@ The name of the ParamType (ThingClass: remote, Type: thing, ID: {2ddb571b-149f-4 id sensore - - + + battery changed The name of the EventType ({cb6e045c-e305-4950-9cd4-fb3989912156}) of ThingClass dimmerSwitch2 ---------- @@ -1090,10 +1151,10 @@ The name of the EventType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass batteria modificata - - - - + + + + battery The name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryLevel, ID: {cb6e045c-e305-4950-9cd4-fb3989912156}) ---------- @@ -1105,10 +1166,10 @@ The name of the StateType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass batteria - - - - + + + + battery critical The name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryCritical, ID: {88cc3794-3e83-47d4-8889-0b3246336bf7}) ---------- diff --git a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-nl.ts b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-nl.ts index 68c3f7b8..7ae4e39f 100644 --- a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-nl.ts +++ b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-nl.ts @@ -4,53 +4,63 @@ IntegrationPluginPhilipsHue - - Please press the button on the Hue Bridge within 30 seconds before you continue - Druk voordat u verder gaat binnen 30 seconden de knop op de Hue Bridge - - - + Not authenticated to bridge. Please reconfigure the bridge. Niet geverifieerd om te overbruggen. Gelieve de brug te herconfigureren. - - Error connecting to hue bridge. - Fout bij het aansluiten op de kleurenbrug. + + The pairing process failed. The link button has not been pressed. Please follow the on-screen instructions again. + - - + Received unexpected data from hue bridge. Onverwachte gegevens ontvangen van tintenbrug. - - An error happened pairing the hue bridge. - Er is een fout opgetreden bij het koppelen van de kleurschakeringsbrug. + + Connecting to the Hue Bridge failed. Please make sure that your Hue Bridge is working and connected to the same network. + - + + Please press the button on the Hue Bridge within 30 seconds before you continue. + + + + + + The pairing process failed. Please make sure that your Hue Bridge is working. + + + + + Please make sure that your Hue bridge is working and follow the on-screen instructions again. + + + + The hue bridge has rejected the connection request. De kleurstofbrug heeft de aansluitingsaanvraag afgewezen. - + Error sending command to hue bridge. Fout bij het sturen van het commando naar de Hue Bridge. - + An unexpected error happened when sending the command to the hue bridge. Er is een onverwachte fout opgetreden bij het sturen van het commando naar de Hue Bridge. - + Philips Hue Motion sensor Philips Hue Motion sensor - + Philips Hue Outdoor sensor Philips Hue Outdoor sensor @@ -58,37 +68,31 @@ PhilipsHue - + Philips The name of the vendor ({0ae1e001-2aa6-47ed-b8c0-334c3728a68f}) Philips - - Hue gateway - The name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7}) - Hue gateway - - - + host address The name of the ParamType (ThingClass: bridge, Type: thing, ID: {1845975b-1184-4440-bc0d-73d53a9f683c}) host-adres - + id The name of the ParamType (ThingClass: bridge, Type: thing, ID: {a496feb0-3b7b-46cb-a63a-e063447d6b1d}) id - - - - - - - + + + + + + + reachable changed The name of the EventType ({45f75511-7d72-410e-aed0-5720cc497bf8}) of ThingClass dimmerSwitch2 ---------- @@ -106,120 +110,144 @@ The name of the EventType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass bereikbaar gewijzigd - + api version changed The name of the EventType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridge api-versie gewijzigd - + update status changed The name of the EventType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridge updatestatus gewijzigd - + search devices The name of the ActionType ({cca3f171-6318-44e7-a2ac-d841857c1c24}) of ThingClass bridge apparaten zoeken - + Serial Number (optional) The name of the ParamType (ThingClass: bridge, ActionType: searchNewDevices, ID: {1924bdb5-f8f1-4dcd-bc09-21ad7c5ce377}) Serienummer (optioneel) - + check updates The name of the ActionType ({07a85e91-d064-4bce-b017-13fd0c320c0b}) of ThingClass bridge controleren op updates - + Upgrade bridge The name of the ActionType ({6dfbc7c0-7372-42f6-82ba-e777cb32dc4c}) of ThingClass bridge Upgrade bridge - - + + + + Battery level - The name of the ParamType (ThingClass: smartButton, EventType: batteryLevel, ID: {a0a1b480-6822-49bc-b1b1-50c39764d255}) + The name of the ParamType (ThingClass: wallSwitch, EventType: batteryLevel, ID: {b025cab6-d128-43eb-ba63-b16861d6ab10}) +---------- +The name of the StateType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch +---------- +The name of the ParamType (ThingClass: smartButton, EventType: batteryLevel, ID: {a0a1b480-6822-49bc-b1b1-50c39764d255}) ---------- The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - + + Battery level changed - The name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton + The name of the EventType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch +---------- +The name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - + Button longpress The name of the EventType ({d5052592-044d-42e8-b98a-d3fe9f2f53ae}) of ThingClass dimmerSwitch2 - + Friends of Hue Switch The name of the ThingClass ({692bc4be-07b8-4b77-ab0b-a36185b17d76}) - + Hue Dimmer Switch V2 The name of the ThingClass ({2b40aea0-e0f3-4cde-b034-3ae8a69a5d9d}) - + Hue Motion Sensor The name of the ThingClass ({25b79fff-4b88-4af8-b06c-2fe246238790}) Hue Motion Sensor - + Hue On/Off light The name of the ThingClass ({f720f31d-9523-4a74-9f10-19cbc9edeb58}) - + Hue Smart Button The name of the ThingClass ({1e34a056-9f37-4741-b249-a5eca7a4ab4e}) Hue Smart Button - + Hue Smart plug The name of the ThingClass ({01438844-0048-4276-91f8-c93ac0a5171d}) - + + Hue Wall Switch Module + The name of the ThingClass ({e967027f-f8fc-410c-8b48-6ac4c42e2777}) + + + + Long pressed The name of the EventType ({25803922-37f1-47c8-ac00-2d3acb9eb634}) of ThingClass smartButton Lang ingedrukt - - - + + + + Model ID The name of the ParamType (ThingClass: foh, Type: thing, ID: {664c7091-12eb-4402-8239-31da85f73d38}) ---------- The name of the ParamType (ThingClass: tap, Type: thing, ID: {62d92175-db3a-4da2-a72b-f58f34cb6911}) ---------- +The name of the ParamType (ThingClass: wallSwitch, Type: thing, ID: {71c2c485-6a09-4bcd-80e5-24cdc45d323f}) +---------- The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {9271179f-5fe1-4005-9f97-ccde33b1b2c4}) Model ID - - - + + Philips Hue Bridge + The name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7}) + + + + + + Powered The name of the ParamType (ThingClass: smartPlug, ActionType: power, ID: {77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) ---------- @@ -229,20 +257,23 @@ The name of the StateType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass - - - + + + + Sensor ID The name of the ParamType (ThingClass: foh, Type: thing, ID: {7559d16c-b56b-42e2-8347-65582fa276c0}) ---------- The name of the ParamType (ThingClass: tap, Type: thing, ID: {5eca2b24-8986-4487-bc12-50e91d023d97}) ---------- +The name of the ParamType (ThingClass: wallSwitch, Type: thing, ID: {62a9df8c-51b5-434f-9d5d-5fa97144076a}) +---------- The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {54744fcc-c052-4c16-a857-fbe0b791e538}) Sensor ID - - + + Software version The name of the ParamType (ThingClass: bridge, EventType: currentVersion, ID: {4c707b18-6604-4e6d-b6bc-4e27769c2adc}) ---------- @@ -250,26 +281,26 @@ The name of the StateType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass - + Software version changed The name of the EventType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge - + Switch The name of the ActionType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - + Switched on or off The name of the EventType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - - + + Time period The name of the ParamType (ThingClass: motionSensor, Type: settings, ID: {beedc4af-c107-4c53-be25-fd01a349fd35}) ---------- @@ -277,37 +308,43 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: settings, ID: {21d46 Tijdspanne - - - + + + + Type The name of the ParamType (ThingClass: foh, Type: thing, ID: {16ca2ee1-d738-4f51-8f9a-53547d3d824e}) ---------- The name of the ParamType (ThingClass: tap, Type: thing, ID: {eace85b9-5369-466f-89eb-46c4de718305}) ---------- +The name of the ParamType (ThingClass: wallSwitch, Type: thing, ID: {08606780-2251-4c15-bb7d-7506535e14ed}) +---------- The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {7221aacc-1420-43f2-a05a-448a0f783713}) Type - - - + + + + UUID The name of the ParamType (ThingClass: foh, Type: thing, ID: {2ca66286-1caf-4e09-8e18-05bb7d7df314}) ---------- The name of the ParamType (ThingClass: tap, Type: thing, ID: {25cf4167-6c28-4497-9fa9-3d02faf4f3ed}) ---------- +The name of the ParamType (ThingClass: wallSwitch, Type: thing, ID: {4cdab881-5d2d-4443-816a-231bbb331f22}) +---------- The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {2378a06d-b748-445b-94e2-4dd885a54f22}) UUID - - - - - - - + + + + + + + model id The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {a5441712-5a4a-43a7-b797-3806cba86e1a}) ---------- @@ -325,13 +362,13 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {095a463b-f5 model-id - - - - - - - + + + + + + + type The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {87cf0d7a-9ac2-4694-9f5f-1c9c6692a6c5}) ---------- @@ -349,12 +386,12 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {3f3467ef-44 type - - - - - - + + + + + + uuid The name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {200b5daa-1023-49cb-a933-bdd1ac7df4bd}) ---------- @@ -370,11 +407,11 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {1a5129ca-00 uuid - - - - - + + + + + light id The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {90791861-bb27-4ade-8551-306af322b12d}) ---------- @@ -388,10 +425,10 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {491dc012-cc lamp-id - - - - + + + + power changed The name of the EventType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight ---------- @@ -403,18 +440,18 @@ The name of the EventType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass vermogen gewijzigd - - - - - - - - - - - - + + + + + + + + + + + + power The name of the ParamType (ThingClass: onOffLight, ActionType: power, ID: {5dc5e71b-789e-4c68-abb6-1534c8af019e}) ---------- @@ -442,10 +479,10 @@ The name of the StateType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass vermogen - - - - + + + + Set power The name of the ActionType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight ---------- @@ -457,8 +494,8 @@ The name of the ActionType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClas Vermogen instellen - - + + color temperature changed The name of the EventType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight ---------- @@ -466,8 +503,8 @@ The name of the EventType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass kleurtemperatuur gewijzigd - - + + Set color temperature The name of the ActionType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight ---------- @@ -475,15 +512,15 @@ The name of the ActionType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClas Kleurtemperatuur instellen - + color changed The name of the EventType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight Kleur gewijzigd - - - + + + color The name of the ParamType (ThingClass: colorLight, ActionType: color, ID: {d25423e7-b924-4b20-80b6-77eecc65d089}) ---------- @@ -493,15 +530,15 @@ The name of the StateType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass kleur - + Set color The name of the ActionType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight Kleur instellen - - - + + + brightness changed The name of the EventType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight ---------- @@ -511,15 +548,15 @@ The name of the EventType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass helderheid gewijzigd - - - - - - - - - + + + + + + + + + brightness The name of the ParamType (ThingClass: dimmableLight, ActionType: brightness, ID: {2f062912-1159-423b-8143-48a8e69b9348}) ---------- @@ -541,8 +578,8 @@ The name of the StateType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass helderheid - - + + Set brigtness The name of the ActionType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight ---------- @@ -550,26 +587,26 @@ The name of the ActionType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClas Helderheid instellen - + effect changed The name of the EventType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight effect gewijzigd - + Hue color temperature light The name of the ThingClass ({35f749f7-b60a-4922-bd25-1bdd2eddcbe3}) Hue kleurtemperatuur licht - + Hue dimmable light The name of the ThingClass ({4fa568ef-7a3a-422b-b0c0-206d37cb4eed}) Hue dimbaar licht - - + + battery critical changed The name of the EventType ({88cc3794-3e83-47d4-8889-0b3246336bf7}) of ThingClass dimmerSwitch2 ---------- @@ -577,16 +614,19 @@ The name of the EventType ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass batterij kritiek gewijzigd - - - - - + + + + + + Button pressed The name of the EventType ({2cc68bd3-ad73-4bf3-9905-639870d071bd}) of ThingClass foh ---------- The name of the EventType ({c45dd703-7cbd-48f7-88dc-31045cc3d39c}) of ThingClass tap ---------- +The name of the EventType ({4623b5ff-b999-4200-ba38-89435d78fcae}) of ThingClass wallSwitch +---------- The name of the EventType ({c809179e-effa-4717-9172-11df7e80d109}) of ThingClass smartButton ---------- The name of the EventType ({b7a5b3df-2c60-4b97-bf99-b97e6012a194}) of ThingClass dimmerSwitch2 @@ -595,17 +635,20 @@ The name of the EventType ({8da28cf1-2457-451e-953e-2685f8daeda8}) of ThingClass Knop ingedrukt - - - - - - + + + + + + + Button name The name of the ParamType (ThingClass: foh, EventType: pressed, ID: {f1da229e-fce2-4329-8850-1c92b5bc5925}) ---------- The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b8a-4709-8abf-717cf213f4a4}) ---------- +The name of the ParamType (ThingClass: wallSwitch, EventType: pressed, ID: {adb4ec5e-e48f-4697-a876-e56e8458987a}) +---------- The name of the ParamType (ThingClass: dimmerSwitch2, EventType: longPressed, ID: {c03bb1ad-f8c9-4993-9d25-557ade2d2c13}) ---------- The name of the ParamType (ThingClass: dimmerSwitch2, EventType: pressed, ID: {562f2d4d-351e-4c2c-98bf-187b948587e4}) @@ -616,26 +659,26 @@ The name of the ParamType (ThingClass: remote, EventType: pressed, ID: {e4e3eb3a Naam van de knop - + Button longpressed The name of the EventType ({2c64561b-2381-4769-8e21-0e206c84bbcc}) of ThingClass remote Knop lang ingedrukt - + Hue Tap The name of the ThingClass ({2b8c1fb8-67ee-42e9-947b-16e0a09f0d4e}) Hue Tap - + Hue Outdoor Sensor The name of the ThingClass ({32dc6390-600f-4eb4-b349-cc2d6796a82a}) Hue Outdoor Sensor - - + + Model id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {9cb488b7-a76f-4389-a6b5-b36250246f2b}) ---------- @@ -643,9 +686,9 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca8632d Model id - - - + + + Uuid The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {5b8a02b9-3a2b-4178-914d-c62d03281d00}) ---------- @@ -655,8 +698,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {4a15f861 UUID - - + + Temperature sensor id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {c9e81e29-f8d4-4370-ada2-f48b32def1fe}) ---------- @@ -664,8 +707,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {c732fefd Temperatuursensor id - - + + Temperature sensor uuid The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {aa29b5f1-5589-4fa9-bbd4-8869723c037c}) ---------- @@ -673,8 +716,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {2fdb34e8 Temperatuursensor uuid - - + + Presence sensor id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {337b2c6c-e3bf-495c-943c-b45fa08add37}) ---------- @@ -682,8 +725,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca82a24 Aanwezigheidssensor id - - + + Presence sensor uuid The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {3829bddb-e722-4724-be36-3a8402738581}) ---------- @@ -691,8 +734,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {7d55ed97 Aanwezigheidssensor uuid - - + + Light sensor id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {04fba73e-730e-437a-b6f2-10df21296af5}) ---------- @@ -700,8 +743,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {22a164fc Lichtsensor id - - + + Light sensor uuid The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {171cc2e7-7a95-4116-986c-66d75e3e23eb}) ---------- @@ -709,12 +752,13 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {db678144 Light sensor uuid - - - - - - + + + + + + + Reachable changed The name of the EventType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug ---------- @@ -726,22 +770,26 @@ The name of the EventType ({840b220c-656b-4f56-bbaa-ce818cffad64}) of ThingClass ---------- The name of the EventType ({5e21b032-1230-4e93-8543-0c4773da17d3}) of ThingClass tap ---------- +The name of the EventType ({b51071af-1290-41f1-b2eb-e84527342ade}) of ThingClass wallSwitch +---------- The name of the EventType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass smartButton Bereikbaar veranderd - - - - - - - - - - - - + + + + + + + + + + + + + + Reachable The name of the ParamType (ThingClass: smartPlug, EventType: connected, ID: {6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) ---------- @@ -763,14 +811,18 @@ The name of the ParamType (ThingClass: tap, EventType: connected, ID: {5e21b032- ---------- The name of the StateType ({5e21b032-1230-4e93-8543-0c4773da17d3}) of ThingClass tap ---------- +The name of the ParamType (ThingClass: wallSwitch, EventType: connected, ID: {b51071af-1290-41f1-b2eb-e84527342ade}) +---------- +The name of the StateType ({b51071af-1290-41f1-b2eb-e84527342ade}) of ThingClass wallSwitch +---------- The name of the ParamType (ThingClass: smartButton, EventType: connected, ID: {b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) ---------- The name of the StateType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass smartButton Bereikbaar - - + + Battery changed The name of the EventType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ---------- @@ -778,10 +830,10 @@ The name of the EventType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass Batterij vervangen - - - - + + + + Battery The name of the ParamType (ThingClass: motionSensor, EventType: batteryLevel, ID: {ac463b30-24af-4352-84da-19a3ffc906bd}) ---------- @@ -793,24 +845,29 @@ The name of the StateType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass Batterij - - - + + + + Battery critical changed The name of the EventType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor ---------- The name of the EventType ({617aa352-789c-46e7-bf55-7455b1e5018e}) of ThingClass outdoorSensor ---------- +The name of the EventType ({7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) of ThingClass wallSwitch +---------- The name of the EventType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass smartButton Kritieke batterij vervangen - - - - - - + + + + + + + + Battery critical The name of the ParamType (ThingClass: motionSensor, EventType: batteryCritical, ID: {d7c4e143-6f03-411e-a12e-dd22806270fd}) ---------- @@ -820,14 +877,18 @@ The name of the ParamType (ThingClass: outdoorSensor, EventType: batteryCritical ---------- The name of the StateType ({617aa352-789c-46e7-bf55-7455b1e5018e}) of ThingClass outdoorSensor ---------- +The name of the ParamType (ThingClass: wallSwitch, EventType: batteryCritical, ID: {7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) +---------- +The name of the StateType ({7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) of ThingClass wallSwitch +---------- The name of the ParamType (ThingClass: smartButton, EventType: batteryCritical, ID: {7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) ---------- The name of the StateType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass smartButton Batterijkritisch - - + + Temperature changed The name of the EventType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ---------- @@ -835,10 +896,10 @@ The name of the EventType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass Temperatuur veranderd - - - - + + + + Temperature The name of the ParamType (ThingClass: motionSensor, EventType: temperature, ID: {63ee79f7-702b-48c1-86cf-8ddebb78bae6}) ---------- @@ -850,8 +911,8 @@ The name of the StateType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass Temperatuur - - + + Ambient light changed The name of the EventType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor ---------- @@ -859,10 +920,10 @@ The name of the EventType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass Omgevingslicht veranderd - - - - + + + + Ambient light The name of the ParamType (ThingClass: motionSensor, EventType: lightIntensity, ID: {064f48c1-f86d-4a0a-bdae-3420123dff3f}) ---------- @@ -874,8 +935,8 @@ The name of the StateType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass Omgevingslicht - - + + Person is present changed The name of the EventType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor ---------- @@ -883,10 +944,10 @@ The name of the EventType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass Persoon is aanwezig veranderd - - - - + + + + Person is present The name of the ParamType (ThingClass: motionSensor, EventType: isPresent, ID: {e38ee39c-c77f-40b5-b122-4efc411da0ed}) ---------- @@ -898,8 +959,8 @@ The name of the StateType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass Persoon is aanwezig - - + + Last seen time changed The name of the EventType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor ---------- @@ -907,10 +968,10 @@ The name of the EventType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass Laatst gezien is de tijd veranderd - - - - + + + + Last seen time The name of the ParamType (ThingClass: motionSensor, EventType: lastSeenTime, ID: {ef2e564e-2443-448f-bcd9-f85a1126ee6a}) ---------- @@ -922,26 +983,26 @@ The name of the StateType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass Laatste keer gezien - + Philips Hue The name of the plugin PhilipsHue ({5f2e634b-b7f3-48ee-976a-b5ae22aa5c55}) Philips Hue - - - - - - - - - - - - - - + + + + + + + + + + + + + + reachable The name of the ParamType (ThingClass: dimmerSwitch2, EventType: connected, ID: {45f75511-7d72-410e-aed0-5720cc497bf8}) ---------- @@ -973,8 +1034,8 @@ The name of the StateType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass bereikbaar - - + + api version The name of the ParamType (ThingClass: bridge, EventType: apiVersion, ID: {7a230e89-c4ce-4276-90e0-6a9ddb890603}) ---------- @@ -982,8 +1043,8 @@ The name of the StateType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass api-versie - - + + update status The name of the ParamType (ThingClass: bridge, EventType: updateStatus, ID: {16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) ---------- @@ -991,18 +1052,18 @@ The name of the StateType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass updatestatus - + Hue color light The name of the ThingClass ({0edba26c-96ab-44fb-a6a2-c0574d19630e}) Hue color light - - - - - - + + + + + + color temperature The name of the ParamType (ThingClass: colorTemperatureLight, ActionType: colorTemperature, ID: {fee57738-45c7-48fe-a06b-1397376361f0}) ---------- @@ -1018,9 +1079,9 @@ The name of the StateType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass kleurtemperatuur - - - + + + effect The name of the ParamType (ThingClass: colorLight, ActionType: effect, ID: {0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) ---------- @@ -1030,15 +1091,15 @@ The name of the StateType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass effect - + Set effect The name of the ActionType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight Effect instellen - - - + + + flash The name of the ActionType ({ab30a83a-539e-4b3a-860a-434e87ca165f}) of ThingClass dimmableLight ---------- @@ -1048,9 +1109,9 @@ The name of the ActionType ({d25dcfbc-d28c-4905-80e3-300ffb1248f5}) of ThingClas snel opkomen - - - + + + alert The name of the ParamType (ThingClass: dimmableLight, ActionType: alert, ID: {a546f129-e0e5-497b-9536-2f7a132434df}) ---------- @@ -1060,20 +1121,20 @@ The name of the ParamType (ThingClass: colorLight, ActionType: alert, ID: {8ace6 waarschuwing - + Set brightness The name of the ActionType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight Helderheid instellen - + Hue Remote The name of the ThingClass ({bb482d39-67ef-46dc-88e9-7b181d642b28}) Hue afstandsbediening - - + + sensor id The name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {b8121363-321a-4569-bb34-a02f846aa9c5}) ---------- @@ -1081,8 +1142,8 @@ The name of the ParamType (ThingClass: remote, Type: thing, ID: {2ddb571b-149f-4 sensor-id - - + + battery changed The name of the EventType ({cb6e045c-e305-4950-9cd4-fb3989912156}) of ThingClass dimmerSwitch2 ---------- @@ -1090,10 +1151,10 @@ The name of the EventType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass batterij vervangen - - - - + + + + battery The name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryLevel, ID: {cb6e045c-e305-4950-9cd4-fb3989912156}) ---------- @@ -1105,10 +1166,10 @@ The name of the StateType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass batterij - - - - + + + + battery critical The name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryCritical, ID: {88cc3794-3e83-47d4-8889-0b3246336bf7}) ---------- diff --git a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-pt.ts b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-pt.ts index f30aade5..1a61a3b7 100644 --- a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-pt.ts +++ b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-pt.ts @@ -4,53 +4,63 @@ IntegrationPluginPhilipsHue - - Please press the button on the Hue Bridge within 30 seconds before you continue - Pressione o botão na Hue Bridge dentro de 30 segundos antes de continuar - - - + Not authenticated to bridge. Please reconfigure the bridge. - - Error connecting to hue bridge. + + The pairing process failed. The link button has not been pressed. Please follow the on-screen instructions again. - - + Received unexpected data from hue bridge. - - An error happened pairing the hue bridge. + + Connecting to the Hue Bridge failed. Please make sure that your Hue Bridge is working and connected to the same network. - + + Please press the button on the Hue Bridge within 30 seconds before you continue. + + + + + + The pairing process failed. Please make sure that your Hue Bridge is working. + + + + + Please make sure that your Hue bridge is working and follow the on-screen instructions again. + + + + The hue bridge has rejected the connection request. - + Error sending command to hue bridge. - + An unexpected error happened when sending the command to the hue bridge. - + Philips Hue Motion sensor - + Philips Hue Outdoor sensor @@ -58,37 +68,31 @@ PhilipsHue - + Philips The name of the vendor ({0ae1e001-2aa6-47ed-b8c0-334c3728a68f}) Philips - - Hue gateway - The name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7}) - Gateway Hue - - - + host address The name of the ParamType (ThingClass: bridge, Type: thing, ID: {1845975b-1184-4440-bc0d-73d53a9f683c}) endereço host - + id The name of the ParamType (ThingClass: bridge, Type: thing, ID: {a496feb0-3b7b-46cb-a63a-e063447d6b1d}) id - - - - - - - + + + + + + + reachable changed The name of the EventType ({45f75511-7d72-410e-aed0-5720cc497bf8}) of ThingClass dimmerSwitch2 ---------- @@ -106,120 +110,144 @@ The name of the EventType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass acessível alterado - + api version changed The name of the EventType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridge versão api alterada - + update status changed The name of the EventType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridge estado de atualização alterado - + search devices The name of the ActionType ({cca3f171-6318-44e7-a2ac-d841857c1c24}) of ThingClass bridge dispositivos de pesquisa - + Serial Number (optional) The name of the ParamType (ThingClass: bridge, ActionType: searchNewDevices, ID: {1924bdb5-f8f1-4dcd-bc09-21ad7c5ce377}) - + check updates The name of the ActionType ({07a85e91-d064-4bce-b017-13fd0c320c0b}) of ThingClass bridge verificar atualizações - + Upgrade bridge The name of the ActionType ({6dfbc7c0-7372-42f6-82ba-e777cb32dc4c}) of ThingClass bridge atualizar Bridge - - + + + + Battery level - The name of the ParamType (ThingClass: smartButton, EventType: batteryLevel, ID: {a0a1b480-6822-49bc-b1b1-50c39764d255}) + The name of the ParamType (ThingClass: wallSwitch, EventType: batteryLevel, ID: {b025cab6-d128-43eb-ba63-b16861d6ab10}) +---------- +The name of the StateType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch +---------- +The name of the ParamType (ThingClass: smartButton, EventType: batteryLevel, ID: {a0a1b480-6822-49bc-b1b1-50c39764d255}) ---------- The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - + + Battery level changed - The name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton + The name of the EventType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch +---------- +The name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - + Button longpress The name of the EventType ({d5052592-044d-42e8-b98a-d3fe9f2f53ae}) of ThingClass dimmerSwitch2 - + Friends of Hue Switch The name of the ThingClass ({692bc4be-07b8-4b77-ab0b-a36185b17d76}) - + Hue Dimmer Switch V2 The name of the ThingClass ({2b40aea0-e0f3-4cde-b034-3ae8a69a5d9d}) - + Hue Motion Sensor The name of the ThingClass ({25b79fff-4b88-4af8-b06c-2fe246238790}) - + Hue On/Off light The name of the ThingClass ({f720f31d-9523-4a74-9f10-19cbc9edeb58}) - + Hue Smart Button The name of the ThingClass ({1e34a056-9f37-4741-b249-a5eca7a4ab4e}) - + Hue Smart plug The name of the ThingClass ({01438844-0048-4276-91f8-c93ac0a5171d}) - + + Hue Wall Switch Module + The name of the ThingClass ({e967027f-f8fc-410c-8b48-6ac4c42e2777}) + + + + Long pressed The name of the EventType ({25803922-37f1-47c8-ac00-2d3acb9eb634}) of ThingClass smartButton - - - + + + + Model ID The name of the ParamType (ThingClass: foh, Type: thing, ID: {664c7091-12eb-4402-8239-31da85f73d38}) ---------- The name of the ParamType (ThingClass: tap, Type: thing, ID: {62d92175-db3a-4da2-a72b-f58f34cb6911}) ---------- +The name of the ParamType (ThingClass: wallSwitch, Type: thing, ID: {71c2c485-6a09-4bcd-80e5-24cdc45d323f}) +---------- The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {9271179f-5fe1-4005-9f97-ccde33b1b2c4}) - - - + + Philips Hue Bridge + The name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7}) + + + + + + Powered The name of the ParamType (ThingClass: smartPlug, ActionType: power, ID: {77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) ---------- @@ -229,20 +257,23 @@ The name of the StateType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass - - - + + + + Sensor ID The name of the ParamType (ThingClass: foh, Type: thing, ID: {7559d16c-b56b-42e2-8347-65582fa276c0}) ---------- The name of the ParamType (ThingClass: tap, Type: thing, ID: {5eca2b24-8986-4487-bc12-50e91d023d97}) ---------- +The name of the ParamType (ThingClass: wallSwitch, Type: thing, ID: {62a9df8c-51b5-434f-9d5d-5fa97144076a}) +---------- The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {54744fcc-c052-4c16-a857-fbe0b791e538}) - - + + Software version The name of the ParamType (ThingClass: bridge, EventType: currentVersion, ID: {4c707b18-6604-4e6d-b6bc-4e27769c2adc}) ---------- @@ -250,26 +281,26 @@ The name of the StateType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass - + Software version changed The name of the EventType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge - + Switch The name of the ActionType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - + Switched on or off The name of the EventType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - - + + Time period The name of the ParamType (ThingClass: motionSensor, Type: settings, ID: {beedc4af-c107-4c53-be25-fd01a349fd35}) ---------- @@ -277,37 +308,43 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: settings, ID: {21d46 - - - + + + + Type The name of the ParamType (ThingClass: foh, Type: thing, ID: {16ca2ee1-d738-4f51-8f9a-53547d3d824e}) ---------- The name of the ParamType (ThingClass: tap, Type: thing, ID: {eace85b9-5369-466f-89eb-46c4de718305}) ---------- +The name of the ParamType (ThingClass: wallSwitch, Type: thing, ID: {08606780-2251-4c15-bb7d-7506535e14ed}) +---------- The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {7221aacc-1420-43f2-a05a-448a0f783713}) - - - + + + + UUID The name of the ParamType (ThingClass: foh, Type: thing, ID: {2ca66286-1caf-4e09-8e18-05bb7d7df314}) ---------- The name of the ParamType (ThingClass: tap, Type: thing, ID: {25cf4167-6c28-4497-9fa9-3d02faf4f3ed}) ---------- +The name of the ParamType (ThingClass: wallSwitch, Type: thing, ID: {4cdab881-5d2d-4443-816a-231bbb331f22}) +---------- The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {2378a06d-b748-445b-94e2-4dd885a54f22}) - - - - - - - + + + + + + + model id The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {a5441712-5a4a-43a7-b797-3806cba86e1a}) ---------- @@ -325,13 +362,13 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {095a463b-f5 id modelo - - - - - - - + + + + + + + type The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {87cf0d7a-9ac2-4694-9f5f-1c9c6692a6c5}) ---------- @@ -349,12 +386,12 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {3f3467ef-44 tipo - - - - - - + + + + + + uuid The name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {200b5daa-1023-49cb-a933-bdd1ac7df4bd}) ---------- @@ -370,11 +407,11 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {1a5129ca-00 uuid - - - - - + + + + + light id The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {90791861-bb27-4ade-8551-306af322b12d}) ---------- @@ -388,10 +425,10 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {491dc012-cc id luz - - - - + + + + power changed The name of the EventType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight ---------- @@ -403,18 +440,18 @@ The name of the EventType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass potência alterada - - - - - - - - - - - - + + + + + + + + + + + + power The name of the ParamType (ThingClass: onOffLight, ActionType: power, ID: {5dc5e71b-789e-4c68-abb6-1534c8af019e}) ---------- @@ -442,10 +479,10 @@ The name of the StateType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass potência - - - - + + + + Set power The name of the ActionType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight ---------- @@ -457,8 +494,8 @@ The name of the ActionType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClas Ajustar potência - - + + color temperature changed The name of the EventType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight ---------- @@ -466,8 +503,8 @@ The name of the EventType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass temperatura de cor alterada - - + + Set color temperature The name of the ActionType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight ---------- @@ -475,15 +512,15 @@ The name of the ActionType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClas Ajustar temperatura de cor - + color changed The name of the EventType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight cor alterada - - - + + + color The name of the ParamType (ThingClass: colorLight, ActionType: color, ID: {d25423e7-b924-4b20-80b6-77eecc65d089}) ---------- @@ -493,15 +530,15 @@ The name of the StateType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass cor - + Set color The name of the ActionType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight Ajustar cor - - - + + + brightness changed The name of the EventType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight ---------- @@ -511,15 +548,15 @@ The name of the EventType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass brilho alterado - - - - - - - - - + + + + + + + + + brightness The name of the ParamType (ThingClass: dimmableLight, ActionType: brightness, ID: {2f062912-1159-423b-8143-48a8e69b9348}) ---------- @@ -541,8 +578,8 @@ The name of the StateType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass brilho - - + + Set brigtness The name of the ActionType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight ---------- @@ -550,26 +587,26 @@ The name of the ActionType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClas Ajustar brilho - + effect changed The name of the EventType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight efeito alterado - + Hue color temperature light The name of the ThingClass ({35f749f7-b60a-4922-bd25-1bdd2eddcbe3}) - + Hue dimmable light The name of the ThingClass ({4fa568ef-7a3a-422b-b0c0-206d37cb4eed}) - - + + battery critical changed The name of the EventType ({88cc3794-3e83-47d4-8889-0b3246336bf7}) of ThingClass dimmerSwitch2 ---------- @@ -577,16 +614,19 @@ The name of the EventType ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass alterada bateria crítica - - - - - + + + + + + Button pressed The name of the EventType ({2cc68bd3-ad73-4bf3-9905-639870d071bd}) of ThingClass foh ---------- The name of the EventType ({c45dd703-7cbd-48f7-88dc-31045cc3d39c}) of ThingClass tap ---------- +The name of the EventType ({4623b5ff-b999-4200-ba38-89435d78fcae}) of ThingClass wallSwitch +---------- The name of the EventType ({c809179e-effa-4717-9172-11df7e80d109}) of ThingClass smartButton ---------- The name of the EventType ({b7a5b3df-2c60-4b97-bf99-b97e6012a194}) of ThingClass dimmerSwitch2 @@ -595,17 +635,20 @@ The name of the EventType ({8da28cf1-2457-451e-953e-2685f8daeda8}) of ThingClass Botão pressionado - - - - - - + + + + + + + Button name The name of the ParamType (ThingClass: foh, EventType: pressed, ID: {f1da229e-fce2-4329-8850-1c92b5bc5925}) ---------- The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b8a-4709-8abf-717cf213f4a4}) ---------- +The name of the ParamType (ThingClass: wallSwitch, EventType: pressed, ID: {adb4ec5e-e48f-4697-a876-e56e8458987a}) +---------- The name of the ParamType (ThingClass: dimmerSwitch2, EventType: longPressed, ID: {c03bb1ad-f8c9-4993-9d25-557ade2d2c13}) ---------- The name of the ParamType (ThingClass: dimmerSwitch2, EventType: pressed, ID: {562f2d4d-351e-4c2c-98bf-187b948587e4}) @@ -616,26 +659,26 @@ The name of the ParamType (ThingClass: remote, EventType: pressed, ID: {e4e3eb3a Nome do botão - + Button longpressed The name of the EventType ({2c64561b-2381-4769-8e21-0e206c84bbcc}) of ThingClass remote Botão pressionado de modo longo - + Hue Tap The name of the ThingClass ({2b8c1fb8-67ee-42e9-947b-16e0a09f0d4e}) Toque Hue - + Hue Outdoor Sensor The name of the ThingClass ({32dc6390-600f-4eb4-b349-cc2d6796a82a}) - - + + Model id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {9cb488b7-a76f-4389-a6b5-b36250246f2b}) ---------- @@ -643,9 +686,9 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca8632d - - - + + + Uuid The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {5b8a02b9-3a2b-4178-914d-c62d03281d00}) ---------- @@ -655,8 +698,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {4a15f861 - - + + Temperature sensor id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {c9e81e29-f8d4-4370-ada2-f48b32def1fe}) ---------- @@ -664,8 +707,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {c732fefd - - + + Temperature sensor uuid The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {aa29b5f1-5589-4fa9-bbd4-8869723c037c}) ---------- @@ -673,8 +716,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {2fdb34e8 - - + + Presence sensor id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {337b2c6c-e3bf-495c-943c-b45fa08add37}) ---------- @@ -682,8 +725,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca82a24 - - + + Presence sensor uuid The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {3829bddb-e722-4724-be36-3a8402738581}) ---------- @@ -691,8 +734,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {7d55ed97 - - + + Light sensor id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {04fba73e-730e-437a-b6f2-10df21296af5}) ---------- @@ -700,8 +743,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {22a164fc - - + + Light sensor uuid The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {171cc2e7-7a95-4116-986c-66d75e3e23eb}) ---------- @@ -709,12 +752,13 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {db678144 - - - - - - + + + + + + + Reachable changed The name of the EventType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug ---------- @@ -726,22 +770,26 @@ The name of the EventType ({840b220c-656b-4f56-bbaa-ce818cffad64}) of ThingClass ---------- The name of the EventType ({5e21b032-1230-4e93-8543-0c4773da17d3}) of ThingClass tap ---------- +The name of the EventType ({b51071af-1290-41f1-b2eb-e84527342ade}) of ThingClass wallSwitch +---------- The name of the EventType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass smartButton - - - - - - - - - - - - + + + + + + + + + + + + + + Reachable The name of the ParamType (ThingClass: smartPlug, EventType: connected, ID: {6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) ---------- @@ -763,14 +811,18 @@ The name of the ParamType (ThingClass: tap, EventType: connected, ID: {5e21b032- ---------- The name of the StateType ({5e21b032-1230-4e93-8543-0c4773da17d3}) of ThingClass tap ---------- +The name of the ParamType (ThingClass: wallSwitch, EventType: connected, ID: {b51071af-1290-41f1-b2eb-e84527342ade}) +---------- +The name of the StateType ({b51071af-1290-41f1-b2eb-e84527342ade}) of ThingClass wallSwitch +---------- The name of the ParamType (ThingClass: smartButton, EventType: connected, ID: {b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) ---------- The name of the StateType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass smartButton - - + + Battery changed The name of the EventType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ---------- @@ -778,10 +830,10 @@ The name of the EventType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass - - - - + + + + Battery The name of the ParamType (ThingClass: motionSensor, EventType: batteryLevel, ID: {ac463b30-24af-4352-84da-19a3ffc906bd}) ---------- @@ -793,24 +845,29 @@ The name of the StateType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass - - - + + + + Battery critical changed The name of the EventType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor ---------- The name of the EventType ({617aa352-789c-46e7-bf55-7455b1e5018e}) of ThingClass outdoorSensor ---------- +The name of the EventType ({7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) of ThingClass wallSwitch +---------- The name of the EventType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass smartButton - - - - - - + + + + + + + + Battery critical The name of the ParamType (ThingClass: motionSensor, EventType: batteryCritical, ID: {d7c4e143-6f03-411e-a12e-dd22806270fd}) ---------- @@ -820,14 +877,18 @@ The name of the ParamType (ThingClass: outdoorSensor, EventType: batteryCritical ---------- The name of the StateType ({617aa352-789c-46e7-bf55-7455b1e5018e}) of ThingClass outdoorSensor ---------- +The name of the ParamType (ThingClass: wallSwitch, EventType: batteryCritical, ID: {7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) +---------- +The name of the StateType ({7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) of ThingClass wallSwitch +---------- The name of the ParamType (ThingClass: smartButton, EventType: batteryCritical, ID: {7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) ---------- The name of the StateType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass smartButton - - + + Temperature changed The name of the EventType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ---------- @@ -835,10 +896,10 @@ The name of the EventType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass - - - - + + + + Temperature The name of the ParamType (ThingClass: motionSensor, EventType: temperature, ID: {63ee79f7-702b-48c1-86cf-8ddebb78bae6}) ---------- @@ -850,8 +911,8 @@ The name of the StateType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass - - + + Ambient light changed The name of the EventType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor ---------- @@ -859,10 +920,10 @@ The name of the EventType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass - - - - + + + + Ambient light The name of the ParamType (ThingClass: motionSensor, EventType: lightIntensity, ID: {064f48c1-f86d-4a0a-bdae-3420123dff3f}) ---------- @@ -874,8 +935,8 @@ The name of the StateType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass - - + + Person is present changed The name of the EventType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor ---------- @@ -883,10 +944,10 @@ The name of the EventType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass - - - - + + + + Person is present The name of the ParamType (ThingClass: motionSensor, EventType: isPresent, ID: {e38ee39c-c77f-40b5-b122-4efc411da0ed}) ---------- @@ -898,8 +959,8 @@ The name of the StateType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass - - + + Last seen time changed The name of the EventType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor ---------- @@ -907,10 +968,10 @@ The name of the EventType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass - - - - + + + + Last seen time The name of the ParamType (ThingClass: motionSensor, EventType: lastSeenTime, ID: {ef2e564e-2443-448f-bcd9-f85a1126ee6a}) ---------- @@ -922,26 +983,26 @@ The name of the StateType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass - + Philips Hue The name of the plugin PhilipsHue ({5f2e634b-b7f3-48ee-976a-b5ae22aa5c55}) Philips Hue - - - - - - - - - - - - - - + + + + + + + + + + + + + + reachable The name of the ParamType (ThingClass: dimmerSwitch2, EventType: connected, ID: {45f75511-7d72-410e-aed0-5720cc497bf8}) ---------- @@ -973,8 +1034,8 @@ The name of the StateType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass recarregável - - + + api version The name of the ParamType (ThingClass: bridge, EventType: apiVersion, ID: {7a230e89-c4ce-4276-90e0-6a9ddb890603}) ---------- @@ -982,8 +1043,8 @@ The name of the StateType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass versão api - - + + update status The name of the ParamType (ThingClass: bridge, EventType: updateStatus, ID: {16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) ---------- @@ -991,18 +1052,18 @@ The name of the StateType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass estado de atualização - + Hue color light The name of the ThingClass ({0edba26c-96ab-44fb-a6a2-c0574d19630e}) - - - - - - + + + + + + color temperature The name of the ParamType (ThingClass: colorTemperatureLight, ActionType: colorTemperature, ID: {fee57738-45c7-48fe-a06b-1397376361f0}) ---------- @@ -1018,9 +1079,9 @@ The name of the StateType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass temperatura de cor - - - + + + effect The name of the ParamType (ThingClass: colorLight, ActionType: effect, ID: {0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) ---------- @@ -1030,15 +1091,15 @@ The name of the StateType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass efeito - + Set effect The name of the ActionType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight Ajustar efeito - - - + + + flash The name of the ActionType ({ab30a83a-539e-4b3a-860a-434e87ca165f}) of ThingClass dimmableLight ---------- @@ -1048,9 +1109,9 @@ The name of the ActionType ({d25dcfbc-d28c-4905-80e3-300ffb1248f5}) of ThingClas flash - - - + + + alert The name of the ParamType (ThingClass: dimmableLight, ActionType: alert, ID: {a546f129-e0e5-497b-9536-2f7a132434df}) ---------- @@ -1060,20 +1121,20 @@ The name of the ParamType (ThingClass: colorLight, ActionType: alert, ID: {8ace6 alerta - + Set brightness The name of the ActionType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight Ajustar brilho - + Hue Remote The name of the ThingClass ({bb482d39-67ef-46dc-88e9-7b181d642b28}) Hue Remoto - - + + sensor id The name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {b8121363-321a-4569-bb34-a02f846aa9c5}) ---------- @@ -1081,8 +1142,8 @@ The name of the ParamType (ThingClass: remote, Type: thing, ID: {2ddb571b-149f-4 id sensor - - + + battery changed The name of the EventType ({cb6e045c-e305-4950-9cd4-fb3989912156}) of ThingClass dimmerSwitch2 ---------- @@ -1090,10 +1151,10 @@ The name of the EventType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass bateria substituída - - - - + + + + battery The name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryLevel, ID: {cb6e045c-e305-4950-9cd4-fb3989912156}) ---------- @@ -1105,10 +1166,10 @@ The name of the StateType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass bateria - - - - + + + + battery critical The name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryCritical, ID: {88cc3794-3e83-47d4-8889-0b3246336bf7}) ----------