@ -106,14 +109,18 @@ class DeleteBookModalContent extends Component {
{
!addImportListExclusion&&
<divclassName={styles.deleteFilesMessage}>
<div>Ifyoudon't add an import list exclusion and the author has a metadata profile other than 'None'thenthisbookmaybere-addedduringthenextauthorrefresh.</div>
@ -179,7 +180,7 @@ class InteractiveSearchRow extends Component {
kind={kinds.DANGER}
/>
}
title="Release Rejected"
title={translate('ReleaseRejected')}
body={
<ul>
{
@ -213,9 +214,9 @@ class InteractiveSearchRow extends Component {
<ConfirmModal
isOpen={this.state.isConfirmGrabModalOpen}
kind={kinds.WARNING}
title="Grab Release"
message={`Readarr was unable to determine which author and book this release was for. Readarr may be unable to automatically import this release. Do you want to grab '${title}'?`}
@ -17,15 +18,17 @@ function AnalyticSettings(props) {
}=settings;
return(
<FieldSetlegend="Analytics">
<FieldSetlegend={translate('Analytics')}>
<FormGroupsize={sizes.MEDIUM}>
<FormLabel>SendAnonymousUsageData</FormLabel>
<FormLabel>
{translate('SendAnonymousUsageData')}
</FormLabel>
<FormInputGroup
type={inputTypes.CHECK}
name="analyticsEnabled"
helpText="Send anonymous usage and error information to Readarr's servers. This includes information on your browser, which Readarr WebUI pages you use, error reporting as well as OS and runtime version. We will use this information to prioritize features and bug fixes."
@ -110,7 +111,7 @@ class GeneralSettings extends Component {
}=this.props;
return(
<PageContenttitle="General Settings">
<PageContenttitle={translate('GeneralSettings')}>
<SettingsToolbarConnector
{...otherProps}
/>
@ -123,7 +124,9 @@ class GeneralSettings extends Component {
{
!isFetching&&error&&
<div>UnabletoloadGeneralsettings</div>
<div>
{translate('UnableToLoadGeneralSettings')}
</div>
}
{
@ -183,12 +186,12 @@ class GeneralSettings extends Component {
<ConfirmModal
isOpen={this.state.isRestartRequiredModalOpen}
kind={kinds.DANGER}
title="Restart Readarr"
title={translate('RestartReadarr')}
message={
`Readarr requires a restart to apply changes, do you want to restart now? ${isWindowsService?'Depending which user is running the Readarr service you may need to restart Readarr as admin once before the service will start automatically.':''}`