DVCSMP-2288 - DVCSMP-2290 - Localization

This commit is contained in:
juano2310
2017-02-22 11:18:59 -05:00
parent ccb7b6e49d
commit 400c55f4ba
68 changed files with 1123 additions and 52 deletions

View File

@@ -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
}
}
}