2018-03-11 19:04:34 +00:00
{
"config" : {
"step" : {
"init" : {
"title" : "Pick Hue bridge" ,
"data" : {
2020-05-12 17:50:44 +00:00
"host" : "[%key:common::config_flow::data::host%]"
2023-11-30 15:38:40 +00:00
} ,
"data_description" : {
"host" : "The hostname or IP address of your Hue bridge."
2018-03-11 19:04:34 +00:00
}
} ,
2020-07-02 12:12:24 +00:00
"manual" : {
"title" : "Manual configure a Hue bridge" ,
"data" : {
"host" : "[%key:common::config_flow::data::host%]"
2023-11-30 15:38:40 +00:00
} ,
"data_description" : {
2023-12-04 08:36:41 +00:00
"host" : "[%key:component::hue::config::step::init::data_description::host%]"
2020-07-02 12:12:24 +00:00
}
} ,
2018-03-11 19:04:34 +00:00
"link" : {
"title" : "Link Hub" ,
"description" : "Press the button on the bridge to register Philips Hue with Home Assistant.\n\n![Location of button on bridge](/static/images/config_philips_hue.jpg)"
}
} ,
"error" : {
"register_failed" : "Failed to register, please try again" ,
2020-10-05 19:56:06 +00:00
"linking" : "[%key:common::config_flow::error::unknown%]"
2018-03-11 19:04:34 +00:00
} ,
"abort" : {
"discover_timeout" : "Unable to discover Hue bridges" ,
"no_bridges" : "No Philips Hue bridges discovered" ,
2018-03-30 03:15:40 +00:00
"all_configured" : "All Philips Hue bridges are already configured" ,
2020-10-05 19:56:06 +00:00
"unknown" : "[%key:common::config_flow::error::unknown%]" ,
"cannot_connect" : "[%key:common::config_flow::error::cannot_connect%]" ,
"already_configured" : "[%key:common::config_flow::abort::already_configured_device%]" ,
2020-10-03 13:49:09 +00:00
"already_in_progress" : "[%key:common::config_flow::abort::already_in_progress%]" ,
2022-04-25 17:52:57 +00:00
"not_hue_bridge" : "Not a Hue bridge" ,
2023-09-12 17:44:31 +00:00
"invalid_host" : "[%key:common::config_flow::error::invalid_host%]"
2018-03-11 19:04:34 +00:00
}
2020-04-01 18:42:22 +00:00
} ,
"device_automation" : {
"trigger_subtype" : {
"button_1" : "First button" ,
"button_2" : "Second button" ,
"button_3" : "Third button" ,
"button_4" : "Fourth button" ,
2020-04-16 21:14:57 +00:00
"double_buttons_1_3" : "First and Third buttons" ,
"double_buttons_2_4" : "Second and Fourth buttons" ,
2020-04-01 18:42:22 +00:00
"dim_down" : "Dim down" ,
"dim_up" : "Dim up" ,
2023-07-13 02:00:05 +00:00
"turn_off" : "[%key:common::action::turn_off%]" ,
"turn_on" : "[%key:common::action::turn_on%]" ,
2023-07-13 15:52:50 +00:00
"1" : "[%key:component::hue::device_automation::trigger_subtype::button_1%]" ,
"2" : "[%key:component::hue::device_automation::trigger_subtype::button_2%]" ,
"3" : "[%key:component::hue::device_automation::trigger_subtype::button_3%]" ,
"4" : "[%key:component::hue::device_automation::trigger_subtype::button_4%]" ,
2022-08-15 17:32:44 +00:00
"clock_wise" : "Rotation clockwise" ,
"counter_clock_wise" : "Rotation counter-clockwise"
2020-04-01 18:42:22 +00:00
} ,
"trigger_type" : {
2022-08-15 17:32:44 +00:00
"remote_button_long_release" : "\"{subtype}\" released after long press" ,
"remote_button_short_press" : "\"{subtype}\" pressed" ,
"remote_button_short_release" : "\"{subtype}\" released" ,
2020-04-16 21:14:57 +00:00
"remote_double_button_long_press" : "Both \"{subtype}\" released after long press" ,
2021-11-16 19:59:17 +00:00
"remote_double_button_short_press" : "Both \"{subtype}\" released" ,
2022-08-15 17:32:44 +00:00
"initial_press" : "\"{subtype}\" pressed initially" ,
"repeat" : "\"{subtype}\" held down" ,
"short_release" : "\"{subtype}\" released after short press" ,
2023-07-13 15:52:50 +00:00
"long_release" : "[%key:component::hue::device_automation::trigger_type::remote_button_long_release%]" ,
"double_short_release" : "[%key:component::hue::device_automation::trigger_type::remote_double_button_short_press%]" ,
"start" : "[%key:component::hue::device_automation::trigger_type::initial_press%]"
2020-04-01 18:42:22 +00:00
}
2020-07-02 12:12:24 +00:00
} ,
2023-07-26 14:42:01 +00:00
"entity" : {
"event" : {
"button" : {
2024-01-28 19:40:21 +00:00
"name" : "Button {button_id}" ,
2023-07-26 14:42:01 +00:00
"state_attributes" : {
"event_type" : {
"state" : {
"initial_press" : "Initial press" ,
"repeat" : "Repeat" ,
"short_release" : "Short press" ,
2023-07-27 14:58:09 +00:00
"long_press" : "Long press" ,
"long_release" : "Long release" ,
2023-07-26 14:42:01 +00:00
"double_short_release" : "Double press"
}
}
}
} ,
"rotary" : {
"name" : "Rotary" ,
"state_attributes" : {
"event_type" : {
"state" : {
"clock_wise" : "Clockwise" ,
"counter_clock_wise" : "Counter clockwise"
}
}
}
}
2023-09-19 10:08:13 +00:00
} ,
"sensor" : {
"zigbee_connectivity" : {
2023-10-09 12:14:07 +00:00
"name" : "Zigbee connectivity" ,
2023-09-19 10:08:13 +00:00
"state" : {
"connected" : "[%key:common::state::connected%]" ,
"disconnected" : "[%key:common::state::disconnected%]" ,
"connectivity_issue" : "Connectivity issue" ,
"unidirectional_incoming" : "Unidirectional incoming"
}
}
2023-10-02 15:15:41 +00:00
} ,
"switch" : {
2023-10-09 12:14:07 +00:00
"motion_sensor_enabled" : {
"name" : "Motion sensor enabled"
} ,
"light_sensor_enabled" : {
"name" : "Light sensor enabled"
2023-10-02 15:15:41 +00:00
}
2023-07-26 14:42:01 +00:00
}
} ,
2020-07-02 12:12:24 +00:00
"options" : {
"step" : {
"init" : {
"data" : {
2020-07-07 14:33:37 +00:00
"allow_hue_groups" : "Allow Hue groups" ,
2021-11-16 19:59:17 +00:00
"allow_hue_scenes" : "Allow Hue scenes" ,
2021-12-31 04:46:52 +00:00
"allow_unreachable" : "Allow unreachable bulbs to report their state correctly" ,
"ignore_availability" : "Ignore connectivity status for the given devices"
2020-07-02 12:12:24 +00:00
}
}
}
2023-07-12 10:31:26 +00:00
} ,
"services" : {
"hue_activate_scene" : {
"name" : "Activate scene" ,
"description" : "Activates a hue scene stored in the hue hub." ,
"fields" : {
"group_name" : {
"name" : "Group" ,
"description" : "Name of hue group/room from the hue app."
} ,
"scene_name" : {
"name" : "Scene" ,
"description" : "Name of hue scene from the hue app."
} ,
"dynamic" : {
"name" : "Dynamic" ,
"description" : "Enable dynamic mode of the scene (V2 bridges and supported scenes only)."
}
}
} ,
"activate_scene" : {
"name" : "Activate Hue scene" ,
"description" : "Activates a Hue scene with more control over the options." ,
"fields" : {
"transition" : {
"name" : "Transition" ,
"description" : "Transition duration it takes to bring devices to the state defined in the scene."
} ,
"dynamic" : {
2023-07-13 15:52:50 +00:00
"name" : "[%key:component::hue::services::hue_activate_scene::fields::dynamic::name%]" ,
2023-07-12 10:31:26 +00:00
"description" : "Enable dynamic mode of the scene."
} ,
"speed" : {
"name" : "Speed" ,
"description" : "Speed of dynamic palette for this scene."
} ,
"brightness" : {
"name" : "Brightness" ,
"description" : "Set brightness for the scene."
}
}
}
2018-03-11 19:04:34 +00:00
}
2020-07-02 12:12:24 +00:00
}