Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions homeassistant/components/homeassistant/strings.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
},
"python_version": {
"title": "Support for Python {current_python_version} is being removed",
"description": "Support for running Home Assistant in the current used Python version {current_python_version} is deprecated and will be removed in Home Assistant {breaks_in_ha_version}. Please upgrade Python to {required_python_version} to prevent your Home Assistant instance from breaking."
"description": "Support for running Home Assistant in the currently used Python version {current_python_version} is deprecated and will be removed in Home Assistant {breaks_in_ha_version}. Please upgrade Python to {required_python_version} to prevent your Home Assistant instance from breaking."
},
"config_entry_only": {
"title": "The {domain} integration does not support YAML configuration",
Expand Down Expand Up @@ -81,7 +81,7 @@
"title": "Integration {domain} not found",
"fix_flow": {
"abort": {
"issue_ignored": "Not existing integration {domain} ignored."
"issue_ignored": "Non-existent integration {domain} ignored."
},
"step": {
"init": {
Expand Down Expand Up @@ -274,7 +274,7 @@
"message": "Failed to process the returned action response data, expected a dictionary, but got {response_data_type}."
},
"service_should_be_blocking": {
"message": "A non blocking action call with argument {non_blocking_argument} can't be used together with argument {return_response}."
"message": "A non-blocking action call with argument {non_blocking_argument} can't be used together with argument {return_response}."
}
}
}
2 changes: 1 addition & 1 deletion tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -1847,7 +1847,7 @@ async def test_services_call_return_response_requires_blocking(
return_response=True,
)
assert str(exc.value) == (
"A non blocking action call with argument blocking=False "
"A non-blocking action call with argument blocking=False "
"can't be used together with argument return_response=True"
)

Expand Down
Loading