1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-25 22:46:31 -04:00
Files
Sonarr/frontend/src/Utilities/Series/monitorOptions.js
T
Mark McDowall 5d86329c18 Last Season and Recent Episodes
New: Added option to only monitor recent episodes
Fixed: Last Season always monitors the whole season
Closes #6175
2023-11-19 10:49:53 -08:00

73 lines
1.2 KiB
JavaScript

import translate from 'Utilities/String/translate';
const monitorOptions = [
{
key: 'all',
get value() {
return translate('MonitorAllEpisodes');
}
},
{
key: 'future',
get value() {
return translate('MonitorFutureEpisodes');
}
},
{
key: 'missing',
get value() {
return translate('MonitorMissingEpisodes');
}
},
{
key: 'existing',
get value() {
return translate('MonitorExistingEpisodes');
}
},
{
key: 'recent',
get value() {
return translate('MonitorRecentEpisodes');
}
},
{
key: 'pilot',
get value() {
return translate('MonitorPilotEpisode');
}
},
{
key: 'firstSeason',
get value() {
return translate('MonitorFirstSeason');
}
},
{
key: 'lastSeason',
get value() {
return translate('MonitorLastSeason');
}
},
{
key: 'monitorSpecials',
get value() {
return translate('MonitorSpecials');
}
},
{
key: 'unmonitorSpecials',
get value() {
return translate('UnmonitorSpecials');
}
},
{
key: 'none',
get value() {
return translate('MonitorNone');
}
}
];
export default monitorOptions;