core/homeassistant/components/proximity/strings.json

71 lines
2.5 KiB
JSON

{
"title": "Proximity",
"config": {
"flow_title": "[%key:component::proximity::title%]",
"step": {
"user": {
"data": {
"zone": "Zone to track distance to",
"ignored_zones": "Zones to ignore",
"tracked_entities": "Devices or persons to track",
"tolerance": "Tolerance distance"
}
}
},
"abort": {
"already_configured": "[%key:common::config_flow::abort::already_configured_device%]",
"success": "Changes saved"
}
},
"options": {
"step": {
"init": {
"data": {
"zone": "[%key:component::proximity::config::step::user::data::zone%]",
"ignored_zones": "[%key:component::proximity::config::step::user::data::ignored_zones%]",
"tracked_entities": "[%key:component::proximity::config::step::user::data::tracked_entities%]",
"tolerance": "[%key:component::proximity::config::step::user::data::tolerance%]"
}
}
}
},
"entity": {
"sensor": {
"dir_of_travel": {
"name": "{tracked_entity} direction of travel",
"state": {
"arrived": "Arrived",
"away_from": "Away from",
"stationary": "Stationary",
"towards": "Towards"
}
},
"dist_to_zone": { "name": "{tracked_entity} distance" },
"nearest": { "name": "Nearest device" },
"nearest_dir_of_travel": {
"name": "Nearest direction of travel",
"state": {
"arrived": "[%key:component::proximity::entity::sensor::dir_of_travel::state::arrived%]",
"away_from": "[%key:component::proximity::entity::sensor::dir_of_travel::state::away_from%]",
"stationary": "[%key:component::proximity::entity::sensor::dir_of_travel::state::stationary%]",
"towards": "[%key:component::proximity::entity::sensor::dir_of_travel::state::towards%]"
}
},
"nearest_dist_to_zone": { "name": "Nearest distance" }
}
},
"issues": {
"tracked_entity_removed": {
"title": "Tracked entity has been removed",
"fix_flow": {
"step": {
"confirm": {
"title": "[%key:component::proximity::issues::tracked_entity_removed::title%]",
"description": "The entity `{entity_id}` has been removed from HA, but is used in proximity {name}. Please remove `{entity_id}` from the list of tracked entities. Related proximity sensor entities were set to unavailable and can be removed."
}
}
}
}
}
}