From 4b7e59caa0440185575160a851659db83f1b461a Mon Sep 17 00:00:00 2001 From: Michael Zanetti Date: Tue, 29 Dec 2020 21:17:07 +0100 Subject: [PATCH] PhilipsHue: Add better support for the Hue Smart plug --- philipshue/README.md | 1 + philipshue/integrationpluginphilipshue.cpp | 61 ++- philipshue/integrationpluginphilipshue.h | 3 +- philipshue/integrationpluginphilipshue.json | 58 ++ ...5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-cs.ts | 499 ++++++++++-------- ...5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-da.ts | 499 ++++++++++-------- ...5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-de.ts | 499 ++++++++++-------- ...e634b-b7f3-48ee-976a-b5ae22aa5c55-en_US.ts | 499 ++++++++++-------- ...5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-es.ts | 499 ++++++++++-------- ...5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-fr.ts | 499 ++++++++++-------- ...5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-it.ts | 499 ++++++++++-------- ...5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-nl.ts | 499 ++++++++++-------- ...5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-pt.ts | 499 ++++++++++-------- 13 files changed, 2590 insertions(+), 2024 deletions(-) diff --git a/philipshue/README.md b/philipshue/README.md index 796aeab3..663e795d 100644 --- a/philipshue/README.md +++ b/philipshue/README.md @@ -15,6 +15,7 @@ This plugin allows to interact with the Hue bridge. Each light bulb, sensor and * Hue Outdoor Motion Sensor * Hue Ambient White Bulb * Hue Color Bulb +* Hue Smart plug * Any other Bulb that can be connected and controlled by the Hue App. ## Requirements diff --git a/philipshue/integrationpluginphilipshue.cpp b/philipshue/integrationpluginphilipshue.cpp index 27603dd3..4328fe3e 100644 --- a/philipshue/integrationpluginphilipshue.cpp +++ b/philipshue/integrationpluginphilipshue.cpp @@ -558,6 +558,24 @@ void IntegrationPluginPhilipsHue::setupThing(ThingSetupInfo *info) return info->finish(Thing::ThingErrorNoError); } + // Hue smart plug + if (thing->thingClassId() == smartPlugThingClassId) { + qCDebug(dcPhilipsHue) << "Setting up Hue Smart plug" << thing->params(); + HueLight *smartPlug = new HueLight(bridge, this); + smartPlug->setUuid(thing->paramValue(smartPlugThingUuidParamTypeId).toString()); + smartPlug->setId(thing->paramValue(smartPlugThingLightIdParamTypeId).toInt()); + smartPlug->setModelId(thing->paramValue(smartPlugThingModelIdParamTypeId).toString()); + smartPlug->setType(thing->paramValue(smartPlugThingTypeParamTypeId).toString()); + + connect(smartPlug, &HueLight::reachableChanged, thing, [thing](bool reachable){ + thing->setStateValue(smartPlugConnectedStateTypeId, reachable); + }); + connect(smartPlug, &HueLight::stateChanged, this, &IntegrationPluginPhilipsHue::lightStateChanged); + m_lights.insert(smartPlug, thing); + info->finish(Thing::ThingErrorNoError); + return; + } + qCWarning(dcPhilipsHue()) << "Unhandled setupDevice call" << thing->thingClassId(); } @@ -581,7 +599,8 @@ void IntegrationPluginPhilipsHue::thingRemoved(Thing *thing) if (thing->thingClassId() == colorLightThingClassId || thing->thingClassId() == colorTemperatureLightThingClassId - || thing->thingClassId() == dimmableLightThingClassId) { + || thing->thingClassId() == dimmableLightThingClassId + || thing->thingClassId() == smartPlugThingClassId) { HueLight *light = m_lights.key(thing); m_lights.remove(light); light->deleteLater(); @@ -807,7 +826,8 @@ void IntegrationPluginPhilipsHue::executeAction(ThingActionInfo *info) // lights if (thing->thingClassId() == colorLightThingClassId || thing->thingClassId() == colorTemperatureLightThingClassId || - thing->thingClassId() == dimmableLightThingClassId) { + thing->thingClassId() == dimmableLightThingClassId || + thing->thingClassId() == smartPlugThingClassId) { HueLight *light = m_lights.key(thing); @@ -860,6 +880,12 @@ void IntegrationPluginPhilipsHue::executeAction(ThingActionInfo *info) QPair request = light->createFlashRequest(action.param(dimmableLightAlertActionAlertParamTypeId).value().toString()); reply = hardwareManager()->networkManager()->put(request.first, request.second); } + + // Hue smart plug + else if (action.actionTypeId() == smartPlugPowerActionTypeId) { + QPair request = light->createSetPowerRequest(action.param(smartPlugPowerActionPowerParamTypeId).value().toBool()); + reply = hardwareManager()->networkManager()->put(request.first, request.second); + } } // Hue bridge @@ -1062,6 +1088,9 @@ void IntegrationPluginPhilipsHue::lightStateChanged() thing->setStateValue(dimmableLightConnectedStateTypeId, light->reachable()); thing->setStateValue(dimmableLightPowerStateTypeId, light->power()); thing->setStateValue(dimmableLightBrightnessStateTypeId, brightnessToPercentage(light->brightness())); + } else if (thing->thingClassId() == smartPlugThingClassId) { + thing->setStateValue(smartPlugConnectedStateTypeId, light->reachable()); + thing->setStateValue(smartPlugPowerStateTypeId, light->power()); } } @@ -1341,6 +1370,8 @@ void IntegrationPluginPhilipsHue::processBridgeLightDiscoveryResponse(Thing *thi return; } + qCDebug(dcPhilipsHue()) << "Lights on bridge:" << qUtf8Printable(jsonDoc.toJson()); + // Create Lights if not already added ThingDescriptors descriptors; @@ -1351,6 +1382,7 @@ void IntegrationPluginPhilipsHue::processBridgeLightDiscoveryResponse(Thing *thi QString uuid = lightMap.value("uniqueid").toString(); QString model = lightMap.value("modelid").toString(); + QString type = lightMap.value("type").toString(); foreach (HueLight *light, lightsToRemove) { if (light->uuid() == uuid) { @@ -1362,7 +1394,7 @@ void IntegrationPluginPhilipsHue::processBridgeLightDiscoveryResponse(Thing *thi if (lightAlreadyAdded(uuid)) continue; - if (lightMap.value("type").toString() == "Dimmable light") { + if (type == "Dimmable light") { ThingDescriptor descriptor(dimmableLightThingClassId, lightMap.value("name").toString(), "Philips Hue White Light", thing->id()); ParamList params; params.append(Param(dimmableLightThingModelIdParamTypeId, model)); @@ -1373,7 +1405,7 @@ void IntegrationPluginPhilipsHue::processBridgeLightDiscoveryResponse(Thing *thi descriptors.append(descriptor); qCDebug(dcPhilipsHue) << "Found new dimmable light" << lightMap.value("name").toString() << model; - } else if (lightMap.value("type").toString() == "Color temperature light") { + } else if (type == "Color temperature light") { ThingDescriptor descriptor(colorTemperatureLightThingClassId, lightMap.value("name").toString(), "Philips Hue Color Temperature Light", thing->id()); ParamList params; params.append(Param(colorTemperatureLightThingModelIdParamTypeId, model)); @@ -1384,7 +1416,7 @@ void IntegrationPluginPhilipsHue::processBridgeLightDiscoveryResponse(Thing *thi descriptors.append(descriptor); qCDebug(dcPhilipsHue) << "Found new color temperature light" << lightMap.value("name").toString() << model; - } else { + } else if (type == "Extended color light") { ThingDescriptor descriptor(colorLightThingClassId, lightMap.value("name").toString(), "Philips Hue Color Light", thing->id()); ParamList params; params.append(Param(colorLightThingModelIdParamTypeId, model)); @@ -1394,6 +1426,16 @@ void IntegrationPluginPhilipsHue::processBridgeLightDiscoveryResponse(Thing *thi descriptor.setParams(params); descriptors.append(descriptor); qCDebug(dcPhilipsHue) << "Found new color light" << lightMap.value("name").toString() << model; + } else if (type == "On/Off plug-in unit") { + ThingDescriptor descriptor(smartPlugThingClassId, lightMap.value("name").toString(), "Philips Hue Smart plug", thing->id()); + ParamList params; + params.append(Param(smartPlugThingModelIdParamTypeId, model)); + params.append(Param(smartPlugThingTypeParamTypeId, lightMap.value("type").toString())); + params.append(Param(smartPlugThingUuidParamTypeId, uuid)); + params.append(Param(smartPlugThingLightIdParamTypeId, lightId)); + descriptor.setParams(params); + descriptors.append(descriptor); + qCDebug(dcPhilipsHue) << "Found smart plug" << lightMap.value("name").toString() << model; } } @@ -1821,7 +1863,7 @@ void IntegrationPluginPhilipsHue::processSetNameResponse(Thing *thing, const QBy } -void IntegrationPluginPhilipsHue::bridgeReachableChanged(Thing *thing, const bool &reachable) +void IntegrationPluginPhilipsHue::bridgeReachableChanged(Thing *thing, bool reachable) { if (reachable) { thing->setStateValue(bridgeConnectedStateTypeId, true); @@ -1839,6 +1881,8 @@ void IntegrationPluginPhilipsHue::bridgeReachableChanged(Thing *thing, const boo m_lights.value(light)->setStateValue(colorTemperatureLightConnectedStateTypeId, false); } else if (m_lights.value(light)->thingClassId() == dimmableLightThingClassId) { m_lights.value(light)->setStateValue(dimmableLightConnectedStateTypeId, false); + } else if (m_lights.value(light)->thingClassId() == smartPlugThingClassId) { + m_lights.value(light)->setStateValue(smartPlugConnectedStateTypeId, false); } } } @@ -1895,6 +1939,11 @@ bool IntegrationPluginPhilipsHue::lightAlreadyAdded(const QString &uuid) return true; } } + if (thing->thingClassId() == smartPlugThingClassId) { + if (thing->paramValue(smartPlugThingUuidParamTypeId).toString() == uuid) { + return true; + } + } } return false; } diff --git a/philipshue/integrationpluginphilipshue.h b/philipshue/integrationpluginphilipshue.h index dfc85537..cd9a8892 100644 --- a/philipshue/integrationpluginphilipshue.h +++ b/philipshue/integrationpluginphilipshue.h @@ -36,7 +36,6 @@ #include "huelight.h" #include "hueremote.h" #include "huemotionsensor.h" -#include "huemotionsensor.h" #include "plugintimer.h" #include "network/networkaccessmanager.h" @@ -141,7 +140,7 @@ private: void processSensorsRefreshResponse(Thing *thing, const QByteArray &data); void processSetNameResponse(Thing *thing, const QByteArray &data); - void bridgeReachableChanged(Thing *thing, const bool &reachable); + void bridgeReachableChanged(Thing *thing, bool reachable); Thing* bridgeForBridgeId(const QString &id); bool lightAlreadyAdded(const QString &uuid); diff --git a/philipshue/integrationpluginphilipshue.json b/philipshue/integrationpluginphilipshue.json index 5379ea74..245fd5f6 100644 --- a/philipshue/integrationpluginphilipshue.json +++ b/philipshue/integrationpluginphilipshue.json @@ -945,6 +945,64 @@ "defaultValue": 0 } ] + }, + { + "id": "01438844-0048-4276-91f8-c93ac0a5171d", + "name": "smartPlug", + "displayName": "Hue Smart plug", + "interfaces": ["powersocket", "wirelessconnectable"], + "createMethods": ["auto"], + "paramTypes": [ + { + "id": "a5441712-5a4a-43a7-b797-3806cba86e1a", + "name": "modelId", + "displayName": "model id", + "type" : "QString", + "readOnly": true + }, + { + "id": "87cf0d7a-9ac2-4694-9f5f-1c9c6692a6c5", + "name": "type", + "displayName": "type", + "type" : "QString", + "readOnly": true + }, + { + "id": "5b8a02b9-3a2b-4178-914d-c62d03281d00", + "name": "uuid", + "displayName": "Uuid", + "type": "QString", + "readOnly": true + }, + { + "id": "90791861-bb27-4ade-8551-306af322b12d", + "name": "lightId", + "displayName": "light id", + "type" : "int", + "readOnly": true + } + ], + "stateTypes": [ + { + "id": "77198588-cfd0-44ea-beb5-3a7ce06d4c1d", + "name": "power", + "displayName": "Powered", + "displayNameEvent": "Switched on or off", + "displayNameAction": "Switch", + "type": "bool", + "defaultValue": false, + "writable": true, + "ioType": "digitalOutput" + }, + { + "id": "6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c", + "name": "connected", + "displayName": "Reachable", + "displayNameEvent": "Reachable changed", + "type": "bool", + "defaultValue": false + } + ] } ] } diff --git a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-cs.ts b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-cs.ts index 1d23b706..897868e9 100644 --- a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-cs.ts +++ b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-cs.ts @@ -4,53 +4,53 @@ 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. - - + + Received unexpected data from hue bridge. - + An error happened pairing the hue bridge. - + 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,35 +58,35 @@ 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 ({9f9fac89-2dcd-4db6-b214-0065662af62a}) of ThingClass remote ---------- @@ -100,44 +100,44 @@ 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}) ---------- @@ -145,32 +145,38 @@ The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass - + Battery level changed The name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - + Hue Motion Sensor The name of the ThingClass ({25b79fff-4b88-4af8-b06c-2fe246238790}) - + 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}) + + + + Long pressed The name of the EventType ({25803922-37f1-47c8-ac00-2d3acb9eb634}) of ThingClass smartButton - - + + Model ID The name of the ParamType (ThingClass: tap, Type: thing, ID: {62d92175-db3a-4da2-a72b-f58f34cb6911}) ---------- @@ -178,8 +184,20 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {9271179f-5 - - + + + + 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 + + + + + Sensor ID The name of the ParamType (ThingClass: tap, Type: thing, ID: {5eca2b24-8986-4487-bc12-50e91d023d97}) ---------- @@ -187,8 +205,8 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {54744fcc-c - - + + Software version The name of the ParamType (ThingClass: bridge, EventType: currentVersion, ID: {4c707b18-6604-4e6d-b6bc-4e27769c2adc}) ---------- @@ -196,14 +214,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}) ---------- @@ -211,8 +241,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: settings, ID: {21d46 - - + + Type The name of the ParamType (ThingClass: tap, Type: thing, ID: {eace85b9-5369-466f-89eb-46c4de718305}) ---------- @@ -220,8 +250,8 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {7221aacc-1 - - + + UUID The name of the ParamType (ThingClass: tap, Type: thing, ID: {25cf4167-6c28-4497-9fa9-3d02faf4f3ed}) ---------- @@ -229,12 +259,15 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {2378a06d-b - - - - + + + + + model id - The name of the ParamType (ThingClass: remote, Type: thing, ID: {5910da25-c1ad-417c-9130-8f04e8ef1e6e}) + The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {a5441712-5a4a-43a7-b797-3806cba86e1a}) +---------- +The name of the ParamType (ThingClass: remote, Type: thing, ID: {5910da25-c1ad-417c-9130-8f04e8ef1e6e}) ---------- The name of the ParamType (ThingClass: dimmableLight, Type: thing, ID: {6fe78769-abef-4738-b968-2ff4c3b2a152}) ---------- @@ -244,12 +277,15 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {095a463b-f5 id modelu - - - - + + + + + type - The name of the ParamType (ThingClass: remote, Type: thing, ID: {a12c0dbf-29e3-4580-96b0-728f8277514d}) + The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {87cf0d7a-9ac2-4694-9f5f-1c9c6692a6c5}) +---------- +The name of the ParamType (ThingClass: remote, Type: thing, ID: {a12c0dbf-29e3-4580-96b0-728f8277514d}) ---------- The name of the ParamType (ThingClass: dimmableLight, Type: thing, ID: {0381053b-7ad6-4e67-baac-2b61248f08e3}) ---------- @@ -259,10 +295,10 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {3f3467ef-44 typ - - - - + + + + uuid The name of the ParamType (ThingClass: remote, Type: thing, ID: {3cdf9de1-ae23-47dc-a8bd-056a6707060c}) ---------- @@ -274,11 +310,14 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {1a5129ca-00 uuid - - - + + + + light id - The name of the ParamType (ThingClass: dimmableLight, Type: thing, ID: {49df749a-9e67-4dc8-81d2-c521e7e8066e}) + The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {90791861-bb27-4ade-8551-306af322b12d}) +---------- +The name of the ParamType (ThingClass: dimmableLight, Type: thing, ID: {49df749a-9e67-4dc8-81d2-c521e7e8066e}) ---------- The name of the ParamType (ThingClass: colorTemperatureLight, Type: thing, ID: {2705f25c-c9bc-40c4-bed2-835308986813}) ---------- @@ -286,9 +325,9 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {491dc012-cc id světla - - - + + + power changed The name of the EventType ({5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) of ThingClass dimmableLight ---------- @@ -298,15 +337,15 @@ The name of the EventType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass výkon změněn - - - - - - - - - + + + + + + + + + power The name of the ParamType (ThingClass: dimmableLight, ActionType: power, ID: {5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) ---------- @@ -328,9 +367,9 @@ The name of the StateType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass výkon - - - + + + Set power The name of the ActionType ({5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) of ThingClass dimmableLight ---------- @@ -340,8 +379,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 ---------- @@ -349,8 +388,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 ---------- @@ -358,15 +397,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}) ---------- @@ -376,15 +415,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 ---------- @@ -394,15 +433,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}) ---------- @@ -424,8 +463,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 ---------- @@ -433,33 +472,33 @@ 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 ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass remote baterie kritický stav změněno - - - + + + Button pressed The name of the EventType ({c45dd703-7cbd-48f7-88dc-31045cc3d39c}) of ThingClass tap ---------- @@ -469,9 +508,9 @@ The name of the EventType ({8da28cf1-2457-451e-953e-2685f8daeda8}) of ThingClass Tlačítko stisknuto - - - + + + Button name The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b8a-4709-8abf-717cf213f4a4}) ---------- @@ -481,26 +520,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}) ---------- @@ -508,17 +547,20 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca8632d - - + + + Uuid - The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {3e9aad4c-1dff-42c0-bbd4-cdd8635c01a7}) + The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {5b8a02b9-3a2b-4178-914d-c62d03281d00}) +---------- +The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {3e9aad4c-1dff-42c0-bbd4-cdd8635c01a7}) ---------- The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {4a15f861-cad6-464a-b250-08793c68ae30}) - - + + Temperature sensor id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {c9e81e29-f8d4-4370-ada2-f48b32def1fe}) ---------- @@ -526,8 +568,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}) ---------- @@ -535,8 +577,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}) ---------- @@ -544,8 +586,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}) ---------- @@ -553,8 +595,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}) ---------- @@ -562,8 +604,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}) ---------- @@ -571,12 +613,15 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {db678144 - - - - + + + + + Reachable changed - The name of the EventType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor + The name of the EventType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug +---------- +The name of the EventType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor ---------- The name of the EventType ({9fe43e6b-3c29-43a9-bb96-3b80eacc10db}) of ThingClass outdoorSensor ---------- @@ -586,16 +631,22 @@ The name of the EventType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass - - - - - - - - + + + + + + + + + + Reachable - The name of the ParamType (ThingClass: motionSensor, EventType: connected, ID: {19c28b69-a9c2-4908-8255-7681f72c2d92}) + The name of the ParamType (ThingClass: smartPlug, EventType: connected, ID: {6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) +---------- +The name of the StateType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug +---------- +The name of the ParamType (ThingClass: motionSensor, EventType: connected, ID: {19c28b69-a9c2-4908-8255-7681f72c2d92}) ---------- The name of the StateType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor ---------- @@ -613,8 +664,8 @@ The name of the StateType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass - - + + Battery changed The name of the EventType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ---------- @@ -622,10 +673,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}) ---------- @@ -637,9 +688,9 @@ 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 ---------- @@ -649,12 +700,12 @@ The name of the EventType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass - - - - - - + + + + + + Battery critical The name of the ParamType (ThingClass: motionSensor, EventType: batteryCritical, ID: {d7c4e143-6f03-411e-a12e-dd22806270fd}) ---------- @@ -670,8 +721,8 @@ The name of the StateType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass - - + + Temperature changed The name of the EventType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ---------- @@ -679,10 +730,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}) ---------- @@ -694,8 +745,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 ---------- @@ -703,10 +754,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}) ---------- @@ -718,8 +769,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 ---------- @@ -727,10 +778,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}) ---------- @@ -742,8 +793,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 ---------- @@ -751,10 +802,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}) ---------- @@ -766,22 +817,22 @@ 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: remote, EventType: connected, ID: {9f9fac89-2dcd-4db6-b214-0065662af62a}) ---------- @@ -805,8 +856,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}) ---------- @@ -814,8 +865,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}) ---------- @@ -823,18 +874,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}) ---------- @@ -850,9 +901,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}) ---------- @@ -862,15 +913,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 ---------- @@ -880,9 +931,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}) ---------- @@ -892,32 +943,32 @@ 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: remote, Type: thing, ID: {2ddb571b-149f-4f08-a76a-78b7d3aa27e0}) id senzoru - + battery changed The name of the EventType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass remote baterie změněna - - + + battery The name of the ParamType (ThingClass: remote, EventType: batteryLevel, ID: {683e493a-9796-4d5e-b0e3-61cb178d5819}) ---------- @@ -925,8 +976,8 @@ The name of the StateType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass baterie - - + + battery critical The name of the ParamType (ThingClass: remote, EventType: batteryCritical, ID: {f8516899-6312-4110-bb97-70ffa81dc530}) ---------- diff --git a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-da.ts b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-da.ts index 8dd16d8e..9ad76a40 100644 --- a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-da.ts +++ b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-da.ts @@ -4,53 +4,53 @@ 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. - - + + 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. - + 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,35 +58,35 @@ 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 ({9f9fac89-2dcd-4db6-b214-0065662af62a}) of ThingClass remote ---------- @@ -100,44 +100,44 @@ 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}) ---------- @@ -145,32 +145,38 @@ The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass - + Battery level changed The name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - + Hue Motion Sensor The name of the ThingClass ({25b79fff-4b88-4af8-b06c-2fe246238790}) Hue Motion Sensor - + 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}) + + + + 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: tap, Type: thing, ID: {62d92175-db3a-4da2-a72b-f58f34cb6911}) ---------- @@ -178,8 +184,20 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {9271179f-5 Model ID - - + + + + 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 + + + + + Sensor ID The name of the ParamType (ThingClass: tap, Type: thing, ID: {5eca2b24-8986-4487-bc12-50e91d023d97}) ---------- @@ -187,8 +205,8 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {54744fcc-c Sensor ID - - + + Software version The name of the ParamType (ThingClass: bridge, EventType: currentVersion, ID: {4c707b18-6604-4e6d-b6bc-4e27769c2adc}) ---------- @@ -196,14 +214,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}) ---------- @@ -211,8 +241,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: settings, ID: {21d46 Tidsperiode - - + + Type The name of the ParamType (ThingClass: tap, Type: thing, ID: {eace85b9-5369-466f-89eb-46c4de718305}) ---------- @@ -220,8 +250,8 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {7221aacc-1 Type - - + + UUID The name of the ParamType (ThingClass: tap, Type: thing, ID: {25cf4167-6c28-4497-9fa9-3d02faf4f3ed}) ---------- @@ -229,12 +259,15 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {2378a06d-b UUID - - - - + + + + + model id - The name of the ParamType (ThingClass: remote, Type: thing, ID: {5910da25-c1ad-417c-9130-8f04e8ef1e6e}) + The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {a5441712-5a4a-43a7-b797-3806cba86e1a}) +---------- +The name of the ParamType (ThingClass: remote, Type: thing, ID: {5910da25-c1ad-417c-9130-8f04e8ef1e6e}) ---------- The name of the ParamType (ThingClass: dimmableLight, Type: thing, ID: {6fe78769-abef-4738-b968-2ff4c3b2a152}) ---------- @@ -244,12 +277,15 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {095a463b-f5 model-id - - - - + + + + + type - The name of the ParamType (ThingClass: remote, Type: thing, ID: {a12c0dbf-29e3-4580-96b0-728f8277514d}) + The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {87cf0d7a-9ac2-4694-9f5f-1c9c6692a6c5}) +---------- +The name of the ParamType (ThingClass: remote, Type: thing, ID: {a12c0dbf-29e3-4580-96b0-728f8277514d}) ---------- The name of the ParamType (ThingClass: dimmableLight, Type: thing, ID: {0381053b-7ad6-4e67-baac-2b61248f08e3}) ---------- @@ -259,10 +295,10 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {3f3467ef-44 type - - - - + + + + uuid The name of the ParamType (ThingClass: remote, Type: thing, ID: {3cdf9de1-ae23-47dc-a8bd-056a6707060c}) ---------- @@ -274,11 +310,14 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {1a5129ca-00 uuid - - - + + + + light id - The name of the ParamType (ThingClass: dimmableLight, Type: thing, ID: {49df749a-9e67-4dc8-81d2-c521e7e8066e}) + The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {90791861-bb27-4ade-8551-306af322b12d}) +---------- +The name of the ParamType (ThingClass: dimmableLight, Type: thing, ID: {49df749a-9e67-4dc8-81d2-c521e7e8066e}) ---------- The name of the ParamType (ThingClass: colorTemperatureLight, Type: thing, ID: {2705f25c-c9bc-40c4-bed2-835308986813}) ---------- @@ -286,9 +325,9 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {491dc012-cc lys-id - - - + + + power changed The name of the EventType ({5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) of ThingClass dimmableLight ---------- @@ -298,15 +337,15 @@ The name of the EventType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass strøm ændret - - - - - - - - - + + + + + + + + + power The name of the ParamType (ThingClass: dimmableLight, ActionType: power, ID: {5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) ---------- @@ -328,9 +367,9 @@ The name of the StateType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass strøm - - - + + + Set power The name of the ActionType ({5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) of ThingClass dimmableLight ---------- @@ -340,8 +379,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 ---------- @@ -349,8 +388,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 ---------- @@ -358,15 +397,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}) ---------- @@ -376,15 +415,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 ---------- @@ -394,15 +433,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}) ---------- @@ -424,8 +463,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 ---------- @@ -433,33 +472,33 @@ 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 ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass remote batteri kritisk ændret - - - + + + Button pressed The name of the EventType ({c45dd703-7cbd-48f7-88dc-31045cc3d39c}) of ThingClass tap ---------- @@ -469,9 +508,9 @@ The name of the EventType ({8da28cf1-2457-451e-953e-2685f8daeda8}) of ThingClass Knap trykket ned - - - + + + Button name The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b8a-4709-8abf-717cf213f4a4}) ---------- @@ -481,26 +520,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}) ---------- @@ -508,17 +547,20 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca8632d Model id - - + + + Uuid - The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {3e9aad4c-1dff-42c0-bbd4-cdd8635c01a7}) + The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {5b8a02b9-3a2b-4178-914d-c62d03281d00}) +---------- +The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {3e9aad4c-1dff-42c0-bbd4-cdd8635c01a7}) ---------- The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {4a15f861-cad6-464a-b250-08793c68ae30}) Uuid - - + + Temperature sensor id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {c9e81e29-f8d4-4370-ada2-f48b32def1fe}) ---------- @@ -526,8 +568,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}) ---------- @@ -535,8 +577,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}) ---------- @@ -544,8 +586,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}) ---------- @@ -553,8 +595,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}) ---------- @@ -562,8 +604,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}) ---------- @@ -571,12 +613,15 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {db678144 Lyssensor uuid - - - - + + + + + Reachable changed - The name of the EventType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor + The name of the EventType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug +---------- +The name of the EventType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor ---------- The name of the EventType ({9fe43e6b-3c29-43a9-bb96-3b80eacc10db}) of ThingClass outdoorSensor ---------- @@ -586,16 +631,22 @@ The name of the EventType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass Tilgængelighed ændret - - - - - - - - + + + + + + + + + + Reachable - The name of the ParamType (ThingClass: motionSensor, EventType: connected, ID: {19c28b69-a9c2-4908-8255-7681f72c2d92}) + The name of the ParamType (ThingClass: smartPlug, EventType: connected, ID: {6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) +---------- +The name of the StateType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug +---------- +The name of the ParamType (ThingClass: motionSensor, EventType: connected, ID: {19c28b69-a9c2-4908-8255-7681f72c2d92}) ---------- The name of the StateType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor ---------- @@ -613,8 +664,8 @@ The name of the StateType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass Tilgængelig - - + + Battery changed The name of the EventType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ---------- @@ -622,10 +673,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}) ---------- @@ -637,9 +688,9 @@ 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 ---------- @@ -649,12 +700,12 @@ The name of the EventType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass Batterikritisk ændret - - - - - - + + + + + + Battery critical The name of the ParamType (ThingClass: motionSensor, EventType: batteryCritical, ID: {d7c4e143-6f03-411e-a12e-dd22806270fd}) ---------- @@ -670,8 +721,8 @@ The name of the StateType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass Batterikritisk - - + + Temperature changed The name of the EventType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ---------- @@ -679,10 +730,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}) ---------- @@ -694,8 +745,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 ---------- @@ -703,10 +754,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}) ---------- @@ -718,8 +769,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 ---------- @@ -727,10 +778,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}) ---------- @@ -742,8 +793,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 ---------- @@ -751,10 +802,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}) ---------- @@ -766,22 +817,22 @@ 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: remote, EventType: connected, ID: {9f9fac89-2dcd-4db6-b214-0065662af62a}) ---------- @@ -805,8 +856,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}) ---------- @@ -814,8 +865,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}) ---------- @@ -823,18 +874,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}) ---------- @@ -850,9 +901,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}) ---------- @@ -862,15 +913,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 ---------- @@ -880,9 +931,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}) ---------- @@ -892,32 +943,32 @@ 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: remote, Type: thing, ID: {2ddb571b-149f-4f08-a76a-78b7d3aa27e0}) sensor-id - + battery changed The name of the EventType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass remote batteri ændret - - + + battery The name of the ParamType (ThingClass: remote, EventType: batteryLevel, ID: {683e493a-9796-4d5e-b0e3-61cb178d5819}) ---------- @@ -925,8 +976,8 @@ The name of the StateType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass batteri - - + + battery critical The name of the ParamType (ThingClass: remote, EventType: batteryCritical, ID: {f8516899-6312-4110-bb97-70ffa81dc530}) ---------- diff --git a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-de.ts b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-de.ts index 465cb32d..8bfbb542 100644 --- a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-de.ts +++ b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-de.ts @@ -4,53 +4,53 @@ 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. - - + + 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. - + 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,35 +58,35 @@ 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 ({9f9fac89-2dcd-4db6-b214-0065662af62a}) of ThingClass remote ---------- @@ -100,44 +100,44 @@ 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}) ---------- @@ -145,32 +145,38 @@ The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass Akkustand - + Battery level changed The name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton Akkustand geändert - + Hue Motion Sensor The name of the ThingClass ({25b79fff-4b88-4af8-b06c-2fe246238790}) Hue Bewegungsmelder - + 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}) + + + + 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: tap, Type: thing, ID: {62d92175-db3a-4da2-a72b-f58f34cb6911}) ---------- @@ -178,8 +184,20 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {9271179f-5 Modell Nummer - - + + + + 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 + + + + + Sensor ID The name of the ParamType (ThingClass: tap, Type: thing, ID: {5eca2b24-8986-4487-bc12-50e91d023d97}) ---------- @@ -187,8 +205,8 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {54744fcc-c Sensor Nummer - - + + Software version The name of the ParamType (ThingClass: bridge, EventType: currentVersion, ID: {4c707b18-6604-4e6d-b6bc-4e27769c2adc}) ---------- @@ -196,14 +214,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 + + + + + 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}) ---------- @@ -211,8 +241,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: settings, ID: {21d46 Zeitspanne - - + + Type The name of the ParamType (ThingClass: tap, Type: thing, ID: {eace85b9-5369-466f-89eb-46c4de718305}) ---------- @@ -220,8 +250,8 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {7221aacc-1 Typ - - + + UUID The name of the ParamType (ThingClass: tap, Type: thing, ID: {25cf4167-6c28-4497-9fa9-3d02faf4f3ed}) ---------- @@ -229,12 +259,15 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {2378a06d-b UUID - - - - + + + + + model id - The name of the ParamType (ThingClass: remote, Type: thing, ID: {5910da25-c1ad-417c-9130-8f04e8ef1e6e}) + The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {a5441712-5a4a-43a7-b797-3806cba86e1a}) +---------- +The name of the ParamType (ThingClass: remote, Type: thing, ID: {5910da25-c1ad-417c-9130-8f04e8ef1e6e}) ---------- The name of the ParamType (ThingClass: dimmableLight, Type: thing, ID: {6fe78769-abef-4738-b968-2ff4c3b2a152}) ---------- @@ -244,12 +277,15 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {095a463b-f5 Model ID - - - - + + + + + type - The name of the ParamType (ThingClass: remote, Type: thing, ID: {a12c0dbf-29e3-4580-96b0-728f8277514d}) + The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {87cf0d7a-9ac2-4694-9f5f-1c9c6692a6c5}) +---------- +The name of the ParamType (ThingClass: remote, Type: thing, ID: {a12c0dbf-29e3-4580-96b0-728f8277514d}) ---------- The name of the ParamType (ThingClass: dimmableLight, Type: thing, ID: {0381053b-7ad6-4e67-baac-2b61248f08e3}) ---------- @@ -259,10 +295,10 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {3f3467ef-44 Typ - - - - + + + + uuid The name of the ParamType (ThingClass: remote, Type: thing, ID: {3cdf9de1-ae23-47dc-a8bd-056a6707060c}) ---------- @@ -274,11 +310,14 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {1a5129ca-00 UUID - - - + + + + light id - The name of the ParamType (ThingClass: dimmableLight, Type: thing, ID: {49df749a-9e67-4dc8-81d2-c521e7e8066e}) + The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {90791861-bb27-4ade-8551-306af322b12d}) +---------- +The name of the ParamType (ThingClass: dimmableLight, Type: thing, ID: {49df749a-9e67-4dc8-81d2-c521e7e8066e}) ---------- The name of the ParamType (ThingClass: colorTemperatureLight, Type: thing, ID: {2705f25c-c9bc-40c4-bed2-835308986813}) ---------- @@ -286,9 +325,9 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {491dc012-cc Licht ID - - - + + + power changed The name of the EventType ({5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) of ThingClass dimmableLight ---------- @@ -298,15 +337,15 @@ The name of the EventType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass Eingeschaltet geändert - - - - - - - - - + + + + + + + + + power The name of the ParamType (ThingClass: dimmableLight, ActionType: power, ID: {5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) ---------- @@ -328,9 +367,9 @@ The name of the StateType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass Eingeschaltet - - - + + + Set power The name of the ActionType ({5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) of ThingClass dimmableLight ---------- @@ -340,8 +379,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 ---------- @@ -349,8 +388,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 ---------- @@ -358,15 +397,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}) ---------- @@ -376,15 +415,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 ---------- @@ -394,15 +433,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}) ---------- @@ -424,8 +463,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 ---------- @@ -433,33 +472,33 @@ 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 ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass remote Batterie Ladestatus kritisch geändert - - - + + + Button pressed The name of the EventType ({c45dd703-7cbd-48f7-88dc-31045cc3d39c}) of ThingClass tap ---------- @@ -469,9 +508,9 @@ The name of the EventType ({8da28cf1-2457-451e-953e-2685f8daeda8}) of ThingClass Taste gedrückt - - - + + + Button name The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b8a-4709-8abf-717cf213f4a4}) ---------- @@ -481,26 +520,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}) ---------- @@ -508,17 +547,20 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca8632d Geräte ID - - + + + Uuid - The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {3e9aad4c-1dff-42c0-bbd4-cdd8635c01a7}) + The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {5b8a02b9-3a2b-4178-914d-c62d03281d00}) +---------- +The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {3e9aad4c-1dff-42c0-bbd4-cdd8635c01a7}) ---------- The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {4a15f861-cad6-464a-b250-08793c68ae30}) UUID - - + + Temperature sensor id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {c9e81e29-f8d4-4370-ada2-f48b32def1fe}) ---------- @@ -526,8 +568,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}) ---------- @@ -535,8 +577,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}) ---------- @@ -544,8 +586,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}) ---------- @@ -553,8 +595,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}) ---------- @@ -562,8 +604,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}) ---------- @@ -571,12 +613,15 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {db678144 Lichtsensor UUID - - - - + + + + + Reachable changed - The name of the EventType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor + The name of the EventType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug +---------- +The name of the EventType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor ---------- The name of the EventType ({9fe43e6b-3c29-43a9-bb96-3b80eacc10db}) of ThingClass outdoorSensor ---------- @@ -586,16 +631,22 @@ The name of the EventType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass Erreichbar geändert - - - - - - - - + + + + + + + + + + Reachable - The name of the ParamType (ThingClass: motionSensor, EventType: connected, ID: {19c28b69-a9c2-4908-8255-7681f72c2d92}) + The name of the ParamType (ThingClass: smartPlug, EventType: connected, ID: {6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) +---------- +The name of the StateType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug +---------- +The name of the ParamType (ThingClass: motionSensor, EventType: connected, ID: {19c28b69-a9c2-4908-8255-7681f72c2d92}) ---------- The name of the StateType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor ---------- @@ -613,8 +664,8 @@ The name of the StateType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass Erreichbar - - + + Battery changed The name of the EventType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ---------- @@ -622,10 +673,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}) ---------- @@ -637,9 +688,9 @@ 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 ---------- @@ -649,12 +700,12 @@ The name of the EventType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass Batterieladung kritisch geändert - - - - - - + + + + + + Battery critical The name of the ParamType (ThingClass: motionSensor, EventType: batteryCritical, ID: {d7c4e143-6f03-411e-a12e-dd22806270fd}) ---------- @@ -670,8 +721,8 @@ The name of the StateType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass Batterieladung kritisch - - + + Temperature changed The name of the EventType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ---------- @@ -679,10 +730,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}) ---------- @@ -694,8 +745,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 ---------- @@ -703,10 +754,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}) ---------- @@ -718,8 +769,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 ---------- @@ -727,10 +778,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}) ---------- @@ -742,8 +793,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 ---------- @@ -751,10 +802,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}) ---------- @@ -766,22 +817,22 @@ 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: remote, EventType: connected, ID: {9f9fac89-2dcd-4db6-b214-0065662af62a}) ---------- @@ -805,8 +856,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}) ---------- @@ -814,8 +865,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}) ---------- @@ -823,18 +874,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}) ---------- @@ -850,9 +901,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}) ---------- @@ -862,15 +913,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 ---------- @@ -880,9 +931,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}) ---------- @@ -892,32 +943,32 @@ 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: remote, Type: thing, ID: {2ddb571b-149f-4f08-a76a-78b7d3aa27e0}) Sensor ID - + battery changed The name of the EventType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass remote Batterie geändert - - + + battery The name of the ParamType (ThingClass: remote, EventType: batteryLevel, ID: {683e493a-9796-4d5e-b0e3-61cb178d5819}) ---------- @@ -925,8 +976,8 @@ The name of the StateType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass Batterie - - + + battery critical The name of the ParamType (ThingClass: remote, EventType: batteryCritical, ID: {f8516899-6312-4110-bb97-70ffa81dc530}) ---------- 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 17b64fda..25744657 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,53 @@ 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. - - + + Received unexpected data from hue bridge. - + An error happened pairing the hue bridge. - + 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,35 +58,35 @@ 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 ({9f9fac89-2dcd-4db6-b214-0065662af62a}) of ThingClass remote ---------- @@ -100,44 +100,44 @@ 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}) ---------- @@ -145,32 +145,38 @@ The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass - + Battery level changed The name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - + Hue Motion Sensor The name of the ThingClass ({25b79fff-4b88-4af8-b06c-2fe246238790}) - + 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}) + + + + Long pressed The name of the EventType ({25803922-37f1-47c8-ac00-2d3acb9eb634}) of ThingClass smartButton - - + + Model ID The name of the ParamType (ThingClass: tap, Type: thing, ID: {62d92175-db3a-4da2-a72b-f58f34cb6911}) ---------- @@ -178,8 +184,20 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {9271179f-5 - - + + + + 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 + + + + + Sensor ID The name of the ParamType (ThingClass: tap, Type: thing, ID: {5eca2b24-8986-4487-bc12-50e91d023d97}) ---------- @@ -187,8 +205,8 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {54744fcc-c - - + + Software version The name of the ParamType (ThingClass: bridge, EventType: currentVersion, ID: {4c707b18-6604-4e6d-b6bc-4e27769c2adc}) ---------- @@ -196,14 +214,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}) ---------- @@ -211,8 +241,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: settings, ID: {21d46 - - + + Type The name of the ParamType (ThingClass: tap, Type: thing, ID: {eace85b9-5369-466f-89eb-46c4de718305}) ---------- @@ -220,8 +250,8 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {7221aacc-1 - - + + UUID The name of the ParamType (ThingClass: tap, Type: thing, ID: {25cf4167-6c28-4497-9fa9-3d02faf4f3ed}) ---------- @@ -229,12 +259,15 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {2378a06d-b - - - - + + + + + model id - The name of the ParamType (ThingClass: remote, Type: thing, ID: {5910da25-c1ad-417c-9130-8f04e8ef1e6e}) + The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {a5441712-5a4a-43a7-b797-3806cba86e1a}) +---------- +The name of the ParamType (ThingClass: remote, Type: thing, ID: {5910da25-c1ad-417c-9130-8f04e8ef1e6e}) ---------- The name of the ParamType (ThingClass: dimmableLight, Type: thing, ID: {6fe78769-abef-4738-b968-2ff4c3b2a152}) ---------- @@ -244,12 +277,15 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {095a463b-f5 - - - - + + + + + type - The name of the ParamType (ThingClass: remote, Type: thing, ID: {a12c0dbf-29e3-4580-96b0-728f8277514d}) + The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {87cf0d7a-9ac2-4694-9f5f-1c9c6692a6c5}) +---------- +The name of the ParamType (ThingClass: remote, Type: thing, ID: {a12c0dbf-29e3-4580-96b0-728f8277514d}) ---------- The name of the ParamType (ThingClass: dimmableLight, Type: thing, ID: {0381053b-7ad6-4e67-baac-2b61248f08e3}) ---------- @@ -259,10 +295,10 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {3f3467ef-44 - - - - + + + + uuid The name of the ParamType (ThingClass: remote, Type: thing, ID: {3cdf9de1-ae23-47dc-a8bd-056a6707060c}) ---------- @@ -274,11 +310,14 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {1a5129ca-00 - - - + + + + light id - The name of the ParamType (ThingClass: dimmableLight, Type: thing, ID: {49df749a-9e67-4dc8-81d2-c521e7e8066e}) + The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {90791861-bb27-4ade-8551-306af322b12d}) +---------- +The name of the ParamType (ThingClass: dimmableLight, Type: thing, ID: {49df749a-9e67-4dc8-81d2-c521e7e8066e}) ---------- The name of the ParamType (ThingClass: colorTemperatureLight, Type: thing, ID: {2705f25c-c9bc-40c4-bed2-835308986813}) ---------- @@ -286,9 +325,9 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {491dc012-cc - - - + + + power changed The name of the EventType ({5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) of ThingClass dimmableLight ---------- @@ -298,15 +337,15 @@ The name of the EventType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass - - - - - - - - - + + + + + + + + + power The name of the ParamType (ThingClass: dimmableLight, ActionType: power, ID: {5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) ---------- @@ -328,9 +367,9 @@ The name of the StateType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass - - - + + + Set power The name of the ActionType ({5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) of ThingClass dimmableLight ---------- @@ -340,8 +379,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 ---------- @@ -349,8 +388,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 ---------- @@ -358,15 +397,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}) ---------- @@ -376,15 +415,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 ---------- @@ -394,15 +433,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}) ---------- @@ -424,8 +463,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 ---------- @@ -433,33 +472,33 @@ 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 ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass remote - - - + + + Button pressed The name of the EventType ({c45dd703-7cbd-48f7-88dc-31045cc3d39c}) of ThingClass tap ---------- @@ -469,9 +508,9 @@ The name of the EventType ({8da28cf1-2457-451e-953e-2685f8daeda8}) of ThingClass - - - + + + Button name The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b8a-4709-8abf-717cf213f4a4}) ---------- @@ -481,26 +520,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}) ---------- @@ -508,17 +547,20 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca8632d - - + + + Uuid - The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {3e9aad4c-1dff-42c0-bbd4-cdd8635c01a7}) + The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {5b8a02b9-3a2b-4178-914d-c62d03281d00}) +---------- +The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {3e9aad4c-1dff-42c0-bbd4-cdd8635c01a7}) ---------- The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {4a15f861-cad6-464a-b250-08793c68ae30}) - - + + Temperature sensor id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {c9e81e29-f8d4-4370-ada2-f48b32def1fe}) ---------- @@ -526,8 +568,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}) ---------- @@ -535,8 +577,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}) ---------- @@ -544,8 +586,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}) ---------- @@ -553,8 +595,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}) ---------- @@ -562,8 +604,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}) ---------- @@ -571,12 +613,15 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {db678144 - - - - + + + + + Reachable changed - The name of the EventType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor + The name of the EventType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug +---------- +The name of the EventType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor ---------- The name of the EventType ({9fe43e6b-3c29-43a9-bb96-3b80eacc10db}) of ThingClass outdoorSensor ---------- @@ -586,16 +631,22 @@ The name of the EventType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass - - - - - - - - + + + + + + + + + + Reachable - The name of the ParamType (ThingClass: motionSensor, EventType: connected, ID: {19c28b69-a9c2-4908-8255-7681f72c2d92}) + The name of the ParamType (ThingClass: smartPlug, EventType: connected, ID: {6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) +---------- +The name of the StateType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug +---------- +The name of the ParamType (ThingClass: motionSensor, EventType: connected, ID: {19c28b69-a9c2-4908-8255-7681f72c2d92}) ---------- The name of the StateType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor ---------- @@ -613,8 +664,8 @@ The name of the StateType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass - - + + Battery changed The name of the EventType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ---------- @@ -622,10 +673,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}) ---------- @@ -637,9 +688,9 @@ 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 ---------- @@ -649,12 +700,12 @@ The name of the EventType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass - - - - - - + + + + + + Battery critical The name of the ParamType (ThingClass: motionSensor, EventType: batteryCritical, ID: {d7c4e143-6f03-411e-a12e-dd22806270fd}) ---------- @@ -670,8 +721,8 @@ The name of the StateType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass - - + + Temperature changed The name of the EventType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ---------- @@ -679,10 +730,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}) ---------- @@ -694,8 +745,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 ---------- @@ -703,10 +754,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}) ---------- @@ -718,8 +769,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 ---------- @@ -727,10 +778,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}) ---------- @@ -742,8 +793,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 ---------- @@ -751,10 +802,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}) ---------- @@ -766,22 +817,22 @@ 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: remote, EventType: connected, ID: {9f9fac89-2dcd-4db6-b214-0065662af62a}) ---------- @@ -805,8 +856,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}) ---------- @@ -814,8 +865,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}) ---------- @@ -823,18 +874,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}) ---------- @@ -850,9 +901,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}) ---------- @@ -862,15 +913,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 ---------- @@ -880,9 +931,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}) ---------- @@ -892,32 +943,32 @@ 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: remote, Type: thing, ID: {2ddb571b-149f-4f08-a76a-78b7d3aa27e0}) - + battery changed The name of the EventType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass remote - - + + battery The name of the ParamType (ThingClass: remote, EventType: batteryLevel, ID: {683e493a-9796-4d5e-b0e3-61cb178d5819}) ---------- @@ -925,8 +976,8 @@ The name of the StateType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass - - + + battery critical The name of the ParamType (ThingClass: remote, EventType: batteryCritical, ID: {f8516899-6312-4110-bb97-70ffa81dc530}) ---------- diff --git a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-es.ts b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-es.ts index c2782005..47d76349 100644 --- a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-es.ts +++ b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-es.ts @@ -4,53 +4,53 @@ 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. - - + + 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. - + 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,35 +58,35 @@ 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 ({9f9fac89-2dcd-4db6-b214-0065662af62a}) of ThingClass remote ---------- @@ -100,44 +100,44 @@ 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}) ---------- @@ -145,32 +145,38 @@ The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass - + Battery level changed The name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - + Hue Motion Sensor The name of the ThingClass ({25b79fff-4b88-4af8-b06c-2fe246238790}) Hue Motion Sensor - + 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}) + + + + 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: tap, Type: thing, ID: {62d92175-db3a-4da2-a72b-f58f34cb6911}) ---------- @@ -178,8 +184,20 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {9271179f-5 Model ID - - + + + + 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 + + + + + Sensor ID The name of the ParamType (ThingClass: tap, Type: thing, ID: {5eca2b24-8986-4487-bc12-50e91d023d97}) ---------- @@ -187,8 +205,8 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {54744fcc-c Sensor ID - - + + Software version The name of the ParamType (ThingClass: bridge, EventType: currentVersion, ID: {4c707b18-6604-4e6d-b6bc-4e27769c2adc}) ---------- @@ -196,14 +214,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}) ---------- @@ -211,8 +241,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: settings, ID: {21d46 Tijdspanne - - + + Type The name of the ParamType (ThingClass: tap, Type: thing, ID: {eace85b9-5369-466f-89eb-46c4de718305}) ---------- @@ -220,8 +250,8 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {7221aacc-1 Type - - + + UUID The name of the ParamType (ThingClass: tap, Type: thing, ID: {25cf4167-6c28-4497-9fa9-3d02faf4f3ed}) ---------- @@ -229,12 +259,15 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {2378a06d-b UUID - - - - + + + + + model id - The name of the ParamType (ThingClass: remote, Type: thing, ID: {5910da25-c1ad-417c-9130-8f04e8ef1e6e}) + The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {a5441712-5a4a-43a7-b797-3806cba86e1a}) +---------- +The name of the ParamType (ThingClass: remote, Type: thing, ID: {5910da25-c1ad-417c-9130-8f04e8ef1e6e}) ---------- The name of the ParamType (ThingClass: dimmableLight, Type: thing, ID: {6fe78769-abef-4738-b968-2ff4c3b2a152}) ---------- @@ -244,12 +277,15 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {095a463b-f5 identificación de modelo - - - - + + + + + type - The name of the ParamType (ThingClass: remote, Type: thing, ID: {a12c0dbf-29e3-4580-96b0-728f8277514d}) + The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {87cf0d7a-9ac2-4694-9f5f-1c9c6692a6c5}) +---------- +The name of the ParamType (ThingClass: remote, Type: thing, ID: {a12c0dbf-29e3-4580-96b0-728f8277514d}) ---------- The name of the ParamType (ThingClass: dimmableLight, Type: thing, ID: {0381053b-7ad6-4e67-baac-2b61248f08e3}) ---------- @@ -259,10 +295,10 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {3f3467ef-44 modelo - - - - + + + + uuid The name of the ParamType (ThingClass: remote, Type: thing, ID: {3cdf9de1-ae23-47dc-a8bd-056a6707060c}) ---------- @@ -274,11 +310,14 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {1a5129ca-00 uuid - - - + + + + light id - The name of the ParamType (ThingClass: dimmableLight, Type: thing, ID: {49df749a-9e67-4dc8-81d2-c521e7e8066e}) + The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {90791861-bb27-4ade-8551-306af322b12d}) +---------- +The name of the ParamType (ThingClass: dimmableLight, Type: thing, ID: {49df749a-9e67-4dc8-81d2-c521e7e8066e}) ---------- The name of the ParamType (ThingClass: colorTemperatureLight, Type: thing, ID: {2705f25c-c9bc-40c4-bed2-835308986813}) ---------- @@ -286,9 +325,9 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {491dc012-cc identificación de luz - - - + + + power changed The name of the EventType ({5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) of ThingClass dimmableLight ---------- @@ -298,15 +337,15 @@ The name of the EventType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass alimentación modificada - - - - - - - - - + + + + + + + + + power The name of the ParamType (ThingClass: dimmableLight, ActionType: power, ID: {5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) ---------- @@ -328,9 +367,9 @@ The name of the StateType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass alimentación - - - + + + Set power The name of the ActionType ({5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) of ThingClass dimmableLight ---------- @@ -340,8 +379,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 ---------- @@ -349,8 +388,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 ---------- @@ -358,15 +397,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}) ---------- @@ -376,15 +415,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 ---------- @@ -394,15 +433,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}) ---------- @@ -424,8 +463,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 ---------- @@ -433,33 +472,33 @@ 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 ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass remote batería en estado crítico modificada - - - + + + Button pressed The name of the EventType ({c45dd703-7cbd-48f7-88dc-31045cc3d39c}) of ThingClass tap ---------- @@ -469,9 +508,9 @@ The name of the EventType ({8da28cf1-2457-451e-953e-2685f8daeda8}) of ThingClass Botón pulsado - - - + + + Button name The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b8a-4709-8abf-717cf213f4a4}) ---------- @@ -481,26 +520,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}) ---------- @@ -508,17 +547,20 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca8632d Modell-ID - - + + + Uuid - The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {3e9aad4c-1dff-42c0-bbd4-cdd8635c01a7}) + The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {5b8a02b9-3a2b-4178-914d-c62d03281d00}) +---------- +The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {3e9aad4c-1dff-42c0-bbd4-cdd8635c01a7}) ---------- The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {4a15f861-cad6-464a-b250-08793c68ae30}) Uuid - - + + Temperature sensor id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {c9e81e29-f8d4-4370-ada2-f48b32def1fe}) ---------- @@ -526,8 +568,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}) ---------- @@ -535,8 +577,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}) ---------- @@ -544,8 +586,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}) ---------- @@ -553,8 +595,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}) ---------- @@ -562,8 +604,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}) ---------- @@ -571,12 +613,15 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {db678144 Light sensor uuid - - - - + + + + + Reachable changed - The name of the EventType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor + The name of the EventType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug +---------- +The name of the EventType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor ---------- The name of the EventType ({9fe43e6b-3c29-43a9-bb96-3b80eacc10db}) of ThingClass outdoorSensor ---------- @@ -586,16 +631,22 @@ The name of the EventType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass Reachable cambió - - - - - - - - + + + + + + + + + + Reachable - The name of the ParamType (ThingClass: motionSensor, EventType: connected, ID: {19c28b69-a9c2-4908-8255-7681f72c2d92}) + The name of the ParamType (ThingClass: smartPlug, EventType: connected, ID: {6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) +---------- +The name of the StateType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug +---------- +The name of the ParamType (ThingClass: motionSensor, EventType: connected, ID: {19c28b69-a9c2-4908-8255-7681f72c2d92}) ---------- The name of the StateType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor ---------- @@ -613,8 +664,8 @@ The name of the StateType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass Alcanzable - - + + Battery changed The name of the EventType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ---------- @@ -622,10 +673,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}) ---------- @@ -637,9 +688,9 @@ 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 ---------- @@ -649,12 +700,12 @@ The name of the EventType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass Batería crítica cambiada - - - - - - + + + + + + Battery critical The name of the ParamType (ThingClass: motionSensor, EventType: batteryCritical, ID: {d7c4e143-6f03-411e-a12e-dd22806270fd}) ---------- @@ -670,8 +721,8 @@ The name of the StateType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass Batería crítica - - + + Temperature changed The name of the EventType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ---------- @@ -679,10 +730,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}) ---------- @@ -694,8 +745,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 ---------- @@ -703,10 +754,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}) ---------- @@ -718,8 +769,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 ---------- @@ -727,10 +778,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}) ---------- @@ -742,8 +793,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 ---------- @@ -751,10 +802,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}) ---------- @@ -766,22 +817,22 @@ 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: remote, EventType: connected, ID: {9f9fac89-2dcd-4db6-b214-0065662af62a}) ---------- @@ -805,8 +856,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}) ---------- @@ -814,8 +865,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}) ---------- @@ -823,18 +874,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}) ---------- @@ -850,9 +901,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}) ---------- @@ -862,15 +913,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 ---------- @@ -880,9 +931,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}) ---------- @@ -892,32 +943,32 @@ 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: remote, Type: thing, ID: {2ddb571b-149f-4f08-a76a-78b7d3aa27e0}) identificación de sensor - + battery changed The name of the EventType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass remote batería modificada - - + + battery The name of the ParamType (ThingClass: remote, EventType: batteryLevel, ID: {683e493a-9796-4d5e-b0e3-61cb178d5819}) ---------- @@ -925,8 +976,8 @@ The name of the StateType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass batería - - + + battery critical The name of the ParamType (ThingClass: remote, EventType: batteryCritical, ID: {f8516899-6312-4110-bb97-70ffa81dc530}) ---------- diff --git a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-fr.ts b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-fr.ts index f6b8afb4..90b8a964 100644 --- a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-fr.ts +++ b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-fr.ts @@ -4,53 +4,53 @@ 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. - - + + 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. - + 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,35 +58,35 @@ 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 ({9f9fac89-2dcd-4db6-b214-0065662af62a}) of ThingClass remote ---------- @@ -100,44 +100,44 @@ 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}) ---------- @@ -145,32 +145,38 @@ The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass - + Battery level changed The name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - + Hue Motion Sensor The name of the ThingClass ({25b79fff-4b88-4af8-b06c-2fe246238790}) Hue Motion Sensor - + 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}) + + + + 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: tap, Type: thing, ID: {62d92175-db3a-4da2-a72b-f58f34cb6911}) ---------- @@ -178,8 +184,20 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {9271179f-5 Model ID - - + + + + 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 + + + + + Sensor ID The name of the ParamType (ThingClass: tap, Type: thing, ID: {5eca2b24-8986-4487-bc12-50e91d023d97}) ---------- @@ -187,8 +205,8 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {54744fcc-c Sensor ID - - + + Software version The name of the ParamType (ThingClass: bridge, EventType: currentVersion, ID: {4c707b18-6604-4e6d-b6bc-4e27769c2adc}) ---------- @@ -196,14 +214,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}) ---------- @@ -211,8 +241,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: settings, ID: {21d46 Période de temps - - + + Type The name of the ParamType (ThingClass: tap, Type: thing, ID: {eace85b9-5369-466f-89eb-46c4de718305}) ---------- @@ -220,8 +250,8 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {7221aacc-1 Type - - + + UUID The name of the ParamType (ThingClass: tap, Type: thing, ID: {25cf4167-6c28-4497-9fa9-3d02faf4f3ed}) ---------- @@ -229,12 +259,15 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {2378a06d-b UUID - - - - + + + + + model id - The name of the ParamType (ThingClass: remote, Type: thing, ID: {5910da25-c1ad-417c-9130-8f04e8ef1e6e}) + The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {a5441712-5a4a-43a7-b797-3806cba86e1a}) +---------- +The name of the ParamType (ThingClass: remote, Type: thing, ID: {5910da25-c1ad-417c-9130-8f04e8ef1e6e}) ---------- The name of the ParamType (ThingClass: dimmableLight, Type: thing, ID: {6fe78769-abef-4738-b968-2ff4c3b2a152}) ---------- @@ -244,12 +277,15 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {095a463b-f5 ID de modèle - - - - + + + + + type - The name of the ParamType (ThingClass: remote, Type: thing, ID: {a12c0dbf-29e3-4580-96b0-728f8277514d}) + The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {87cf0d7a-9ac2-4694-9f5f-1c9c6692a6c5}) +---------- +The name of the ParamType (ThingClass: remote, Type: thing, ID: {a12c0dbf-29e3-4580-96b0-728f8277514d}) ---------- The name of the ParamType (ThingClass: dimmableLight, Type: thing, ID: {0381053b-7ad6-4e67-baac-2b61248f08e3}) ---------- @@ -259,10 +295,10 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {3f3467ef-44 Type - - - - + + + + uuid The name of the ParamType (ThingClass: remote, Type: thing, ID: {3cdf9de1-ae23-47dc-a8bd-056a6707060c}) ---------- @@ -274,11 +310,14 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {1a5129ca-00 UUID - - - + + + + light id - The name of the ParamType (ThingClass: dimmableLight, Type: thing, ID: {49df749a-9e67-4dc8-81d2-c521e7e8066e}) + The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {90791861-bb27-4ade-8551-306af322b12d}) +---------- +The name of the ParamType (ThingClass: dimmableLight, Type: thing, ID: {49df749a-9e67-4dc8-81d2-c521e7e8066e}) ---------- The name of the ParamType (ThingClass: colorTemperatureLight, Type: thing, ID: {2705f25c-c9bc-40c4-bed2-835308986813}) ---------- @@ -286,9 +325,9 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {491dc012-cc ID du luminaire - - - + + + power changed The name of the EventType ({5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) of ThingClass dimmableLight ---------- @@ -298,15 +337,15 @@ The name of the EventType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass Alimentation modifiée - - - - - - - - - + + + + + + + + + power The name of the ParamType (ThingClass: dimmableLight, ActionType: power, ID: {5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) ---------- @@ -328,9 +367,9 @@ The name of the StateType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass Alimentation - - - + + + Set power The name of the ActionType ({5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) of ThingClass dimmableLight ---------- @@ -340,8 +379,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 ---------- @@ -349,8 +388,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 ---------- @@ -358,15 +397,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}) ---------- @@ -376,15 +415,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 ---------- @@ -394,15 +433,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}) ---------- @@ -424,8 +463,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 ---------- @@ -433,33 +472,33 @@ 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 ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass remote Statut de batterie critique modifié - - - + + + Button pressed The name of the EventType ({c45dd703-7cbd-48f7-88dc-31045cc3d39c}) of ThingClass tap ---------- @@ -469,9 +508,9 @@ The name of the EventType ({8da28cf1-2457-451e-953e-2685f8daeda8}) of ThingClass Bouton appuyé - - - + + + Button name The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b8a-4709-8abf-717cf213f4a4}) ---------- @@ -481,26 +520,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}) ---------- @@ -508,17 +547,20 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca8632d Model id - - + + + Uuid - The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {3e9aad4c-1dff-42c0-bbd4-cdd8635c01a7}) + The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {5b8a02b9-3a2b-4178-914d-c62d03281d00}) +---------- +The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {3e9aad4c-1dff-42c0-bbd4-cdd8635c01a7}) ---------- The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {4a15f861-cad6-464a-b250-08793c68ae30}) Uuid - - + + Temperature sensor id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {c9e81e29-f8d4-4370-ada2-f48b32def1fe}) ---------- @@ -526,8 +568,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}) ---------- @@ -535,8 +577,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}) ---------- @@ -544,8 +586,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}) ---------- @@ -553,8 +595,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}) ---------- @@ -562,8 +604,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}) ---------- @@ -571,12 +613,15 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {db678144 Capteur de lumière uuid - - - - + + + + + Reachable changed - The name of the EventType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor + The name of the EventType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug +---------- +The name of the EventType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor ---------- The name of the EventType ({9fe43e6b-3c29-43a9-bb96-3b80eacc10db}) of ThingClass outdoorSensor ---------- @@ -586,16 +631,22 @@ The name of the EventType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass Atteignable changé - - - - - - - - + + + + + + + + + + Reachable - The name of the ParamType (ThingClass: motionSensor, EventType: connected, ID: {19c28b69-a9c2-4908-8255-7681f72c2d92}) + The name of the ParamType (ThingClass: smartPlug, EventType: connected, ID: {6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) +---------- +The name of the StateType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug +---------- +The name of the ParamType (ThingClass: motionSensor, EventType: connected, ID: {19c28b69-a9c2-4908-8255-7681f72c2d92}) ---------- The name of the StateType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor ---------- @@ -613,8 +664,8 @@ The name of the StateType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass Accessible à l'adresse suivante - - + + Battery changed The name of the EventType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ---------- @@ -622,10 +673,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}) ---------- @@ -637,9 +688,9 @@ 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 ---------- @@ -649,12 +700,12 @@ The name of the EventType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass Changement de pile critique - - - - - - + + + + + + Battery critical The name of the ParamType (ThingClass: motionSensor, EventType: batteryCritical, ID: {d7c4e143-6f03-411e-a12e-dd22806270fd}) ---------- @@ -670,8 +721,8 @@ The name of the StateType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass Batterie critique - - + + Temperature changed The name of the EventType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ---------- @@ -679,10 +730,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}) ---------- @@ -694,8 +745,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 ---------- @@ -703,10 +754,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}) ---------- @@ -718,8 +769,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 ---------- @@ -727,10 +778,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}) ---------- @@ -742,8 +793,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 ---------- @@ -751,10 +802,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}) ---------- @@ -766,22 +817,22 @@ 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: remote, EventType: connected, ID: {9f9fac89-2dcd-4db6-b214-0065662af62a}) ---------- @@ -805,8 +856,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}) ---------- @@ -814,8 +865,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}) ---------- @@ -823,18 +874,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}) ---------- @@ -850,9 +901,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}) ---------- @@ -862,15 +913,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 ---------- @@ -880,9 +931,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}) ---------- @@ -892,32 +943,32 @@ 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: remote, Type: thing, ID: {2ddb571b-149f-4f08-a76a-78b7d3aa27e0}) ID de capteur - + battery changed The name of the EventType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass remote Batterie changée - - + + battery The name of the ParamType (ThingClass: remote, EventType: batteryLevel, ID: {683e493a-9796-4d5e-b0e3-61cb178d5819}) ---------- @@ -925,8 +976,8 @@ The name of the StateType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass Batterie - - + + battery critical The name of the ParamType (ThingClass: remote, EventType: batteryCritical, ID: {f8516899-6312-4110-bb97-70ffa81dc530}) ---------- diff --git a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-it.ts b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-it.ts index c16272f2..19845eea 100644 --- a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-it.ts +++ b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-it.ts @@ -4,53 +4,53 @@ 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. - - + + 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. - + 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,35 +58,35 @@ 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 ({9f9fac89-2dcd-4db6-b214-0065662af62a}) of ThingClass remote ---------- @@ -100,44 +100,44 @@ 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}) ---------- @@ -145,32 +145,38 @@ The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass - + Battery level changed The name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - + Hue Motion Sensor The name of the ThingClass ({25b79fff-4b88-4af8-b06c-2fe246238790}) Hue Motion Sensor - + 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}) + + + + 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: tap, Type: thing, ID: {62d92175-db3a-4da2-a72b-f58f34cb6911}) ---------- @@ -178,8 +184,20 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {9271179f-5 Model ID - - + + + + 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 + + + + + Sensor ID The name of the ParamType (ThingClass: tap, Type: thing, ID: {5eca2b24-8986-4487-bc12-50e91d023d97}) ---------- @@ -187,8 +205,8 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {54744fcc-c Sensor ID - - + + Software version The name of the ParamType (ThingClass: bridge, EventType: currentVersion, ID: {4c707b18-6604-4e6d-b6bc-4e27769c2adc}) ---------- @@ -196,14 +214,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}) ---------- @@ -211,8 +241,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: settings, ID: {21d46 Periodo di tempo - - + + Type The name of the ParamType (ThingClass: tap, Type: thing, ID: {eace85b9-5369-466f-89eb-46c4de718305}) ---------- @@ -220,8 +250,8 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {7221aacc-1 Type - - + + UUID The name of the ParamType (ThingClass: tap, Type: thing, ID: {25cf4167-6c28-4497-9fa9-3d02faf4f3ed}) ---------- @@ -229,12 +259,15 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {2378a06d-b UUID - - - - + + + + + model id - The name of the ParamType (ThingClass: remote, Type: thing, ID: {5910da25-c1ad-417c-9130-8f04e8ef1e6e}) + The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {a5441712-5a4a-43a7-b797-3806cba86e1a}) +---------- +The name of the ParamType (ThingClass: remote, Type: thing, ID: {5910da25-c1ad-417c-9130-8f04e8ef1e6e}) ---------- The name of the ParamType (ThingClass: dimmableLight, Type: thing, ID: {6fe78769-abef-4738-b968-2ff4c3b2a152}) ---------- @@ -244,12 +277,15 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {095a463b-f5 id modello - - - - + + + + + type - The name of the ParamType (ThingClass: remote, Type: thing, ID: {a12c0dbf-29e3-4580-96b0-728f8277514d}) + The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {87cf0d7a-9ac2-4694-9f5f-1c9c6692a6c5}) +---------- +The name of the ParamType (ThingClass: remote, Type: thing, ID: {a12c0dbf-29e3-4580-96b0-728f8277514d}) ---------- The name of the ParamType (ThingClass: dimmableLight, Type: thing, ID: {0381053b-7ad6-4e67-baac-2b61248f08e3}) ---------- @@ -259,10 +295,10 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {3f3467ef-44 tipo - - - - + + + + uuid The name of the ParamType (ThingClass: remote, Type: thing, ID: {3cdf9de1-ae23-47dc-a8bd-056a6707060c}) ---------- @@ -274,11 +310,14 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {1a5129ca-00 uuid - - - + + + + light id - The name of the ParamType (ThingClass: dimmableLight, Type: thing, ID: {49df749a-9e67-4dc8-81d2-c521e7e8066e}) + The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {90791861-bb27-4ade-8551-306af322b12d}) +---------- +The name of the ParamType (ThingClass: dimmableLight, Type: thing, ID: {49df749a-9e67-4dc8-81d2-c521e7e8066e}) ---------- The name of the ParamType (ThingClass: colorTemperatureLight, Type: thing, ID: {2705f25c-c9bc-40c4-bed2-835308986813}) ---------- @@ -286,9 +325,9 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {491dc012-cc id illuminazione - - - + + + power changed The name of the EventType ({5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) of ThingClass dimmableLight ---------- @@ -298,15 +337,15 @@ The name of the EventType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass potenza modificata - - - - - - - - - + + + + + + + + + power The name of the ParamType (ThingClass: dimmableLight, ActionType: power, ID: {5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) ---------- @@ -328,9 +367,9 @@ The name of the StateType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass potenza - - - + + + Set power The name of the ActionType ({5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) of ThingClass dimmableLight ---------- @@ -340,8 +379,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 ---------- @@ -349,8 +388,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 ---------- @@ -358,15 +397,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}) ---------- @@ -376,15 +415,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 ---------- @@ -394,15 +433,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}) ---------- @@ -424,8 +463,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 ---------- @@ -433,33 +472,33 @@ 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 ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass remote batteria critica modificata - - - + + + Button pressed The name of the EventType ({c45dd703-7cbd-48f7-88dc-31045cc3d39c}) of ThingClass tap ---------- @@ -469,9 +508,9 @@ The name of the EventType ({8da28cf1-2457-451e-953e-2685f8daeda8}) of ThingClass Pulsante premuto - - - + + + Button name The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b8a-4709-8abf-717cf213f4a4}) ---------- @@ -481,26 +520,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}) ---------- @@ -508,17 +547,20 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca8632d Model id - - + + + Uuid - The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {3e9aad4c-1dff-42c0-bbd4-cdd8635c01a7}) + The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {5b8a02b9-3a2b-4178-914d-c62d03281d00}) +---------- +The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {3e9aad4c-1dff-42c0-bbd4-cdd8635c01a7}) ---------- The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {4a15f861-cad6-464a-b250-08793c68ae30}) Uuid - - + + Temperature sensor id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {c9e81e29-f8d4-4370-ada2-f48b32def1fe}) ---------- @@ -526,8 +568,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}) ---------- @@ -535,8 +577,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}) ---------- @@ -544,8 +586,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}) ---------- @@ -553,8 +595,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}) ---------- @@ -562,8 +604,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}) ---------- @@ -571,12 +613,15 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {db678144 Light sensor uuid - - - - + + + + + Reachable changed - The name of the EventType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor + The name of the EventType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug +---------- +The name of the EventType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor ---------- The name of the EventType ({9fe43e6b-3c29-43a9-bb96-3b80eacc10db}) of ThingClass outdoorSensor ---------- @@ -586,16 +631,22 @@ The name of the EventType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass Reachable changed - - - - - - - - + + + + + + + + + + Reachable - The name of the ParamType (ThingClass: motionSensor, EventType: connected, ID: {19c28b69-a9c2-4908-8255-7681f72c2d92}) + The name of the ParamType (ThingClass: smartPlug, EventType: connected, ID: {6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) +---------- +The name of the StateType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug +---------- +The name of the ParamType (ThingClass: motionSensor, EventType: connected, ID: {19c28b69-a9c2-4908-8255-7681f72c2d92}) ---------- The name of the StateType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor ---------- @@ -613,8 +664,8 @@ The name of the StateType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass Raggiungibile - - + + Battery changed The name of the EventType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ---------- @@ -622,10 +673,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}) ---------- @@ -637,9 +688,9 @@ 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 ---------- @@ -649,12 +700,12 @@ The name of the EventType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass Sostituzione della batteria critica - - - - - - + + + + + + Battery critical The name of the ParamType (ThingClass: motionSensor, EventType: batteryCritical, ID: {d7c4e143-6f03-411e-a12e-dd22806270fd}) ---------- @@ -670,8 +721,8 @@ The name of the StateType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass Batteria critica - - + + Temperature changed The name of the EventType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ---------- @@ -679,10 +730,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}) ---------- @@ -694,8 +745,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 ---------- @@ -703,10 +754,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}) ---------- @@ -718,8 +769,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 ---------- @@ -727,10 +778,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}) ---------- @@ -742,8 +793,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 ---------- @@ -751,10 +802,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}) ---------- @@ -766,22 +817,22 @@ 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: remote, EventType: connected, ID: {9f9fac89-2dcd-4db6-b214-0065662af62a}) ---------- @@ -805,8 +856,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}) ---------- @@ -814,8 +865,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}) ---------- @@ -823,18 +874,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}) ---------- @@ -850,9 +901,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}) ---------- @@ -862,15 +913,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 ---------- @@ -880,9 +931,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}) ---------- @@ -892,32 +943,32 @@ 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: remote, Type: thing, ID: {2ddb571b-149f-4f08-a76a-78b7d3aa27e0}) id sensore - + battery changed The name of the EventType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass remote batteria modificata - - + + battery The name of the ParamType (ThingClass: remote, EventType: batteryLevel, ID: {683e493a-9796-4d5e-b0e3-61cb178d5819}) ---------- @@ -925,8 +976,8 @@ The name of the StateType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass batteria - - + + battery critical The name of the ParamType (ThingClass: remote, EventType: batteryCritical, ID: {f8516899-6312-4110-bb97-70ffa81dc530}) ---------- diff --git a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-nl.ts b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-nl.ts index 4a95c33b..fa6662b6 100644 --- a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-nl.ts +++ b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-nl.ts @@ -4,53 +4,53 @@ 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. - - + + 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. - + 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,35 +58,35 @@ 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 ({9f9fac89-2dcd-4db6-b214-0065662af62a}) of ThingClass remote ---------- @@ -100,44 +100,44 @@ 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}) ---------- @@ -145,32 +145,38 @@ The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass - + Battery level changed The name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - + Hue Motion Sensor The name of the ThingClass ({25b79fff-4b88-4af8-b06c-2fe246238790}) Hue Motion Sensor - + 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}) + + + + 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: tap, Type: thing, ID: {62d92175-db3a-4da2-a72b-f58f34cb6911}) ---------- @@ -178,8 +184,20 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {9271179f-5 Model ID - - + + + + 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 + + + + + Sensor ID The name of the ParamType (ThingClass: tap, Type: thing, ID: {5eca2b24-8986-4487-bc12-50e91d023d97}) ---------- @@ -187,8 +205,8 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {54744fcc-c Sensor ID - - + + Software version The name of the ParamType (ThingClass: bridge, EventType: currentVersion, ID: {4c707b18-6604-4e6d-b6bc-4e27769c2adc}) ---------- @@ -196,14 +214,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}) ---------- @@ -211,8 +241,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: settings, ID: {21d46 Tijdspanne - - + + Type The name of the ParamType (ThingClass: tap, Type: thing, ID: {eace85b9-5369-466f-89eb-46c4de718305}) ---------- @@ -220,8 +250,8 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {7221aacc-1 Type - - + + UUID The name of the ParamType (ThingClass: tap, Type: thing, ID: {25cf4167-6c28-4497-9fa9-3d02faf4f3ed}) ---------- @@ -229,12 +259,15 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {2378a06d-b UUID - - - - + + + + + model id - The name of the ParamType (ThingClass: remote, Type: thing, ID: {5910da25-c1ad-417c-9130-8f04e8ef1e6e}) + The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {a5441712-5a4a-43a7-b797-3806cba86e1a}) +---------- +The name of the ParamType (ThingClass: remote, Type: thing, ID: {5910da25-c1ad-417c-9130-8f04e8ef1e6e}) ---------- The name of the ParamType (ThingClass: dimmableLight, Type: thing, ID: {6fe78769-abef-4738-b968-2ff4c3b2a152}) ---------- @@ -244,12 +277,15 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {095a463b-f5 model-id - - - - + + + + + type - The name of the ParamType (ThingClass: remote, Type: thing, ID: {a12c0dbf-29e3-4580-96b0-728f8277514d}) + The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {87cf0d7a-9ac2-4694-9f5f-1c9c6692a6c5}) +---------- +The name of the ParamType (ThingClass: remote, Type: thing, ID: {a12c0dbf-29e3-4580-96b0-728f8277514d}) ---------- The name of the ParamType (ThingClass: dimmableLight, Type: thing, ID: {0381053b-7ad6-4e67-baac-2b61248f08e3}) ---------- @@ -259,10 +295,10 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {3f3467ef-44 type - - - - + + + + uuid The name of the ParamType (ThingClass: remote, Type: thing, ID: {3cdf9de1-ae23-47dc-a8bd-056a6707060c}) ---------- @@ -274,11 +310,14 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {1a5129ca-00 uuid - - - + + + + light id - The name of the ParamType (ThingClass: dimmableLight, Type: thing, ID: {49df749a-9e67-4dc8-81d2-c521e7e8066e}) + The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {90791861-bb27-4ade-8551-306af322b12d}) +---------- +The name of the ParamType (ThingClass: dimmableLight, Type: thing, ID: {49df749a-9e67-4dc8-81d2-c521e7e8066e}) ---------- The name of the ParamType (ThingClass: colorTemperatureLight, Type: thing, ID: {2705f25c-c9bc-40c4-bed2-835308986813}) ---------- @@ -286,9 +325,9 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {491dc012-cc lamp-id - - - + + + power changed The name of the EventType ({5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) of ThingClass dimmableLight ---------- @@ -298,15 +337,15 @@ The name of the EventType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass vermogen gewijzigd - - - - - - - - - + + + + + + + + + power The name of the ParamType (ThingClass: dimmableLight, ActionType: power, ID: {5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) ---------- @@ -328,9 +367,9 @@ The name of the StateType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass vermogen - - - + + + Set power The name of the ActionType ({5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) of ThingClass dimmableLight ---------- @@ -340,8 +379,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 ---------- @@ -349,8 +388,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 ---------- @@ -358,15 +397,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}) ---------- @@ -376,15 +415,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 ---------- @@ -394,15 +433,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}) ---------- @@ -424,8 +463,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 ---------- @@ -433,33 +472,33 @@ 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 ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass remote batterij kritiek gewijzigd - - - + + + Button pressed The name of the EventType ({c45dd703-7cbd-48f7-88dc-31045cc3d39c}) of ThingClass tap ---------- @@ -469,9 +508,9 @@ The name of the EventType ({8da28cf1-2457-451e-953e-2685f8daeda8}) of ThingClass Knop ingedrukt - - - + + + Button name The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b8a-4709-8abf-717cf213f4a4}) ---------- @@ -481,26 +520,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}) ---------- @@ -508,17 +547,20 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca8632d Model id - - + + + Uuid - The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {3e9aad4c-1dff-42c0-bbd4-cdd8635c01a7}) + The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {5b8a02b9-3a2b-4178-914d-c62d03281d00}) +---------- +The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {3e9aad4c-1dff-42c0-bbd4-cdd8635c01a7}) ---------- The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {4a15f861-cad6-464a-b250-08793c68ae30}) UUID - - + + Temperature sensor id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {c9e81e29-f8d4-4370-ada2-f48b32def1fe}) ---------- @@ -526,8 +568,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}) ---------- @@ -535,8 +577,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}) ---------- @@ -544,8 +586,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}) ---------- @@ -553,8 +595,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}) ---------- @@ -562,8 +604,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}) ---------- @@ -571,12 +613,15 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {db678144 Light sensor uuid - - - - + + + + + Reachable changed - The name of the EventType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor + The name of the EventType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug +---------- +The name of the EventType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor ---------- The name of the EventType ({9fe43e6b-3c29-43a9-bb96-3b80eacc10db}) of ThingClass outdoorSensor ---------- @@ -586,16 +631,22 @@ The name of the EventType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass Bereikbaar veranderd - - - - - - - - + + + + + + + + + + Reachable - The name of the ParamType (ThingClass: motionSensor, EventType: connected, ID: {19c28b69-a9c2-4908-8255-7681f72c2d92}) + The name of the ParamType (ThingClass: smartPlug, EventType: connected, ID: {6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) +---------- +The name of the StateType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug +---------- +The name of the ParamType (ThingClass: motionSensor, EventType: connected, ID: {19c28b69-a9c2-4908-8255-7681f72c2d92}) ---------- The name of the StateType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor ---------- @@ -613,8 +664,8 @@ The name of the StateType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass Bereikbaar - - + + Battery changed The name of the EventType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ---------- @@ -622,10 +673,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}) ---------- @@ -637,9 +688,9 @@ 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 ---------- @@ -649,12 +700,12 @@ The name of the EventType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass Kritieke batterij vervangen - - - - - - + + + + + + Battery critical The name of the ParamType (ThingClass: motionSensor, EventType: batteryCritical, ID: {d7c4e143-6f03-411e-a12e-dd22806270fd}) ---------- @@ -670,8 +721,8 @@ The name of the StateType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass Batterijkritisch - - + + Temperature changed The name of the EventType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ---------- @@ -679,10 +730,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}) ---------- @@ -694,8 +745,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 ---------- @@ -703,10 +754,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}) ---------- @@ -718,8 +769,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 ---------- @@ -727,10 +778,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}) ---------- @@ -742,8 +793,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 ---------- @@ -751,10 +802,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}) ---------- @@ -766,22 +817,22 @@ 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: remote, EventType: connected, ID: {9f9fac89-2dcd-4db6-b214-0065662af62a}) ---------- @@ -805,8 +856,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}) ---------- @@ -814,8 +865,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}) ---------- @@ -823,18 +874,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}) ---------- @@ -850,9 +901,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}) ---------- @@ -862,15 +913,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 ---------- @@ -880,9 +931,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}) ---------- @@ -892,32 +943,32 @@ 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: remote, Type: thing, ID: {2ddb571b-149f-4f08-a76a-78b7d3aa27e0}) sensor-id - + battery changed The name of the EventType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass remote batterij vervangen - - + + battery The name of the ParamType (ThingClass: remote, EventType: batteryLevel, ID: {683e493a-9796-4d5e-b0e3-61cb178d5819}) ---------- @@ -925,8 +976,8 @@ The name of the StateType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass batterij - - + + battery critical The name of the ParamType (ThingClass: remote, EventType: batteryCritical, ID: {f8516899-6312-4110-bb97-70ffa81dc530}) ---------- diff --git a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-pt.ts b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-pt.ts index 1eee1d44..66765a60 100644 --- a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-pt.ts +++ b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-pt.ts @@ -4,53 +4,53 @@ 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. - - + + Received unexpected data from hue bridge. - + An error happened pairing the hue bridge. - + 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,35 +58,35 @@ 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 ({9f9fac89-2dcd-4db6-b214-0065662af62a}) of ThingClass remote ---------- @@ -100,44 +100,44 @@ 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}) ---------- @@ -145,32 +145,38 @@ The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass - + Battery level changed The name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - + Hue Motion Sensor The name of the ThingClass ({25b79fff-4b88-4af8-b06c-2fe246238790}) - + 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}) + + + + Long pressed The name of the EventType ({25803922-37f1-47c8-ac00-2d3acb9eb634}) of ThingClass smartButton - - + + Model ID The name of the ParamType (ThingClass: tap, Type: thing, ID: {62d92175-db3a-4da2-a72b-f58f34cb6911}) ---------- @@ -178,8 +184,20 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {9271179f-5 - - + + + + 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 + + + + + Sensor ID The name of the ParamType (ThingClass: tap, Type: thing, ID: {5eca2b24-8986-4487-bc12-50e91d023d97}) ---------- @@ -187,8 +205,8 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {54744fcc-c - - + + Software version The name of the ParamType (ThingClass: bridge, EventType: currentVersion, ID: {4c707b18-6604-4e6d-b6bc-4e27769c2adc}) ---------- @@ -196,14 +214,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}) ---------- @@ -211,8 +241,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: settings, ID: {21d46 - - + + Type The name of the ParamType (ThingClass: tap, Type: thing, ID: {eace85b9-5369-466f-89eb-46c4de718305}) ---------- @@ -220,8 +250,8 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {7221aacc-1 - - + + UUID The name of the ParamType (ThingClass: tap, Type: thing, ID: {25cf4167-6c28-4497-9fa9-3d02faf4f3ed}) ---------- @@ -229,12 +259,15 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {2378a06d-b - - - - + + + + + model id - The name of the ParamType (ThingClass: remote, Type: thing, ID: {5910da25-c1ad-417c-9130-8f04e8ef1e6e}) + The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {a5441712-5a4a-43a7-b797-3806cba86e1a}) +---------- +The name of the ParamType (ThingClass: remote, Type: thing, ID: {5910da25-c1ad-417c-9130-8f04e8ef1e6e}) ---------- The name of the ParamType (ThingClass: dimmableLight, Type: thing, ID: {6fe78769-abef-4738-b968-2ff4c3b2a152}) ---------- @@ -244,12 +277,15 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {095a463b-f5 id modelo - - - - + + + + + type - The name of the ParamType (ThingClass: remote, Type: thing, ID: {a12c0dbf-29e3-4580-96b0-728f8277514d}) + The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {87cf0d7a-9ac2-4694-9f5f-1c9c6692a6c5}) +---------- +The name of the ParamType (ThingClass: remote, Type: thing, ID: {a12c0dbf-29e3-4580-96b0-728f8277514d}) ---------- The name of the ParamType (ThingClass: dimmableLight, Type: thing, ID: {0381053b-7ad6-4e67-baac-2b61248f08e3}) ---------- @@ -259,10 +295,10 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {3f3467ef-44 tipo - - - - + + + + uuid The name of the ParamType (ThingClass: remote, Type: thing, ID: {3cdf9de1-ae23-47dc-a8bd-056a6707060c}) ---------- @@ -274,11 +310,14 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {1a5129ca-00 uuid - - - + + + + light id - The name of the ParamType (ThingClass: dimmableLight, Type: thing, ID: {49df749a-9e67-4dc8-81d2-c521e7e8066e}) + The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {90791861-bb27-4ade-8551-306af322b12d}) +---------- +The name of the ParamType (ThingClass: dimmableLight, Type: thing, ID: {49df749a-9e67-4dc8-81d2-c521e7e8066e}) ---------- The name of the ParamType (ThingClass: colorTemperatureLight, Type: thing, ID: {2705f25c-c9bc-40c4-bed2-835308986813}) ---------- @@ -286,9 +325,9 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {491dc012-cc id luz - - - + + + power changed The name of the EventType ({5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) of ThingClass dimmableLight ---------- @@ -298,15 +337,15 @@ The name of the EventType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass potência alterada - - - - - - - - - + + + + + + + + + power The name of the ParamType (ThingClass: dimmableLight, ActionType: power, ID: {5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) ---------- @@ -328,9 +367,9 @@ The name of the StateType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass potência - - - + + + Set power The name of the ActionType ({5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) of ThingClass dimmableLight ---------- @@ -340,8 +379,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 ---------- @@ -349,8 +388,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 ---------- @@ -358,15 +397,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}) ---------- @@ -376,15 +415,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 ---------- @@ -394,15 +433,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}) ---------- @@ -424,8 +463,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 ---------- @@ -433,33 +472,33 @@ 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 ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass remote alterada bateria crítica - - - + + + Button pressed The name of the EventType ({c45dd703-7cbd-48f7-88dc-31045cc3d39c}) of ThingClass tap ---------- @@ -469,9 +508,9 @@ The name of the EventType ({8da28cf1-2457-451e-953e-2685f8daeda8}) of ThingClass Botão pressionado - - - + + + Button name The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b8a-4709-8abf-717cf213f4a4}) ---------- @@ -481,26 +520,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}) ---------- @@ -508,17 +547,20 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca8632d - - + + + Uuid - The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {3e9aad4c-1dff-42c0-bbd4-cdd8635c01a7}) + The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {5b8a02b9-3a2b-4178-914d-c62d03281d00}) +---------- +The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {3e9aad4c-1dff-42c0-bbd4-cdd8635c01a7}) ---------- The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {4a15f861-cad6-464a-b250-08793c68ae30}) - - + + Temperature sensor id The name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {c9e81e29-f8d4-4370-ada2-f48b32def1fe}) ---------- @@ -526,8 +568,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}) ---------- @@ -535,8 +577,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}) ---------- @@ -544,8 +586,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}) ---------- @@ -553,8 +595,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}) ---------- @@ -562,8 +604,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}) ---------- @@ -571,12 +613,15 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {db678144 - - - - + + + + + Reachable changed - The name of the EventType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor + The name of the EventType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug +---------- +The name of the EventType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor ---------- The name of the EventType ({9fe43e6b-3c29-43a9-bb96-3b80eacc10db}) of ThingClass outdoorSensor ---------- @@ -586,16 +631,22 @@ The name of the EventType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass - - - - - - - - + + + + + + + + + + Reachable - The name of the ParamType (ThingClass: motionSensor, EventType: connected, ID: {19c28b69-a9c2-4908-8255-7681f72c2d92}) + The name of the ParamType (ThingClass: smartPlug, EventType: connected, ID: {6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) +---------- +The name of the StateType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug +---------- +The name of the ParamType (ThingClass: motionSensor, EventType: connected, ID: {19c28b69-a9c2-4908-8255-7681f72c2d92}) ---------- The name of the StateType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor ---------- @@ -613,8 +664,8 @@ The name of the StateType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass - - + + Battery changed The name of the EventType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ---------- @@ -622,10 +673,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}) ---------- @@ -637,9 +688,9 @@ 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 ---------- @@ -649,12 +700,12 @@ The name of the EventType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass - - - - - - + + + + + + Battery critical The name of the ParamType (ThingClass: motionSensor, EventType: batteryCritical, ID: {d7c4e143-6f03-411e-a12e-dd22806270fd}) ---------- @@ -670,8 +721,8 @@ The name of the StateType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass - - + + Temperature changed The name of the EventType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ---------- @@ -679,10 +730,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}) ---------- @@ -694,8 +745,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 ---------- @@ -703,10 +754,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}) ---------- @@ -718,8 +769,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 ---------- @@ -727,10 +778,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}) ---------- @@ -742,8 +793,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 ---------- @@ -751,10 +802,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}) ---------- @@ -766,22 +817,22 @@ 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: remote, EventType: connected, ID: {9f9fac89-2dcd-4db6-b214-0065662af62a}) ---------- @@ -805,8 +856,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}) ---------- @@ -814,8 +865,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}) ---------- @@ -823,18 +874,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}) ---------- @@ -850,9 +901,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}) ---------- @@ -862,15 +913,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 ---------- @@ -880,9 +931,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}) ---------- @@ -892,32 +943,32 @@ 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: remote, Type: thing, ID: {2ddb571b-149f-4f08-a76a-78b7d3aa27e0}) id sensor - + battery changed The name of the EventType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass remote bateria substituída - - + + battery The name of the ParamType (ThingClass: remote, EventType: batteryLevel, ID: {683e493a-9796-4d5e-b0e3-61cb178d5819}) ---------- @@ -925,8 +976,8 @@ The name of the StateType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass bateria - - + + battery critical The name of the ParamType (ThingClass: remote, EventType: batteryCritical, ID: {f8516899-6312-4110-bb97-70ffa81dc530}) ----------