mirror of
https://github.com/mtan93/SmartThingsPublic.git
synced 2026-03-08 05:31:56 +00:00
Merge pull request #1728 from SmartThingsCommunity/staging
Rolling up staging to production
This commit is contained in:
@@ -58,7 +58,7 @@ metadata {
|
||||
}
|
||||
|
||||
void installed() {
|
||||
sendEvent(name: "DeviceWatch-Enroll", value: "{\"protocol\": \"LAN\", \"scheme\":\"untracked\", \"hubHardwareId\": \"${device.hub.hardwareID}\"}")
|
||||
sendEvent(name: "DeviceWatch-Enroll", value: "{\"protocol\": \"LAN\", \"scheme\":\"untracked\", \"hubHardwareId\": \"${device.hub.hardwareID}\"}", displayed: false)
|
||||
}
|
||||
|
||||
// parse events into attributes
|
||||
|
||||
@@ -46,7 +46,7 @@ metadata {
|
||||
}
|
||||
|
||||
void installed() {
|
||||
sendEvent(name: "DeviceWatch-Enroll", value: "{\"protocol\": \"LAN\", \"scheme\":\"untracked\", \"hubHardwareId\": \"${device.hub.hardwareID}\"}")
|
||||
sendEvent(name: "DeviceWatch-Enroll", value: "{\"protocol\": \"LAN\", \"scheme\":\"untracked\", \"hubHardwareId\": \"${device.hub.hardwareID}\"}", displayed: false)
|
||||
}
|
||||
|
||||
// parse events into attributes
|
||||
|
||||
@@ -67,7 +67,7 @@ metadata {
|
||||
}
|
||||
|
||||
void installed() {
|
||||
sendEvent(name: "DeviceWatch-Enroll", value: "{\"protocol\": \"LAN\", \"scheme\":\"untracked\", \"hubHardwareId\": \"${device.hub.hardwareID}\"}")
|
||||
sendEvent(name: "DeviceWatch-Enroll", value: "{\"protocol\": \"LAN\", \"scheme\":\"untracked\", \"hubHardwareId\": \"${device.hub.hardwareID}\"}", displayed: false)
|
||||
}
|
||||
|
||||
// parse events into attributes
|
||||
|
||||
@@ -51,7 +51,7 @@ metadata {
|
||||
}
|
||||
|
||||
void installed() {
|
||||
sendEvent(name: "DeviceWatch-Enroll", value: "{\"protocol\": \"LAN\", \"scheme\":\"untracked\", \"hubHardwareId\": \"${device.hub.hardwareID}\"}")
|
||||
sendEvent(name: "DeviceWatch-Enroll", value: "{\"protocol\": \"LAN\", \"scheme\":\"untracked\", \"hubHardwareId\": \"${device.hub.hardwareID}\"}", displayed: false)
|
||||
}
|
||||
|
||||
// parse events into attributes
|
||||
|
||||
@@ -56,7 +56,7 @@ metadata {
|
||||
}
|
||||
|
||||
void installed() {
|
||||
sendEvent(name: "DeviceWatch-Enroll", value: "{\"protocol\": \"LAN\", \"scheme\":\"untracked\", \"hubHardwareId\": \"${device.hub.hardwareID}\"}")
|
||||
sendEvent(name: "DeviceWatch-Enroll", value: "{\"protocol\": \"LAN\", \"scheme\":\"untracked\", \"hubHardwareId\": \"${device.hub.hardwareID}\"}", displayed: false)
|
||||
}
|
||||
|
||||
// parse events into attributes
|
||||
|
||||
@@ -113,6 +113,14 @@ def refresh() {
|
||||
zigbee.onOffRefresh() + zigbee.levelRefresh()
|
||||
}
|
||||
|
||||
def installed() {
|
||||
if (((device.getDataValue("manufacturer") == "MRVL") && (device.getDataValue("model") == "MZ100")) || (device.getDataValue("manufacturer") == "OSRAM SYLVANIA") || (device.getDataValue("manufacturer") == "OSRAM")) {
|
||||
if ((device.currentState("level")?.value == null) || (device.currentState("level")?.value == 0)) {
|
||||
sendEvent(name: "level", value: 100)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
def configure() {
|
||||
log.debug "Configuring Reporting and Bindings."
|
||||
// Device-Watch allows 2 check-in misses from device + ping (plus 1 min lag time)
|
||||
|
||||
@@ -5,7 +5,6 @@ import java.text.DecimalFormat
|
||||
import groovy.json.JsonSlurper
|
||||
|
||||
private getApiUrl() { "https://api.netatmo.com" }
|
||||
private getVendorName() { "netatmo" }
|
||||
private getVendorAuthPath() { "${apiUrl}/oauth2/authorize?" }
|
||||
private getVendorTokenPath(){ "${apiUrl}/oauth2/token" }
|
||||
private getVendorIcon() { "https://s3.amazonaws.com/smartapp-icons/Partner/netamo-icon-1%402x.png" }
|
||||
@@ -14,14 +13,13 @@ private getClientSecret() { appSettings.clientSecret }
|
||||
private getServerUrl() { appSettings.serverUrl }
|
||||
private getShardUrl() { return getApiServerUrl() }
|
||||
private getCallbackUrl() { "${serverUrl}/oauth/callback" }
|
||||
private getBuildRedirectUrl() { "${serverUrl}/oauth/initialize?appId=${app.id}&access_token=${state.accessToken}&apiServerUrl=${shardUrl}" }
|
||||
private getBuildRedirectUrl() { "${serverUrl}/oauth/initialize?appId=${app.id}&access_token=${atomicState.accessToken}&apiServerUrl=${shardUrl}" }
|
||||
|
||||
// Automatically generated. Make future change here.
|
||||
definition(
|
||||
name: "Netatmo (Connect)",
|
||||
namespace: "dianoga",
|
||||
author: "Brian Steere",
|
||||
description: "Netatmo Integration",
|
||||
description: "Integrate your Netatmo devices with SmartThings",
|
||||
category: "SmartThings Labs",
|
||||
iconUrl: "https://s3.amazonaws.com/smartapp-icons/Partner/netamo-icon-1.png",
|
||||
iconX2Url: "https://s3.amazonaws.com/smartapp-icons/Partner/netamo-icon-1%402x.png",
|
||||
@@ -44,15 +42,16 @@ mappings {
|
||||
}
|
||||
|
||||
def authPage() {
|
||||
log.debug "In authPage"
|
||||
// log.debug "running authPage()"
|
||||
|
||||
def description
|
||||
def uninstallAllowed = false
|
||||
def oauthTokenProvided = false
|
||||
|
||||
if (!state.accessToken) {
|
||||
log.debug "About to create access token."
|
||||
state.accessToken = createAccessToken()
|
||||
// If an access token doesn't exist, create one
|
||||
if (!atomicState.accessToken) {
|
||||
atomicState.accessToken = createAccessToken()
|
||||
log.debug "Created access token"
|
||||
}
|
||||
|
||||
if (canInstallLabs()) {
|
||||
@@ -60,36 +59,32 @@ def authPage() {
|
||||
def redirectUrl = getBuildRedirectUrl()
|
||||
// log.debug "Redirect url = ${redirectUrl}"
|
||||
|
||||
if (state.authToken) {
|
||||
description = "Tap 'Next' to proceed"
|
||||
if (atomicState.authToken) {
|
||||
description = "Tap 'Next' to select devices"
|
||||
uninstallAllowed = true
|
||||
oauthTokenProvided = true
|
||||
} else {
|
||||
description = "Click to enter Credentials."
|
||||
description = "Tap to enter credentials"
|
||||
}
|
||||
|
||||
if (!oauthTokenProvided) {
|
||||
log.debug "Show the login page"
|
||||
log.debug "Showing the login page"
|
||||
return dynamicPage(name: "Credentials", title: "Authorize Connection", nextPage:"listDevices", uninstall: uninstallAllowed, install:false) {
|
||||
section() {
|
||||
paragraph "Tap below to log in to the netatmo and authorize SmartThings access."
|
||||
href url:redirectUrl, style:"embedded", required:false, title:"Connect to ${getVendorName()}", description:description
|
||||
paragraph "Tap below to login to Netatmo and authorize SmartThings access"
|
||||
href url:redirectUrl, style:"embedded", required:false, title:"Connect to Netatmo", description:description
|
||||
}
|
||||
}
|
||||
} else {
|
||||
log.debug "Show the devices page"
|
||||
return dynamicPage(name: "Credentials", title: "Credentials Accepted!", nextPage:"listDevices", uninstall: uninstallAllowed, install:false) {
|
||||
log.debug "Showing the devices page"
|
||||
return dynamicPage(name: "Credentials", title: "Connected", nextPage:"listDevices", uninstall: uninstallAllowed, install:false) {
|
||||
section() {
|
||||
input(name:"Devices", style:"embedded", required:false, title:"${getVendorName()} is now connected to SmartThings!", description:description)
|
||||
input(name:"Devices", style:"embedded", required:false, title:"Netatmo is connected to SmartThings", description:description)
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
def upgradeNeeded = """To use SmartThings Labs, your Hub should be completely up to date.
|
||||
|
||||
To update your Hub, access Location Settings in the Main Menu (tap the gear next to your location name), select your Hub, and choose "Update Hub"."""
|
||||
|
||||
|
||||
def upgradeNeeded = """To use SmartThings Labs, your Hub should be completely up to date. To update your Hub, access Location Settings in the Main Menu (tap the gear next to your location name), select your Hub, and choose "Update Hub"."""
|
||||
return dynamicPage(name:"Credentials", title:"Upgrade needed!", nextPage:"", install:false, uninstall: true) {
|
||||
section {
|
||||
paragraph "$upgradeNeeded"
|
||||
@@ -100,15 +95,15 @@ To update your Hub, access Location Settings in the Main Menu (tap the gear next
|
||||
}
|
||||
|
||||
def oauthInitUrl() {
|
||||
log.debug "In oauthInitUrl"
|
||||
// log.debug "runing oauthInitUrl()"
|
||||
|
||||
state.oauthInitState = UUID.randomUUID().toString()
|
||||
atomicState.oauthInitState = UUID.randomUUID().toString()
|
||||
|
||||
def oauthParams = [
|
||||
response_type: "code",
|
||||
client_id: getClientId(),
|
||||
client_secret: getClientSecret(),
|
||||
state: state.oauthInitState,
|
||||
state: atomicState.oauthInitState,
|
||||
redirect_uri: getCallbackUrl(),
|
||||
scope: "read_station"
|
||||
]
|
||||
@@ -119,78 +114,72 @@ def oauthInitUrl() {
|
||||
}
|
||||
|
||||
def callback() {
|
||||
// log.debug "callback()>> params: $params, params.code ${params.code}"
|
||||
// log.debug "running callback()"
|
||||
|
||||
def code = params.code
|
||||
def oauthState = params.state
|
||||
|
||||
if (oauthState == state.oauthInitState) {
|
||||
if (oauthState == atomicState.oauthInitState) {
|
||||
|
||||
def tokenParams = [
|
||||
grant_type: "authorization_code",
|
||||
client_secret: getClientSecret(),
|
||||
client_id : getClientId(),
|
||||
grant_type: "authorization_code",
|
||||
redirect_uri: getCallbackUrl(),
|
||||
code: code,
|
||||
scope: "read_station"
|
||||
scope: "read_station",
|
||||
redirect_uri: getCallbackUrl()
|
||||
]
|
||||
|
||||
// log.debug "TOKEN URL: ${getVendorTokenPath() + toQueryString(tokenParams)}"
|
||||
|
||||
def tokenUrl = getVendorTokenPath()
|
||||
def params = [
|
||||
def requestTokenParams = [
|
||||
uri: tokenUrl,
|
||||
contentType: 'application/x-www-form-urlencoded',
|
||||
requestContentType: 'application/x-www-form-urlencoded',
|
||||
body: tokenParams
|
||||
]
|
||||
|
||||
// log.debug "PARAMS: ${params}"
|
||||
|
||||
// log.debug "PARAMS: ${requestTokenParams}"
|
||||
|
||||
try {
|
||||
httpPost(params) { resp ->
|
||||
|
||||
def slurper = new JsonSlurper()
|
||||
|
||||
resp.data.each { key, value ->
|
||||
def data = slurper.parseText(key)
|
||||
log.debug "Data: $data"
|
||||
state.refreshToken = data.refresh_token
|
||||
state.authToken = data.access_token
|
||||
//state.accessToken = data.access_token
|
||||
state.tokenExpires = now() + (data.expires_in * 1000)
|
||||
// log.debug "swapped token: $resp.data"
|
||||
}
|
||||
httpPost(requestTokenParams) { resp ->
|
||||
//log.debug "Data: ${resp.data}"
|
||||
atomicState.refreshToken = resp.data.refresh_token
|
||||
atomicState.authToken = resp.data.access_token
|
||||
// resp.data.expires_in is in milliseconds so we need to convert it to seconds
|
||||
atomicState.tokenExpires = now() + (resp.data.expires_in * 1000)
|
||||
}
|
||||
} catch (Exception e) {
|
||||
log.debug "callback: Call failed $e"
|
||||
} catch (e) {
|
||||
log.debug "callback() failed: $e"
|
||||
}
|
||||
|
||||
// Handle success and failure here, and render stuff accordingly
|
||||
if (state.authToken) {
|
||||
// If we successfully got an authToken run sucess(), else fail()
|
||||
if (atomicState.authToken) {
|
||||
success()
|
||||
} else {
|
||||
fail()
|
||||
}
|
||||
|
||||
} else {
|
||||
log.error "callback() failed oauthState != state.oauthInitState"
|
||||
log.error "callback() failed oauthState != atomicState.oauthInitState"
|
||||
}
|
||||
}
|
||||
|
||||
def success() {
|
||||
log.debug "in success"
|
||||
log.debug "OAuth flow succeeded"
|
||||
def message = """
|
||||
<p>We have located your """ + getVendorName() + """ account.</p>
|
||||
<p>Tap 'Done' to continue to Devices.</p>
|
||||
<p>Success!</p>
|
||||
<p>Tap 'Done' to continue</p>
|
||||
"""
|
||||
connectionStatus(message)
|
||||
}
|
||||
|
||||
def fail() {
|
||||
log.debug "in fail"
|
||||
log.debug "OAuth flow failed"
|
||||
atomicState.authToken = null
|
||||
def message = """
|
||||
<p>The connection could not be established!</p>
|
||||
<p>Click 'Done' to return to the menu.</p>
|
||||
<p>Error</p>
|
||||
<p>Tap 'Done' to return</p>
|
||||
"""
|
||||
connectionStatus(message)
|
||||
}
|
||||
@@ -202,13 +191,12 @@ def connectionStatus(message, redirectUrl = null) {
|
||||
<meta http-equiv="refresh" content="3; url=${redirectUrl}" />
|
||||
"""
|
||||
}
|
||||
|
||||
def html = """
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>${getVendorName()} Connection</title>
|
||||
<title>Netatmo Connection</title>
|
||||
<style type="text/css">
|
||||
* { box-sizing: border-box; }
|
||||
@font-face {
|
||||
@@ -234,7 +222,6 @@ def connectionStatus(message, redirectUrl = null) {
|
||||
.container {
|
||||
width: 100%;
|
||||
padding: 40px;
|
||||
/*background: #eee;*/
|
||||
text-align: center;
|
||||
}
|
||||
img {
|
||||
@@ -250,14 +237,9 @@ def connectionStatus(message, redirectUrl = null) {
|
||||
color: #666666;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
/*
|
||||
p:last-child {
|
||||
margin-top: 0px;
|
||||
}
|
||||
*/
|
||||
span {
|
||||
font-family: 'Swiss 721 W01 Light';
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
@@ -274,46 +256,47 @@ def connectionStatus(message, redirectUrl = null) {
|
||||
}
|
||||
|
||||
def refreshToken() {
|
||||
log.debug "In refreshToken"
|
||||
// Check if atomicState has a refresh token
|
||||
if (atomicState.refreshToken) {
|
||||
log.debug "running refreshToken()"
|
||||
|
||||
def oauthParams = [
|
||||
client_secret: getClientSecret(),
|
||||
client_id: getClientId(),
|
||||
grant_type: "refresh_token",
|
||||
refresh_token: state.refreshToken
|
||||
]
|
||||
def oauthParams = [
|
||||
grant_type: "refresh_token",
|
||||
refresh_token: atomicState.refreshToken,
|
||||
client_secret: getClientSecret(),
|
||||
client_id: getClientId(),
|
||||
]
|
||||
|
||||
def tokenUrl = getVendorTokenPath()
|
||||
def params = [
|
||||
uri: tokenUrl,
|
||||
contentType: 'application/x-www-form-urlencoded',
|
||||
body: oauthParams,
|
||||
]
|
||||
def tokenUrl = getVendorTokenPath()
|
||||
|
||||
def requestOauthParams = [
|
||||
uri: tokenUrl,
|
||||
requestContentType: 'application/x-www-form-urlencoded',
|
||||
body: oauthParams
|
||||
]
|
||||
|
||||
// log.debug "PARAMS: ${requestOauthParams}"
|
||||
|
||||
// OAuth Step 2: Request access token with our client Secret and OAuth "Code"
|
||||
try {
|
||||
httpPost(params) { response ->
|
||||
def slurper = new JsonSlurper();
|
||||
try {
|
||||
httpPost(requestOauthParams) { resp ->
|
||||
//log.debug "Data: ${resp.data}"
|
||||
atomicState.refreshToken = resp.data.refresh_token
|
||||
atomicState.authToken = resp.data.access_token
|
||||
// resp.data.expires_in is in milliseconds so we need to convert it to seconds
|
||||
atomicState.tokenExpires = now() + (resp.data.expires_in * 1000)
|
||||
return true
|
||||
}
|
||||
} catch (e) {
|
||||
log.debug "refreshToken() failed: $e"
|
||||
}
|
||||
|
||||
response.data.each {key, value ->
|
||||
def data = slurper.parseText(key);
|
||||
// log.debug "Data: $data"
|
||||
|
||||
state.refreshToken = data.refresh_token
|
||||
state.accessToken = data.access_token
|
||||
state.tokenExpires = now() + (data.expires_in * 1000)
|
||||
return true
|
||||
}
|
||||
|
||||
}
|
||||
} catch (Exception e) {
|
||||
log.debug "Error: $e"
|
||||
}
|
||||
|
||||
// We didn't get an access token
|
||||
if ( !state.accessToken ) {
|
||||
return false
|
||||
}
|
||||
// If we didn't get an authToken
|
||||
if (!atomicState.authToken) {
|
||||
return false
|
||||
}
|
||||
} else {
|
||||
return false
|
||||
}
|
||||
}
|
||||
|
||||
String toQueryString(Map m) {
|
||||
@@ -322,13 +305,11 @@ String toQueryString(Map m) {
|
||||
|
||||
def installed() {
|
||||
log.debug "Installed with settings: ${settings}"
|
||||
|
||||
initialize()
|
||||
}
|
||||
|
||||
def updated() {
|
||||
log.debug "Updated with settings: ${settings}"
|
||||
|
||||
unsubscribe()
|
||||
unschedule()
|
||||
initialize()
|
||||
@@ -336,9 +317,9 @@ def updated() {
|
||||
|
||||
def initialize() {
|
||||
log.debug "Initialized with settings: ${settings}"
|
||||
|
||||
|
||||
// Pull the latest device info into state
|
||||
getDeviceList();
|
||||
getDeviceList()
|
||||
|
||||
settings.devices.each {
|
||||
def deviceId = it
|
||||
@@ -372,57 +353,56 @@ def initialize() {
|
||||
def delete = getChildDevices().findAll { !settings.devices.contains(it.deviceNetworkId) }
|
||||
log.debug "Delete: $delete"
|
||||
delete.each { deleteChildDevice(it.deviceNetworkId) }
|
||||
|
||||
// Do the initial poll
|
||||
|
||||
// Run initial poll and schedule future polls
|
||||
poll()
|
||||
// Schedule it to run every 5 minutes
|
||||
runEvery5Minutes("poll")
|
||||
}
|
||||
|
||||
def uninstalled() {
|
||||
log.debug "In uninstalled"
|
||||
|
||||
log.debug "Uninstalling"
|
||||
removeChildDevices(getChildDevices())
|
||||
}
|
||||
|
||||
def getDeviceList() {
|
||||
log.debug "In getDeviceList"
|
||||
if (atomicState.authToken) {
|
||||
|
||||
log.debug "Getting stations data"
|
||||
|
||||
def deviceList = [:]
|
||||
state.deviceDetail = [:]
|
||||
state.deviceState = [:]
|
||||
def deviceList = [:]
|
||||
state.deviceDetail = [:]
|
||||
state.deviceState = [:]
|
||||
|
||||
apiGet("/api/getstationsdata") { response ->
|
||||
response.data.body.devices.each { value ->
|
||||
def key = value._id
|
||||
deviceList[key] = "${value.station_name}: ${value.module_name}"
|
||||
state.deviceDetail[key] = value
|
||||
state.deviceState[key] = value.dashboard_data
|
||||
value.modules.each { value2 ->
|
||||
def key2 = value2._id
|
||||
deviceList[key2] = "${value.station_name}: ${value2.module_name}"
|
||||
state.deviceDetail[key2] = value2
|
||||
state.deviceState[key2] = value2.dashboard_data
|
||||
apiGet("/api/getstationsdata") { resp ->
|
||||
resp.data.body.devices.each { value ->
|
||||
def key = value._id
|
||||
deviceList[key] = "${value.station_name}: ${value.module_name}"
|
||||
state.deviceDetail[key] = value
|
||||
state.deviceState[key] = value.dashboard_data
|
||||
value.modules.each { value2 ->
|
||||
def key2 = value2._id
|
||||
deviceList[key2] = "${value.station_name}: ${value2.module_name}"
|
||||
state.deviceDetail[key2] = value2
|
||||
state.deviceState[key2] = value2.dashboard_data
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return deviceList.sort() { it.value.toLowerCase() }
|
||||
}
|
||||
|
||||
return deviceList.sort() { it.value.toLowerCase() }
|
||||
|
||||
} else {
|
||||
return null
|
||||
}
|
||||
}
|
||||
|
||||
private removeChildDevices(delete) {
|
||||
log.debug "In removeChildDevices"
|
||||
|
||||
log.debug "deleting ${delete.size()} devices"
|
||||
|
||||
log.debug "Removing ${delete.size()} devices"
|
||||
delete.each {
|
||||
deleteChildDevice(it.deviceNetworkId)
|
||||
}
|
||||
}
|
||||
|
||||
def createChildDevice(deviceFile, dni, name, label) {
|
||||
log.debug "In createChildDevice"
|
||||
|
||||
try {
|
||||
def existingDevice = getChildDevice(dni)
|
||||
if(!existingDevice) {
|
||||
@@ -437,13 +417,13 @@ def createChildDevice(deviceFile, dni, name, label) {
|
||||
}
|
||||
|
||||
def listDevices() {
|
||||
log.debug "In listDevices"
|
||||
log.debug "Listing devices"
|
||||
|
||||
def devices = getDeviceList()
|
||||
|
||||
dynamicPage(name: "listDevices", title: "Choose devices", install: true) {
|
||||
dynamicPage(name: "listDevices", title: "Choose Devices", install: true) {
|
||||
section("Devices") {
|
||||
input "devices", "enum", title: "Select Device(s)", required: false, multiple: true, options: devices
|
||||
input "devices", "enum", title: "Select Devices", required: false, multiple: true, options: devices
|
||||
}
|
||||
|
||||
section("Preferences") {
|
||||
@@ -453,36 +433,37 @@ def listDevices() {
|
||||
}
|
||||
|
||||
def apiGet(String path, Map query, Closure callback) {
|
||||
|
||||
if(now() >= state.tokenExpires) {
|
||||
refreshToken();
|
||||
log.debug "running apiGet()"
|
||||
|
||||
// If the current time is over the expiration time, request a new token
|
||||
if(now() >= atomicState.tokenExpires) {
|
||||
atomicState.authToken = null
|
||||
refreshToken()
|
||||
}
|
||||
|
||||
query['access_token'] = state.accessToken
|
||||
def params = [
|
||||
def queryParam = [
|
||||
access_token: atomicState.authToken
|
||||
]
|
||||
|
||||
def apiGetParams = [
|
||||
uri: getApiUrl(),
|
||||
path: path,
|
||||
'query': query
|
||||
query: queryParam
|
||||
]
|
||||
// log.debug "API Get: $params"
|
||||
|
||||
// log.debug "apiGet(): $apiGetParams"
|
||||
|
||||
try {
|
||||
httpGet(params) { response ->
|
||||
callback.call(response)
|
||||
httpGet(apiGetParams) { resp ->
|
||||
callback.call(resp)
|
||||
}
|
||||
} catch (e) {
|
||||
log.debug "apiGet() failed: $e"
|
||||
// Netatmo API has rate limits so a failure here doesn't necessarily mean our token has expired, but we will check anyways
|
||||
if(now() >= atomicState.tokenExpires) {
|
||||
atomicState.authToken = null
|
||||
refreshToken()
|
||||
}
|
||||
} catch (Exception e) {
|
||||
// This is most likely due to an invalid token. Try to refresh it and try again.
|
||||
log.debug "apiGet: Call failed $e"
|
||||
if(refreshToken()) {
|
||||
log.debug "apiGet: Trying again after refreshing token"
|
||||
try {
|
||||
httpGet(params) { response ->
|
||||
callback.call(response)
|
||||
}
|
||||
} catch (Exception f) {
|
||||
log.debug "apiGet: Call failed $f"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -491,10 +472,12 @@ def apiGet(String path, Closure callback) {
|
||||
}
|
||||
|
||||
def poll() {
|
||||
log.debug "In Poll"
|
||||
getDeviceList();
|
||||
log.debug "Polling..."
|
||||
|
||||
getDeviceList()
|
||||
|
||||
def children = getChildDevices()
|
||||
log.debug "State: ${state.deviceState}"
|
||||
//log.debug "State: ${state.deviceState}"
|
||||
|
||||
settings.devices.each { deviceId ->
|
||||
def detail = state?.deviceDetail[deviceId]
|
||||
@@ -550,15 +533,13 @@ def rainToPref(rain) {
|
||||
}
|
||||
|
||||
def debugEvent(message, displayEvent) {
|
||||
|
||||
def results = [
|
||||
name: "appdebug",
|
||||
descriptionText: message,
|
||||
displayed: displayEvent
|
||||
]
|
||||
log.debug "Generating AppDebug Event: ${results}"
|
||||
sendEvent (results)
|
||||
|
||||
sendEvent(results)
|
||||
}
|
||||
|
||||
private Boolean canInstallLabs() {
|
||||
|
||||
@@ -81,7 +81,7 @@ def authPage() {
|
||||
return dynamicPage(name: "auth", title: "Select Your Thermostats", uninstall: true) {
|
||||
section("") {
|
||||
paragraph "Tap below to see the list of ecobee thermostats available in your ecobee account and select the ones you want to connect to SmartThings."
|
||||
input(name: "thermostats", title:"", type: "enum", required:true, multiple:true, description: "Tap to choose", metadata:[values:stats])
|
||||
input(name: "thermostats", title:"Select Your Thermostats", type: "enum", required:true, multiple:true, description: "Tap to choose", metadata:[values:stats])
|
||||
}
|
||||
|
||||
def options = sensorsDiscovered() ?: []
|
||||
|
||||
@@ -0,0 +1,20 @@
|
||||
'''Connect your Ecobee thermostat to SmartThings.'''=قم بتوصيل ثرموستات Ecobee بـ SmartThings.
|
||||
'''ecobee'''=ecobee
|
||||
'''You are connected.'''=أنت متصل.
|
||||
'''Click to enter Ecobee Credentials'''=النقر لإدخال بيانات اعتماد Ecobee
|
||||
'''Login'''=تسجيل الدخول
|
||||
'''Tap below to log in to the ecobee service and authorize SmartThings access. Be sure to scroll down on page 2 and press the 'Allow' button.'''=انقر أدناه لتسجيل الدخول إلى خدمة ecobee والمصادقة على الوصول إلى SmartThings. تأكد من التمرير للأسفل على الصفحة ٢ والضغط على زر ”السماح“.
|
||||
'''ecobee'''=ecobee
|
||||
'''Select Your Thermostats'''=تحديد أجهزة الثرموستات
|
||||
'''Tap below to see the list of ecobee thermostats available in your ecobee account and select the ones you want to connect to SmartThings.'''=انقر أدناه لرؤية قائمة أجهزة ثرموستات ecobee المتوفرة في حساب ecobee، وحدد الأجهزة التي ترغب في توصيلها بـ SmartThings.
|
||||
'''Tap to choose'''=النقر لاختيار <device name>
|
||||
'''Tap below to see the list of ecobee sensors available in your ecobee account and select the ones you want to connect to SmartThings.'''=انقر أدناه لرؤية قائمة مستشعرات ecobee المتوفرة في حساب ecobee، وحدد الأجهزة التي ترغب في توصيلها بـ SmartThings.
|
||||
'''Tap to choose'''=النقر لاختيار <device name>
|
||||
'''Select Ecobee Sensors ({{numFound}} found)'''=تحديد مستشعرات Ecobee ({{numFound}} found)
|
||||
'''Your ecobee Account is now connected to SmartThings!'''=حساب ecobee متصل الآن بـ SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=انقر فوق ”تم“ لإنهاء الإعداد.
|
||||
'''The connection could not be established!'''=يتعذر إنشاء الاتصال!
|
||||
'''Click 'Done' to return to the menu.'''=انقر فوق ”تم“ للعودة إلى القائمة.
|
||||
'''is connected to SmartThings'''={{deviceName}} متصل بـ SmartThings
|
||||
'''is disconnected from SmartThings, because the access credential changed or was lost. Please go to the Ecobee (Connect) SmartApp and re-enter your account login credentials.'''=تم قطع اتصال {{deviceName}} بـ SmartThings، لأن بيانات اعتماد الوصول قد تغيرت أو فُقدت. يُرجى الانتقال إلى التطبيق الذكي Ecobee (Connect) وإعادة إدخال بيانات اعتماد تسجيل الدخول إلى حسابك.
|
||||
'''Your Ecobee thermostat '''=ثرموستات Ecobee
|
||||
@@ -1,17 +0,0 @@
|
||||
'''Connect your Ecobee thermostat to SmartThings.'''.ar=قم بتوصيل ثرموستات Ecobee بـ SmartThings.
|
||||
'''You are connected.'''.ar=أنت متصل.
|
||||
'''Click to enter Ecobee Credentials'''.ar=النقر لإدخال بيانات اعتماد Ecobee
|
||||
'''Login'''.ar=تسجيل الدخول
|
||||
'''Tap below to log in to the ecobee service and authorize SmartThings access. Be sure to scroll down on page 2 and press the 'Allow' button.'''.ar=انقر أدناه لتسجيل الدخول إلى خدمة ecobee والمصادقة على الوصول إلى SmartThings. تأكد من التمرير للأسفل على الصفحة ٢ والضغط على زر ”السماح“.
|
||||
'''Select Your Thermostats'''.ar=تحديد الثرموستات
|
||||
'''Tap below to see the list of ecobee thermostats available in your ecobee account and select the ones you want to connect to SmartThings.'''.ar=انقر أدناه لرؤية قائمة أجهزة ثرموستات ecobee المتوفرة في حساب ecobee، وحدد الأجهزة التي ترغب في توصيلها بـ SmartThings.
|
||||
'''Tap to choose'''.ar=النقر لاختيار
|
||||
'''Tap below to see the list of ecobee sensors available in your ecobee account and select the ones you want to connect to SmartThings.'''.ar=انقر أدناه لرؤية قائمة مستشعرات ecobee المتوفرة في حساب ecobee، وحدد الأجهزة التي ترغب في توصيلها بـ SmartThings.
|
||||
'''Select Ecobee Sensors ({{numFound}} found)'''.ar=تحديد مستشعرات Ecobee ({{numFound}} found)
|
||||
'''Your ecobee Account is now connected to SmartThings!'''.ar=حساب ecobee متصل الآن بـ SmartThings!
|
||||
'''Click 'Done' to finish setup.'''.ar=انقر فوق ”تم“ لإنهاء الإعداد.
|
||||
'''The connection could not be established!'''.ar=يتعذر إنشاء الاتصال!
|
||||
'''Click 'Done' to return to the menu.'''.ar=انقر فوق ”تم“ للعودة إلى القائمة.
|
||||
'''{{deviceName}} is connected to SmartThings'''.ar={{deviceName}} متصل بـ SmartThings
|
||||
'''{{deviceName}} is disconnected from SmartThings, because the access credential changed or was lost. Please go to the Ecobee (Connect) SmartApp and re-enter your account login credentials.'''.ar=تم قطع اتصال {{deviceName}} بـ SmartThings، لأن بيانات اعتماد الوصول قد تغيرت أو فُقدت. يُرجى الانتقال إلى التطبيق الذكي Ecobee (Connect) وإعادة إدخال بيانات اعتماد تسجيل الدخول إلى حسابك.
|
||||
'''Your Ecobee thermostat'''.ar=ثرموستات Ecobee
|
||||
@@ -0,0 +1,20 @@
|
||||
'''Connect your Ecobee thermostat to SmartThings.'''=Свържете термостата Ecobee към SmartThings.
|
||||
'''ecobee'''=ecobee
|
||||
'''You are connected.'''=Свързани сте.
|
||||
'''Click to enter Ecobee Credentials'''=Щракнете, за да въведете идентификационни данни за Ecobee
|
||||
'''Login'''=Вход
|
||||
'''Tap below to log in to the ecobee service and authorize SmartThings access. Be sure to scroll down on page 2 and press the 'Allow' button.'''=Докоснете по-долу, за да влезете в услугата ecobee и да упълномощите достъпа на SmartThings. Превъртете надолу в страница 2 и натиснете бутона Allow (Позволяване).
|
||||
'''ecobee'''=ecobee
|
||||
'''Select Your Thermostats'''=Избор на термостати
|
||||
'''Tap below to see the list of ecobee thermostats available in your ecobee account and select the ones you want to connect to SmartThings.'''=Докоснете по-долу, за да видите списък с термостатите ecobee във вашия ecobee акаунт, и изберете онези, които искате да свържете към SmartThings.
|
||||
'''Tap to choose'''=Докосване за избор
|
||||
'''Tap below to see the list of ecobee sensors available in your ecobee account and select the ones you want to connect to SmartThings.'''=Докоснете по-долу, за да видите списък със сензорите ecobee във вашия ecobee акаунт, и изберете онези, които искате да свържете към SmartThings.
|
||||
'''Tap to choose'''=Докосване за избор
|
||||
'''Select Ecobee Sensors ({{numFound}} found)'''=Избор на сензори Ecobee ({{numFound}} с намерени)
|
||||
'''Your ecobee Account is now connected to SmartThings!'''=Вашият ecobee акаунт вече е свързан към SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Щракнете върху Done (Готово), за да завършите настройката.
|
||||
'''The connection could not be established!'''=Връзката не може да се осъществи!
|
||||
'''Click 'Done' to return to the menu.'''=Щракнете върху Done (Готово), за да се върнете към менюто.
|
||||
'''is connected to SmartThings'''=е свързан към SmartThings
|
||||
'''is disconnected from SmartThings, because the access credential changed or was lost. Please go to the Ecobee (Connect) SmartApp and re-enter your account login credentials.'''=е прекъснат от SmartThings, тъй като идентификационните данни за достъп са променени или изгубени. Отидете в Ecobee (Connect) SmartApp и въведете отново идентификационните си данни за влизане в акаунта.
|
||||
'''Your Ecobee thermostat '''=Вашият термостат Ecobee
|
||||
@@ -0,0 +1,20 @@
|
||||
'''Connect your Ecobee thermostat to SmartThings.'''=Připojte termostat Ecobee k systému SmartThings.
|
||||
'''ecobee'''=ecobee
|
||||
'''You are connected.'''=Jste připojeni.
|
||||
'''Click to enter Ecobee Credentials'''=Klepněte a zadejte přihlašovací údaje Ecobee
|
||||
'''Login'''=Přihlásit
|
||||
'''Tap below to log in to the ecobee service and authorize SmartThings access. Be sure to scroll down on page 2 and press the 'Allow' button.'''=Klepnutím na následující tlačítko se přihlásíte ke službě ecobee a autorizujete přístup pro systém SmartThings. Posuňte se dolů na stránku 2 a stiskněte tlačítko „Allow“ (Povolit).
|
||||
'''ecobee'''=ecobee
|
||||
'''Select Your Thermostats'''=Vyberte termostaty
|
||||
'''Tap below to see the list of ecobee thermostats available in your ecobee account and select the ones you want to connect to SmartThings.'''=Klepnutím na následující tlačítko zobrazte seznam termostatů ecobee dostupných na vašem účtu ecobee a vyberte ty, které chcete připojit k systému SmartThings.
|
||||
'''Tap to choose'''=Klepnutím zvolte
|
||||
'''Tap below to see the list of ecobee sensors available in your ecobee account and select the ones you want to connect to SmartThings.'''=Klepnutím na následující tlačítko zobrazte seznam senzorů ecobee dostupných na vašem účtu ecobee a vyberte ty, které chcete připojit k systému SmartThings.
|
||||
'''Tap to choose'''=Klepnutím zvolte
|
||||
'''Select Ecobee Sensors ({{numFound}} found)'''=Vyberte senzory Ecobee (nalezeno {{numFound}})
|
||||
'''Your ecobee Account is now connected to SmartThings!'''=Účet ecobee je nyní připojen k systému SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Dokončete nastavení klepnutím na tlačítko „Done“ (Hotovo).
|
||||
'''The connection could not be established!'''=Připojení nelze navázat!
|
||||
'''Click 'Done' to return to the menu.'''=Klepnutím na tlačítko „Done“ (Hotovo) se vrátíte do menu.
|
||||
'''is connected to SmartThings'''=je připojen ke SmartThings
|
||||
'''is disconnected from SmartThings, because the access credential changed or was lost. Please go to the Ecobee (Connect) SmartApp and re-enter your account login credentials.'''=byl odpojen od systému SmartThings, protože přístupové přihlašovací údaje byly změněny nebo ztraceny. Přejděte do Ecobee (Connect) SmartApp a znovu zadejte své přihlašovací údaje k účtu.
|
||||
'''Your Ecobee thermostat '''=Termostat Ecobee
|
||||
@@ -0,0 +1,20 @@
|
||||
'''Connect your Ecobee thermostat to SmartThings.'''=Forbind din Ecobee-termostat med SmartThings.
|
||||
'''ecobee'''=ecobee
|
||||
'''You are connected.'''=Du er nu forbundet.
|
||||
'''Click to enter Ecobee Credentials'''=Klik for at indtaste Ecobee-legitimationsoplysninger
|
||||
'''Login'''=Log ind
|
||||
'''Tap below to log in to the ecobee service and authorize SmartThings access. Be sure to scroll down on page 2 and press the 'Allow' button.'''=Tryk nedenfor for at logge ind på din ecobee-tjeneste og godkende SmartThings-adgang. Sørg for at rulle ned på side 2 og trykke på knappen “Allow” (Tillad).
|
||||
'''ecobee'''=ecobee
|
||||
'''Select Your Thermostats'''=Vælg dine termostater
|
||||
'''Tap below to see the list of ecobee thermostats available in your ecobee account and select the ones you want to connect to SmartThings.'''=Tryk herunder for at se listen over ecobee-termostater, der er tilgængelige på din ecobee-konto, og vælg dem, du vil forbinde med SmartThings.
|
||||
'''Tap to choose'''=Tryk for at vælge
|
||||
'''Tap below to see the list of ecobee sensors available in your ecobee account and select the ones you want to connect to SmartThings.'''=Tryk herunder for at se listen over ecobee-sensorer, der er tilgængelige på din ecobee-konto, og vælg dem, du vil forbinde med SmartThings.
|
||||
'''Tap to choose'''=Tryk for at vælge
|
||||
'''Select Ecobee Sensors ({{numFound}} found)'''=Vælg Ecobee-sensorer ({{numFound}} fundet)
|
||||
'''Your ecobee Account is now connected to SmartThings!'''=Din ecobee-konto er nu forbundet med SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Klik på “Done” (Udført) for at afslutte konfigurationen.
|
||||
'''The connection could not be established!'''=Der kunne ikke oprettes forbindelse!
|
||||
'''Click 'Done' to return to the menu.'''=Klik på “Done” (Udført) for at vende tilbage til menuen.
|
||||
'''is connected to SmartThings'''=er forbundet med SmartThings
|
||||
'''is disconnected from SmartThings, because the access credential changed or was lost. Please go to the Ecobee (Connect) SmartApp and re-enter your account login credentials.'''=er koblet fra SmartThings, fordi adgangslegitimationsoplysningerne er ændret eller gået tabt. Gå til Ecobee (Connect (Forbind)) SmartApp, og indtast dine kontologinoplysninger igen.
|
||||
'''Your Ecobee thermostat '''=Din Ecobee-termostat
|
||||
@@ -0,0 +1,20 @@
|
||||
'''Connect your Ecobee thermostat to SmartThings.'''=Verbinden Sie Ihr Ecobee-Thermostat mit SmartThings.
|
||||
'''ecobee'''=ecobee
|
||||
'''You are connected.'''=Sie sind verbunden.
|
||||
'''Click to enter Ecobee Credentials'''=Hier klicken, um die ecobee-Zugangsdaten einzugeben.
|
||||
'''Login'''=Anmeldung
|
||||
'''Tap below to log in to the ecobee service and authorize SmartThings access. Be sure to scroll down on page 2 and press the 'Allow' button.'''=Tippen Sie unten, um sich am ecobee-Dienst anzumelden und den SmartThings-Zugriff zu autorisieren. Stellen Sie sicher, dass Sie bis auf Seite 2 herunterscrollen und auf die Schaltfläche „Allow“ (Zulassen) tippen.
|
||||
'''ecobee'''=ecobee
|
||||
'''Select Your Thermostats'''=Ihre Thermostate auswählen
|
||||
'''Tap below to see the list of ecobee thermostats available in your ecobee account and select the ones you want to connect to SmartThings.'''=Tippen Sie unten, um eine Liste der ecobee-Thermostate anzuzeigen, die in Ihrem ecobee-Konto verfügbar sind, und wählen Sie diejenigen aus, mit denen Sie eine Verbindung zu SmartThings herstellen möchten.
|
||||
'''Tap to choose'''=Zur Auswahl tippen
|
||||
'''Tap below to see the list of ecobee sensors available in your ecobee account and select the ones you want to connect to SmartThings.'''=Tippen Sie unten, um eine Liste der ecobee-Sensoren anzuzeigen, die in Ihrem ecobee-Konto verfügbar sind, und wählen Sie diejenigen aus, mit denen Sie eine Verbindung zu SmartThings herstellen möchten.
|
||||
'''Tap to choose'''=Zur Auswahl tippen
|
||||
'''Select Ecobee Sensors ({{numFound}} found)'''=ecobee-Sensoren auswählen ({{numFound}} gefunden)
|
||||
'''Your ecobee Account is now connected to SmartThings!'''=Ihr ecobee-Konto ist jetzt mit SmartThings verbunden!
|
||||
'''Click 'Done' to finish setup.'''=Klicken Sie auf „Done“ (OK), um die Einrichtung abzuschließen.
|
||||
'''The connection could not be established!'''=Es konnte keine Verbindung hergestellt werden!
|
||||
'''Click 'Done' to return to the menu.'''=Klicken Sie auf „Done“ (OK), um zum Menü zurückzukehren.
|
||||
'''is connected to SmartThings'''=ist mit SmartThings verbunden
|
||||
'''is disconnected from SmartThings, because the access credential changed or was lost. Please go to the Ecobee (Connect) SmartApp and re-enter your account login credentials.'''=ist von SmartThings getrennt, da die Zugangsdaten für den Zugriff geändert wurden oder verloren gingen. Wechseln Sie zur ecobee (Connect)-SmartApp und geben Sie Ihre Kontozugangsdaten erneut ein.
|
||||
'''Your Ecobee thermostat '''=Ihr ecobee-Thermostat
|
||||
@@ -0,0 +1,20 @@
|
||||
'''Connect your Ecobee thermostat to SmartThings.'''=Συνδέστε το θερμοστάτη Ecobee στο SmartThings.
|
||||
'''ecobee'''=ecobee
|
||||
'''You are connected.'''=Έχετε συνδεθεί.
|
||||
'''Click to enter Ecobee Credentials'''=Κάντε κλικ για να καταχωρήσετε διαπιστευτήρια Ecobee
|
||||
'''Login'''=Σύνδεση
|
||||
'''Tap below to log in to the ecobee service and authorize SmartThings access. Be sure to scroll down on page 2 and press the 'Allow' button.'''=Πατήστε παρακάτω για να συνδεθείτε στην υπηρεσία ecobee και να δώσετε εξουσιοδότηση πρόσβασης για το SmartThings. Κάνετε κύλιση προς τα κάτω στη σελίδα 2 και πατήστε το κουμπί "Επιτρ.".
|
||||
'''ecobee'''=ecobee
|
||||
'''Select Your Thermostats'''=Επιλέξτε τους θερμοστάτες σας
|
||||
'''Tap below to see the list of ecobee thermostats available in your ecobee account and select the ones you want to connect to SmartThings.'''=Πατήστε παρακάτω για να δείτε τη λίστα με τους θερμοστάτες ecobee που είναι διαθέσιμοι στο λογαριασμό ecobee και να επιλέξετε αυτούς που θέλετε να συνδέσετε στο SmartThings.
|
||||
'''Tap to choose'''=Πατήστε για να επιλέξετε
|
||||
'''Tap below to see the list of ecobee sensors available in your ecobee account and select the ones you want to connect to SmartThings.'''=Πατήστε παρακάτω για να δείτε τη λίστα με τους αισθητήρες ecobee που είναι διαθέσιμοι στο λογαριασμό ecobee και να επιλέξετε αυτούς που θέλετε να συνδέσετε στο SmartThings.
|
||||
'''Tap to choose'''=Πατήστε για να επιλέξετε
|
||||
'''Select Ecobee Sensors ({{numFound}} found)'''=Επιλογή αισθητήρων Ecobee (βρέθηκαν {{numFound}})
|
||||
'''Your ecobee Account is now connected to SmartThings!'''=Ο λογαριασμός σας στο ecobee έχει τώρα συνδεθεί στο SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Πατήστε "Done" (Τέλος) για να ολοκληρωθεί η ρύθμιση.
|
||||
'''The connection could not be established!'''=Δεν ήταν δυνατή η δημιουργία σύνδεσης!
|
||||
'''Click 'Done' to return to the menu.'''=Κάντε κλικ στο "Done" (Τέλος) για να επιστρέψετε στο μενού.
|
||||
'''is connected to SmartThings'''=συνδέθηκε στο SmartThings
|
||||
'''is disconnected from SmartThings, because the access credential changed or was lost. Please go to the Ecobee (Connect) SmartApp and re-enter your account login credentials.'''=αποσυνδέθηκε από το SmartThings, επειδή τα διαπιστευτήρια πρόσβασης άλλαξαν ή έχουν χαθεί. Μεταβείτε στην εφαρμογή Ecobee (Connect) SmartApp και καταχωρήστε ξανά τα διαπιστευτήρια σύνδεσης για το λογαριασμό σας.
|
||||
'''Your Ecobee thermostat '''=Θερμοστάτης Ecobee
|
||||
@@ -0,0 +1,20 @@
|
||||
'''Connect your Ecobee thermostat to SmartThings.'''=Connect your Ecobee thermostat to SmartThings.
|
||||
'''ecobee'''=ecobee
|
||||
'''You are connected.'''=You are connected.
|
||||
'''Click to enter Ecobee Credentials'''=Click to enter Ecobee Credentials
|
||||
'''Login'''=Login
|
||||
'''Tap below to log in to the ecobee service and authorize SmartThings access. Be sure to scroll down on page 2 and press the 'Allow' button.'''=Tap below to log in to the ecobee service and authorise SmartThings access. Be sure to scroll down on page 2 and press the ’Allow’ button.
|
||||
'''ecobee'''=ecobee
|
||||
'''Select Your Thermostats'''=Select Your Thermostats
|
||||
'''Tap below to see the list of ecobee thermostats available in your ecobee account and select the ones you want to connect to SmartThings.'''=Tap below to see the list of ecobee thermostats available in your ecobee account and select the ones you want to connect to SmartThings.
|
||||
'''Tap to choose'''=Tap to choose
|
||||
'''Tap below to see the list of ecobee sensors available in your ecobee account and select the ones you want to connect to SmartThings.'''=Tap below to see the list of ecobee sensors available in your ecobee account and select the ones you want to connect to SmartThings.
|
||||
'''Tap to choose'''=Tap to choose
|
||||
'''Select Ecobee Sensors ({{numFound}} found)'''=Select Ecobee Sensors ({{numFound}} found)
|
||||
'''Your ecobee Account is now connected to SmartThings!'''=Your ecobee Account is now connected to SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Click ’Done’ to finish setup.
|
||||
'''The connection could not be established!'''=The connection could not be established!
|
||||
'''Click 'Done' to return to the menu.'''=Click ’Done’ to return to the menu.
|
||||
'''is connected to SmartThings'''=is connected to SmartThings
|
||||
'''is disconnected from SmartThings, because the access credential changed or was lost. Please go to the Ecobee (Connect) SmartApp and re-enter your account login credentials.'''=is disconnected from SmartThings, because the access credential changed or was lost. Please go to the Ecobee (Connect) SmartApp and re-enter your account login credentials.
|
||||
'''Your Ecobee thermostat '''=Your Ecobee thermostat
|
||||
@@ -0,0 +1,20 @@
|
||||
'''Connect your Ecobee thermostat to SmartThings.'''=Conecte su termostato Ecobee a SmartThings.
|
||||
'''ecobee'''=ecobee
|
||||
'''You are connected.'''=Está conectado.
|
||||
'''Click to enter Ecobee Credentials'''=Haga clic para introducir las credenciales de Ecobee
|
||||
'''Login'''=Inicio de sesión
|
||||
'''Tap below to log in to the ecobee service and authorize SmartThings access. Be sure to scroll down on page 2 and press the 'Allow' button.'''=Pulse a continuación para iniciar sesión en el servicio de ecobee y autorizar el acceso a SmartThings. Asegúrese de desplazarse hacia abajo a la página 2 y pulsar el botón “Allow” (Permitir).
|
||||
'''ecobee'''=ecobee
|
||||
'''Select Your Thermostats'''=Seleccionar los termostatos
|
||||
'''Tap below to see the list of ecobee thermostats available in your ecobee account and select the ones you want to connect to SmartThings.'''=Pulse a continuación para ver la lista de termostatos ecobee disponibles en su cuenta de ecobee y seleccione los que quiera conectar a SmartThings.
|
||||
'''Tap to choose'''=Pulsar para seleccionar
|
||||
'''Tap below to see the list of ecobee sensors available in your ecobee account and select the ones you want to connect to SmartThings.'''=Pulse a continuación para ver la lista de sensores ecobee disponibles en su cuenta de ecobee y seleccione los que quiera conectar a SmartThings.
|
||||
'''Tap to choose'''=Pulsar para seleccionar
|
||||
'''Select Ecobee Sensors ({{numFound}} found)'''=Seleccionar sensores de Ecobee ({{numFound}} encontrados)
|
||||
'''Your ecobee Account is now connected to SmartThings!'''=¡Su cuenta de ecobee ya está conectada a SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Haga clic en “Done” (Hecho) para finalizar la configuración.
|
||||
'''The connection could not be established!'''=¡No se ha podido establecer la conexión!
|
||||
'''Click 'Done' to return to the menu.'''=Haga clic en “Done” (Hecho) para volver al menú.
|
||||
'''is connected to SmartThings'''=está conectado a SmartThings
|
||||
'''is disconnected from SmartThings, because the access credential changed or was lost. Please go to the Ecobee (Connect) SmartApp and re-enter your account login credentials.'''=está desconectado de SmartThings porque se han cambiado o perdido las credenciales de acceso. Vaya a la aplicación inteligente de Ecobee (Conectar) y vuelva a introducir las credenciales de inicio de sesión de su cuenta.
|
||||
'''Your Ecobee thermostat '''=Su termostato Ecobee
|
||||
@@ -0,0 +1,20 @@
|
||||
'''Connect your Ecobee thermostat to SmartThings.'''=Conecte el termostato Ecobee a SmartThings.
|
||||
'''ecobee'''=ecobee
|
||||
'''You are connected.'''=Está conectado.
|
||||
'''Click to enter Ecobee Credentials'''=Haga clic para introducir las credenciales de Ecobee
|
||||
'''Login'''=Inicio de sesión
|
||||
'''Tap below to log in to the ecobee service and authorize SmartThings access. Be sure to scroll down on page 2 and press the 'Allow' button.'''=Pulse a continuación para iniciar sesión en el servicio de ecobee y otorgar acceso a SmartThings. Asegúrese de desplazarse hacia abajo en la página 2 y de presionar el botón 'Allow' ('Permitir').
|
||||
'''ecobee'''=ecobee
|
||||
'''Select Your Thermostats'''=Seleccionar Your Thermostats (Sus termostatos)
|
||||
'''Tap below to see the list of ecobee thermostats available in your ecobee account and select the ones you want to connect to SmartThings.'''=Pulse a continuación para ver la lista de termostatos ecobee disponibles en su cuenta de ecobee y seleccione los que desea conectar a SmartThings.
|
||||
'''Tap to choose'''=Pulsar para elegir
|
||||
'''Tap below to see the list of ecobee sensors available in your ecobee account and select the ones you want to connect to SmartThings.'''=Pulse a continuación para ver la lista de sensores ecobee disponibles en su cuenta de ecobee y seleccione los que desea conectar a SmartThings.
|
||||
'''Tap to choose'''=Pulsar para elegir
|
||||
'''Select Ecobee Sensors ({{numFound}} found)'''=Seleccionar sensores Ecobee (hay {{numFound}})
|
||||
'''Your ecobee Account is now connected to SmartThings!'''=¡Su cuenta de ecobee ahora está conectada a SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Haga clic en 'Done' ('Listo') para finalizar la configuración.
|
||||
'''The connection could not be established!'''=¡No fue posible establecer la conexión!
|
||||
'''Click 'Done' to return to the menu.'''=Haga clic en 'Done' ('Listo') para volver al menú.
|
||||
'''is connected to SmartThings'''=está conectado a SmartThings
|
||||
'''is disconnected from SmartThings, because the access credential changed or was lost. Please go to the Ecobee (Connect) SmartApp and re-enter your account login credentials.'''=no está conectado a SmartThings debido a que la credencial de acceso se cambió o se perdió. Vaya a la SmartApp de Ecobee (Connect) y vuelva a introducir las credenciales de inicio de sesión de su cuenta.
|
||||
'''Your Ecobee thermostat '''=Su termostato Ecobee
|
||||
@@ -0,0 +1,20 @@
|
||||
'''Connect your Ecobee thermostat to SmartThings.'''=Ühendage oma termostaat Ecobee teenusega SmartThings.
|
||||
'''ecobee'''=ecobee
|
||||
'''You are connected.'''=Ühendus on loodud.
|
||||
'''Click to enter Ecobee Credentials'''=Klõpsake, et sisestada teenuse Ecobee volitused
|
||||
'''Login'''=Sisselogimine
|
||||
'''Tap below to log in to the ecobee service and authorize SmartThings access. Be sure to scroll down on page 2 and press the 'Allow' button.'''=Toksake all, et logida sisse teenusesse ecobee ja autoriseerida teenuse SmartThings juurdepääs. Kerige kindlasti alla lehele 2 ja vajutage nuppu Luba.
|
||||
'''ecobee'''=ecobee
|
||||
'''Select Your Thermostats'''=Valige oma termostaadid
|
||||
'''Tap below to see the list of ecobee thermostats available in your ecobee account and select the ones you want to connect to SmartThings.'''=Toksake all, et näha oma ecobee kontole registreeritud ecobee termostaate ja valige need, mida soovite ühendada teenusega SmartThings.
|
||||
'''Tap to choose'''=Toksake, et valida
|
||||
'''Tap below to see the list of ecobee sensors available in your ecobee account and select the ones you want to connect to SmartThings.'''=Toksake all, et näha oma ecobee kontole registreeritud ecobee andureid ja valige need, mida soovite ühendada teenusega SmartThings.
|
||||
'''Tap to choose'''=Toksake, et valida
|
||||
'''Select Ecobee Sensors ({{numFound}} found)'''=Valige Ecobee andurid (leiti {{numFound}})
|
||||
'''Your ecobee Account is now connected to SmartThings!'''=Teie ecobee konto on nüüd ühendatud teenusega SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Klõpsake valikut Valmis, et seadistamine lõpule viia.
|
||||
'''The connection could not be established!'''=Ühenduse loomine nurjus!
|
||||
'''Click 'Done' to return to the menu.'''=Klõpsake valikut Valmis, et naasta menüüsse.
|
||||
'''is connected to SmartThings'''=on ühendatud teenusega SmartThings
|
||||
'''is disconnected from SmartThings, because the access credential changed or was lost. Please go to the Ecobee (Connect) SmartApp and re-enter your account login credentials.'''=on teenusest SmartThings lahti ühendatud, kuna juurdepääsu volitus muutus või kadus. Avage rakendus Ecobee (Connect) SmartApp ja sisestage uuesti oma konto sisselogimisandmed.
|
||||
'''Your Ecobee thermostat '''=Teie Ecobee termostaat
|
||||
@@ -0,0 +1,20 @@
|
||||
'''Connect your Ecobee thermostat to SmartThings.'''=Yhdistä Ecobee-termostaattisi SmartThingsiin.
|
||||
'''ecobee'''=ecobee
|
||||
'''You are connected.'''=Yhteys muodostettu.
|
||||
'''Click to enter Ecobee Credentials'''=Napsauta ja anna Ecobee-tunnistetiedot
|
||||
'''Login'''=Kirjautuminen
|
||||
'''Tap below to log in to the ecobee service and authorize SmartThings access. Be sure to scroll down on page 2 and press the 'Allow' button.'''=Kirjaudu ecobee-palveluun ja myönnä SmartThingsille käyttöoikeudet napauttamalla alla. Vieritä alas sivulle 2 ja paina Allow (Salli) -painiketta.
|
||||
'''ecobee'''=ecobee
|
||||
'''Select Your Thermostats'''=Valitse termostaatit
|
||||
'''Tap below to see the list of ecobee thermostats available in your ecobee account and select the ones you want to connect to SmartThings.'''=Napauttamalla alla voit tuoda ecobee-tililläsi käytettävissä olevien ecobee-termostaattien luettelon näyttöön ja valita SmartThingsiin yhdistettävät laitteet.
|
||||
'''Tap to choose'''=Valitse napauttamalla
|
||||
'''Tap below to see the list of ecobee sensors available in your ecobee account and select the ones you want to connect to SmartThings.'''=Napauttamalla alla voit tuoda ecobee-tililläsi käytettävissä olevien ecobee-tunnistimien luettelon näyttöön ja valita SmartThingsiin yhdistettävät laitteet.
|
||||
'''Tap to choose'''=Valitse napauttamalla
|
||||
'''Select Ecobee Sensors ({{numFound}} found)'''=Valitse Ecobee-tunnistimet ({{numFound}} löydetty)
|
||||
'''Your ecobee Account is now connected to SmartThings!'''=ecobee-tilisi on nyt yhdistetty SmartThingsiin!
|
||||
'''Click 'Done' to finish setup.'''=Viimeistele asennus napsauttamalla Done (Valmis).
|
||||
'''The connection could not be established!'''=Yhteyden muodostaminen epäonnistui!
|
||||
'''Click 'Done' to return to the menu.'''=Palaa valikkoon napsauttamalla Done (Valmis).
|
||||
'''is connected to SmartThings'''=on yhdistetty SmartThingsiin
|
||||
'''is disconnected from SmartThings, because the access credential changed or was lost. Please go to the Ecobee (Connect) SmartApp and re-enter your account login credentials.'''=ei enää ole yhteydessä SmartThingsiin, sillä käyttötunnukset ovat muuttuneet tai kadonneet. Siirry Ecobee (Connect) SmartAppiin ja anna tilisi kirjautumistiedot uudelleen.
|
||||
'''Your Ecobee thermostat '''=Ecobee-termostaattisi
|
||||
@@ -0,0 +1,20 @@
|
||||
'''Connect your Ecobee thermostat to SmartThings.'''=Connectez votre thermostat Ecobee à SmartThings.
|
||||
'''ecobee'''=ecobee
|
||||
'''You are connected.'''=Vous êtes connecté.
|
||||
'''Click to enter Ecobee Credentials'''=Cliquez pour saisir les informations d'identification Ecobee
|
||||
'''Login'''=Connexion
|
||||
'''Tap below to log in to the ecobee service and authorize SmartThings access. Be sure to scroll down on page 2 and press the 'Allow' button.'''=Appuyez ci-dessous pour vous connecter au service ecobee et autoriser l'accès pour SmartThings. Faites défiler l'écran jusqu'en bas de la page 2 et appuyez sur le bouton Allow (Autoriser).
|
||||
'''ecobee'''=ecobee
|
||||
'''Select Your Thermostats'''=Sélection de vos thermostats
|
||||
'''Tap below to see the list of ecobee thermostats available in your ecobee account and select the ones you want to connect to SmartThings.'''=Appuyez ci-dessous pour afficher la liste des thermostats ecobee disponibles dans votre compte ecobee et sélectionner ceux que vous souhaitez connecter à SmartThings.
|
||||
'''Tap to choose'''=Appuyez pour sélectionner
|
||||
'''Tap below to see the list of ecobee sensors available in your ecobee account and select the ones you want to connect to SmartThings.'''=Appuyez ci-dessous pour afficher la liste des capteurs ecobee disponibles dans votre compte ecobee et sélectionner ceux que vous souhaitez connecter à SmartThings.
|
||||
'''Tap to choose'''=Appuyez pour sélectionner
|
||||
'''Select Ecobee Sensors ({{numFound}} found)'''=Sélection des capteurs Ecobee ({{numFound}} trouvé(s))
|
||||
'''Your ecobee Account is now connected to SmartThings!'''=Votre compte ecobee est maintenant connecté à SmartThings !
|
||||
'''Click 'Done' to finish setup.'''=Cliquez sur Done (Terminé) pour terminer la configuration.
|
||||
'''The connection could not be established!'''=La connexion n'a pas pu être établie !
|
||||
'''Click 'Done' to return to the menu.'''=Cliquez sur Done (Terminé) pour revenir au menu.
|
||||
'''is connected to SmartThings'''=est connecté à SmartThings
|
||||
'''is disconnected from SmartThings, because the access credential changed or was lost. Please go to the Ecobee (Connect) SmartApp and re-enter your account login credentials.'''=est déconnecté de SmartThings, car les identifiants d'accès ont été modifiés ou perdus. Accédez à la SmartApp Ecobee (Connect) et saisissez à nouveau les informations de connexion à votre compte.
|
||||
'''Your Ecobee thermostat '''=Votre thermostat Ecobee
|
||||
@@ -0,0 +1,20 @@
|
||||
'''Connect your Ecobee thermostat to SmartThings.'''=Connectez votre thermostat Ecobee à SmartThings.
|
||||
'''ecobee'''=ecobee
|
||||
'''You are connected.'''=Vous êtes connecté.
|
||||
'''Click to enter Ecobee Credentials'''=Cliquez pour saisir les informations d'identification Ecobee
|
||||
'''Login'''=Connexion
|
||||
'''Tap below to log in to the ecobee service and authorize SmartThings access. Be sure to scroll down on page 2 and press the 'Allow' button.'''=Appuyez ci-dessous pour vous connecter au service ecobee et autoriser l'accès pour SmartThings. Faites défiler l'écran jusqu'en bas de la page 2 et appuyez sur le bouton Allow (Autoriser).
|
||||
'''ecobee'''=ecobee
|
||||
'''Select Your Thermostats'''=Sélection de vos thermostats
|
||||
'''Tap below to see the list of ecobee thermostats available in your ecobee account and select the ones you want to connect to SmartThings.'''=Appuyez ci-dessous pour afficher la liste des thermostats ecobee disponibles dans votre compte ecobee et sélectionner ceux que vous souhaitez connecter à SmartThings.
|
||||
'''Tap to choose'''=Appuyez pour sélectionner
|
||||
'''Tap below to see the list of ecobee sensors available in your ecobee account and select the ones you want to connect to SmartThings.'''=Appuyez ci-dessous pour afficher la liste des capteurs ecobee disponibles dans votre compte ecobee et sélectionner ceux que vous souhaitez connecter à SmartThings.
|
||||
'''Tap to choose'''=Appuyez pour sélectionner
|
||||
'''Select Ecobee Sensors ({{numFound}} found)'''=Sélection des capteurs Ecobee ({{numFound}} trouvé(s))
|
||||
'''Your ecobee Account is now connected to SmartThings!'''=Votre compte ecobee est maintenant connecté à SmartThings !
|
||||
'''Click 'Done' to finish setup.'''=Cliquez sur Done (Terminé) pour terminer la configuration.
|
||||
'''The connection could not be established!'''=La connexion n'a pas pu être établie !
|
||||
'''Click 'Done' to return to the menu.'''=Cliquez sur Done (Terminé) pour revenir au menu.
|
||||
'''is connected to SmartThings'''=est connecté à SmartThings
|
||||
'''is disconnected from SmartThings, because the access credential changed or was lost. Please go to the Ecobee (Connect) SmartApp and re-enter your account login credentials.'''=est déconnecté de SmartThings, car les identifiants d'accès ont été modifiés ou perdus. Accédez à la SmartApp Ecobee (Connect) et saisissez à nouveau les informations de connexion à votre compte.
|
||||
'''Your Ecobee thermostat '''=Votre thermostat Ecobee
|
||||
@@ -0,0 +1,20 @@
|
||||
'''Connect your Ecobee thermostat to SmartThings.'''=Povežite termostat Ecobee s uslugom SmartThings.
|
||||
'''ecobee'''=ecobee
|
||||
'''You are connected.'''=Povezani ste.
|
||||
'''Click to enter Ecobee Credentials'''=Kliknite za unos podataka za prijavu za Ecobee
|
||||
'''Login'''=Prijava
|
||||
'''Tap below to log in to the ecobee service and authorize SmartThings access. Be sure to scroll down on page 2 and press the 'Allow' button.'''=Dodirnite u nastavku da biste se prijavili u uslugu ecobee i odobrili pristup za SmartThings. Na 2. se stranici pomaknite prema dolje i pritisnite gumb „Allow” (Dopusti).
|
||||
'''ecobee'''=ecobee
|
||||
'''Select Your Thermostats'''=Odaberite termostate
|
||||
'''Tap below to see the list of ecobee thermostats available in your ecobee account and select the ones you want to connect to SmartThings.'''=Dodirnite u nastavku da biste vidjeli popis termostata ecobee dostupnih na vašem računu za ecobee i odaberite one koje želite povezati s uslugom SmartThings.
|
||||
'''Tap to choose'''=Dodirnite za odabir
|
||||
'''Tap below to see the list of ecobee sensors available in your ecobee account and select the ones you want to connect to SmartThings.'''=Dodirnite u nastavku da biste vidjeli popis senzora ecobee dostupnih na vašem računu za ecobee i odaberite one koje želite povezati s uslugom SmartThings.
|
||||
'''Tap to choose'''=Dodirnite za odabir
|
||||
'''Select Ecobee Sensors ({{numFound}} found)'''=Odaberite senzore Ecobee (pronađeno: {{numFound}})
|
||||
'''Your ecobee Account is now connected to SmartThings!'''=Račun za ecobee sada je povezan s uslugom SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Kliknite „Done” (Gotovo) da biste dovršili postavljanje.
|
||||
'''The connection could not be established!'''=Veza se nije uspostavila!
|
||||
'''Click 'Done' to return to the menu.'''=Kliknite „Done” (Gotovo) za vraćanje na izbornik.
|
||||
'''is connected to SmartThings'''=povezan je s uslugom SmartThings
|
||||
'''is disconnected from SmartThings, because the access credential changed or was lost. Please go to the Ecobee (Connect) SmartApp and re-enter your account login credentials.'''=nije povezan s uslugom SmartThings jer su se pristupni podaci promijenili ili izgubili. Idite na Ecobee (Connect) SmartApp i ponovno unesite podatke za prijavu na račun.
|
||||
'''Your Ecobee thermostat '''=Termostat Ecobee
|
||||
@@ -0,0 +1,20 @@
|
||||
'''Connect your Ecobee thermostat to SmartThings.'''=Ecobee termosztátot csatlakoztathat a SmartThings rendszerhez.
|
||||
'''ecobee'''=ecobee
|
||||
'''You are connected.'''=Kapcsolódott.
|
||||
'''Click to enter Ecobee Credentials'''=Kattintson az Ecobee-hitelesítőadatok megadásához
|
||||
'''Login'''=Bejelentkezés
|
||||
'''Tap below to log in to the ecobee service and authorize SmartThings access. Be sure to scroll down on page 2 and press the 'Allow' button.'''=Az alábbi hivatkozás megérintésével bejelentkezhet az ecobee szolgáltatásba, és engedélyezheti a SmartThings-hozzáférést. Görgessen le a 2. oldalon, és nyomja meg az „Allow” (Engedélyezés) gombot.
|
||||
'''ecobee'''=ecobee
|
||||
'''Select Your Thermostats'''=A termosztátok kiválasztása
|
||||
'''Tap below to see the list of ecobee thermostats available in your ecobee account and select the ones you want to connect to SmartThings.'''=Az alábbi hivatkozás megérintésével megjelenítheti az ecobee-fiókjában rendelkezésre álló ecobee termosztátok listáját, és kiválaszthatja azokat, amelyeket csatlakoztatni szeretne a SmartThings rendszerhez.
|
||||
'''Tap to choose'''=Érintse meg a kiválasztáshoz
|
||||
'''Tap below to see the list of ecobee sensors available in your ecobee account and select the ones you want to connect to SmartThings.'''=Az alábbi hivatkozás megérintésével megjelenítheti az ecobee-fiókjában rendelkezésre álló ecobee érzékelők listáját, és kiválaszthatja azokat, amelyeket csatlakoztatni szeretne a SmartThings rendszerhez.
|
||||
'''Tap to choose'''=Érintse meg a kiválasztáshoz
|
||||
'''Select Ecobee Sensors ({{numFound}} found)'''=Ecobee érzékelők kiválasztása ({{numFound}} találat)
|
||||
'''Your ecobee Account is now connected to SmartThings!'''=Csatlakoztatta ecobee-fiókját a SmartThings rendszerhez!
|
||||
'''Click 'Done' to finish setup.'''=A telepítés befejezéséhez kattintson a „Done” (Kész) gombra.
|
||||
'''The connection could not be established!'''=Nem sikerült kapcsolatot létesíteni!
|
||||
'''Click 'Done' to return to the menu.'''=A menühöz való visszatéréshez kattintson a „Done” (Kész) gombra.
|
||||
'''is connected to SmartThings'''=kapcsolódott a SmartThings rendszerhez
|
||||
'''is disconnected from SmartThings, because the access credential changed or was lost. Please go to the Ecobee (Connect) SmartApp and re-enter your account login credentials.'''=le lett választva a SmartThings rendszerről, mert megváltoztak vagy elvesztek a hozzáférési hitelesítő adatok. Adja meg újra a fiókja bejelentkezési hitelesítő adatait a Ecobee (Connect) SmartApp segítségével.
|
||||
'''Your Ecobee thermostat '''=Az Ön Ecobee termosztátja
|
||||
@@ -0,0 +1,20 @@
|
||||
'''Connect your Ecobee thermostat to SmartThings.'''=Connettete il termostato Ecobee a SmartThings.
|
||||
'''ecobee'''=ecobee
|
||||
'''You are connected.'''=Connessione effettuata.
|
||||
'''Click to enter Ecobee Credentials'''=Fate clic per inserire le credenziali Ecobee
|
||||
'''Login'''=Accesso
|
||||
'''Tap below to log in to the ecobee service and authorize SmartThings access. Be sure to scroll down on page 2 and press the 'Allow' button.'''=Toccate di seguito per accedere al servizio ecobee e autorizzare l'accesso a SmartThings. Scorrete fino in fondo alla pagina 2 e premete il pulsante “Allow” (Consenti).
|
||||
'''ecobee'''=ecobee
|
||||
'''Select Your Thermostats'''=Selezionate i termostati
|
||||
'''Tap below to see the list of ecobee thermostats available in your ecobee account and select the ones you want to connect to SmartThings.'''=Toccate di seguito per visualizzare l'elenco dei termostati ecobee disponibili nell'account ecobee e selezionate quelli che volete connettere a SmartThings.
|
||||
'''Tap to choose'''=Toccate per scegliere
|
||||
'''Tap below to see the list of ecobee sensors available in your ecobee account and select the ones you want to connect to SmartThings.'''=Toccate di seguito per visualizzare l'elenco dei sensori ecobee disponibili nell'account ecobee e selezionate quelli che volete connettere a SmartThings.
|
||||
'''Tap to choose'''=Toccate per scegliere
|
||||
'''Select Ecobee Sensors ({{numFound}} found)'''=Selezionate i sensori Ecobee ({{numFound}} trovati)
|
||||
'''Your ecobee Account is now connected to SmartThings!'''=L'account ecobee è ora connesso a SmartThings.
|
||||
'''Click 'Done' to finish setup.'''=Fate clic su “Done” (Fatto) per terminare la configurazione.
|
||||
'''The connection could not be established!'''=Non è stato possibile stabilire la connessione.
|
||||
'''Click 'Done' to return to the menu.'''=Fate clic su “Done” (Fatto) per tornare al menu.
|
||||
'''is connected to SmartThings'''=connesso a SmartThings
|
||||
'''is disconnected from SmartThings, because the access credential changed or was lost. Please go to the Ecobee (Connect) SmartApp and re-enter your account login credentials.'''=disconnesso da SmartThings. Le credenziali di accesso sono state modificate o sono andate perse. Andate alla SmartApp di Ecobee (Connect) e inserite nuovamente le credenziali di accesso all'account.
|
||||
'''Your Ecobee thermostat '''=Il termostato Ecobee
|
||||
@@ -0,0 +1,20 @@
|
||||
'''Connect your Ecobee thermostat to SmartThings.'''=Ecobee 온도조절기를 SmartThings에 연결하세요.
|
||||
'''ecobee'''=Ecobee
|
||||
'''You are connected.'''=연결되었습니다.
|
||||
'''Click to enter Ecobee Credentials'''=Ecobee 로그인 정보를 입력하려면 클릭하세요
|
||||
'''Login'''=로그인
|
||||
'''Tap below to log in to the ecobee service and authorize SmartThings access. Be sure to scroll down on page 2 and press the 'Allow' button.'''=Ecobee 서비스에 로그인하여 SmartThings를 사용할 수 있도록 인증하려면 아래를 누르세요. 2페이지에서 아래로 스크롤한 후 [허용]을 누르세요.
|
||||
'''ecobee'''=Ecobee
|
||||
'''Select Your Thermostats'''=온도조절기 선택
|
||||
'''Tap below to see the list of ecobee thermostats available in your ecobee account and select the ones you want to connect to SmartThings.'''=Ecobee 계정에 등록된 Ecobee 온도조절기 목록을 확인하고 SmartThings에 연결할 기기를 선택하려면 아래를 누르세요.
|
||||
'''Tap to choose'''=눌러서 선택
|
||||
'''Tap below to see the list of ecobee sensors available in your ecobee account and select the ones you want to connect to SmartThings.'''=Ecobee 계정에 등록된 Ecobee 센서 목록을 확인하고 SmartThings에 연결할 기기를 선택하려면 아래를 누르세요.
|
||||
'''Tap to choose'''=눌러서 선택
|
||||
'''Select Ecobee Sensors ({{numFound}} found)'''=Ecobee 센서 선택 ({{numFound}}개 찾음)
|
||||
'''Your ecobee Account is now connected to SmartThings!'''=Ecobee 계정이 SmartThings에 연결되었습니다!
|
||||
'''Click 'Done' to finish setup.'''=설정을 완료하려면 [완료]를 클릭하세요.
|
||||
'''The connection could not be established!'''=연결을 실행할 수 없습니다!
|
||||
'''Click 'Done' to return to the menu.'''=메뉴로 돌아가려면 [완료]를 클릭하세요.
|
||||
'''is connected to SmartThings'''=이(가) SmartThings에 연결되었습니다
|
||||
'''is disconnected from SmartThings, because the access credential changed or was lost. Please go to the Ecobee (Connect) SmartApp and re-enter your account login credentials.'''=이(가) SmartThings에서 연결 해제되었습니다. 로그인 정보가 변경되었거나 유실되었습니다. Ecobee (연결) 스마트앱에서 계정의 로그인 정보를 다시 입력하세요.
|
||||
'''Your Ecobee thermostat '''=Ecobee 온도조절기
|
||||
@@ -0,0 +1,20 @@
|
||||
'''Connect your Ecobee thermostat to SmartThings.'''=Verbind uw Ecobee-thermostaat met SmartThings.
|
||||
'''ecobee'''=ecobee
|
||||
'''You are connected.'''=U bent verbonden.
|
||||
'''Click to enter Ecobee Credentials'''=Klik om Ecobee-inloggegevens in te voeren
|
||||
'''Login'''=Inloggen
|
||||
'''Tap below to log in to the ecobee service and authorize SmartThings access. Be sure to scroll down on page 2 and press the 'Allow' button.'''=Tik hieronder om in te loggen bij uw ecobee-service en toegang door SmartThings toe te staan. Scrol naar beneden op pagina 2 en druk op de knop Allow (Toestaan).
|
||||
'''ecobee'''=ecobee
|
||||
'''Select Your Thermostats'''=Selecteer uw thermostaten
|
||||
'''Tap below to see the list of ecobee thermostats available in your ecobee account and select the ones you want to connect to SmartThings.'''=Tik hieronder om de lijst met ecobee-thermostaten in uw ecobee-account weer te geven en de apparaten te selecteren die u wilt verbinden met SmartThings.
|
||||
'''Tap to choose'''=Tik om te kiezen
|
||||
'''Tap below to see the list of ecobee sensors available in your ecobee account and select the ones you want to connect to SmartThings.'''=Tik hieronder om de lijst met ecobee-sensoren in uw ecobee-account weer te geven en de apparaten te selecteren die u wilt verbinden met SmartThings.
|
||||
'''Tap to choose'''=Tik om te kiezen
|
||||
'''Select Ecobee Sensors ({{numFound}} found)'''=Selecteer Ecobee-sensoren ({{numFound}} gevonden)
|
||||
'''Your ecobee Account is now connected to SmartThings!'''=Uw ecobee-account is nu verbonden met SmartThings.
|
||||
'''Click 'Done' to finish setup.'''=Klik op Done (Gereed) om het instellen te voltooien.
|
||||
'''The connection could not be established!'''=Er kan geen verbinding worden gemaakt.
|
||||
'''Click 'Done' to return to the menu.'''=Klik op Done (Gereed) om terug te gaan naar het menu.
|
||||
'''is connected to SmartThings'''=is verbonden met SmartThings
|
||||
'''is disconnected from SmartThings, because the access credential changed or was lost. Please go to the Ecobee (Connect) SmartApp and re-enter your account login credentials.'''=-verbinding met SmartThings is verbroken, omdat de inloggegevens zijn gewijzigd of verloren zijn gegaan. Ga naar de Ecobee (Connect) SmartApp en voer de inloggegevens voor uw account opnieuw in.
|
||||
'''Your Ecobee thermostat '''=Uw Ecobee-thermostaat
|
||||
@@ -0,0 +1,20 @@
|
||||
'''Connect your Ecobee thermostat to SmartThings.'''=Koble Ecobee-termostaten til SmartThings.
|
||||
'''ecobee'''=ecobee
|
||||
'''You are connected.'''=Du er tilkoblet.
|
||||
'''Click to enter Ecobee Credentials'''=Klikk for å angi Ecobee-informasjon
|
||||
'''Login'''=Logg på
|
||||
'''Tap below to log in to the ecobee service and authorize SmartThings access. Be sure to scroll down on page 2 and press the 'Allow' button.'''=Trykk nedenfor for å logge på ecobee-tjenesten og godkjenne SmartThings-tilgang. Pass på å bla ned på side 2 og trykke på Allow (Tillat)-knappen.
|
||||
'''ecobee'''=ecobee
|
||||
'''Select Your Thermostats'''=Velg termostatene dine
|
||||
'''Tap below to see the list of ecobee thermostats available in your ecobee account and select the ones you want to connect to SmartThings.'''=Trykk nedenfor for å se listen over ecobee-termostatene som er tilgjengelige i ecobee-kontoen din, og velg de du vil koble til SmartThings.
|
||||
'''Tap to choose'''=Trykk for å velge
|
||||
'''Tap below to see the list of ecobee sensors available in your ecobee account and select the ones you want to connect to SmartThings.'''=Trykk nedenfor for å se listen over ecobee-sensorene som er tilgjengelige i ecobee-kontoen din, og velg de du vil koble til SmartThings.
|
||||
'''Tap to choose'''=Trykk for å velge
|
||||
'''Select Ecobee Sensors ({{numFound}} found)'''=Velg Ecobee-sensorer (fant {{numFound}})
|
||||
'''Your ecobee Account is now connected to SmartThings!'''=ecobee-kontoen din er nå koblet til SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Klikk på Done (Ferdig) for å fullføre oppsettet.
|
||||
'''The connection could not be established!'''=Kunne ikke opprette tilkoblingen!
|
||||
'''Click 'Done' to return to the menu.'''=Klikk på Done (Ferdig) for å gå tilbake til menyen.
|
||||
'''is connected to SmartThings'''=er koblet til SmartThings
|
||||
'''is disconnected from SmartThings, because the access credential changed or was lost. Please go to the Ecobee (Connect) SmartApp and re-enter your account login credentials.'''=er koblet fra SmartThings fordi tilgangsinformasjonen ble endret eller mistet. Gå til Ecobee (Connect) SmartApp, og angi påloggingsinformasjonen for kontoen på nytt.
|
||||
'''Your Ecobee thermostat '''=Ecobee-termostaten
|
||||
@@ -0,0 +1,20 @@
|
||||
'''Connect your Ecobee thermostat to SmartThings.'''=Połącz termostat Ecobee ze SmartThings.
|
||||
'''ecobee'''=ecobee
|
||||
'''You are connected.'''=Połączono.
|
||||
'''Click to enter Ecobee Credentials'''=Kliknij, aby wprowadzić poświadczenia Ecobee
|
||||
'''Login'''=Logowanie
|
||||
'''Tap below to log in to the ecobee service and authorize SmartThings access. Be sure to scroll down on page 2 and press the 'Allow' button.'''=Dotknij poniżej, aby zalogować się do usługi ecobee i autoryzować dostęp SmartThings. Przewiń w dół na stronie 2 i naciśnij przycisk „Allow” (Zezwól).
|
||||
'''ecobee'''=ecobee
|
||||
'''Select Your Thermostats'''=Wybierz termostaty
|
||||
'''Tap below to see the list of ecobee thermostats available in your ecobee account and select the ones you want to connect to SmartThings.'''=Dotknij poniżej, aby wyświetlić listę termostatów ecobee dostępnych na koncie ecobee, i wybierz te, które chcesz połączyć ze SmartThings.
|
||||
'''Tap to choose'''=Dotknij, aby wybrać
|
||||
'''Tap below to see the list of ecobee sensors available in your ecobee account and select the ones you want to connect to SmartThings.'''=Dotknij poniżej, aby wyświetlić listę czujników ecobee dostępnych na koncie ecobee, i wybierz te, które chcesz połączyć ze SmartThings.
|
||||
'''Tap to choose'''=Dotknij, aby wybrać
|
||||
'''Select Ecobee Sensors ({{numFound}} found)'''=Wybierz czujniki Ecobee (znaleziono {{numFound}})
|
||||
'''Your ecobee Account is now connected to SmartThings!'''=Konto ecobee jest teraz połączone ze SmartThings.
|
||||
'''Click 'Done' to finish setup.'''=Kliknij opcję „Done” (Gotowe), aby ukończyć instalację.
|
||||
'''The connection could not be established!'''=Nie można ustanowić połączenia.
|
||||
'''Click 'Done' to return to the menu.'''=Kliknij opcję „Done” (Gotowe), aby powrócić do menu.
|
||||
'''is connected to SmartThings'''=jest połączony ze SmartThings
|
||||
'''is disconnected from SmartThings, because the access credential changed or was lost. Please go to the Ecobee (Connect) SmartApp and re-enter your account login credentials.'''=jest odłączony od SmartThings, ponieważ poświadczenie dostępu zostało zmienione lub utracone. Przejdź do aplikacji Ecobee (Connect) SmartApp i wprowadź ponownie poświadczenia logowania konta.
|
||||
'''Your Ecobee thermostat '''=Termostat Ecobee
|
||||
@@ -0,0 +1,20 @@
|
||||
'''Connect your Ecobee thermostat to SmartThings.'''=Conecte seu termostato Ecobee ao SmartThings.
|
||||
'''ecobee'''=ecobee
|
||||
'''You are connected.'''=Você está conectado.
|
||||
'''Click to enter Ecobee Credentials'''=Clique para inserir as credenciais do Ecobee
|
||||
'''Login'''=Conectar
|
||||
'''Tap below to log in to the ecobee service and authorize SmartThings access. Be sure to scroll down on page 2 and press the 'Allow' button.'''=Toque abaixo para entrar no serviço ecobee e autorizar o acesso ao SmartThings. Certifique-se de rolar para baixo na página 2 e pressionar o botão 'Allow' (Permitir).
|
||||
'''ecobee'''=ecobee
|
||||
'''Select Your Thermostats'''=Selecionar seus termostatos
|
||||
'''Tap below to see the list of ecobee thermostats available in your ecobee account and select the ones you want to connect to SmartThings.'''=Toque abaixo para ver a lista de termostatos ecobee disponíveis na sua conta ecobee e selecione os que deseja conectar ao SmartThings.
|
||||
'''Tap to choose'''=Tocar para escolher
|
||||
'''Tap below to see the list of ecobee sensors available in your ecobee account and select the ones you want to connect to SmartThings.'''=Toque abaixo para ver a lista de sensores ecobee disponíveis na sua conta ecobee e selecione os que deseja conectar ao SmartThings.
|
||||
'''Tap to choose'''=Tocar para escolher
|
||||
'''Select Ecobee Sensors ({{numFound}} found)'''=Selecionar sensores Ecobee ({{numFound}} encontrado(s))
|
||||
'''Your ecobee Account is now connected to SmartThings!'''=Agora sua conta ecobee está conectada ao SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Clique em 'Done' (Concluído) para concluir a configuração.
|
||||
'''The connection could not be established!'''=Não foi possível estabelecer a conexão!
|
||||
'''Click 'Done' to return to the menu.'''=Clique em 'Done' (Concluído) para retornar ao menu.
|
||||
'''is connected to SmartThings'''=está conectado ao SmartThings
|
||||
'''is disconnected from SmartThings, because the access credential changed or was lost. Please go to the Ecobee (Connect) SmartApp and re-enter your account login credentials.'''=foi desconectado do SmartThings, pois a credencial de acesso foi alterada ou perdida. Vá para Ecobee (Connect) SmartApp e insira novamente suas credenciais de acesso à conta.
|
||||
'''Your Ecobee thermostat '''=Seu termostato Ecobee
|
||||
@@ -0,0 +1,20 @@
|
||||
'''Connect your Ecobee thermostat to SmartThings.'''=Ligue o seu termóstato Ecobee ao SmartThings.
|
||||
'''ecobee'''=ecobee
|
||||
'''You are connected.'''=Está ligado.
|
||||
'''Click to enter Ecobee Credentials'''=Clique para introduzir as Credenciais da Ecobee
|
||||
'''Login'''=Iniciar Sessão
|
||||
'''Tap below to log in to the ecobee service and authorize SmartThings access. Be sure to scroll down on page 2 and press the 'Allow' button.'''=Toque abaixo para iniciar sessão no serviço ecobee e autorizar o acesso ao SmartThings. Certifique-se de que se desloca para baixo na página 2 e prime o botão "Allow" (Permitir).
|
||||
'''ecobee'''=ecobee
|
||||
'''Select Your Thermostats'''=Seleccionar os seus Termóstatos
|
||||
'''Tap below to see the list of ecobee thermostats available in your ecobee account and select the ones you want to connect to SmartThings.'''=Toque abaixo para ver a lista de termóstatos da ecobee disponíveis na sua conta ecobee e seleccione aqueles que pretende ligar ao SmartThings.
|
||||
'''Tap to choose'''=Toque para escolher
|
||||
'''Tap below to see the list of ecobee sensors available in your ecobee account and select the ones you want to connect to SmartThings.'''=Toque abaixo para ver a lista de sensores da ecobee disponíveis na sua conta ecobee e seleccione aqueles que pretende ligar ao SmartThings.
|
||||
'''Tap to choose'''=Toque para escolher
|
||||
'''Select Ecobee Sensors ({{numFound}} found)'''=Seleccionar sensores da Ecobee ({{numFound}} encontrado)
|
||||
'''Your ecobee Account is now connected to SmartThings!'''=Agora, a sua Conta ecobee está ligada ao SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Clique em "Done" (Concluir) para terminar a configuração.
|
||||
'''The connection could not be established!'''=Não foi possível estabelecer a ligação!
|
||||
'''Click 'Done' to return to the menu.'''=Clique em "Done" (Concluir) para regressar ao menu.
|
||||
'''is connected to SmartThings'''=está ligado ao SmartThings
|
||||
'''is disconnected from SmartThings, because the access credential changed or was lost. Please go to the Ecobee (Connect) SmartApp and re-enter your account login credentials.'''=foi desligado do SmartThings, porque a credencial de acesso foi alterada ou perdida. Vá para Ecobee (Connect) SmartApp e introduza novamente as suas credenciais de início de sessão na conta.
|
||||
'''Your Ecobee thermostat '''=O seu termóstato Ecobee
|
||||
@@ -0,0 +1,20 @@
|
||||
'''Connect your Ecobee thermostat to SmartThings.'''=Conectați termostatul Ecobee la SmartThings.
|
||||
'''ecobee'''=ecobee
|
||||
'''You are connected.'''=Sunteți conectat.
|
||||
'''Click to enter Ecobee Credentials'''=Faceți clic pentru a introduce acreditările Ecobee
|
||||
'''Login'''=Conectare
|
||||
'''Tap below to log in to the ecobee service and authorize SmartThings access. Be sure to scroll down on page 2 and press the 'Allow' button.'''=Atingeți mai jos pentru a vă conecta la serviciul ecobee și a autoriza accesul la SmartThings. Asigurați-vă că ați derulat în jos până la pagina 2 și apăsați butonul „Allow” (Permitere).
|
||||
'''ecobee'''=ecobee
|
||||
'''Select Your Thermostats'''=Selectați termostatele
|
||||
'''Tap below to see the list of ecobee thermostats available in your ecobee account and select the ones you want to connect to SmartThings.'''=Atingeți mai jos pentru a vizualiza o listă de termostate ecobee disponibile în contul dvs. ecobee și selectați-le pe cele pe care doriți să le conectați la SmartThings.
|
||||
'''Tap to choose'''=Atingeți pentru a selecta
|
||||
'''Tap below to see the list of ecobee sensors available in your ecobee account and select the ones you want to connect to SmartThings.'''=Atingeți mai jos pentru a vizualiza o listă de senzori ecobee disponibili în contul dvs. ecobee și selectați-i pe cei pe care doriți să îi conectați la SmartThings.
|
||||
'''Tap to choose'''=Atingeți pentru a selecta
|
||||
'''Select Ecobee Sensors ({{numFound}} found)'''=Selectare senzori Ecobee ({{numFound}} găsiți)
|
||||
'''Your ecobee Account is now connected to SmartThings!'''=Contul dvs. ecobee este acum conectat la SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Faceți clic pe „Done” (Efectuat) pentru a finaliza configurarea.
|
||||
'''The connection could not be established!'''=Nu a putut fi stabilită conexiunea!
|
||||
'''Click 'Done' to return to the menu.'''=Faceți clic pe „Done” (Efectuat) pentru a reveni la meniu.
|
||||
'''is connected to SmartThings'''=este conectat la SmartThings
|
||||
'''is disconnected from SmartThings, because the access credential changed or was lost. Please go to the Ecobee (Connect) SmartApp and re-enter your account login credentials.'''=este deconectat de la SmartThings, deoarece acreditările de acces au fost schimbate sau pierdute. Accesați aplicația Ecobee (Connect) SmartApp și reintroduceți acreditările de conectare la cont.
|
||||
'''Your Ecobee thermostat '''=Termostatul dvs. Ecobee
|
||||
@@ -0,0 +1,20 @@
|
||||
'''Connect your Ecobee thermostat to SmartThings.'''=Подключите свой термостат Ecobee к SmartThings.
|
||||
'''ecobee'''=ecobee
|
||||
'''You are connected.'''=Подключено.
|
||||
'''Click to enter Ecobee Credentials'''=Нажмите для ввода учетных данных Ecobee
|
||||
'''Login'''=Вход
|
||||
'''Tap below to log in to the ecobee service and authorize SmartThings access. Be sure to scroll down on page 2 and press the 'Allow' button.'''=Коснитесь ниже, чтобы войти в службу ecobee и предоставить доступ SmartThings. Обязательно прокрутите страницу 2 до самого низа и нажмите кнопку «Разрешить».
|
||||
'''ecobee'''=ecobee
|
||||
'''Select Your Thermostats'''=Выберите свои термостаты
|
||||
'''Tap below to see the list of ecobee thermostats available in your ecobee account and select the ones you want to connect to SmartThings.'''=Коснитесь ниже, чтобы отобразить список доступных термостатов ecobee в вашей учетной записи ecobee, и выберите те, которые нужно подключить к SmartThings.
|
||||
'''Tap to choose'''=Коснитесь, чтобы выбрать
|
||||
'''Tap below to see the list of ecobee sensors available in your ecobee account and select the ones you want to connect to SmartThings.'''=Коснитесь ниже, чтобы отобразить список доступных датчиков ecobee в вашей учетной записи ecobee, и выберите те, которые нужно подключить к SmartThings.
|
||||
'''Tap to choose'''=Коснитесь, чтобы выбрать
|
||||
'''Select Ecobee Sensors ({{numFound}} found)'''=Выбрать датчики Ecobee (найдено {{numFound}})
|
||||
'''Your ecobee Account is now connected to SmartThings!'''=Теперь ваша учетная запись ecobee подключена к SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Для завершения настройки нажмите «Готово».
|
||||
'''The connection could not be established!'''=Не удалось установить соединение!
|
||||
'''Click 'Done' to return to the menu.'''=Чтобы вернуться в меню, нажмите «Готово».
|
||||
'''is connected to SmartThings'''=подключено к SmartThings
|
||||
'''is disconnected from SmartThings, because the access credential changed or was lost. Please go to the Ecobee (Connect) SmartApp and re-enter your account login credentials.'''=отключено от SmartThings, поскольку данные для доступа были изменены или потеряны. Перейдите в Ecobee (Подключить) SmartApp и повторно введите регистрационные данные своей учетной записи.
|
||||
'''Your Ecobee thermostat '''=Ваш термостат Ecobee
|
||||
@@ -0,0 +1,20 @@
|
||||
'''Connect your Ecobee thermostat to SmartThings.'''=Pripojte termostat Ecobee k systému SmartThings.
|
||||
'''ecobee'''=ecobee
|
||||
'''You are connected.'''=Ste pripojení.
|
||||
'''Click to enter Ecobee Credentials'''=Kliknite a zadajte poverenia pre Ecobee
|
||||
'''Login'''=Prihlásiť sa
|
||||
'''Tap below to log in to the ecobee service and authorize SmartThings access. Be sure to scroll down on page 2 and press the 'Allow' button.'''=Ťuknutím nižšie sa prihláste k službe ecobee a autorizujte prístup do systému SmartThings. Prejdite nadol na stránku 2 a stlačte tlačidlo Allow (Povoliť).
|
||||
'''ecobee'''=ecobee
|
||||
'''Select Your Thermostats'''=Vyberte termostaty
|
||||
'''Tap below to see the list of ecobee thermostats available in your ecobee account and select the ones you want to connect to SmartThings.'''=Ťuknutím nižšie môžete zobraziť zoznam termostatov ecobee dostupných vo vašom konte ecobee a vybrať tie, ktoré chcete pripojiť k systému SmartThings.
|
||||
'''Tap to choose'''=Ťuknutím vyberte
|
||||
'''Tap below to see the list of ecobee sensors available in your ecobee account and select the ones you want to connect to SmartThings.'''=Ťuknutím nižšie môžete zobraziť zoznam senzorov ecobee dostupných vo vašom konte ecobee a vybrať tie, ktoré chcete pripojiť k systému SmartThings.
|
||||
'''Tap to choose'''=Ťuknutím vyberte
|
||||
'''Select Ecobee Sensors ({{numFound}} found)'''=Vyberte senzory Ecobee (nájdené: {{numFound}})
|
||||
'''Your ecobee Account is now connected to SmartThings!'''=Vaše konto ecobee je teraz prepojené so systémom SmartThings.
|
||||
'''Click 'Done' to finish setup.'''=Kliknutím na tlačidlo Done (Hotovo) dokončite inštaláciu.
|
||||
'''The connection could not be established!'''=Nepodarilo sa nadviazať spojenie.
|
||||
'''Click 'Done' to return to the menu.'''=Kliknutím na tlačidlo Done (Hotovo) sa vráťte do menu.
|
||||
'''is connected to SmartThings'''=je pripojený k systému SmartThings
|
||||
'''is disconnected from SmartThings, because the access credential changed or was lost. Please go to the Ecobee (Connect) SmartApp and re-enter your account login credentials.'''=je odpojený od systému SmartThings, pretože prístupové poverenia boli zmenené alebo stratené. Prejdite do aplikácie Ecobee (Connect) SmartApp a znova zadajte prihlasovacie poverenia pre konto.
|
||||
'''Your Ecobee thermostat '''=Váš termostat Ecobee
|
||||
@@ -0,0 +1,20 @@
|
||||
'''Connect your Ecobee thermostat to SmartThings.'''=Povežite termostat Ecobee s storitvijo SmartThings.
|
||||
'''ecobee'''=ecobee
|
||||
'''You are connected.'''=Povezani ste.
|
||||
'''Click to enter Ecobee Credentials'''=Kliknite za vnos poverilnic Ecobee
|
||||
'''Login'''=Prijava
|
||||
'''Tap below to log in to the ecobee service and authorize SmartThings access. Be sure to scroll down on page 2 and press the 'Allow' button.'''=Pritisnite spodaj, da se prijavite v storitev ecobee in odobrite dostop do storitve SmartThings. Pomaknite se na 2. stran in pritisnite gumb »Allow« (Dovoli).
|
||||
'''ecobee'''=ecobee
|
||||
'''Select Your Thermostats'''=Izberite svoje termostate
|
||||
'''Tap below to see the list of ecobee thermostats available in your ecobee account and select the ones you want to connect to SmartThings.'''=Pritisnite spodaj za prikaz seznama termostatov ecobee, ki so na voljo v vašem računu ecobee, in izberite tiste, ki jih želite povezati s storitvijo SmartThings.
|
||||
'''Tap to choose'''=Pritisnite za izbiranje
|
||||
'''Tap below to see the list of ecobee sensors available in your ecobee account and select the ones you want to connect to SmartThings.'''=Pritisnite spodaj za prikaz seznama senzorjev ecobee, ki so na voljo v vašem računu ecobee, in izberite tiste, ki jih želite povezati s storitvijo SmartThings.
|
||||
'''Tap to choose'''=Pritisnite za izbiranje
|
||||
'''Select Ecobee Sensors ({{numFound}} found)'''=Izberite senzorje Ecobee (št. najdenih: {{numFound}})
|
||||
'''Your ecobee Account is now connected to SmartThings!'''=Vaš račun ecobee je zdaj povezan s storitvijo SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Kliknite »Done« (Končano), da zaključite nastavitev.
|
||||
'''The connection could not be established!'''=Povezave ni bilo mogoče vzpostaviti!
|
||||
'''Click 'Done' to return to the menu.'''=Kliknite »Done« (Končano), da se vrnete v meni.
|
||||
'''is connected to SmartThings'''=je povezan s storitvijo SmartThings
|
||||
'''is disconnected from SmartThings, because the access credential changed or was lost. Please go to the Ecobee (Connect) SmartApp and re-enter your account login credentials.'''=ni povezan s storitvijo SmartThings, ker so bile poverilnice za dostop spremenjene ali izgubljene. Pojdite v aplikacijo Ecobee (Connect) SmartApp in znova vnesite poverilnice za prijavo v račun.
|
||||
'''Your Ecobee thermostat '''=Vaš termostat Ecobee
|
||||
@@ -0,0 +1,20 @@
|
||||
'''Connect your Ecobee thermostat to SmartThings.'''=Lidh termostatin Ecobee me SmartThings.
|
||||
'''ecobee'''=ecobee
|
||||
'''You are connected.'''=Je lidhur.
|
||||
'''Click to enter Ecobee Credentials'''=Kliko për të futur kredencialet Ecobee
|
||||
'''Login'''=Login
|
||||
'''Tap below to log in to the ecobee service and authorize SmartThings access. Be sure to scroll down on page 2 and press the 'Allow' button.'''=Trokit më poshtë për t’u loguar në shërbimin ecobee dhe autorizuar aksesin në SmartThings. Sigurohu që të lundrosh poshtë në faqen 2 dhe të shtypësh butonin ‘Allow’ (Lejo).
|
||||
'''ecobee'''=ecobee
|
||||
'''Select Your Thermostats'''=Përzgjidh termostatet e tua
|
||||
'''Tap below to see the list of ecobee thermostats available in your ecobee account and select the ones you want to connect to SmartThings.'''=Trokit më poshtë për të parë listën e termostateve ecobee që janë në dispozicion në llogarinë tënde ecobee dhe përzgjidh ato që dëshiron të lidhen me SmartThings.
|
||||
'''Tap to choose'''=Trokit për të zgjedhur
|
||||
'''Tap below to see the list of ecobee sensors available in your ecobee account and select the ones you want to connect to SmartThings.'''=Trokit më poshtë për të parë listën e sensorëve ecobee që janë në dispozicion në llogarinë tënde ecobee dhe përzgjidh ato që dëshiron të lidhen me SmartThings.
|
||||
'''Tap to choose'''=Trokit për të zgjedhur
|
||||
'''Select Ecobee Sensors ({{numFound}} found)'''=Përzgjidh sensorët Ecobee (u gjet {{numFound}})
|
||||
'''Your ecobee Account is now connected to SmartThings!'''=Llogaria jote ecobee tani është lidhur me SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Kliko mbi ‘Done’ (U krye) për ta mbaruar konfigurimin.
|
||||
'''The connection could not be established!'''=Lidhja nuk u vendos dot!
|
||||
'''Click 'Done' to return to the menu.'''=Kliko mbi ‘Done’ (U krye) për t’u kthyer në meny.
|
||||
'''is connected to SmartThings'''=është lidhur me SmartThings
|
||||
'''is disconnected from SmartThings, because the access credential changed or was lost. Please go to the Ecobee (Connect) SmartApp and re-enter your account login credentials.'''=është shkëputur nga SmartThings, sepse kredenciali i aksesit ka ndryshuar ose ka humbur. Shko te Ecobee (Connect) SmartApp dhe futi sërish kredencialet e logimit në llogari.
|
||||
'''Your Ecobee thermostat '''=Termostati yt Ecobee
|
||||
@@ -0,0 +1,20 @@
|
||||
'''Connect your Ecobee thermostat to SmartThings.'''=Povežite Ecobee termostat na SmartThings.
|
||||
'''ecobee'''=ecobee
|
||||
'''You are connected.'''=Povezani ste.
|
||||
'''Click to enter Ecobee Credentials'''=Kliknite da biste uneli Ecobee akreditive
|
||||
'''Login'''=Login (Prijava)
|
||||
'''Tap below to log in to the ecobee service and authorize SmartThings access. Be sure to scroll down on page 2 and press the 'Allow' button.'''=Kucnite ispod da biste se prijavili na uslugu ecobee i odobrili pristup aplikaciji SmartThings. Obavezno listajte nadole do stranice broj 2 i pritisnite dugme „Allow” (Dozvoli).
|
||||
'''ecobee'''=ecobee
|
||||
'''Select Your Thermostats'''=Izaberite termostate
|
||||
'''Tap below to see the list of ecobee thermostats available in your ecobee account and select the ones you want to connect to SmartThings.'''=Kucnite ispod da biste videli listu dostupnih ecobee termostata na svom ecobee nalogu i izaberite one koje želite da povežete na SmartThings.
|
||||
'''Tap to choose'''=Kucnite da biste odabrali
|
||||
'''Tap below to see the list of ecobee sensors available in your ecobee account and select the ones you want to connect to SmartThings.'''=Kucnite ispod da biste videli listu dostupnih senzora na svom ecobee nalogu i izaberite one koje želite da povežete na SmartThings.
|
||||
'''Tap to choose'''=Kucnite da biste odabrali
|
||||
'''Select Ecobee Sensors ({{numFound}} found)'''=Izaberite Ecobee senzore ({{numFound}} pronađeno)
|
||||
'''Your ecobee Account is now connected to SmartThings!'''=Vaš ecobee nalog je sada povezan na SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Kliknite na „Done” (Gotovo) za kraj konfiguracije.
|
||||
'''The connection could not be established!'''=Veza nije uspostavljena!
|
||||
'''Click 'Done' to return to the menu.'''=Kliknite na „Done” (Gotovo) da biste se vratili na meni.
|
||||
'''is connected to SmartThings'''=je povezan na SmartThings
|
||||
'''is disconnected from SmartThings, because the access credential changed or was lost. Please go to the Ecobee (Connect) SmartApp and re-enter your account login credentials.'''=je prekinuo vezu sa aplikacijom SmartThings zato što su akreditivi za pristup promenjeni ili izgubljeni. Idite na aplikaciju Ecobee (Connect) SmartApp i ponovo unesite akreditive za prijavljivanje na nalog.
|
||||
'''Your Ecobee thermostat '''=Vaš Ecobee termostat
|
||||
@@ -0,0 +1,20 @@
|
||||
'''Connect your Ecobee thermostat to SmartThings.'''=Anslut din Ecobee-termostat till SmartThings.
|
||||
'''ecobee'''=ecobee
|
||||
'''You are connected.'''=Du är ansluten.
|
||||
'''Click to enter Ecobee Credentials'''=Klicka för att ange dina Ecobee-inloggningsuppgifter
|
||||
'''Login'''=Logga in
|
||||
'''Tap below to log in to the ecobee service and authorize SmartThings access. Be sure to scroll down on page 2 and press the 'Allow' button.'''=Tryck nedan för att logga in på ecobee-tjänsten och ge SmartThings åtkomst. Rulla ned till sidan 2 och tryck på knappen Allow (Tillåt).
|
||||
'''ecobee'''=ecobee
|
||||
'''Select Your Thermostats'''=Välj dina termostater
|
||||
'''Tap below to see the list of ecobee thermostats available in your ecobee account and select the ones you want to connect to SmartThings.'''=Tryck nedan om du vill se listan med ecobee-termostater som är tillgängliga i ditt ecobee-konto och välj dem du vill ansluta till SmartThings.
|
||||
'''Tap to choose'''=Tryck för att välja
|
||||
'''Tap below to see the list of ecobee sensors available in your ecobee account and select the ones you want to connect to SmartThings.'''=Tryck nedan om du vill se listan med ecobee-givare som är tillgängliga i ditt ecobee-konto och välj dem du vill ansluta till SmartThings.
|
||||
'''Tap to choose'''=Tryck för att välja
|
||||
'''Select Ecobee Sensors ({{numFound}} found)'''=Välj Ecobee-givare ({{numFound}} hittades)
|
||||
'''Your ecobee Account is now connected to SmartThings!'''=Ditt ecobee-konto är nu anslutet till SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Klicka på Done (Klart) för att slutföra konfigurationen.
|
||||
'''The connection could not be established!'''=Det gick inte att upprätta anslutningen!
|
||||
'''Click 'Done' to return to the menu.'''=Klicka på Done (Klart) för att återgå till menyn.
|
||||
'''is connected to SmartThings'''=är ansluten till SmartThings
|
||||
'''is disconnected from SmartThings, because the access credential changed or was lost. Please go to the Ecobee (Connect) SmartApp and re-enter your account login credentials.'''=är frånkopplad från SmartThings, eftersom inloggningsuppgifterna har ändrats eller gått förlorade. Starta Ecobee (Connect) SmartApp och ange kontots inloggningsuppgifter igen.
|
||||
'''Your Ecobee thermostat '''=Din Ecobee-termostat
|
||||
@@ -0,0 +1,20 @@
|
||||
'''Connect your Ecobee thermostat to SmartThings.'''=เชื่อมต่อตัวควบคุมอุณหภูมิ Ecobee ของคุณเข้ากับ SmartThings
|
||||
'''ecobee'''=Ecobee
|
||||
'''You are connected.'''=คุณได้เชื่อมต่อแล้ว
|
||||
'''Click to enter Ecobee Credentials'''=คลิกเพื่อใส่ ข้อมูลยืนยันตัวตน Ecobee
|
||||
'''Login'''=เข้าสู่ระบบ
|
||||
'''Tap below to log in to the ecobee service and authorize SmartThings access. Be sure to scroll down on page 2 and press the 'Allow' button.'''=แตะด้านล่างเพื่อเข้าสู่บริการ Ecobee และอนุญาตการเข้าถึงของ SmartThings ดูให้แน่ใจว่าได้เลื่อนลงมาที่หน้า 2 แล้วกดปุ่ม 'อนุญาต'
|
||||
'''ecobee'''=Ecobee
|
||||
'''Select Your Thermostats'''=เลือกตัวควบคุมอุณหภูมิของคุณ
|
||||
'''Tap below to see the list of ecobee thermostats available in your ecobee account and select the ones you want to connect to SmartThings.'''=แตะที่ด้านล่างเพื่อดูรายการตัวควบคุมอุณหภูมิ Ecobee ที่มีอยู่ในบัญชีผู้ใช้ Ecobee ของคุณ และเลือกตัวควบคุมอุณหภูมิที่คุณต้องการจะเชื่อมต่อกับ SmartThings
|
||||
'''Tap to choose'''=แตะเพื่อเลือก <device name>
|
||||
'''Tap below to see the list of ecobee sensors available in your ecobee account and select the ones you want to connect to SmartThings.'''=แตะที่ด้านล่างเพื่อดูรายการเซ็นเซอร์ Ecobee ที่มีอยู่ในบัญชีผู้ใช้ Ecobee ของคุณ และเลือกเซ็นเซอร์ที่คุณต้องการจะเชื่อมต่อกับ SmartThings
|
||||
'''Tap to choose'''=แตะเพื่อเลือก <device name>
|
||||
'''Select Ecobee Sensors ({{numFound}} found)'''=เลือกเซ็นเซอร์ Ecobee ({{numFound}} found)
|
||||
'''Your ecobee Account is now connected to SmartThings!'''=ตอนนี้บัญชีผู้ใช้ Ecobee ของคุณเชื่อมต่อกับ SmartThings แล้ว
|
||||
'''Click 'Done' to finish setup.'''=คลิก 'เสร็จสิ้น' เพื่อทำการตั้งค่าให้เสร็จสิ้น
|
||||
'''The connection could not be established!'''=ไม่สามารถสร้างการเชื่อมต่อได้!
|
||||
'''Click 'Done' to return to the menu.'''=คลิก 'เสร็จสิ้น' เพื่อกลับไปยังเมนู
|
||||
'''is connected to SmartThings'''={{deviceName}} เชื่อมต่อกับ SmartThings แล้ว
|
||||
'''is disconnected from SmartThings, because the access credential changed or was lost. Please go to the Ecobee (Connect) SmartApp and re-enter your account login credentials.'''={{deviceName}} ถูกตัดการเชื่อมต่อจาก SmartThings เนื่องจากข้อมูลการเข้าถึงถูกเปลี่ยนแปลงหรือหายไป กรุณาไปที่ Ecobee (การเชื่อมต่อ) SmartApp และใส่ข้อมูลยืนยันตัวตนการเข้าสู่บัญชีผู้ใช้ของคุณอีกครั้ง
|
||||
'''Your Ecobee thermostat '''=ตัวควบคุมอุณหภูมิ Ecobee ของคุณ
|
||||
@@ -1,17 +0,0 @@
|
||||
'''Connect your Ecobee thermostat to SmartThings.'''.th=เชื่อมต่อตัวควบคุมอุณหภูมิ Ecobee ของคุณเข้ากับ SmartThings
|
||||
'''You are connected.'''.th=คุณได้เชื่อมต่อแล้ว
|
||||
'''Click to enter Ecobee Credentials'''.th=คลิกเพื่อใส่ ข้อมูลยืนยันตัวตน Ecobee
|
||||
'''Login'''.th=เข้าสู่ระบบ
|
||||
'''Tap below to log in to the ecobee service and authorize SmartThings access. Be sure to scroll down on page 2 and press the 'Allow' button.'''.th=แตะด้านล่างเพื่อเข้าสู่บริการ Ecobee และอนุญาตการเข้าถึงของ SmartThings ดูให้แน่ใจว่าได้เลื่อนลงมาที่หน้า 2 แล้วกดปุ่ม 'อนุญาต'
|
||||
'''Select Your Thermostats'''.th=เลือกตัวควบคุมอุณหภูมิของคุณ
|
||||
'''Tap below to see the list of ecobee thermostats available in your ecobee account and select the ones you want to connect to SmartThings.'''.th=แตะที่ด้านล่างเพื่อดูรายการตัวควบคุมอุณหภูมิ Ecobee ที่มีอยู่ในบัญชีผู้ใช้ Ecobee ของคุณ และเลือกตัวควบคุมอุณหภูมิที่คุณต้องการจะเชื่อมต่อกับ SmartThings
|
||||
'''Tap to choose'''.th=แตะเพื่อเลือก
|
||||
'''Tap below to see the list of ecobee sensors available in your ecobee account and select the ones you want to connect to SmartThings.'''.th=แตะที่ด้านล่างเพื่อดูรายการเซ็นเซอร์ Ecobee ที่มีอยู่ในบัญชีผู้ใช้ Ecobee ของคุณ และเลือกเซ็นเซอร์ที่คุณต้องการจะเชื่อมต่อกับ SmartThings
|
||||
'''Select Ecobee Sensors ({{numFound} found)'''.th=เลือกเซ็นเซอร์ Ecobee ({{numFound}} found)
|
||||
'''Your ecobee Account is now connected to SmartThings!'''.th=ตอนนี้บัญชีผู้ใช้ Ecobee ของคุณเชื่อมต่อกับ SmartThings แล้ว
|
||||
'''Click 'Done' to finish setup.'''.th=คลิก 'เสร็จสิ้น' เพื่อทำการตั้งค่าให้เสร็จสิ้น
|
||||
'''The connection could not be established!'''.th=ไม่สามารถสร้างการเชื่อมต่อได้!
|
||||
'''Click 'Done' to return to the menu.'''.th=คลิก 'เสร็จสิ้น' เพื่อกลับไปยังเมนู
|
||||
'''{{deviceName}} is connected to SmartThings'''.th={{deviceName}} เชื่อมต่อกับ SmartThings แล้ว
|
||||
'''{{deviceName}} is disconnected from SmartThings, because the access credential changed or was lost. Please go to the Ecobee (Connect) SmartApp and re-enter your account login credentials.'''.th={{deviceName}} ถูกตัดการเชื่อมต่อจาก SmartThings เนื่องจากข้อมูลการเข้าถึงถูกเปลี่ยนแปลงหรือหายไป กรุณาไปที่ Ecobee (การเชื่อมต่อ) SmartApp และใส่ข้อมูลยืนยันตัวตนการเข้าสู่บัญชีผู้ใช้ของคุณอีกครั้ง
|
||||
'''Your Ecobee thermostat'''.th=ตัวควบคุมอุณหภูมิ Ecobee ของคุณ
|
||||
@@ -0,0 +1,20 @@
|
||||
'''Connect your Ecobee thermostat to SmartThings.'''=Ecobee termostatınızı SmartThings'e bağlayın.
|
||||
'''ecobee'''=ecobee
|
||||
'''You are connected.'''=Bağlantı kurdunuz.
|
||||
'''Click to enter Ecobee Credentials'''=Ecobee Kimlik Bilgilerinizi girmek için tıklayın
|
||||
'''Login'''=Oturum aç
|
||||
'''Tap below to log in to the ecobee service and authorize SmartThings access. Be sure to scroll down on page 2 and press the 'Allow' button.'''=Ecobee servisinde oturum açmak ve SmartThings erişimine izin vermek için aşağıya dokunun. Ekranı 2. sayfaya kaydırdığınızdan emin olun ve 'İzin Ver' tuşuna basın.
|
||||
'''ecobee'''=ecobee
|
||||
'''Select Your Thermostats'''=Termostatlarınızı Seçin
|
||||
'''Tap below to see the list of ecobee thermostats available in your ecobee account and select the ones you want to connect to SmartThings.'''=Ecobee hesabınızda mevcut olan ecobee termostatlarının listesini görüntülemek için aşağıya dokunun ve SmartThings'e bağlamak istediklerinizi seçin.
|
||||
'''Tap to choose'''=<cihaz ismi> seçmek için dokunun
|
||||
'''Tap below to see the list of ecobee sensors available in your ecobee account and select the ones you want to connect to SmartThings.'''=Ecobee hesabınızda mevcut olan ecobee sensörlerinin listesini görüntülemek için aşağıya dokunun ve SmartThings'e bağlamak istediklerinizi seçin.
|
||||
'''Tap to choose'''=<cihaz ismi> seçmek için dokunun
|
||||
'''Select Ecobee Sensors ({{numFound}} found)'''=Ecobee Sensörlerini seçin ({{numFound}} bulundu)
|
||||
'''Your ecobee Account is now connected to SmartThings!'''=Ecobee Hesabınız artık SmartThings'e bağlandı!
|
||||
'''Click 'Done' to finish setup.'''=Kurulumu bitirmek için 'Bitti' öğesine tıklayın.
|
||||
'''The connection could not be established!'''=Bağlantı kurulamadı!
|
||||
'''Click 'Done' to return to the menu.'''=Menüye dönmek için 'Bitti' öğesine tıklayın.
|
||||
'''is connected to SmartThings'''={{cihazİsmi}} SmartThings'e bağlandı
|
||||
'''is disconnected from SmartThings, because the access credential changed or was lost. Please go to the Ecobee (Connect) SmartApp and re-enter your account login credentials.'''=Erişim kimlik doğruları değiştirildiğinden veya kaybolduğundan {{cihazİsmi}} ile SmartThings arasındaki bağlantı kesildi. Lütfen Ecobee (Connect) SmartApp'e gidin ve hesabınızın oturum açma kimlik bilgilerini tekrar girin.
|
||||
'''Your Ecobee thermostat '''=Ecobee termostatınız
|
||||
@@ -1,17 +0,0 @@
|
||||
'''Connect your Ecobee thermostat to SmartThings.'''.tr=Ecobee termostatınızı SmartThings'e bağlayın.
|
||||
'''You are connected.'''.tr=Bağlantı kurdunuz.
|
||||
'''Click to enter Ecobee Credentials'''.tr=Ecobee Kimlik Bilgilerinizi girmek için tıklayın
|
||||
'''Login'''.tr=Oturum aç
|
||||
'''Tap below to log in to the ecobee service and authorize SmartThings access. Be sure to scroll down on page 2 and press the 'Allow' button.'''.tr=Ecobee servisinde oturum açmak ve SmartThings erişimine izin vermek için aşağıya dokunun. Ekranı 2. sayfaya kaydırdığınızdan emin olun ve 'İzin Ver' tuşuna basın.
|
||||
'''Select Your Thermostats'''.tr=Termostatlarınızı Seçin
|
||||
'''Tap below to see the list of ecobee thermostats available in your ecobee account and select the ones you want to connect to SmartThings.'''.tr=Ecobee hesabınızda mevcut olan ecobee termostatlarının listesini görüntülemek için aşağıya dokunun ve SmartThings'e bağlamak istediklerinizi seçin.
|
||||
'''Tap to choose'''.tr=Seçmek için dokunun
|
||||
'''Tap below to see the list of ecobee sensors available in your ecobee account and select the ones you want to connect to SmartThings.'''.tr=Ecobee hesabınızda mevcut olan ecobee sensörlerinin listesini görüntülemek için aşağıya dokunun ve SmartThings'e bağlamak istediklerinizi seçin.
|
||||
'''Select Ecobee Sensors ({{numFound}} found)'''.tr=Ecobee Sensörlerini seçin ({{numFound}} bulundu)
|
||||
'''Your ecobee Account is now connected to SmartThings!'''.tr=Ecobee Hesabınız artık SmartThings'e bağlandı!
|
||||
'''Click 'Done' to finish setup.'''.tr=Kurulumu bitirmek için 'Bitti' öğesine tıklayın.
|
||||
'''The connection could not be established!'''.tr=Bağlantı kurulamadı!
|
||||
'''Click 'Done' to return to the menu.'''.tr=Menüye dönmek için 'Bitti' öğesine tıklayın.
|
||||
'''{{deviceName}} is connected to SmartThings'''.tr={{cihazİsmi}} SmartThings'e bağlandı
|
||||
'''{{deviceName}} is disconnected from SmartThings, because the access credential changed or was lost. Please go to the Ecobee (Connect) SmartApp and re-enter your account login credentials.'''.tr=Ecobee termostatınız
|
||||
'''Your Ecobee thermostat'''.tr=Ecobee termostatınız
|
||||
@@ -0,0 +1,20 @@
|
||||
'''Connect your Ecobee thermostat to SmartThings.'''=将 Ecobee 恒温器连接至 SmartThings。
|
||||
'''ecobee'''=ecobee
|
||||
'''You are connected.'''=已连接。
|
||||
'''Click to enter Ecobee Credentials'''=点击以输入 Ecobee 凭据
|
||||
'''Login'''=登录
|
||||
'''Tap below to log in to the ecobee service and authorize SmartThings access. Be sure to scroll down on page 2 and press the 'Allow' button.'''=点击下方以登录 ecobee 服务并授予 SmartThings 访问权限。务必在第 2 页上向下滚动,然后按下“允许”按钮。
|
||||
'''ecobee'''=ecobee
|
||||
'''Select Your Thermostats'''=选择恒温器
|
||||
'''Tap below to see the list of ecobee thermostats available in your ecobee account and select the ones you want to connect to SmartThings.'''=点击下方以查看 ecobee 帐户中可用 ecobee 恒温器的列表,然后选择要连接至 SmartThings 的恒温器。
|
||||
'''Tap to choose'''=点击以选择
|
||||
'''Tap below to see the list of ecobee sensors available in your ecobee account and select the ones you want to connect to SmartThings.'''=点击下方以查看 ecobee 帐户中可用 ecobee 传感器的列表,然后选择要连接至 SmartThings 的传感器。
|
||||
'''Tap to choose'''=点击以选择
|
||||
'''Select Ecobee Sensors ({{numFound}} found)'''=选择 Ecobee 传感器 (发现 {{numFound}} 个)
|
||||
'''Your ecobee Account is now connected to SmartThings!'''=ecobee 帐户现在已连接至 SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=单击“完成”以完成设置。
|
||||
'''The connection could not be established!'''=无法建立连接!
|
||||
'''Click 'Done' to return to the menu.'''=单击“完成”返回菜单。
|
||||
'''is connected to SmartThings'''=已连接至 SmartThings
|
||||
'''is disconnected from SmartThings, because the access credential changed or was lost. Please go to the Ecobee (Connect) SmartApp and re-enter your account login credentials.'''=已从 SmartThings 断开,因为访问凭据已更改或丢失。请转到 Ecobee (连接) SmartApp,然后重新输入您的帐户登录凭据。
|
||||
'''Your Ecobee thermostat '''=您的 Ecobee 恒温器
|
||||
15
smartapps/smartthings/lifx-connect.src/i18n/ar-AE.properties
Normal file
15
smartapps/smartthings/lifx-connect.src/i18n/ar-AE.properties
Normal file
@@ -0,0 +1,15 @@
|
||||
'''Allows you to use LIFX smart light bulbs with SmartThings.'''=يتيح لك استخدام مصابيح LIFX الذكية من خلال SmartThings.
|
||||
'''LIFX'''=LIFX
|
||||
'''Tap to enter LIFX credentials'''=النقر لإدخال بيانات اعتماد LIFX
|
||||
'''Connect to LIFX'''=الاتصال بـ LIFX
|
||||
'''Tap here to connect your LIFX account'''=النقر هنا لتوصيل حساب LIFX
|
||||
'''Connect to LIFX'''=الاتصال بـ LIFX
|
||||
'''Select your location'''=تحديد موقعك
|
||||
'''Select location ({{count}} found)'''=تحديد الموقع ({{count}} found)
|
||||
'''Your LIFX Account is now connected to SmartThings!'''=حساب LIFX متصل الآن بـ SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=انقر فوق ”تم“ لإنهاء الإعداد.
|
||||
'''The connection could not be established!'''=يتعذر إنشاء الاتصال!
|
||||
'''Click 'Done' to return to the menu.'''=انقر فوق ”تم“ للعودة إلى القائمة.
|
||||
'''Your LIFX Account is already connected to SmartThings!'''=حساب LIFX متصل بالفعل بـ SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=انقر فوق ”تم“ لإنهاء الإعداد.
|
||||
'''SmartThings Connection'''=اتصال SmartThings
|
||||
15
smartapps/smartthings/lifx-connect.src/i18n/bg-BG.properties
Normal file
15
smartapps/smartthings/lifx-connect.src/i18n/bg-BG.properties
Normal file
@@ -0,0 +1,15 @@
|
||||
'''Allows you to use LIFX smart light bulbs with SmartThings.'''=Позволява да използвате интелигентни ел. крушки LIFX със SmartThings.
|
||||
'''LIFX'''=LIFX
|
||||
'''Tap to enter LIFX credentials'''=Докоснете за въвеждане на идентификационни данни за LIFX
|
||||
'''Connect to LIFX'''=Свързване към LIFX
|
||||
'''Tap here to connect your LIFX account'''=Докоснете тук за свързване на вашия LIFX акаунт
|
||||
'''Connect to LIFX'''=Свързване към LIFX
|
||||
'''Select your location'''=Избор на местоположение
|
||||
'''Select location ({{count}} found)'''=Избор на местоположение ({{count}} са намерени)
|
||||
'''Your LIFX Account is now connected to SmartThings!'''=Вашият LIFX акаунт вече е свързан към SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Щракнете върху Done (Готово), за да завършите настройката.
|
||||
'''The connection could not be established!'''=Връзката не може да се осъществи!
|
||||
'''Click 'Done' to return to the menu.'''=Щракнете върху Done (Готово), за да се върнете към менюто.
|
||||
'''Your LIFX Account is already connected to SmartThings!'''=Вашият LIFX акаунт вече е свързан към SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Щракнете върху Done (Готово), за да завършите настройката.
|
||||
'''SmartThings Connection'''=Свързване на SmartThings
|
||||
15
smartapps/smartthings/lifx-connect.src/i18n/cs-CZ.properties
Normal file
15
smartapps/smartthings/lifx-connect.src/i18n/cs-CZ.properties
Normal file
@@ -0,0 +1,15 @@
|
||||
'''Allows you to use LIFX smart light bulbs with SmartThings.'''=Umožní vám použít inteligentní žárovky LIFX se systémem SmartThings.
|
||||
'''LIFX'''=LIFX
|
||||
'''Tap to enter LIFX credentials'''=Klepněte a zadejte přihlašovací údaje LIFX
|
||||
'''Connect to LIFX'''=Připojit k LIFX
|
||||
'''Tap here to connect your LIFX account'''=Klepnutím sem se připojíte k účtu LIFX
|
||||
'''Connect to LIFX'''=Připojit k LIFX
|
||||
'''Select your location'''=Vyberte vaši polohu
|
||||
'''Select location ({{count}} found)'''=Vyberte polohu (nalezeno {{count}})
|
||||
'''Your LIFX Account is now connected to SmartThings!'''=Účet LIFX Account je nyní připojen k systému SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Dokončete nastavení klepnutím na tlačítko „Done“ (Hotovo).
|
||||
'''The connection could not be established!'''=Připojení nelze navázat!
|
||||
'''Click 'Done' to return to the menu.'''=Klepnutím na tlačítko „Done“ (Hotovo) se vrátíte do menu.
|
||||
'''Your LIFX Account is already connected to SmartThings!'''=Účet LIFX Account je již připojen k systému SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Dokončete nastavení klepnutím na tlačítko „Done“ (Hotovo).
|
||||
'''SmartThings Connection'''=Připojení SmartThings
|
||||
15
smartapps/smartthings/lifx-connect.src/i18n/da-DK.properties
Normal file
15
smartapps/smartthings/lifx-connect.src/i18n/da-DK.properties
Normal file
@@ -0,0 +1,15 @@
|
||||
'''Allows you to use LIFX smart light bulbs with SmartThings.'''=Giver dig mulighed for at bruge LIFX-smartpærer sammen med SmartThings.
|
||||
'''LIFX'''=LIFX
|
||||
'''Tap to enter LIFX credentials'''=Tryk for at indtaste LIFX-legitimationsoplysninger
|
||||
'''Connect to LIFX'''=Forbind med LIFX
|
||||
'''Tap here to connect your LIFX account'''=Tryk her for at forbinde din LIFX-konto
|
||||
'''Connect to LIFX'''=Forbind med LIFX
|
||||
'''Select your location'''=Vælg din placering
|
||||
'''Select location ({{count}} found)'''=Vælg placering ({{count}} fundet)
|
||||
'''Your LIFX Account is now connected to SmartThings!'''=Din LIFX-konto er nu forbundet med SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Klik på “Done” (Udført) for at afslutte konfigurationen.
|
||||
'''The connection could not be established!'''=Der kunne ikke oprettes forbindelse!
|
||||
'''Click 'Done' to return to the menu.'''=Klik på “Done” (Udført) for at vende tilbage til menuen.
|
||||
'''Your LIFX Account is already connected to SmartThings!'''=Din LIFX-konto er allerede forbundet med SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Klik på “Done” (Udført) for at afslutte konfigurationen.
|
||||
'''SmartThings Connection'''=SmartThings-forbindelse
|
||||
15
smartapps/smartthings/lifx-connect.src/i18n/de-DE.properties
Normal file
15
smartapps/smartthings/lifx-connect.src/i18n/de-DE.properties
Normal file
@@ -0,0 +1,15 @@
|
||||
'''Allows you to use LIFX smart light bulbs with SmartThings.'''=Ermöglicht die Verwendung intelligenter Glühbirnen von LIFX mit SmartThings.
|
||||
'''LIFX'''=LIFX
|
||||
'''Tap to enter LIFX credentials'''=Tippen, um LIFX-Zugangsdaten einzugeben
|
||||
'''Connect to LIFX'''=Mit LIFX verbinden
|
||||
'''Tap here to connect your LIFX account'''=Hier tippen, um Ihr LIFX-Konto zu verbinden.
|
||||
'''Connect to LIFX'''=Mit LIFX verbinden
|
||||
'''Select your location'''=Ihren Standort auswählen
|
||||
'''Select location ({{count}} found)'''=Standortauswahl ({{count}} gefunden)
|
||||
'''Your LIFX Account is now connected to SmartThings!'''=Ihr LIFX-Konto ist jetzt mit SmartThings verbunden!
|
||||
'''Click 'Done' to finish setup.'''=Klicken Sie auf „Done“ (OK), um die Einrichtung abzuschließen.
|
||||
'''The connection could not be established!'''=Es konnte keine Verbindung hergestellt werden!
|
||||
'''Click 'Done' to return to the menu.'''=Klicken Sie auf „Done“ (OK), um zum Menü zurückzukehren.
|
||||
'''Your LIFX Account is already connected to SmartThings!'''=Ihr LIFX-Konto ist bereits mit SmartThings verbunden!
|
||||
'''Click 'Done' to finish setup.'''=Klicken Sie auf „Done“ (OK), um die Einrichtung abzuschließen.
|
||||
'''SmartThings Connection'''=SmartThings-Verbindung
|
||||
15
smartapps/smartthings/lifx-connect.src/i18n/el-GR.properties
Normal file
15
smartapps/smartthings/lifx-connect.src/i18n/el-GR.properties
Normal file
@@ -0,0 +1,15 @@
|
||||
'''Allows you to use LIFX smart light bulbs with SmartThings.'''=Σας επιτρέπει να χρησιμοποιείτε έξυπνους λαμπτήρες LIFX με το SmartThings.
|
||||
'''LIFX'''=LIFX
|
||||
'''Tap to enter LIFX credentials'''=Πατήστε για να καταχωρήσετε διαπιστευτήρια LIFX
|
||||
'''Connect to LIFX'''=Σύνδεση στο LIFX
|
||||
'''Tap here to connect your LIFX account'''=Πατήστε εδώ για να συνδέσετε το λογαριασμό σας LIFX
|
||||
'''Connect to LIFX'''=Σύνδεση στο LIFX
|
||||
'''Select your location'''=Επιλέξτε την τοποθεσία σας
|
||||
'''Select location ({{count}} found)'''=Επιλογή τοποθεσίας (βρέθηκαν {{count}})
|
||||
'''Your LIFX Account is now connected to SmartThings!'''=Ο λογαριασμός σας στο LIFX έχει τώρα συνδεθεί στο SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Πατήστε "Done" (Τέλος) για να ολοκληρωθεί η ρύθμιση.
|
||||
'''The connection could not be established!'''=Δεν ήταν δυνατή η δημιουργία σύνδεσης!
|
||||
'''Click 'Done' to return to the menu.'''=Κάντε κλικ στο "Done" (Τέλος) για να επιστρέψετε στο μενού.
|
||||
'''Your LIFX Account is already connected to SmartThings!'''=Ο λογαριασμός σας στο LIFX έχει ήδη συνδεθεί στο SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Πατήστε "Done" (Τέλος) για να ολοκληρωθεί η ρύθμιση.
|
||||
'''SmartThings Connection'''=Σύνδεση SmartThings
|
||||
15
smartapps/smartthings/lifx-connect.src/i18n/en-GB.properties
Normal file
15
smartapps/smartthings/lifx-connect.src/i18n/en-GB.properties
Normal file
@@ -0,0 +1,15 @@
|
||||
'''Allows you to use LIFX smart light bulbs with SmartThings.'''=Allows you to use LIFX smart light bulbs with SmartThings.
|
||||
'''LIFX'''=LIFX
|
||||
'''Tap to enter LIFX credentials'''=Tap to enter LIFX credentials
|
||||
'''Connect to LIFX'''=Connect to LIFX
|
||||
'''Tap here to connect your LIFX account'''=Tap here to connect your LIFX account
|
||||
'''Connect to LIFX'''=Connect to LIFX
|
||||
'''Select your location'''=Select your location
|
||||
'''Select location ({{count}} found)'''=Select location ({{count}} found)
|
||||
'''Your LIFX Account is now connected to SmartThings!'''=Your LIFX Account is now connected to SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Click ’Done’ to exit setup.
|
||||
'''The connection could not be established!'''=The connection could not be established!
|
||||
'''Click 'Done' to return to the menu.'''=Click ’Done’ to return to the menu.
|
||||
'''Your LIFX Account is already connected to SmartThings!'''=Your LIFX Account is already connected to SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Click ’Done’ to finish setup.
|
||||
'''SmartThings Connection'''=SmartThings Connection
|
||||
15
smartapps/smartthings/lifx-connect.src/i18n/es-ES.properties
Normal file
15
smartapps/smartthings/lifx-connect.src/i18n/es-ES.properties
Normal file
@@ -0,0 +1,15 @@
|
||||
'''Allows you to use LIFX smart light bulbs with SmartThings.'''=Le permite utilizar bombillas de luz inteligente LIFX con SmartThings.
|
||||
'''LIFX'''=LIFX
|
||||
'''Tap to enter LIFX credentials'''=Pulsar para introducir credenciales de LIFX
|
||||
'''Connect to LIFX'''=Conectar a LIFX
|
||||
'''Tap here to connect your LIFX account'''=Pulsar aquí para conectar la cuenta LIFX
|
||||
'''Connect to LIFX'''=Conectar a LIFX
|
||||
'''Select your location'''=Seleccionar ubicación
|
||||
'''Select location ({{count}} found)'''=Seleccionar ubicación ({{count}} encontrado)
|
||||
'''Your LIFX Account is now connected to SmartThings!'''=¡Su cuenta de LIFX ya está conectada a SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Haga clic en “Done” (Hecho) para finalizar la configuración.
|
||||
'''The connection could not be established!'''=¡No se ha podido establecer la conexión!
|
||||
'''Click 'Done' to return to the menu.'''=Haga clic en “Done” (Hecho) para volver al menú.
|
||||
'''Your LIFX Account is already connected to SmartThings!'''=¡Su cuenta de LIFX ya está conectada a SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Haga clic en “Done” (Hecho) para finalizar la configuración.
|
||||
'''SmartThings Connection'''=Conexión de SmartThings
|
||||
15
smartapps/smartthings/lifx-connect.src/i18n/es-US.properties
Normal file
15
smartapps/smartthings/lifx-connect.src/i18n/es-US.properties
Normal file
@@ -0,0 +1,15 @@
|
||||
'''Allows you to use LIFX smart light bulbs with SmartThings.'''=Le permite usar las bombillas inteligentes LIFX con SmartThings.
|
||||
'''LIFX'''=LIFX
|
||||
'''Tap to enter LIFX credentials'''=Pulse para introducir las credenciales de LIFX
|
||||
'''Connect to LIFX'''=Conectar a LIFX
|
||||
'''Tap here to connect your LIFX account'''=Pulse aquí para conectar su cuenta de LIFX
|
||||
'''Connect to LIFX'''=Conectar a LIFX
|
||||
'''Select your location'''=Seleccione su ubicación
|
||||
'''Select location ({{count}} found)'''=Seleccionar ubicación (hay {{count}})
|
||||
'''Your LIFX Account is now connected to SmartThings!'''=¡Su cuenta de LIFX ahora está conectada a SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Haga clic en 'Done' ('Listo') para finalizar la configuración.
|
||||
'''The connection could not be established!'''=¡No fue posible establecer la conexión!
|
||||
'''Click 'Done' to return to the menu.'''=Haga clic en 'Done' ('Listo') para volver al menú.
|
||||
'''Your LIFX Account is already connected to SmartThings!'''=¡Su cuenta de LIFX ya está conectada a SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Haga clic en 'Done' ('Listo') para finalizar la configuración.
|
||||
'''SmartThings Connection'''=Conexión de SmartThings
|
||||
15
smartapps/smartthings/lifx-connect.src/i18n/et-EE.properties
Normal file
15
smartapps/smartthings/lifx-connect.src/i18n/et-EE.properties
Normal file
@@ -0,0 +1,15 @@
|
||||
'''Allows you to use LIFX smart light bulbs with SmartThings.'''=Võimaldab kasutada LIFXi nutikaid lambipirne teenusega SmartThings.
|
||||
'''LIFX'''=LIFX
|
||||
'''Tap to enter LIFX credentials'''=Toksake, et sisestada teenuse LIFX volitused
|
||||
'''Connect to LIFX'''=Loo ühendus teenusega LIFX
|
||||
'''Tap here to connect your LIFX account'''=Toksake siia, et luua ühendus oma LIFXi kontoga
|
||||
'''Connect to LIFX'''=Loo ühendus teenusega LIFX
|
||||
'''Select your location'''=Valige oma asukoht
|
||||
'''Select location ({{count}} found)'''=Valige asukoht ({{count}} found)
|
||||
'''Your LIFX Account is now connected to SmartThings!'''=Teie LIFXi konto on nüüd ühendatud teenusega SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Klõpsake valikut Valmis, et seadistamine lõpule viia.
|
||||
'''The connection could not be established!'''=Ühenduse loomine nurjus!
|
||||
'''Click 'Done' to return to the menu.'''=Klõpsake valikut Valmis, et naasta menüüsse.
|
||||
'''Your LIFX Account is already connected to SmartThings!'''=Teie LIFXi konto on juba ühendatud teenusega SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Klõpsake valikut Valmis, et seadistamine lõpule viia.
|
||||
'''SmartThings Connection'''=Teenuse SmartThings ühendus
|
||||
15
smartapps/smartthings/lifx-connect.src/i18n/fi-FI.properties
Normal file
15
smartapps/smartthings/lifx-connect.src/i18n/fi-FI.properties
Normal file
@@ -0,0 +1,15 @@
|
||||
'''Allows you to use LIFX smart light bulbs with SmartThings.'''=Mahdollistaa LIFX-älylamppujen käytön SmartThingsin kanssa.
|
||||
'''LIFX'''=LIFX
|
||||
'''Tap to enter LIFX credentials'''=Anna LIFX-tunnistetiedot
|
||||
'''Connect to LIFX'''=Muodosta LIFX-yhteys
|
||||
'''Tap here to connect your LIFX account'''=Napauta tätä, jos haluat muodostaa yhteyden LIFX-tiliisi
|
||||
'''Connect to LIFX'''=Muodosta LIFX-yhteys
|
||||
'''Select your location'''=Valitse sijaintisi
|
||||
'''Select location ({{count}} found)'''=Valitse sijainti ({{count}} löydetty)
|
||||
'''Your LIFX Account is now connected to SmartThings!'''=LIFX-tilisi on nyt yhdistetty SmartThingsiin!
|
||||
'''Click 'Done' to finish setup.'''=Viimeistele asennus napsauttamalla Done (Valmis).
|
||||
'''The connection could not be established!'''=Yhteyden muodostaminen epäonnistui!
|
||||
'''Click 'Done' to return to the menu.'''=Palaa valikkoon napsauttamalla Done (Valmis).
|
||||
'''Your LIFX Account is already connected to SmartThings!'''=LIFX-tilisi on jo yhdistetty SmartThingsiin!
|
||||
'''Click 'Done' to finish setup.'''=Viimeistele asennus napsauttamalla Done (Valmis).
|
||||
'''SmartThings Connection'''=SmartThings-yhteys
|
||||
15
smartapps/smartthings/lifx-connect.src/i18n/fr-CA.properties
Normal file
15
smartapps/smartthings/lifx-connect.src/i18n/fr-CA.properties
Normal file
@@ -0,0 +1,15 @@
|
||||
'''Allows you to use LIFX smart light bulbs with SmartThings.'''=Vous permet d'utiliser des ampoules intelligentes LIFX avec SmartThings.
|
||||
'''LIFX'''=LIFX
|
||||
'''Tap to enter LIFX credentials'''=Appuyez pour saisir les informations d'identification LIFX
|
||||
'''Connect to LIFX'''=Connexion à LIFX
|
||||
'''Tap here to connect your LIFX account'''=Appuyez ici pour connecter votre compte LIFX
|
||||
'''Connect to LIFX'''=Connexion à LIFX
|
||||
'''Select your location'''=Sélection de votre zone géographique
|
||||
'''Select location ({{count}} found)'''=Sélection d'une zone géographique ({{count}} trouvée(s))
|
||||
'''Your LIFX Account is now connected to SmartThings!'''=Votre compte LIFX est maintenant connecté à SmartThings !
|
||||
'''Click 'Done' to finish setup.'''=Cliquez sur Done (Terminé) pour terminer la configuration.
|
||||
'''The connection could not be established!'''=La connexion n'a pas pu être établie !
|
||||
'''Click 'Done' to return to the menu.'''=Cliquez sur Done (Terminé) pour revenir au menu.
|
||||
'''Your LIFX Account is already connected to SmartThings!'''=Votre compte LIFX est déjà connecté à SmartThings !
|
||||
'''Click 'Done' to finish setup.'''=Cliquez sur Done (Terminé) pour terminer la configuration.
|
||||
'''SmartThings Connection'''=Connexion SmartThings
|
||||
15
smartapps/smartthings/lifx-connect.src/i18n/fr-FR.properties
Normal file
15
smartapps/smartthings/lifx-connect.src/i18n/fr-FR.properties
Normal file
@@ -0,0 +1,15 @@
|
||||
'''Allows you to use LIFX smart light bulbs with SmartThings.'''=Vous permet d'utiliser des ampoules intelligentes LIFX avec SmartThings.
|
||||
'''LIFX'''=LIFX
|
||||
'''Tap to enter LIFX credentials'''=Appuyez pour saisir les informations d'identification LIFX
|
||||
'''Connect to LIFX'''=Connexion à LIFX
|
||||
'''Tap here to connect your LIFX account'''=Appuyez ici pour connecter votre compte LIFX
|
||||
'''Connect to LIFX'''=Connexion à LIFX
|
||||
'''Select your location'''=Sélection de votre zone géographique
|
||||
'''Select location ({{count}} found)'''=Sélection d'une zone géographique ({{count}} trouvée(s))
|
||||
'''Your LIFX Account is now connected to SmartThings!'''=Votre compte LIFX est maintenant connecté à SmartThings !
|
||||
'''Click 'Done' to finish setup.'''=Cliquez sur Done (Terminé) pour terminer la configuration.
|
||||
'''The connection could not be established!'''=La connexion n'a pas pu être établie !
|
||||
'''Click 'Done' to return to the menu.'''=Cliquez sur Done (Terminé) pour revenir au menu.
|
||||
'''Your LIFX Account is already connected to SmartThings!'''=Votre compte LIFX est déjà connecté à SmartThings !
|
||||
'''Click 'Done' to finish setup.'''=Cliquez sur Done (Terminé) pour terminer la configuration.
|
||||
'''SmartThings Connection'''=Connexion SmartThings
|
||||
15
smartapps/smartthings/lifx-connect.src/i18n/hr-HR.properties
Normal file
15
smartapps/smartthings/lifx-connect.src/i18n/hr-HR.properties
Normal file
@@ -0,0 +1,15 @@
|
||||
'''Allows you to use LIFX smart light bulbs with SmartThings.'''=Dopušta vam da upotrebljavate pametne žarulje LIFX s uslugom SmartThings.
|
||||
'''LIFX'''=LIFX
|
||||
'''Tap to enter LIFX credentials'''=Dodirnite za unos podataka za prijavu za LIFX
|
||||
'''Connect to LIFX'''=Povezivanje na LIFX
|
||||
'''Tap here to connect your LIFX account'''=Dodirnite ovdje da biste povezali svoj račun za LIFX
|
||||
'''Connect to LIFX'''=Povezivanje na LIFX
|
||||
'''Select your location'''=Odaberite lokaciju
|
||||
'''Select location ({{count}} found)'''=Odaberite lokaciju (pronađeno: {{count}})
|
||||
'''Your LIFX Account is now connected to SmartThings!'''=Račun za LIFX sada je povezan s uslugom SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Kliknite „Done” (Gotovo) da biste dovršili postavljanje.
|
||||
'''The connection could not be established!'''=Veza se nije uspostavila!
|
||||
'''Click 'Done' to return to the menu.'''=Kliknite „Done” (Gotovo) za vraćanje na izbornik.
|
||||
'''Your LIFX Account is already connected to SmartThings!'''=Račun za LIFX već je povezan s uslugom SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Kliknite „Done” (Gotovo) da biste dovršili postavljanje.
|
||||
'''SmartThings Connection'''=Veza za SmartThings
|
||||
15
smartapps/smartthings/lifx-connect.src/i18n/hu-HU.properties
Normal file
15
smartapps/smartthings/lifx-connect.src/i18n/hu-HU.properties
Normal file
@@ -0,0 +1,15 @@
|
||||
'''Allows you to use LIFX smart light bulbs with SmartThings.'''=Lehetővé teszi a LIFX okoségők használatát a SmartThings rendszerrel.
|
||||
'''LIFX'''=LIFX
|
||||
'''Tap to enter LIFX credentials'''=Érintse meg a LIFX-hitelesítőadatok megadásához
|
||||
'''Connect to LIFX'''=Csatlakozás a LIFX-hez
|
||||
'''Tap here to connect your LIFX account'''=Érintse meg a LIFX-fiókjához való csatlakozáshoz
|
||||
'''Connect to LIFX'''=Csatlakozás a LIFX-hez
|
||||
'''Select your location'''=Hely kiválasztása
|
||||
'''Select location ({{count}} found)'''=Hely kiválasztása ({{count}} találat)
|
||||
'''Your LIFX Account is now connected to SmartThings!'''=Csatlakoztatta LIFX-fiókját a SmartThings rendszerhez!
|
||||
'''Click 'Done' to finish setup.'''=A telepítés befejezéséhez kattintson a „Done” (Kész) gombra.
|
||||
'''The connection could not be established!'''=Nem sikerült kapcsolatot létesíteni!
|
||||
'''Click 'Done' to return to the menu.'''=A menühöz való visszatéréshez kattintson a „Done” (Kész) gombra.
|
||||
'''Your LIFX Account is already connected to SmartThings!'''=LIFX-fiókja már csatlakozott a SmartThings rendszerhez!
|
||||
'''Click 'Done' to finish setup.'''=A telepítés befejezéséhez kattintson a „Done” (Kész) gombra.
|
||||
'''SmartThings Connection'''=SmartThings csatlakoztatása
|
||||
15
smartapps/smartthings/lifx-connect.src/i18n/it-IT.properties
Normal file
15
smartapps/smartthings/lifx-connect.src/i18n/it-IT.properties
Normal file
@@ -0,0 +1,15 @@
|
||||
'''Allows you to use LIFX smart light bulbs with SmartThings.'''=Vi consente di utilizzare le lampadine intelligenti LIFX con SmartThings.
|
||||
'''LIFX'''=LIFX
|
||||
'''Tap to enter LIFX credentials'''=Toccate per inserire le credenziali LIFX
|
||||
'''Connect to LIFX'''=Connetti a LIFX
|
||||
'''Tap here to connect your LIFX account'''=Toccate qui per connettere l'account LIFX
|
||||
'''Connect to LIFX'''=Connetti a LIFX
|
||||
'''Select your location'''=Selezionate la posizione
|
||||
'''Select location ({{count}} found)'''=Selezionate la posizione ({{count}} trovate)
|
||||
'''Your LIFX Account is now connected to SmartThings!'''=L'account LIFX è adesso connesso a SmartThings.
|
||||
'''Click 'Done' to finish setup.'''=Fate clic su “Done” (Fatto) per terminare la configurazione.
|
||||
'''The connection could not be established!'''=Non è stato possibile stabilire la connessione.
|
||||
'''Click 'Done' to return to the menu.'''=Fate clic su “Done” (Fatto) per tornare al menu.
|
||||
'''Your LIFX Account is already connected to SmartThings!'''=L'account LIFX è già connesso a SmartThings.
|
||||
'''Click 'Done' to finish setup.'''=Fate clic su “Done” (Fatto) per terminare la configurazione.
|
||||
'''SmartThings Connection'''=Connessione a SmartThings
|
||||
15
smartapps/smartthings/lifx-connect.src/i18n/ko-KR.properties
Normal file
15
smartapps/smartthings/lifx-connect.src/i18n/ko-KR.properties
Normal file
@@ -0,0 +1,15 @@
|
||||
'''Allows you to use LIFX smart light bulbs with SmartThings.'''=LIFX 스마트 전구를 SmartThings에서 사용할 수 있습니다.
|
||||
'''LIFX'''=LIFX
|
||||
'''Tap to enter LIFX credentials'''=LIFX 로그인 정보를 입력하려면 누르세요
|
||||
'''Connect to LIFX'''=LIFX 연결
|
||||
'''Tap here to connect your LIFX account'''=LIFX 계정을 연결하려면 여기를 누르세요
|
||||
'''Connect to LIFX'''=LIFX 연결
|
||||
'''Select your location'''=위치 선택
|
||||
'''Select location ({{count}} found)'''=위치 선택 ({{count}}개 찾음)
|
||||
'''Your LIFX Account is now connected to SmartThings!'''=LIFX 계정이 SmartThings에 연결되었습니다!
|
||||
'''Click 'Done' to finish setup.'''=설정을 완료하려면 [완료]를 클릭하세요.
|
||||
'''The connection could not be established!'''=연결을 실행할 수 없습니다!
|
||||
'''Click 'Done' to return to the menu.'''=메뉴로 돌아가려면 [완료]를 클릭하세요.
|
||||
'''Your LIFX Account is already connected to SmartThings!'''=LIFX 계정이 SmartThings에 연결되어 있습니다!
|
||||
'''Click 'Done' to finish setup.'''=설정을 완료하려면 [완료]를 클릭하세요.
|
||||
'''SmartThings Connection'''=SmartThings 연결
|
||||
15
smartapps/smartthings/lifx-connect.src/i18n/nl-NL.properties
Normal file
15
smartapps/smartthings/lifx-connect.src/i18n/nl-NL.properties
Normal file
@@ -0,0 +1,15 @@
|
||||
'''Allows you to use LIFX smart light bulbs with SmartThings.'''=Hiermee kunt u slimme lampen van LIFX gebruiken met SmartThings.
|
||||
'''LIFX'''=LIFX
|
||||
'''Tap to enter LIFX credentials'''=Tik om LIFX-inloggegevens in te voeren
|
||||
'''Connect to LIFX'''=Verbinden met LIFX
|
||||
'''Tap here to connect your LIFX account'''=Tik hier om verbinding te maken met uw LIFX-account
|
||||
'''Connect to LIFX'''=Verbinden met LIFX
|
||||
'''Select your location'''=Selecteer uw locatie
|
||||
'''Select location ({{count}} found)'''=Selecteer locatie ({{count}} gevonden)
|
||||
'''Your LIFX Account is now connected to SmartThings!'''=Uw LIFX-account is nu verbonden met SmartThings.
|
||||
'''Click 'Done' to finish setup.'''=Klik op Done (Gereed) om het instellen te voltooien.
|
||||
'''The connection could not be established!'''=Er kan geen verbinding worden gemaakt.
|
||||
'''Click 'Done' to return to the menu.'''=Klik op Done (Gereed) om terug te gaan naar het menu.
|
||||
'''Your LIFX Account is already connected to SmartThings!'''=Uw LIFX-account is al verbonden met SmartThings.
|
||||
'''Click 'Done' to finish setup.'''=Klik op Done (Gereed) om het instellen te voltooien.
|
||||
'''SmartThings Connection'''=SmartThings-verbinding
|
||||
15
smartapps/smartthings/lifx-connect.src/i18n/no-NO.properties
Normal file
15
smartapps/smartthings/lifx-connect.src/i18n/no-NO.properties
Normal file
@@ -0,0 +1,15 @@
|
||||
'''Allows you to use LIFX smart light bulbs with SmartThings.'''=Gjør at du kan bruke LIFX-smartlyspærer med SmartThings.
|
||||
'''LIFX'''=LIFX
|
||||
'''Tap to enter LIFX credentials'''=Trykk for å angi LIFX-informasjon
|
||||
'''Connect to LIFX'''=Koble til LIFX
|
||||
'''Tap here to connect your LIFX account'''=Trykk her for å koble til LIFX-kontoen din
|
||||
'''Connect to LIFX'''=Koble til LIFX
|
||||
'''Select your location'''=Velg plasseringen din
|
||||
'''Select location ({{count}} found)'''=Velg plassering (fant {{count}})
|
||||
'''Your LIFX Account is now connected to SmartThings!'''=LIFX-kontoen din er nå koblet til SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Klikk på Done (Ferdig) for å fullføre oppsettet.
|
||||
'''The connection could not be established!'''=Kunne ikke opprette tilkoblingen!
|
||||
'''Click 'Done' to return to the menu.'''=Klikk på Done (Ferdig) for å gå tilbake til menyen.
|
||||
'''Your LIFX Account is already connected to SmartThings!'''=LIFX-kontoen din er allerede koblet til SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Klikk på Done (Ferdig) for å fullføre oppsettet.
|
||||
'''SmartThings Connection'''=SmartThings-tilkobling
|
||||
15
smartapps/smartthings/lifx-connect.src/i18n/pl-PL.properties
Normal file
15
smartapps/smartthings/lifx-connect.src/i18n/pl-PL.properties
Normal file
@@ -0,0 +1,15 @@
|
||||
'''Allows you to use LIFX smart light bulbs with SmartThings.'''=Umożliwia użycie inteligentnych żarówek LIFX ze SmartThings.
|
||||
'''LIFX'''=LIFX
|
||||
'''Tap to enter LIFX credentials'''=Dotknij, aby wprowadzić poświadczenia LIFX
|
||||
'''Connect to LIFX'''=Połącz z LIFX
|
||||
'''Tap here to connect your LIFX account'''=Dotknij tutaj, aby połączyć z kontem LIFX
|
||||
'''Connect to LIFX'''=Połącz z LIFX
|
||||
'''Select your location'''=Wybierz lokalizację
|
||||
'''Select location ({{count}} found)'''=Wybierz lokalizację (znaleziono {{count}})
|
||||
'''Your LIFX Account is now connected to SmartThings!'''=Konto LIFX jest teraz połączone ze SmartThings.
|
||||
'''Click 'Done' to finish setup.'''=Kliknij opcję „Done” (Gotowe), aby ukończyć instalację.
|
||||
'''The connection could not be established!'''=Nie można ustanowić połączenia.
|
||||
'''Click 'Done' to return to the menu.'''=Kliknij opcję „Done” (Gotowe), aby powrócić do menu.
|
||||
'''Your LIFX Account is already connected to SmartThings!'''=Konto LIFX jest już połączone ze SmartThings.
|
||||
'''Click 'Done' to finish setup.'''=Kliknij opcję „Done” (Gotowe), aby ukończyć instalację.
|
||||
'''SmartThings Connection'''=Połączenie SmartThings
|
||||
15
smartapps/smartthings/lifx-connect.src/i18n/pt-BR.properties
Normal file
15
smartapps/smartthings/lifx-connect.src/i18n/pt-BR.properties
Normal file
@@ -0,0 +1,15 @@
|
||||
'''Allows you to use LIFX smart light bulbs with SmartThings.'''=Permite o uso de lâmpadas inteligentes LIFX com o SmartThings.
|
||||
'''LIFX'''=LIFX
|
||||
'''Tap to enter LIFX credentials'''=Tocar para inserir as credenciais do LIFX
|
||||
'''Connect to LIFX'''=Conectar ao LIFX
|
||||
'''Tap here to connect your LIFX account'''=Tocar aqui para conectar sua conta LIFX
|
||||
'''Connect to LIFX'''=Conectar ao LIFX
|
||||
'''Select your location'''=Selecionar sua localização
|
||||
'''Select location ({{count}} found)'''=Selecionar a localização ({{count}} encontrado)
|
||||
'''Your LIFX Account is now connected to SmartThings!'''=Agora sua conta LIFX está conectada ao SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Clique em 'Done' (Concluído) para concluir a configuração.
|
||||
'''The connection could not be established!'''=Não foi possível estabelecer a conexão!
|
||||
'''Click 'Done' to return to the menu.'''=Clique em 'Done' (Concluído) para retornar ao menu.
|
||||
'''Your LIFX Account is already connected to SmartThings!'''=Sua conta LIFX já está conectada ao SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Clique em 'Done' (Concluído) para concluir a configuração.
|
||||
'''SmartThings Connection'''=Conexão com o SmartThings
|
||||
15
smartapps/smartthings/lifx-connect.src/i18n/pt-PT.properties
Normal file
15
smartapps/smartthings/lifx-connect.src/i18n/pt-PT.properties
Normal file
@@ -0,0 +1,15 @@
|
||||
'''Allows you to use LIFX smart light bulbs with SmartThings.'''=Permite a utilização de lâmpadas inteligentes LIFX com o SmartThings.
|
||||
'''LIFX'''=LIFX
|
||||
'''Tap to enter LIFX credentials'''=Toque para introduzir as credenciais da LIFX
|
||||
'''Connect to LIFX'''=Ligar à LIFX
|
||||
'''Tap here to connect your LIFX account'''=Toque aqui para ligar a sua conta LIFX
|
||||
'''Connect to LIFX'''=Ligar à LIFX
|
||||
'''Select your location'''=Seleccionar a sua localização
|
||||
'''Select location ({{count}} found)'''=Seleccionar a localização ({{count}} encontrado)
|
||||
'''Your LIFX Account is now connected to SmartThings!'''=Agora, a sua Conta LIFX está ligada ao SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Clique em "Done" (Concluir) para terminar a configuração.
|
||||
'''The connection could not be established!'''=Não foi possível estabelecer a ligação!
|
||||
'''Click 'Done' to return to the menu.'''=Clique em "Done" (Concluir) para regressar ao menu.
|
||||
'''Your LIFX Account is already connected to SmartThings!'''=A sua conta LIFX já está ligada ao SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Clique em "Done" (Concluir) para terminar a configuração.
|
||||
'''SmartThings Connection'''=Ligação do SmartThings
|
||||
15
smartapps/smartthings/lifx-connect.src/i18n/ro-RO.properties
Normal file
15
smartapps/smartthings/lifx-connect.src/i18n/ro-RO.properties
Normal file
@@ -0,0 +1,15 @@
|
||||
'''Allows you to use LIFX smart light bulbs with SmartThings.'''=Permite utilizarea becurilor inteligente LIFX cu SmartThings.
|
||||
'''LIFX'''=LIFX
|
||||
'''Tap to enter LIFX credentials'''=Atingeți pentru a introduce acreditările LIFX
|
||||
'''Connect to LIFX'''=Conectare la LIFX
|
||||
'''Tap here to connect your LIFX account'''=Atingeți aici pentru a vă conecta la contul LIFX
|
||||
'''Connect to LIFX'''=Conectare la LIFX
|
||||
'''Select your location'''=Selectați locația dvs.
|
||||
'''Select location ({{count}} found)'''=Selectare locație ({{count}} găsite)
|
||||
'''Your LIFX Account is now connected to SmartThings!'''=Contul dvs. LIFX este acum conectat la SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Faceți clic pe „Done” (Efectuat) pentru a finaliza configurarea.
|
||||
'''The connection could not be established!'''=Nu a putut fi stabilită conexiunea!
|
||||
'''Click 'Done' to return to the menu.'''=Faceți clic pe „Done” (Efectuat) pentru a reveni la meniu.
|
||||
'''Your LIFX Account is already connected to SmartThings!'''=Contul dvs. LIFX este deja conectat la SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Faceți clic pe „Done” (Efectuat) pentru a finaliza configurarea.
|
||||
'''SmartThings Connection'''=Conexiune SmartThings
|
||||
15
smartapps/smartthings/lifx-connect.src/i18n/ru-RU.properties
Normal file
15
smartapps/smartthings/lifx-connect.src/i18n/ru-RU.properties
Normal file
@@ -0,0 +1,15 @@
|
||||
'''Allows you to use LIFX smart light bulbs with SmartThings.'''=Позволяет использовать умные электролампы LIFX со SmartThings.
|
||||
'''LIFX'''=LIFX
|
||||
'''Tap to enter LIFX credentials'''=Коснитесь, чтобы ввести учетные данные LIFX
|
||||
'''Connect to LIFX'''=Подключиться к LIFX
|
||||
'''Tap here to connect your LIFX account'''=Коснитесь здесь, чтобы подключить свою учетную запись LIFX
|
||||
'''Connect to LIFX'''=Подключиться к LIFX
|
||||
'''Select your location'''=Выберите свое месторасположение
|
||||
'''Select location ({{count}} found)'''=Выбор местоположения (найдено {{count}})
|
||||
'''Your LIFX Account is now connected to SmartThings!'''=Теперь ваша учетная запись LIFX подключена к SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Для завершения настройки нажмите «Готово».
|
||||
'''The connection could not be established!'''=Не удалось установить соединение!
|
||||
'''Click 'Done' to return to the menu.'''=Чтобы вернуться в меню, нажмите «Готово».
|
||||
'''Your LIFX Account is already connected to SmartThings!'''=Ваша учетная запись LIFX уже подключена к SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Для завершения настройки нажмите «Готово».
|
||||
'''SmartThings Connection'''=Подключение SmartThings
|
||||
15
smartapps/smartthings/lifx-connect.src/i18n/sk-SK.properties
Normal file
15
smartapps/smartthings/lifx-connect.src/i18n/sk-SK.properties
Normal file
@@ -0,0 +1,15 @@
|
||||
'''Allows you to use LIFX smart light bulbs with SmartThings.'''=Umožňuje používať inteligentné žiarovky LIFX so systémom SmartThings.
|
||||
'''LIFX'''=LIFX
|
||||
'''Tap to enter LIFX credentials'''=Ťuknutím zadajte poverenia pre LIFX
|
||||
'''Connect to LIFX'''=Pripojenie k zariadeniu LIFX
|
||||
'''Tap here to connect your LIFX account'''=Ťuknutím sem sa môžete pripojiť ku kontu LIFX
|
||||
'''Connect to LIFX'''=Pripojenie k zariadeniu LIFX
|
||||
'''Select your location'''=Vyberte umiestnenie
|
||||
'''Select location ({{count}} found)'''=Vyberte umiestnenie (nájdené: {{count}})
|
||||
'''Your LIFX Account is now connected to SmartThings!'''=Vaše konto LIFX je teraz prepojené so systémom SmartThings.
|
||||
'''Click 'Done' to finish setup.'''=Kliknutím na tlačidlo Done (Hotovo) dokončite inštaláciu.
|
||||
'''The connection could not be established!'''=Nepodarilo sa nadviazať spojenie.
|
||||
'''Click 'Done' to return to the menu.'''=Kliknutím na tlačidlo Done (Hotovo) sa vráťte do menu.
|
||||
'''Your LIFX Account is already connected to SmartThings!'''=Vaše konto LIFX je už prepojené so systémom SmartThings.
|
||||
'''Click 'Done' to finish setup.'''=Kliknutím na tlačidlo Done (Hotovo) dokončite inštaláciu.
|
||||
'''SmartThings Connection'''=Pripojenie k zariadeniu SmartThings
|
||||
15
smartapps/smartthings/lifx-connect.src/i18n/sl-SI.properties
Normal file
15
smartapps/smartthings/lifx-connect.src/i18n/sl-SI.properties
Normal file
@@ -0,0 +1,15 @@
|
||||
'''Allows you to use LIFX smart light bulbs with SmartThings.'''=Omogoča uporabo pametnih žarnic LIFX s storitvijo SmartThings.
|
||||
'''LIFX'''=LIFX
|
||||
'''Tap to enter LIFX credentials'''=Pritisnite za vnos poverilnic LIFX
|
||||
'''Connect to LIFX'''=Povezava z LIFX
|
||||
'''Tap here to connect your LIFX account'''=Pritisnite tukaj, da povežete račun LIFX
|
||||
'''Connect to LIFX'''=Povezava z LIFX
|
||||
'''Select your location'''=Izberite svojo lokacijo
|
||||
'''Select location ({{count}} found)'''=Izberite lokacijo (št. najdenih: {{count}})
|
||||
'''Your LIFX Account is now connected to SmartThings!'''=Vaš račun LIFX je zdaj povezan s storitvijo SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Kliknite »Done« (Končano), da zaključite nastavitev.
|
||||
'''The connection could not be established!'''=Povezave ni bilo mogoče vzpostaviti!
|
||||
'''Click 'Done' to return to the menu.'''=Kliknite »Done« (Končano), da se vrnete v meni.
|
||||
'''Your LIFX Account is already connected to SmartThings!'''=Račun LIFX je že povezan s storitvijo SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Kliknite »Done« (Končano), da zaključite nastavitev.
|
||||
'''SmartThings Connection'''=Povezava SmartThings
|
||||
15
smartapps/smartthings/lifx-connect.src/i18n/sq-AL.properties
Normal file
15
smartapps/smartthings/lifx-connect.src/i18n/sq-AL.properties
Normal file
@@ -0,0 +1,15 @@
|
||||
'''Allows you to use LIFX smart light bulbs with SmartThings.'''=Të lejon të përdorësh llamba inteligjente LIFX me SmartThings.
|
||||
'''LIFX'''=LIFX
|
||||
'''Tap to enter LIFX credentials'''=Trokit për të futur kredencialet LIFX
|
||||
'''Connect to LIFX'''=Lidhu me LIFX
|
||||
'''Tap here to connect your LIFX account'''=Trokit këtu për të lidhur llogarinë LIFX
|
||||
'''Connect to LIFX'''=Lidhu me LIFX
|
||||
'''Select your location'''=Përzgjidh vendndodhjen tënde
|
||||
'''Select location ({{count}} found)'''=Përzgjidh vendndodhjen (u gjet {{count}})
|
||||
'''Your LIFX Account is now connected to SmartThings!'''=Llogaria jote LIFX tani është lidhur me SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Kliko mbi ‘Done’ (U krye) për ta mbaruar konfigurimin.
|
||||
'''The connection could not be established!'''=Lidhja nuk u vendos dot!
|
||||
'''Click 'Done' to return to the menu.'''=Kliko mbi ‘Done’ (U krye) për t’u kthyer në meny.
|
||||
'''Your LIFX Account is already connected to SmartThings!'''=Llogaria jote LIFX tashmë është lidhur me SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Kliko mbi ‘Done’ (U krye) për ta mbaruar konfigurimin.
|
||||
'''SmartThings Connection'''=Lidhja SmartThings
|
||||
15
smartapps/smartthings/lifx-connect.src/i18n/sr-RS.properties
Normal file
15
smartapps/smartthings/lifx-connect.src/i18n/sr-RS.properties
Normal file
@@ -0,0 +1,15 @@
|
||||
'''Allows you to use LIFX smart light bulbs with SmartThings.'''=Dozvoljava vam da koristite LIFX pametne sijalice sa aplikacijom SmartThings.
|
||||
'''LIFX'''=LIFX
|
||||
'''Tap to enter LIFX credentials'''=Kucnite za unos LIFX akreditiva
|
||||
'''Connect to LIFX'''=Povežite se na LIFX
|
||||
'''Tap here to connect your LIFX account'''=Kucnite ovde da biste se povezali na svoj LIFX nalog
|
||||
'''Connect to LIFX'''=Povežite se na LIFX
|
||||
'''Select your location'''=Izaberite lokaciju na kojoj se nalazite
|
||||
'''Select location ({{count}} found)'''=Izaberite lokaciju ({{count}} pronađeno)
|
||||
'''Your LIFX Account is now connected to SmartThings!'''=Vaš LIFX nalog je sada povezan na SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Kliknite na „Done” (Gotovo) za kraj konfiguracije.
|
||||
'''The connection could not be established!'''=Veza nije uspostavljena!
|
||||
'''Click 'Done' to return to the menu.'''=Kliknite na „Done” (Gotovo) da biste se vratili na meni.
|
||||
'''Your LIFX Account is already connected to SmartThings!'''=Vaš LIFX nalog je već povezan na SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Kliknite na „Done” (Gotovo) za kraj konfiguracije.
|
||||
'''SmartThings Connection'''=SmartThings veza
|
||||
15
smartapps/smartthings/lifx-connect.src/i18n/sv-SE.properties
Normal file
15
smartapps/smartthings/lifx-connect.src/i18n/sv-SE.properties
Normal file
@@ -0,0 +1,15 @@
|
||||
'''Allows you to use LIFX smart light bulbs with SmartThings.'''=Gör att du kan använda de smarta LIFX-lamporna med SmartThings.
|
||||
'''LIFX'''=LIFX
|
||||
'''Tap to enter LIFX credentials'''=Tryck för att ange LIFX-inloggningsuppgifter
|
||||
'''Connect to LIFX'''=Anslut till LIFX
|
||||
'''Tap here to connect your LIFX account'''=Tryck här för att avsluta ditt LIFX-konto
|
||||
'''Connect to LIFX'''=Anslut till LIFX
|
||||
'''Select your location'''=Välj din plats
|
||||
'''Select location ({{count}} found)'''=Välj plats ({{count}} hittades)
|
||||
'''Your LIFX Account is now connected to SmartThings!'''=Ditt LIFX-konto är nu anslutet till SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Klicka på Done (Klart) för att slutföra konfigurationen.
|
||||
'''The connection could not be established!'''=Det gick inte att upprätta anslutningen!
|
||||
'''Click 'Done' to return to the menu.'''=Klicka på Done (Klart) för att återgå till menyn.
|
||||
'''Your LIFX Account is already connected to SmartThings!'''=Ditt LIFX-konto är redan anslutet till SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=Klicka på Done (Klart) för att slutföra konfigurationen.
|
||||
'''SmartThings Connection'''=SmartThings-anslutning
|
||||
15
smartapps/smartthings/lifx-connect.src/i18n/th-TH.properties
Normal file
15
smartapps/smartthings/lifx-connect.src/i18n/th-TH.properties
Normal file
@@ -0,0 +1,15 @@
|
||||
'''Allows you to use LIFX smart light bulbs with SmartThings.'''=ทำให้คุณสามารถใช้หลอดไฟอัจฉริยะ LIFX กับ SmartThings ได้
|
||||
'''LIFX'''=LIFX
|
||||
'''Tap to enter LIFX credentials'''=แตะเพื่อใส่ข้อมูลยืนยันตัวตน LIFX
|
||||
'''Connect to LIFX'''=เชื่อมต่อกับ LIFX
|
||||
'''Tap here to connect your LIFX account'''=แตะที่นี่เพื่อเชื่อมต่อบัญชีผู้ใช้ LIFX ของคุณ
|
||||
'''Connect to LIFX'''=เชื่อมต่อกับ LIFX
|
||||
'''Select your location'''=เลือกตำแหน่งของคุณ
|
||||
'''Select location ({{count}} found)'''=เลือกตำแหน่ง ({{count}} found)
|
||||
'''Your LIFX Account is now connected to SmartThings!'''=ตอนนี้บัญชีผู้ใช้ LIFX ของคุณเชื่อมต่อกับ SmartThings แล้ว!
|
||||
'''Click 'Done' to finish setup.'''=คลิก 'เสร็จสิ้น' เพื่อทำการตั้งค่าให้เสร็จสิ้น
|
||||
'''The connection could not be established!'''=ไม่สามารถสร้างการเชื่อมต่อได้!
|
||||
'''Click 'Done' to return to the menu.'''=คลิก 'เสร็จสิ้น' เพื่อกลับไปยังเมนู
|
||||
'''Your LIFX Account is already connected to SmartThings!'''=บัญชีผู้ใช้ LIFX ของคุณเชื่อมต่อกับ SmartThings อยู่แล้ว!
|
||||
'''Click 'Done' to finish setup.'''=คลิก 'เสร็จสิ้น' เพื่อทำการตั้งค่าให้เสร็จสิ้น
|
||||
'''SmartThings Connection'''=การเชื่อมต่อ SmartThings
|
||||
15
smartapps/smartthings/lifx-connect.src/i18n/tr-TR.properties
Normal file
15
smartapps/smartthings/lifx-connect.src/i18n/tr-TR.properties
Normal file
@@ -0,0 +1,15 @@
|
||||
'''Allows you to use LIFX smart light bulbs with SmartThings.'''=LIFX akıllı ampulleri SmartThings ile birlikte kullanabilmenizi sağlar.
|
||||
'''LIFX'''=LIFX
|
||||
'''Tap to enter LIFX credentials'''=LIFX kimlik bilgilerini girmek için dokunun
|
||||
'''Connect to LIFX'''=LIFX'e bağlan
|
||||
'''Tap here to connect your LIFX account'''=LIFX hesabınıza bağlanmak için buraya dokunun
|
||||
'''Connect to LIFX'''=LIFX'e bağlan
|
||||
'''Select your location'''=Konumunuzu seçin
|
||||
'''Select location ({{count}} found)'''=Konum seçin ({{count}} bulundu)
|
||||
'''Your LIFX Account is now connected to SmartThings!'''=LIFX Hesabınız artık SmartThings'e bağlandı!
|
||||
'''Click 'Done' to finish setup.'''=Kurulumu bitirmek için 'Bitti' öğesine tıklayın.
|
||||
'''The connection could not be established!'''=Bağlantı kurulamadı!
|
||||
'''Click 'Done' to return to the menu.'''=Menüye dönmek için 'Bitti' öğesine tıklayın.
|
||||
'''Your LIFX Account is already connected to SmartThings!'''=LIFX Hesabınız zaten SmartThings'e bağlı!
|
||||
'''Click 'Done' to finish setup.'''=Kurulumu bitirmek için 'Bitti' öğesine tıklayın.
|
||||
'''SmartThings Connection'''=SmartThings Bağlantısı
|
||||
15
smartapps/smartthings/lifx-connect.src/i18n/zh-CN.properties
Normal file
15
smartapps/smartthings/lifx-connect.src/i18n/zh-CN.properties
Normal file
@@ -0,0 +1,15 @@
|
||||
'''Allows you to use LIFX smart light bulbs with SmartThings.'''=允许您将 LIFX 智能灯泡与 SmartThings 一起使用。
|
||||
'''LIFX'''=LIFX
|
||||
'''Tap to enter LIFX credentials'''=点击以输入 LIFX 凭据
|
||||
'''Connect to LIFX'''=连接至 LIFX
|
||||
'''Tap here to connect your LIFX account'''=点击此处连接 LIFX 帐户
|
||||
'''Connect to LIFX'''=连接至 LIFX
|
||||
'''Select your location'''=选择您的位置
|
||||
'''Select location ({{count}} found)'''=选择位置 (发现 {{count}} 个)
|
||||
'''Your LIFX Account is now connected to SmartThings!'''=LIFX 帐户现在已连接至 SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=单击“完成”以完成设置。
|
||||
'''The connection could not be established!'''=无法建立连接!
|
||||
'''Click 'Done' to return to the menu.'''=单击“完成”返回菜单。
|
||||
'''Your LIFX Account is already connected to SmartThings!'''=LIFX 帐户现在已连接至 SmartThings!
|
||||
'''Click 'Done' to finish setup.'''=单击“完成”以完成设置。
|
||||
'''SmartThings Connection'''=SmartThings 连接
|
||||
@@ -4,6 +4,8 @@
|
||||
* Copyright 2015 LIFX
|
||||
*
|
||||
*/
|
||||
include 'localization'
|
||||
|
||||
definition(
|
||||
name: "LIFX (Connect)",
|
||||
namespace: "smartthings",
|
||||
@@ -66,7 +68,7 @@ def authPage() {
|
||||
|
||||
return dynamicPage(name:"Credentials", title:"", nextPage:"", install:true, uninstall: true) {
|
||||
section("Select your location") {
|
||||
input "selectedLocationId", "enum", required:true, title:"Select location (${count} found)", multiple:false, options:options, submitOnChange: true
|
||||
input "selectedLocationId", "enum", required:true, title:"Select location ({{count}} found)", messageArgs: [count: count], multiple:false, options:options, submitOnChange: true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user