mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
Fixed: Rearranged order of Root Folder setup page to move all Calibre Content Server options to the bottom, and moved the hover-over text to translate.
This commit is contained in:
@@ -111,7 +111,88 @@ function EditRootFolderModalContent(props) {
|
|||||||
|
|
||||||
<FormGroup>
|
<FormGroup>
|
||||||
<FormLabel>
|
<FormLabel>
|
||||||
Use Calibre
|
Monitor
|
||||||
|
|
||||||
|
<Popover
|
||||||
|
anchor={
|
||||||
|
<Icon
|
||||||
|
className={styles.labelIcon}
|
||||||
|
name={icons.INFO}
|
||||||
|
/>
|
||||||
|
}
|
||||||
|
title={translate('MonitoringOptions')}
|
||||||
|
body={<AuthorMonitoringOptionsPopoverContent />}
|
||||||
|
position={tooltipPositions.RIGHT}
|
||||||
|
/>
|
||||||
|
</FormLabel>
|
||||||
|
|
||||||
|
<FormInputGroup
|
||||||
|
type={inputTypes.MONITOR_BOOKS_SELECT}
|
||||||
|
name="defaultMonitorOption"
|
||||||
|
onChange={onInputChange}
|
||||||
|
{...defaultMonitorOption}
|
||||||
|
helpText={translate('DefaultMonitorOptionHelpText')}
|
||||||
|
/>
|
||||||
|
|
||||||
|
</FormGroup>
|
||||||
|
|
||||||
|
<FormGroup>
|
||||||
|
<FormLabel>
|
||||||
|
{translate('QualityProfile')}
|
||||||
|
</FormLabel>
|
||||||
|
|
||||||
|
<FormInputGroup
|
||||||
|
type={inputTypes.QUALITY_PROFILE_SELECT}
|
||||||
|
name="defaultQualityProfileId"
|
||||||
|
helpText={translate('DefaultQualityProfileIdHelpText')}
|
||||||
|
{...defaultQualityProfileId}
|
||||||
|
onChange={onInputChange}
|
||||||
|
/>
|
||||||
|
</FormGroup>
|
||||||
|
|
||||||
|
<FormGroup className={showMetadataProfile ? undefined : styles.hideMetadataProfile}>
|
||||||
|
<FormLabel>
|
||||||
|
Metadata Profile
|
||||||
|
<Popover
|
||||||
|
anchor={
|
||||||
|
<Icon
|
||||||
|
className={styles.labelIcon}
|
||||||
|
name={icons.INFO}
|
||||||
|
/>
|
||||||
|
}
|
||||||
|
title={translate('MetadataProfile')}
|
||||||
|
body={<AuthorMetadataProfilePopoverContent />}
|
||||||
|
position={tooltipPositions.RIGHT}
|
||||||
|
/>
|
||||||
|
</FormLabel>
|
||||||
|
|
||||||
|
<FormInputGroup
|
||||||
|
type={inputTypes.METADATA_PROFILE_SELECT}
|
||||||
|
name="defaultMetadataProfileId"
|
||||||
|
helpText={translate('DefaultMetadataProfileIdHelpText')}
|
||||||
|
{...defaultMetadataProfileId}
|
||||||
|
includeNone={true}
|
||||||
|
onChange={onInputChange}
|
||||||
|
/>
|
||||||
|
</FormGroup>
|
||||||
|
|
||||||
|
<FormGroup>
|
||||||
|
<FormLabel>
|
||||||
|
{translate('DefaultReadarrTags')}
|
||||||
|
</FormLabel>
|
||||||
|
|
||||||
|
<FormInputGroup
|
||||||
|
type={inputTypes.TAG}
|
||||||
|
name="defaultTags"
|
||||||
|
helpText={translate('DefaultTagsHelpText')}
|
||||||
|
{...defaultTags}
|
||||||
|
onChange={onInputChange}
|
||||||
|
/>
|
||||||
|
</FormGroup>
|
||||||
|
|
||||||
|
<FormGroup>
|
||||||
|
<FormLabel>
|
||||||
|
Use Calibre Content Server
|
||||||
<Popover
|
<Popover
|
||||||
anchor={
|
anchor={
|
||||||
<Icon
|
<Icon
|
||||||
@@ -120,7 +201,7 @@ function EditRootFolderModalContent(props) {
|
|||||||
/>
|
/>
|
||||||
}
|
}
|
||||||
title={translate('CalibreContentServer')}
|
title={translate('CalibreContentServer')}
|
||||||
body={'Using a Calibre content server allows Readarr to add books to your Calibre library and trigger conversions between formats'}
|
body={translate('CalibreContentServerText')}
|
||||||
position={tooltipPositions.RIGHT}
|
position={tooltipPositions.RIGHT}
|
||||||
/>
|
/>
|
||||||
</FormLabel>
|
</FormLabel>
|
||||||
@@ -293,87 +374,6 @@ function EditRootFolderModalContent(props) {
|
|||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
|
|
||||||
<FormGroup>
|
|
||||||
<FormLabel>
|
|
||||||
Monitor
|
|
||||||
|
|
||||||
<Popover
|
|
||||||
anchor={
|
|
||||||
<Icon
|
|
||||||
className={styles.labelIcon}
|
|
||||||
name={icons.INFO}
|
|
||||||
/>
|
|
||||||
}
|
|
||||||
title={translate('MonitoringOptions')}
|
|
||||||
body={<AuthorMonitoringOptionsPopoverContent />}
|
|
||||||
position={tooltipPositions.RIGHT}
|
|
||||||
/>
|
|
||||||
</FormLabel>
|
|
||||||
|
|
||||||
<FormInputGroup
|
|
||||||
type={inputTypes.MONITOR_BOOKS_SELECT}
|
|
||||||
name="defaultMonitorOption"
|
|
||||||
onChange={onInputChange}
|
|
||||||
{...defaultMonitorOption}
|
|
||||||
helpText={translate('DefaultMonitorOptionHelpText')}
|
|
||||||
/>
|
|
||||||
|
|
||||||
</FormGroup>
|
|
||||||
|
|
||||||
<FormGroup>
|
|
||||||
<FormLabel>
|
|
||||||
{translate('QualityProfile')}
|
|
||||||
</FormLabel>
|
|
||||||
|
|
||||||
<FormInputGroup
|
|
||||||
type={inputTypes.QUALITY_PROFILE_SELECT}
|
|
||||||
name="defaultQualityProfileId"
|
|
||||||
helpText={translate('DefaultQualityProfileIdHelpText')}
|
|
||||||
{...defaultQualityProfileId}
|
|
||||||
onChange={onInputChange}
|
|
||||||
/>
|
|
||||||
</FormGroup>
|
|
||||||
|
|
||||||
<FormGroup className={showMetadataProfile ? undefined : styles.hideMetadataProfile}>
|
|
||||||
<FormLabel>
|
|
||||||
Metadata Profile
|
|
||||||
<Popover
|
|
||||||
anchor={
|
|
||||||
<Icon
|
|
||||||
className={styles.labelIcon}
|
|
||||||
name={icons.INFO}
|
|
||||||
/>
|
|
||||||
}
|
|
||||||
title={translate('MetadataProfile')}
|
|
||||||
body={<AuthorMetadataProfilePopoverContent />}
|
|
||||||
position={tooltipPositions.RIGHT}
|
|
||||||
/>
|
|
||||||
</FormLabel>
|
|
||||||
|
|
||||||
<FormInputGroup
|
|
||||||
type={inputTypes.METADATA_PROFILE_SELECT}
|
|
||||||
name="defaultMetadataProfileId"
|
|
||||||
helpText={translate('DefaultMetadataProfileIdHelpText')}
|
|
||||||
{...defaultMetadataProfileId}
|
|
||||||
includeNone={true}
|
|
||||||
onChange={onInputChange}
|
|
||||||
/>
|
|
||||||
</FormGroup>
|
|
||||||
|
|
||||||
<FormGroup>
|
|
||||||
<FormLabel>
|
|
||||||
{translate('DefaultReadarrTags')}
|
|
||||||
</FormLabel>
|
|
||||||
|
|
||||||
<FormInputGroup
|
|
||||||
type={inputTypes.TAG}
|
|
||||||
name="defaultTags"
|
|
||||||
helpText={translate('DefaultTagsHelpText')}
|
|
||||||
{...defaultTags}
|
|
||||||
onChange={onInputChange}
|
|
||||||
/>
|
|
||||||
</FormGroup>
|
|
||||||
|
|
||||||
</Form>
|
</Form>
|
||||||
}
|
}
|
||||||
</ModalBody>
|
</ModalBody>
|
||||||
|
|||||||
@@ -84,7 +84,8 @@
|
|||||||
"BypassProxyForLocalAddresses": "Bypass Proxy for Local Addresses",
|
"BypassProxyForLocalAddresses": "Bypass Proxy for Local Addresses",
|
||||||
"Calendar": "Calendar",
|
"Calendar": "Calendar",
|
||||||
"CalendarWeekColumnHeaderHelpText": "Shown above each column when week is the active view",
|
"CalendarWeekColumnHeaderHelpText": "Shown above each column when week is the active view",
|
||||||
"CalibreContentServer": "Calibre content server",
|
"CalibreContentServer": "Calibre Content Server",
|
||||||
|
"CalibreContentServerText": "Using a Calibre Content Server (not Calibre Web) allows Readarr to add books to your Calibre library and trigger conversions between formats",
|
||||||
"CalibreHost": "Calibre Host",
|
"CalibreHost": "Calibre Host",
|
||||||
"CalibreLibrary": "Calibre Library",
|
"CalibreLibrary": "Calibre Library",
|
||||||
"CalibreMetadata": "Calibre Metadata",
|
"CalibreMetadata": "Calibre Metadata",
|
||||||
@@ -300,7 +301,7 @@
|
|||||||
"IndexerSettings": "Indexer Settings",
|
"IndexerSettings": "Indexer Settings",
|
||||||
"Interval": "Interval",
|
"Interval": "Interval",
|
||||||
"ISBN": "ISBN",
|
"ISBN": "ISBN",
|
||||||
"IsCalibreLibraryHelpText": "Use Calibre content server to manipulate library",
|
"IsCalibreLibraryHelpText": "Use Calibre Content Server to manipulate library",
|
||||||
"IsCutoffCutoff": "Cutoff",
|
"IsCutoffCutoff": "Cutoff",
|
||||||
"IsCutoffUpgradeUntilThisQualityIsMetOrExceeded": "Upgrade until this quality is met or exceeded",
|
"IsCutoffUpgradeUntilThisQualityIsMetOrExceeded": "Upgrade until this quality is met or exceeded",
|
||||||
"IsExpandedHideBooks": "Hide books",
|
"IsExpandedHideBooks": "Hide books",
|
||||||
|
|||||||
Reference in New Issue
Block a user