core/homeassistant/components/todo/strings.json

67 lines
1.7 KiB
JSON
Raw Normal View History

2023-10-23 20:53:00 +00:00
{
2023-10-27 11:28:16 +00:00
"title": "To-do list",
2023-10-23 20:53:00 +00:00
"entity_component": {
"_": {
"name": "[%key:component::todo::title%]"
}
},
"services": {
"get_items": {
"name": "Get to-do list items",
"description": "Get items on a to-do list.",
"fields": {
"status": {
"name": "Status",
"description": "Only return to-do items with the specified statuses. Returns not completed actions by default."
}
}
},
"add_item": {
"name": "Add to-do list item",
2023-10-27 11:28:16 +00:00
"description": "Add a new to-do list item.",
2023-10-23 20:53:00 +00:00
"fields": {
"item": {
"name": "Item name",
"description": "The name that represents the to-do item."
2023-10-23 20:53:00 +00:00
}
}
},
"update_item": {
2023-10-27 11:28:16 +00:00
"name": "Update to-do list item",
"description": "Update an existing to-do list item based on its name.",
2023-10-23 20:53:00 +00:00
"fields": {
"item": {
"name": "Item name",
"description": "The name for the to-do list item."
2023-10-23 20:53:00 +00:00
},
"rename": {
"name": "Rename item",
"description": "The new name of the to-do item"
2023-10-23 20:53:00 +00:00
},
"status": {
"name": "Set status",
2023-10-27 11:28:16 +00:00
"description": "A status or confirmation of the to-do item."
2023-10-23 20:53:00 +00:00
}
}
},
"remove_item": {
"name": "Remove a to-do list item",
"description": "Remove an existing to-do list item by its name.",
2023-10-23 20:53:00 +00:00
"fields": {
"item": {
"name": "Item name",
"description": "The name for the to-do list items."
2023-10-23 20:53:00 +00:00
}
}
}
},
"selector": {
"status": {
"options": {
2023-10-27 11:28:16 +00:00
"needs_action": "Not completed",
2023-10-23 20:53:00 +00:00
"completed": "Completed"
}
}
}
}