vacuum.en.json 804 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "title": "Mower",
  3. "device_automation": {
  4. "condition_type": {
  5. "is_docked": "{entity_name} is docked",
  6. "is_cleaning": "{entity_name} is cutting"
  7. },
  8. "trigger_type": {
  9. "cleaning": "{entity_name} started cutting",
  10. "docked": "{entity_name} docked"
  11. },
  12. "action_type": {
  13. "clean": "Let {entity_name} cut",
  14. "dock": "Let {entity_name} return to the dock"
  15. }
  16. },
  17. "state": {
  18. "_": {
  19. "cleaning": "Cutting",
  20. "docked": "Docked",
  21. "error": "Error",
  22. "idle": "[%key:common::state::idle%]",
  23. "off": "[%key:common::state::off%]",
  24. "on": "[%key:common::state::on%]",
  25. "paused": "[%key:common::state::paused%]",
  26. "returning": "Returning to dock"
  27. }
  28. }
  29. }