mirror of
https://github.com/home-assistant/core.git
synced 2025-07-30 02:38:10 +02:00
Use title case for Transmission status sensor (#88578
* Use title case for Transmission status sensor * Use localizations for transmission status sensor * Assign device class and options as requested by review. * Don't use title case for entity names
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
"""Constants for the Transmission Bittorent Client component."""
|
||||
DOMAIN = "transmission"
|
||||
|
||||
SWITCH_TYPES = {"on_off": "Switch", "turtle_mode": "Turtle Mode"}
|
||||
SWITCH_TYPES = {"on_off": "Switch", "turtle_mode": "Turtle mode"}
|
||||
|
||||
ORDER_NEWEST_FIRST = "newest_first"
|
||||
ORDER_OLDEST_FIRST = "oldest_first"
|
||||
@ -44,3 +44,7 @@ DATA_UPDATED = "transmission_data_updated"
|
||||
EVENT_STARTED_TORRENT = "transmission_started_torrent"
|
||||
EVENT_REMOVED_TORRENT = "transmission_removed_torrent"
|
||||
EVENT_DOWNLOADED_TORRENT = "transmission_downloaded_torrent"
|
||||
|
||||
STATE_UP_DOWN = "up_down"
|
||||
STATE_SEEDING = "seeding"
|
||||
STATE_DOWNLOADING = "downloading"
|
||||
|
Reference in New Issue
Block a user