-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstrings.json
More file actions
102 lines (102 loc) · 3.69 KB
/
Copy pathstrings.json
File metadata and controls
102 lines (102 loc) · 3.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"config": {
"step": {
"user": {
"title": "DeltaLux",
"description": "Choose how you want to set up your light group.",
"data": {
"setup_mode": "Setup Method"
}
},
"gui": {
"title": "Create Light Group",
"description": "Create a light group where each light maintains a brightness offset from the master.",
"data": {
"name": "Group Name",
"entity_id": "Lights"
},
"data_description": {
"name": "A friendly name for this light group",
"entity_id": "Select two or more lights to include in this group"
}
},
"yaml": {
"title": "Import from YAML",
"description": "Paste your YAML configuration below.\n\n**Example format:**\n```yaml\nname: My Light Group\noffset_type: absolute\nlights:\n - entity_id: light.living_room\n offset: 0\n min_brightness: 1\n max_brightness: 100\n```\n\n{error_detail}",
"data": {
"yaml_config": "Configuration"
}
},
"offsets": {
"title": "Configure Brightness Settings",
"description": "For each light, set the brightness offset (negative = dimmer), minimum brightness floor, and maximum brightness ceiling.",
"data": {
"offset_type": "Offset Type"
},
"data_description": {
"offset_type": "How offsets are calculated"
}
}
},
"error": {
"need_two_lights": "Please select at least two lights",
"name_exists": "A group with this name already exists",
"invalid_yaml": "Invalid YAML configuration. See error details below.",
"group_in_group": "A DeltaLux group cannot contain another DeltaLux group",
"min_above_max": "Minimum brightness cannot be greater than maximum brightness"
},
"abort": {
"already_configured": "This group is already configured"
}
},
"options": {
"step": {
"init": {
"title": "Configure {name}",
"description": "Select an option:",
"menu_options": {
"manage_lights": "Add or remove lights",
"adjust_offsets": "Adjust brightness settings",
"edit_yaml": "View/Edit as YAML"
}
},
"manage_lights": {
"title": "Manage Lights",
"description": "Add or remove lights from this group. Currently {current_count} lights in group.",
"data": {
"entity_id": "Lights in group"
},
"data_description": {
"entity_id": "Select the lights to include in this group (minimum 2)"
}
},
"new_light_offsets": {
"title": "Configure New Lights",
"description": "Set the brightness offset, minimum, and maximum for newly added lights: {new_lights}",
"data": {},
"data_description": {}
},
"adjust_offsets": {
"title": "Adjust Brightness Settings",
"description": "For each light: Offset (negative = dimmer), Min (floor), Max (ceiling).",
"data": {
"offset_type": "Offset Type"
}
},
"edit_yaml": {
"title": "Edit YAML Configuration",
"description": "Current configuration for **{name}**. Edit and submit to save changes.\n\n{error_detail}",
"data": {
"yaml_config": "Configuration"
}
}
},
"error": {
"need_two_lights": "Please select at least two lights",
"invalid_yaml": "Invalid YAML configuration. Check the error details.",
"name_exists": "A group with this name already exists",
"group_in_group": "A DeltaLux group cannot contain another DeltaLux group",
"min_above_max": "Minimum brightness cannot be greater than maximum brightness"
}
}
}