adaptive-lighting/custom_components/adaptive_lighting/strings.json

50 lines
2.5 KiB
JSON
Raw Normal View History

2020-09-12 23:25:36 +02:00
{
"title": "Adaptive Lighting",
"config": {
"step": {
"user": {
"title": "Choose a name for the Adaptive Lighting",
"description": "Every instance can contain multiple lights!",
"data": {
2020-10-11 12:41:30 +02:00
"name": "Name"
2020-09-12 23:25:36 +02:00
}
}
},
"abort": {
2020-10-05 23:41:57 +02:00
"already_configured": "[%key:common::config_flow::abort::already_configured_device%]"
2020-09-12 23:25:36 +02:00
}
},
"options": {
"step": {
"init": {
2020-09-13 10:46:08 +02:00
"title": "Adaptive Lighting options",
"description": "All settings for a Adaptive Lighting component. The option names correspond with the YAML settings. No options are shown if you have this entry defined in YAML.",
2020-09-12 23:25:36 +02:00
"data": {
2020-09-26 18:53:00 +02:00
"lights": "lights",
"initial_transition": "initial_transition, when lights go 'off' to 'on'",
"sleep_transition": "sleep_transition, when 'sleep_state' changes",
2020-09-30 00:52:26 +02:00
"interval": "interval, time between switch updates in seconds",
"max_brightness": "max_brightness, in %",
"max_color_temp": "max_color_temp, in Kelvin",
"min_brightness": "min_brightness, in %",
"min_color_temp": "min_color_temp, in Kelvin",
"only_once": "only_once, only adapt the lights when turning them on",
"prefer_rgb_color": "prefer_rgb_color, use 'rgb_color' over 'color_temp' when possible",
"separate_turn_on_commands": "separate_turn_on_commands, for each attribute (color, brightness, etc.) in 'light.turn_on', required for some lights.",
2020-09-30 00:52:26 +02:00
"sleep_brightness": "sleep_brightness, in %",
"sleep_color_temp": "sleep_color_temp, in Kelvin",
"sunrise_offset": "sunrise_offset, in +/- seconds",
2020-10-14 07:50:45 +02:00
"sunrise_time": "sunrise_time, in 'HH:MM:SS' format (if 'None', it uses the actual sunrise time at your location)",
2020-09-30 00:52:26 +02:00
"sunset_offset": "sunset_offset, in +/- seconds",
2020-10-14 07:50:45 +02:00
"sunset_time": "sunset_time, in 'HH:MM:SS' format (if 'None', it uses the actual sunset time at your location)",
2020-10-04 23:15:12 +02:00
"take_over_control": "take_over_control, if anything but Adaptive Lighting calls 'light.turn_on' when a light is already on, stop adapting that light until it (or the switch) toggles off -> on.",
"detect_non_ha_changes": "detect_non_ha_changes, detects all >5% changes made to the lights (also outside of HA), requires 'take_over_control' to be enabled (calls 'homeassistant.update_entity' every 'interval'!)",
2020-09-30 00:52:26 +02:00
"transition": "transition, in seconds"
2020-09-12 23:25:36 +02:00
}
}
},
"error": {
2020-09-23 12:17:51 +02:00
"option_error": "Invalid option"
2020-09-12 23:25:36 +02:00
}
}
2020-09-13 10:46:08 +02:00
}