You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/frontend/src/Utilities/Artist/monitorNewItemsOptions.js

25 lines
376 B

import translate from 'Utilities/String/translate';
const monitorNewItemsOptions = [
{
key: 'all',
get value() {
return translate('AllAlbums');
}
},
{
key: 'none',
get value() {
return translate('None');
}
},
{
key: 'new',
get value() {
return translate('New');
}
}
];
export default monitorNewItemsOptions;