mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-25 22:59:10 -04:00
Fix translations for option values
This commit is contained in:
@@ -19,9 +19,24 @@ import translate from 'Utilities/String/translate';
|
||||
import styles from './EditApplicationModalContent.css';
|
||||
|
||||
const syncLevelOptions = [
|
||||
{ key: 'disabled', value: translate('Disabled') },
|
||||
{ key: 'addOnly', value: translate('AddRemoveOnly') },
|
||||
{ key: 'fullSync', value: translate('FullSync') }
|
||||
{
|
||||
key: 'disabled',
|
||||
get value() {
|
||||
return translate('Disabled');
|
||||
}
|
||||
},
|
||||
{
|
||||
key: 'addOnly',
|
||||
get value() {
|
||||
return translate('AddRemoveOnly');
|
||||
}
|
||||
},
|
||||
{
|
||||
key: 'fullSync',
|
||||
get value() {
|
||||
return translate('FullSync');
|
||||
}
|
||||
}
|
||||
];
|
||||
|
||||
function EditApplicationModalContent(props) {
|
||||
|
||||
Reference in New Issue
Block a user