New: (UI) Added Monitor New Albums to mass editor

Fixes #3894
This commit is contained in:
Bogdan 2023-07-22 03:04:11 +03:00
parent 7b01c85c76
commit cc3667ed13
3 changed files with 24 additions and 3 deletions

View file

@ -1,7 +1,9 @@
import translate from 'Utilities/String/translate';
const monitorNewItemsOptions = [
{ key: 'all', value: 'All Albums' },
{ key: 'none', value: 'None' },
{ key: 'new', value: 'New' }
{ key: 'all', value: translate('AllAlbums') },
{ key: 'none', value: translate('None') },
{ key: 'new', value: translate('New') }
];
export default monitorNewItemsOptions;