core/homeassistant/components/water_heater/strings.json

102 lines
3.0 KiB
JSON

{
"device_automation": {
"action_type": {
"turn_on": "[%key:common::device_automation::action_type::turn_on%]",
"turn_off": "[%key:common::device_automation::action_type::turn_off%]"
}
},
"entity_component": {
"_": {
"name": "Water heater",
"state": {
"off": "[%key:common::state::off%]",
"eco": "Eco",
"electric": "Electric",
"gas": "Gas",
"high_demand": "High Demand",
"heat_pump": "Heat Pump",
"performance": "Performance"
},
"state_attributes": {
"current_operation": {
"name": "Current operation"
},
"current_temperature": {
"name": "Current temperature"
},
"max_temp": {
"name": "Max target temperature"
},
"min_temp": {
"name": "Min target temperature"
},
"target_temp_high": {
"name": "Upper target temperature"
},
"target_temp_low": {
"name": "Lower target temperature"
},
"away_mode": {
"name": "Away mode",
"state": {
"off": "[%key:common::state::off%]",
"on": "[%key:common::state::on%]"
}
}
}
}
},
"services": {
"set_away_mode": {
"name": "Set away mode",
"description": "Turns away mode on/off.",
"fields": {
"away_mode": {
"name": "Away mode",
"description": "New value of away mode."
}
}
},
"set_temperature": {
"name": "Set temperature",
"description": "Sets the target temperature.",
"fields": {
"temperature": {
"name": "Temperature",
"description": "New target temperature for the water heater."
},
"operation_mode": {
"name": "Operation mode",
"description": "New value of the operation mode. For a list of possible modes, refer to the integration documentation."
}
}
},
"set_operation_mode": {
"name": "Set operation mode",
"description": "Sets the operation mode.",
"fields": {
"operation_mode": {
"name": "[%key:component::water_heater::services::set_temperature::fields::operation_mode::name%]",
"description": "[%key:component::water_heater::services::set_temperature::fields::operation_mode::description%]"
}
}
},
"turn_on": {
"name": "[%key:common::action::turn_on%]",
"description": "Turns water heater on."
},
"turn_off": {
"name": "[%key:common::action::turn_off%]",
"description": "Turns water heater off."
}
},
"exceptions": {
"not_valid_operation_mode": {
"message": "Operation mode {operation_mode} is not valid for {entity_id}. Valid operation modes are: {operation_list}."
},
"operation_list_not_defined": {
"message": "Operation mode {operation_mode} is not valid for {entity_id}. The operation list is not defined."
}
}
}