mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-25 22:46:31 -04:00
5d86329c18
New: Added option to only monitor recent episodes Fixed: Last Season always monitors the whole season Closes #6175
73 lines
1.2 KiB
JavaScript
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;
|