mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-18 21:35:27 -04:00
20 lines
445 B
TypeScript
20 lines
445 B
TypeScript
import { EnhancedSelectInputValue } from 'Components/Form/Select/EnhancedSelectInput';
|
|
import translate from 'Utilities/String/translate';
|
|
|
|
const monitorNewItemsOptions: EnhancedSelectInputValue<string>[] = [
|
|
{
|
|
key: 'all',
|
|
get value() {
|
|
return translate('MonitorAllSeasons');
|
|
},
|
|
},
|
|
{
|
|
key: 'none',
|
|
get value() {
|
|
return translate('MonitorNoNewSeasons');
|
|
},
|
|
},
|
|
];
|
|
|
|
export default monitorNewItemsOptions;
|