Make Guardian Repairs strings more consistent (and instructive) (#78694)

Make Guardian Repairs strings consistently helpful
This commit is contained in:
Aaron Bach 2022-09-18 13:24:21 -06:00 committed by GitHub
parent b03de1c92f
commit d74f5c6ee0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -20,11 +20,11 @@
}, },
"issues": { "issues": {
"deprecated_service": { "deprecated_service": {
"title": "The {deprecated_service} service is being removed", "title": "The {deprecated_service} service will be removed",
"fix_flow": { "fix_flow": {
"step": { "step": {
"confirm": { "confirm": {
"title": "The {deprecated_service} service is being removed", "title": "The {deprecated_service} service will be removed",
"description": "Update any automations or scripts that use this service to instead use the `{alternate_service}` service with a target entity ID of `{alternate_target}`." "description": "Update any automations or scripts that use this service to instead use the `{alternate_service}` service with a target entity ID of `{alternate_target}`."
} }
} }
@ -36,7 +36,7 @@
"step": { "step": {
"confirm": { "confirm": {
"title": "The {old_entity_id} entity will be removed", "title": "The {old_entity_id} entity will be removed",
"description": "This entity has been replaced by `{replacement_entity_id}`." "description": "Update any automations or scripts that use this entity to instead use `{replacement_entity_id}`."
} }
} }
} }

View File

@ -24,17 +24,17 @@
"step": { "step": {
"confirm": { "confirm": {
"description": "Update any automations or scripts that use this service to instead use the `{alternate_service}` service with a target entity ID of `{alternate_target}`.", "description": "Update any automations or scripts that use this service to instead use the `{alternate_service}` service with a target entity ID of `{alternate_target}`.",
"title": "The {deprecated_service} service is being removed" "title": "The {deprecated_service} service will be removed"
} }
} }
}, },
"title": "The {deprecated_service} service is being removed" "title": "The {deprecated_service} service will be removed"
}, },
"replaced_old_entity": { "replaced_old_entity": {
"fix_flow": { "fix_flow": {
"step": { "step": {
"confirm": { "confirm": {
"description": "This entity has been replaced by `{replacement_entity_id}`.", "description": "Update any automations or scripts that use this entity to instead use `{replacement_entity_id}`.",
"title": "The {old_entity_id} entity will be removed" "title": "The {old_entity_id} entity will be removed"
} }
} }