|
|
@ -77,27 +77,27 @@ function IndexerInfoModalContent(props) {
|
|
|
|
<DescriptionListItem
|
|
|
|
<DescriptionListItem
|
|
|
|
descriptionClassName={styles.description}
|
|
|
|
descriptionClassName={styles.description}
|
|
|
|
title={translate('SearchTypes')}
|
|
|
|
title={translate('SearchTypes')}
|
|
|
|
data={capabilities.search.length === 0 ? translate('NotSupported') : capabilities.search[0]}
|
|
|
|
data={capabilities.searchParams.length === 0 ? translate('NotSupported') : capabilities.searchParams[0]}
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
<DescriptionListItem
|
|
|
|
<DescriptionListItem
|
|
|
|
descriptionClassName={styles.description}
|
|
|
|
descriptionClassName={styles.description}
|
|
|
|
title={translate('TVSearchTypes')}
|
|
|
|
title={translate('TVSearchTypes')}
|
|
|
|
data={capabilities.tv.length === 0 ? translate('NotSupported') : capabilities.tv.join(', ')}
|
|
|
|
data={capabilities.tvSearchParams.length === 0 ? translate('NotSupported') : capabilities.tvSearchParams.join(', ')}
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
<DescriptionListItem
|
|
|
|
<DescriptionListItem
|
|
|
|
descriptionClassName={styles.description}
|
|
|
|
descriptionClassName={styles.description}
|
|
|
|
title={translate('MovieSearchTypes')}
|
|
|
|
title={translate('MovieSearchTypes')}
|
|
|
|
data={capabilities.movie.length === 0 ? translate('NotSupported') : capabilities.movie.join(', ')}
|
|
|
|
data={capabilities.movieSearchParams.length === 0 ? translate('NotSupported') : capabilities.movieSearchParams.join(', ')}
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
<DescriptionListItem
|
|
|
|
<DescriptionListItem
|
|
|
|
descriptionClassName={styles.description}
|
|
|
|
descriptionClassName={styles.description}
|
|
|
|
title={translate('BookSearchTypes')}
|
|
|
|
title={translate('BookSearchTypes')}
|
|
|
|
data={capabilities.book.length === 0 ? translate('NotSupported') : capabilities.book.join(', ')}
|
|
|
|
data={capabilities.bookSearchParams.length === 0 ? translate('NotSupported') : capabilities.bookSearchParams.join(', ')}
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
<DescriptionListItem
|
|
|
|
<DescriptionListItem
|
|
|
|
descriptionClassName={styles.description}
|
|
|
|
descriptionClassName={styles.description}
|
|
|
|
title={translate('MusicSearchTypes')}
|
|
|
|
title={translate('MusicSearchTypes')}
|
|
|
|
data={capabilities.music.length === 0 ? translate('NotSupported') : capabilities.music.join(', ')}
|
|
|
|
data={capabilities.musicSearchParams.length === 0 ? translate('NotSupported') : capabilities.musicSearchParams.join(', ')}
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
</DescriptionList>
|
|
|
|
</DescriptionList>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|