1
0
mirror of https://github.com/home-assistant/core.git synced 2026-04-17 23:53:49 +01:00
Files
core/homeassistant/components/water_heater/strings.json

274 lines
9.3 KiB
JSON

{
"common": {
"condition_behavior_description": "How the state should match on the targeted water heaters.",
"condition_behavior_name": "Behavior",
"trigger_behavior_description": "The behavior of the targeted water heaters to trigger on.",
"trigger_behavior_name": "Behavior"
},
"conditions": {
"is_off": {
"description": "Tests if one or more water heaters are off.",
"fields": {
"behavior": {
"description": "[%key:component::water_heater::common::condition_behavior_description%]",
"name": "[%key:component::water_heater::common::condition_behavior_name%]"
}
},
"name": "Water heater is off"
},
"is_on": {
"description": "Tests if one or more water heaters are on.",
"fields": {
"behavior": {
"description": "[%key:component::water_heater::common::condition_behavior_description%]",
"name": "[%key:component::water_heater::common::condition_behavior_name%]"
}
},
"name": "Water heater is on"
},
"is_operation_mode": {
"description": "Tests if one or more water heaters are set to a specific operation mode.",
"fields": {
"behavior": {
"description": "[%key:component::water_heater::common::condition_behavior_description%]",
"name": "[%key:component::water_heater::common::condition_behavior_name%]"
},
"operation_mode": {
"description": "The operation mode to check for.",
"name": "Operation mode"
}
},
"name": "Water heater operation mode"
},
"is_target_temperature": {
"description": "Tests the temperature setpoint of one or more water heaters.",
"fields": {
"above": {
"description": "Require the target temperature to be above this value.",
"name": "Above"
},
"behavior": {
"description": "[%key:component::water_heater::common::condition_behavior_description%]",
"name": "[%key:component::water_heater::common::condition_behavior_name%]"
},
"below": {
"description": "Require the target temperature to be below this value.",
"name": "Below"
},
"unit": {
"description": "All values will be converted to this unit when evaluating the condition.",
"name": "Unit of measurement"
}
},
"name": "Water heater target temperature"
}
},
"device_automation": {
"action_type": {
"turn_off": "[%key:common::device_automation::action_type::turn_off%]",
"turn_on": "[%key:common::device_automation::action_type::turn_on%]"
}
},
"entity_component": {
"_": {
"name": "[%key:component::water_heater::title%]",
"state": {
"eco": "Eco",
"electric": "Electric",
"gas": "Gas",
"heat_pump": "Heat pump",
"high_demand": "High demand",
"off": "[%key:common::state::off%]",
"performance": "Performance"
},
"state_attributes": {
"away_mode": {
"name": "Away mode",
"state": {
"off": "[%key:common::state::off%]",
"on": "[%key:common::state::on%]"
}
},
"current_operation": {
"name": "Current operation"
},
"current_temperature": {
"name": "Current temperature"
},
"max_temp": {
"name": "Max target temperature"
},
"min_temp": {
"name": "Min target temperature"
},
"operation_mode": {
"name": "Operation mode",
"state": {
"eco": "[%key:component::water_heater::entity_component::_::state::eco%]",
"electric": "[%key:component::water_heater::entity_component::_::state::electric%]",
"gas": "[%key:component::water_heater::entity_component::_::state::gas%]",
"heat_pump": "[%key:component::water_heater::entity_component::_::state::heat_pump%]",
"high_demand": "[%key:component::water_heater::entity_component::_::state::high_demand%]",
"off": "[%key:common::state::off%]",
"performance": "[%key:component::water_heater::entity_component::_::state::performance%]"
}
},
"target_temp_high": {
"name": "Upper target temperature"
},
"target_temp_low": {
"name": "Lower target temperature"
}
}
}
},
"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."
}
},
"selector": {
"condition_behavior": {
"options": {
"all": "All",
"any": "Any"
}
},
"number_or_entity": {
"choices": {
"entity": "Entity",
"number": "Number"
}
},
"trigger_behavior": {
"options": {
"any": "Any",
"first": "First",
"last": "Last"
}
},
"trigger_threshold_type": {
"options": {
"above": "Above a value",
"below": "Below a value",
"between": "In a range",
"outside": "Outside a range"
}
}
},
"services": {
"set_away_mode": {
"description": "Turns away mode on/off.",
"fields": {
"away_mode": {
"description": "New value of away mode.",
"name": "Away mode"
}
},
"name": "Set away mode"
},
"set_operation_mode": {
"description": "Sets the operation mode.",
"fields": {
"operation_mode": {
"description": "[%key:component::water_heater::services::set_temperature::fields::operation_mode::description%]",
"name": "[%key:component::water_heater::services::set_temperature::fields::operation_mode::name%]"
}
},
"name": "Set operation mode"
},
"set_temperature": {
"description": "Sets the target temperature.",
"fields": {
"operation_mode": {
"description": "New value of the operation mode. For a list of possible modes, refer to the integration documentation.",
"name": "Operation mode"
},
"temperature": {
"description": "New target temperature for the water heater.",
"name": "Temperature"
}
},
"name": "Set temperature"
},
"turn_off": {
"description": "Turns water heater off.",
"name": "[%key:common::action::turn_off%]"
},
"turn_on": {
"description": "Turns water heater on.",
"name": "[%key:common::action::turn_on%]"
}
},
"title": "Water heater",
"triggers": {
"target_temperature_changed": {
"description": "Triggers after the temperature setpoint of one or more water heaters changes.",
"fields": {
"above": {
"description": "Trigger when the target temperature is above this value.",
"name": "Above"
},
"below": {
"description": "Trigger when the target temperature is below this value.",
"name": "Below"
},
"unit": {
"description": "All values will be converted to this unit when evaluating the trigger.",
"name": "Unit of measurement"
}
},
"name": "Water heater target temperature changed"
},
"target_temperature_crossed_threshold": {
"description": "Triggers after the temperature setpoint of one or more water heaters crosses a threshold.",
"fields": {
"behavior": {
"description": "[%key:component::water_heater::common::trigger_behavior_description%]",
"name": "[%key:component::water_heater::common::trigger_behavior_name%]"
},
"lower_limit": {
"description": "Lower threshold limit.",
"name": "Lower threshold"
},
"threshold_type": {
"description": "Type of threshold crossing to trigger on.",
"name": "Threshold type"
},
"unit": {
"description": "[%key:component::water_heater::triggers::target_temperature_changed::fields::unit::description%]",
"name": "[%key:component::water_heater::triggers::target_temperature_changed::fields::unit::name%]"
},
"upper_limit": {
"description": "Upper threshold limit.",
"name": "Upper threshold"
}
},
"name": "Water heater target temperature crossed threshold"
},
"turned_off": {
"description": "Triggers after one or more water heaters turn off.",
"fields": {
"behavior": {
"description": "[%key:component::water_heater::common::trigger_behavior_description%]",
"name": "[%key:component::water_heater::common::trigger_behavior_name%]"
}
},
"name": "Water heater turned off"
},
"turned_on": {
"description": "Triggers after one or more water heaters turn on, regardless of the operation mode.",
"fields": {
"behavior": {
"description": "[%key:component::water_heater::common::trigger_behavior_description%]",
"name": "[%key:component::water_heater::common::trigger_behavior_name%]"
}
},
"name": "Water heater turned on"
}
}
}