1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-26 14:08:21 +00:00
Files
core/homeassistant/components/matter/strings.json
Stefan Agner 44aad2b821 Improve Matter Server version incompatibility handling (#120416)
* Improve Matter Server version incompatibility handling

Improve the handling of Matter Server version. Noteably fix the issues
raised (add strings for the issue) and split the version check into
two cases: One if the server is too old and one if the server is too
new.

* Bump Python Matter Server library to 6.2.0b1

* Address review feedback
2024-06-26 11:43:51 +02:00

183 lines
5.7 KiB
JSON

{
"config": {
"flow_title": "{name}",
"step": {
"manual": {
"data": {
"url": "[%key:common::config_flow::data::url%]"
}
},
"on_supervisor": {
"title": "Select connection method",
"description": "Do you want to use the official Matter Server Supervisor add-on?\n\nIf you are already running the Matter Server in another add-on, in a custom container, natively etc., then do not select this option.",
"data": {
"use_addon": "Use the official Matter Server Supervisor add-on"
}
},
"install_addon": {
"title": "The add-on installation has started"
},
"start_addon": {
"title": "Starting add-on."
},
"hassio_confirm": {
"title": "Set up the Matter integration with the Matter Server add-on"
}
},
"error": {
"cannot_connect": "[%key:common::config_flow::error::cannot_connect%]",
"invalid_server_version": "The Matter server is not the correct version",
"unknown": "[%key:common::config_flow::error::unknown%]"
},
"abort": {
"addon_get_discovery_info_failed": "Failed to get Matter Server add-on discovery info.",
"addon_info_failed": "Failed to get Matter Server add-on info.",
"addon_install_failed": "Failed to install the Matter Server add-on.",
"addon_start_failed": "Failed to start the Matter Server add-on.",
"already_configured": "[%key:common::config_flow::abort::already_configured_device%]",
"already_in_progress": "[%key:common::config_flow::abort::already_in_progress%]",
"not_matter_addon": "Discovered add-on is not the official Matter Server add-on.",
"reconfiguration_successful": "Successfully reconfigured the Matter integration."
},
"progress": {
"install_addon": "Please wait while the Matter Server add-on installation finishes. This can take several minutes.",
"start_addon": "Please wait while the Matter Server add-on starts. This add-on is what powers Matter in Home Assistant. This may take some seconds."
}
},
"entity": {
"binary_sensor": {
"water_leak": {
"name": "Water leak"
},
"water_freeze": {
"name": "Water freeze"
},
"rain": {
"name": "Rain"
}
},
"climate": {
"thermostat": {
"name": "Thermostat"
}
},
"cover": {
"cover": {
"name": "[%key:component::cover::title%]"
}
},
"event": {
"button": {
"name": "Button",
"state_attributes": {
"event_type": {
"state": {
"switch_latched": "Switch latched",
"initial_press": "Initial press",
"long_press": "Long press",
"short_release": "Short release",
"long_release": "Long release",
"multi_press_ongoing": "Multi press ongoing",
"multi_press_complete": "Multi press complete"
}
}
}
}
},
"fan": {
"fan": {
"name": "[%key:component::fan::title%]",
"state_attributes": {
"preset_mode": {
"state": {
"low": "Low",
"medium": "Medium",
"high": "High",
"auto": "Auto",
"natural_wind": "Natural wind",
"sleep_wind": "Sleep wind"
}
}
}
}
},
"number": {
"on_level": {
"name": "On level"
},
"on_transition_time": {
"name": "On transition time"
},
"off_transition_time": {
"name": "Off transition time"
},
"on_off_transition_time": {
"name": "On/Off transition time"
}
},
"light": {
"light": {
"name": "[%key:component::light::title%]"
}
},
"lock": {
"lock": {
"name": "[%key:component::lock::title%]"
}
},
"sensor": {
"activated_carbon_filter_condition": {
"name": "Activated carbon filter condition"
},
"air_quality": {
"name": "Air quality",
"state": {
"extremely_poor": "Extremely poor",
"very_poor": "Very poor",
"poor": "Poor",
"fair": "Fair",
"good": "Good",
"moderate": "Moderate",
"unknown": "Unknown"
}
},
"flow": {
"name": "Flow"
},
"hepa_filter_condition": {
"name": "Hepa filter condition"
}
},
"switch": {
"switch": {
"name": "[%key:component::switch::title%]"
},
"power": {
"name": "Power"
}
}
},
"issues": {
"server_version_version_too_old": {
"description": "The version of the Matter Server you are currently running is too old for this version of Home Assistant. Please update the Matter Server to the latest version to fix this issue.",
"title": "Newer version of Matter Server needed"
},
"server_version_version_too_new": {
"description": "The version of the Matter Server you are currently running is too new for this version of Home Assistant. Please update Home Assistant or downgrade the Matter Server to an older version to fix this issue.",
"title": "Older version of Matter Server needed"
}
},
"services": {
"open_commissioning_window": {
"name": "Open commissioning window",
"description": "Allows adding one of your devices to another Matter network by opening the commissioning window for this Matter device for 60 seconds.",
"fields": {
"device_id": {
"name": "[%key:common::config_flow::data::device%]",
"description": "The Matter device to add to the other Matter network."
}
}
}
}
}