diff --git a/frontend/src/Indexer/Add/AddIndexerModalContent.js b/frontend/src/Indexer/Add/AddIndexerModalContent.js index 253703d5d..236e0d747 100644 --- a/frontend/src/Indexer/Add/AddIndexerModalContent.js +++ b/frontend/src/Indexer/Add/AddIndexerModalContent.js @@ -37,6 +37,12 @@ const columns = [ isSortable: true, isVisible: true }, + { + name: 'description', + label: translate('Description'), + isSortable: false, + isVisible: true + }, { name: 'privacy', label: translate('Privacy'), @@ -136,12 +142,12 @@ class AddIndexerModalContent extends Component { return true; }); - const errorMessage = getErrorMessage(error, 'Unable to load indexers'); + const errorMessage = getErrorMessage(error, translate('UnableToLoadIndexers')); return ( - Add Indexer + {translate('AddIndexer')} + + {description} + + {translate(firstCharToUpper(privacy))} @@ -74,6 +79,7 @@ SelectIndexerRow.propTypes = { protocol: PropTypes.string.isRequired, privacy: PropTypes.string.isRequired, language: PropTypes.string.isRequired, + description: PropTypes.string.isRequired, implementation: PropTypes.string.isRequired, onIndexerSelect: PropTypes.func.isRequired, isExistingIndexer: PropTypes.bool.isRequired diff --git a/src/NzbDrone.Core/Localization/Core/en.json b/src/NzbDrone.Core/Localization/Core/en.json index 8890e6212..7c0408572 100644 --- a/src/NzbDrone.Core/Localization/Core/en.json +++ b/src/NzbDrone.Core/Localization/Core/en.json @@ -416,6 +416,7 @@ "UnableToLoadGeneralSettings": "Unable to load General settings", "UnableToLoadHistory": "Unable to load history", "UnableToLoadIndexerProxies": "Unable To Load Indexer Proxies", + "UnableToLoadIndexers": "Unable to load Indexers", "UnableToLoadNotifications": "Unable to load Notifications", "UnableToLoadTags": "Unable to load Tags", "UnableToLoadUISettings": "Unable to load UI settings",