Fixed: Use Inactive instead of Ended for artists in UI

Fixes #2243
pull/3295/head
Qstick 1 year ago
parent e41c32e38b
commit 2038e8e85d

@ -234,7 +234,7 @@ class ArtistDetails extends Component {
} = this.state; } = this.state;
const continuing = status === 'continuing'; const continuing = status === 'continuing';
const endedString = artistType === 'Person' ? 'Deceased' : 'Ended'; const endedString = artistType === 'Person' ? 'Deceased' : 'Inactive';
let trackFilesCountMessage = translate('TrackFilesCountMessage'); let trackFilesCountMessage = translate('TrackFilesCountMessage');

@ -111,7 +111,7 @@ class ArtistIndexFooter extends PureComponent {
/> />
<DescriptionListItem <DescriptionListItem
title={translate('Ended')} title={translate('Inactive')}
data={ended} data={ended}
/> />

@ -137,7 +137,7 @@ class ArtistIndexBanner extends Component {
status === 'ended' && status === 'ended' &&
<div <div
className={styles.ended} className={styles.ended}
title={translate('Ended')} title={translate('Inactive')}
/> />
} }

@ -130,7 +130,7 @@ class ArtistIndexOverview extends Component {
status === 'ended' && status === 'ended' &&
<div <div
className={styles.ended} className={styles.ended}
title={translate('Ended')} title={translate('Inactive')}
/> />
} }

@ -151,7 +151,7 @@ class ArtistIndexPoster extends Component {
status === 'ended' && status === 'ended' &&
<div <div
className={styles.ended} className={styles.ended}
title={translate('Ended')} title={translate('Inactive')}
/> />
} }

@ -19,7 +19,7 @@ function ArtistStatusCell(props) {
...otherProps ...otherProps
} = props; } = props;
const endedString = artistType === 'Person' ? 'Deceased' : 'Ended'; const endedString = artistType === 'Person' ? 'Deceased' : 'Inactive';
return ( return (
<Component <Component

@ -3,7 +3,7 @@ import FilterBuilderRowValue from './FilterBuilderRowValue';
const protocols = [ const protocols = [
{ id: 'continuing', name: 'Continuing' }, { id: 'continuing', name: 'Continuing' },
{ id: 'ended', name: 'Ended' } { id: 'ended', name: 'Inactive' }
]; ];
function ArtistStatusFilterBuilderRowValue(props) { function ArtistStatusFilterBuilderRowValue(props) {

@ -88,7 +88,7 @@ class AddNewArtistSearchResult extends Component {
const linkProps = isExistingArtist ? { to: `/artist/${foreignArtistId}` } : { onPress: this.onPress }; const linkProps = isExistingArtist ? { to: `/artist/${foreignArtistId}` } : { onPress: this.onPress };
const endedString = artistType === 'Person' ? 'Deceased' : 'Ended'; const endedString = artistType === 'Person' ? 'Deceased' : 'Inactive';
const height = calculateHeight(230, isSmallScreen); const height = calculateHeight(230, isSmallScreen);

@ -352,6 +352,7 @@
"ImportLists": "Import Lists", "ImportLists": "Import Lists",
"ImportListSettings": "General Import List Settings", "ImportListSettings": "General Import List Settings",
"ImportListSpecificSettings": "Import List Specific Settings", "ImportListSpecificSettings": "Import List Specific Settings",
"Inactive": "Inactive",
"IncludeHealthWarningsHelpText": "Include Health Warnings", "IncludeHealthWarningsHelpText": "Include Health Warnings",
"IncludePreferredWhenRenaming": "Include Preferred when Renaming", "IncludePreferredWhenRenaming": "Include Preferred when Renaming",
"IncludeUnknownArtistItemsHelpText": "Show items without a artist in the queue, this could include removed artists, movies or anything else in Lidarr's category", "IncludeUnknownArtistItemsHelpText": "Show items without a artist in the queue, this could include removed artists, movies or anything else in Lidarr's category",

Loading…
Cancel
Save