New: App Profile help text on addition and edit of Indexers and other misc translations

This commit is contained in:
Robin Dadswell
2021-06-05 21:58:53 +01:00
committed by GitHub
parent 8b0a8e82b5
commit b3fb640969
2 changed files with 9 additions and 2 deletions

View File

@@ -99,7 +99,7 @@ function EditIndexerModalContent(props) {
<FormInputGroup
type={inputTypes.CHECK}
name="redirect"
helpText={'Redirect incoming download requests for indexer instead of Proxying using Prowlarr'}
helpText={translate('RedirectHelpText')}
isDisabled={!supportsRedirect.value}
{...redirect}
onChange={onInputChange}
@@ -113,6 +113,7 @@ function EditIndexerModalContent(props) {
type={inputTypes.APP_PROFILE_SELECT}
name="appProfileId"
{...appProfileId}
helpText={translate('AppProfileSelectHelpText')}
onChange={onInputChange}
/>
</FormGroup>