core/homeassistant/components/sabnzbd/strings.json

126 lines
4.0 KiB
JSON

{
"config": {
"step": {
"user": {
"data": {
"api_key": "[%key:common::config_flow::data::api_key%]",
"url": "[%key:common::config_flow::data::url%]"
},
"data_description": {
"url": "The full URL, including port, of the SABnzbd server. Example: `http://localhost:8080` or `http://a02368d7-sabnzbd:8080`, if you are using the add-on.",
"api_key": "The API key of the SABnzbd server. This can be found in the SABnzbd web interface under Config cog (top right) > General > Security."
}
}
},
"error": {
"cannot_connect": "[%key:common::config_flow::error::cannot_connect%]",
"invalid_api_key": "[%key:common::config_flow::error::invalid_api_key%]"
}
},
"entity": {
"button": {
"pause": {
"name": "[%key:common::action::pause%]"
},
"resume": {
"name": "[%key:component::sabnzbd::services::resume::name%]"
}
},
"number": {
"speedlimit": {
"name": "Speedlimit"
}
},
"sensor": {
"status": {
"name": "Status"
},
"speed": {
"name": "Speed"
},
"queue": {
"name": "Queue"
},
"left": {
"name": "Left to download"
},
"total_disk_space": {
"name": "Total disk space"
},
"free_disk_space": {
"name": "Free disk space"
},
"queue_count": {
"name": "Queue count"
},
"daily_total": {
"name": "Daily total"
},
"weekly_total": {
"name": "Weekly total"
},
"monthly_total": {
"name": "Monthly total"
},
"overall_total": {
"name": "Overall total"
}
}
},
"services": {
"pause": {
"name": "[%key:common::action::pause%]",
"description": "Pauses downloads.",
"fields": {
"api_key": {
"name": "SABnzbd API key",
"description": "The SABnzbd API key to pause downloads."
}
}
},
"resume": {
"name": "Resume",
"description": "Resumes downloads.",
"fields": {
"api_key": {
"name": "[%key:component::sabnzbd::services::pause::fields::api_key::name%]",
"description": "The SABnzbd API key to resume downloads."
}
}
},
"set_speed": {
"name": "Set speed",
"description": "Sets the download speed limit.",
"fields": {
"api_key": {
"name": "[%key:component::sabnzbd::services::pause::fields::api_key::name%]",
"description": "The SABnzbd API key to set speed limit."
},
"speed": {
"name": "Speed",
"description": "Speed limit. If specified as a number with no units, will be interpreted as a percent. If units are provided (e.g., 500K) will be interpreted absolutely."
}
}
}
},
"issues": {
"pause_action_deprecated": {
"title": "SABnzbd pause action deprecated",
"description": "The 'Pause' action is deprecated and will be removed in a future version. Please use the 'Pause' button instead. To remove this issue, please adjust automations accordingly and restart Home Assistant."
},
"resume_action_deprecated": {
"title": "SABnzbd resume action deprecated",
"description": "The 'Resume' action is deprecated and will be removed in a future version. Please use the 'Resume' button instead. To remove this issue, please adjust automations accordingly and restart Home Assistant."
},
"set_speed_action_deprecated": {
"title": "SABnzbd set_speed action deprecated",
"description": "The 'Set speed' action is deprecated and will be removed in a future version. Please use the 'Speedlimit' number entity instead. To remove this issue, please adjust automations accordingly and restart Home Assistant."
}
},
"exceptions": {
"service_call_exception": {
"message": "Unable to send command to SABnzbd due to a connection error, try again later"
}
}
}