@ -106,14 +109,18 @@ class DeleteAlbumModalContent extends Component {
{
!addImportListExclusion&&
<divclassName={styles.deleteFilesMessage}>
<div>Ifyoudon't add an import list exclusion and the artist has a metadata profile other than 'None'thenthisalbummaybere-addedduringthenextartistrefresh.</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={`Lidarr was unable to determine which artist and album this release was for. Lidarr 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 Lidarr's servers. This includes information on your browser, which Lidarr 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 Lidarr"
title={translate('RestartLidarr')}
message={
`Lidarr requires a restart to apply changes, do you want to restart now? ${isWindowsService?'Depending which user is running the Lidarr service you may need to restart Lidarr as admin once before the service will start automatically.':''}`