mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-03 13:18:53 -05:00
feat: simple failed request handling (#474)
When a movie or series is added with radarr or sonarr, if it fails, this changes the media state to unknown and sends a notification to admins. Client side this will look like a failed state along with a retry button that will delete the request and re-queue it.
This commit is contained in:
@@ -6,6 +6,7 @@ const globalMessages = defineMessages({
|
||||
processing: 'Processing',
|
||||
unavailable: 'Unavailable',
|
||||
requested: 'Requested',
|
||||
failed: 'Failed',
|
||||
pending: 'Pending',
|
||||
declined: 'Declined',
|
||||
approved: 'Approved',
|
||||
@@ -15,6 +16,7 @@ const globalMessages = defineMessages({
|
||||
approve: 'Approve',
|
||||
decline: 'Decline',
|
||||
delete: 'Delete',
|
||||
retry: 'Retry',
|
||||
deleting: 'Deleting…',
|
||||
close: 'Close',
|
||||
});
|
||||
|
||||
@@ -71,6 +71,7 @@
|
||||
"components.RequestCard.all": "All",
|
||||
"components.RequestCard.requestedby": "Requested by {username}",
|
||||
"components.RequestCard.seasons": "Seasons",
|
||||
"components.RequestList.RequestItem.failedretry": "Something went wrong retrying the request",
|
||||
"components.RequestList.RequestItem.notavailable": "N/A",
|
||||
"components.RequestList.RequestItem.requestedby": "Requested by {username}",
|
||||
"components.RequestList.RequestItem.seasons": "Seasons",
|
||||
@@ -376,11 +377,13 @@
|
||||
"i18n.declined": "Declined",
|
||||
"i18n.delete": "Delete",
|
||||
"i18n.deleting": "Deleting…",
|
||||
"i18n.failed": "Failed",
|
||||
"i18n.movies": "Movies",
|
||||
"i18n.partiallyavailable": "Partially Available",
|
||||
"i18n.pending": "Pending",
|
||||
"i18n.processing": "Processing…",
|
||||
"i18n.requested": "Requested",
|
||||
"i18n.retry": "Retry",
|
||||
"i18n.tvshows": "Series",
|
||||
"i18n.unavailable": "Unavailable",
|
||||
"pages.internalServerError": "{statusCode} - Internal Server Error",
|
||||
|
||||
Reference in New Issue
Block a user