Translation update, updating inline div tags and placeHolder attributes

This commit is contained in:
nitsua
2020-09-05 14:46:39 -04:00
committed by Qstick
parent 914d8f9937
commit f286f99bb6
53 changed files with 313 additions and 96 deletions
@@ -43,7 +43,9 @@ class AddIndexerModalContent extends Component {
{
!isSchemaFetching && !!schemaError &&
<div>Unable to add a new indexer, please try again.</div>
<div>
{translate('UnableToAddANewIndexerPleaseTryAgain')}
</div>
}
{
@@ -51,8 +53,12 @@ class AddIndexerModalContent extends Component {
<div>
<Alert kind={kinds.INFO}>
<div>Radarr supports any indexer that uses the Newznab standard, as well as other indexers listed below.</div>
<div>For more information on the individual indexers, click on the info buttons.</div>
<div>
{translate('RadarrSupportsAnyIndexer')}
</div>
<div>
{translate('ForMoreInformationOnTheIndividualIndexers')}
</div>
</Alert>
<FieldSet legend={translate('Usenet')}>
@@ -60,7 +60,9 @@ function EditIndexerModalContent(props) {
{
!isFetching && !!error &&
<div>Unable to add a new indexer, please try again.</div>
<div>
{translate('UnableToAddANewIndexerPleaseTryAgain')}
</div>
}
{
@@ -28,7 +28,9 @@ function IndexerOptions(props) {
{
!isFetching && error &&
<div>Unable to load indexer options</div>
<div>
{translate('UnableToLoadIndexerOptions')}
</div>
}
{
@@ -51,7 +51,7 @@ function EditRestrictionModalContent(props) {
name="required"
helpText={translate('RequiredHelpText')}
kind={kinds.SUCCESS}
placeholder="Add new restriction"
placeholder={translate('RequiredPlaceHolder')}
{...required}
onChange={onInputChange}
/>
@@ -65,7 +65,7 @@ function EditRestrictionModalContent(props) {
name="ignored"
helpText={translate('IgnoredHelpText')}
kind={kinds.DANGER}
placeholder="Add new restriction"
placeholder={translate('IgnoredPlaceHolder')}
{...ignored}
onChange={onInputChange}
/>