From 97015788a22856b00f7a0c4d44b54669431e4d7a Mon Sep 17 00:00:00 2001 From: Norbert Rittel Date: Fri, 29 Nov 2024 07:35:45 +0100 Subject: [PATCH] Correctly pair 'remove' with 'add' in description of To-do list card (#23044) When using 'Add' in HA this should always pair with 'Remove', like 'Create' with 'Delete'. The To-do list card introduces an inconsistent third word by using 'clear' instead of 'remove'. This fixes this and also properly capitalizes "To-do list" as it's name like in all other Dashboard card types. --- src/translations/en.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/translations/en.json b/src/translations/en.json index 21ba065039dd..043865f59e6a 100644 --- a/src/translations/en.json +++ b/src/translations/en.json @@ -6379,7 +6379,7 @@ }, "todo-list": { "name": "To-do list", - "description": "The to-do list card allows you to add, edit, check-off, and clear items from your to-do list.", + "description": "The To-do list card allows you to add, edit, check-off, and remove items from your to-do list.", "integration_not_loaded": "This card requires the `todo` integration to be set up.", "hide_completed": "Hide completed items" },