1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-27 22:57:09 -04:00

Fixed translations

This commit is contained in:
Bogdan
2023-07-24 09:35:15 +03:00
parent 53eb88d9a9
commit 1190bf791c
51 changed files with 838 additions and 316 deletions
+18 -3
View File
@@ -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;