mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-27 22:57:09 -04:00
Fixed translations
This commit is contained in:
@@ -1,9 +1,24 @@
|
||||
import translate from 'Utilities/String/translate';
|
||||
|
||||
const monitorOptions = [
|
||||
{ key: 'movieOnly', value: translate('MovieOnly') },
|
||||
{ key: 'movieAndCollection', value: translate('MovieAndCollection') },
|
||||
{ key: 'none', value: translate('None') }
|
||||
{
|
||||
key: 'movieOnly',
|
||||
get value() {
|
||||
return translate('MovieOnly');
|
||||
}
|
||||
},
|
||||
{
|
||||
key: 'movieAndCollection',
|
||||
get value() {
|
||||
return translate('MovieAndCollection');
|
||||
}
|
||||
},
|
||||
{
|
||||
key: 'none',
|
||||
get value() {
|
||||
return translate('None');
|
||||
}
|
||||
}
|
||||
];
|
||||
|
||||
export default monitorOptions;
|
||||
|
||||
Reference in New Issue
Block a user