-
Notifications
You must be signed in to change notification settings - Fork 0
/
strings.json
100 lines (100 loc) · 2.53 KB
/
strings.json
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
{
"config": {
"step": {
"user": {
"data": {
"brand": "Brand",
"username": "[%key:common::config_flow::data::username%]",
"password": "[%key:common::config_flow::data::password%]"
}
}
},
"error": {
"cannot_connect": "[%key:common::config_flow::error::cannot_connect%]",
"invalid_auth": "[%key:common::config_flow::error::invalid_auth%]",
"unknown": "[%key:common::config_flow::error::unknown%]"
},
"abort": {
"already_configured": "[%key:common::config_flow::abort::already_configured_device%]"
}
},
"entity": {
"binary_sensor": {
"blower_active": {
"name": "Blower active"
},
"emergency_heat_active": {
"name": "Emergency heat active"
}
},
"number": {
"fan_speed": {
"name": "Fan speed"
}
},
"sensor": {
"system_status": {
"name": "System status"
},
"air_cleaner_mode": {
"name": "Air cleaner mode"
},
"current_compressor_speed": {
"name": "Current compressor speed"
},
"requested_compressor_speed": {
"name": "Requested compressor speed"
},
"outdoor_temperature": {
"name": "Outdoor temperature"
},
"zone_status": {
"name": "Zone status"
},
"zone_setpoint_status": {
"name": "Zone setpoint status"
}
},
"switch": {
"hold": {
"name": "Hold"
}
}
},
"services": {
"set_aircleaner_mode": {
"name": "Set air cleaner mode",
"description": "The air cleaner mode.",
"fields": {
"aircleaner_mode": {
"name": "Air cleaner mode",
"description": "The air cleaner mode to set."
}
}
},
"set_humidify_setpoint": {
"name": "Set humidify set point",
"description": "The humidification set point.",
"fields": {
"humidity": {
"name": "Humidify",
"description": "The humidification setpoint."
}
}
},
"set_hvac_run_mode": {
"name": "Set hvac run mode",
"description": "The HVAC run mode.",
"fields": {
"run_mode": {
"name": "Run mode",
"description": "Run the schedule or hold. If not specified, the current run mode will be used."
},
"hvac_mode": {
"name": "HVAC mode",
"description": "The HVAC mode to use for the schedule or hold. If not specified, the current HVAC mode will be used."
}
}
}
}
}