Fixed: Use Inactive instead of Ended for artists in UI

Fixes #2243
This commit is contained in:
Qstick 2023-01-15 01:19:53 -06:00
commit 2038e8e85d
9 changed files with 9 additions and 8 deletions

View file

@ -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');

View file

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

View file

@ -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')}
/> />
} }

View file

@ -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')}
/> />
} }

View file

@ -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')}
/> />
} }

View file

@ -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

View file

@ -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) {

View file

@ -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);

View file

@ -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",