mirror of
https://github.com/lidarr/Lidarr
synced 2025-01-03 05:25:10 +00:00
Fix translate
call in AddNewItem
This commit is contained in:
parent
eb9f56e1eb
commit
49f4951e65
1 changed files with 1 additions and 1 deletions
|
@ -167,7 +167,7 @@ class AddNewItem extends Component {
|
|||
!isFetching && !error && !items.length && !!term &&
|
||||
<div className={styles.message}>
|
||||
<div className={styles.noResults}>
|
||||
{translate('CouldntFindAnyResultsForTerm'[term])}
|
||||
{translate('CouldntFindAnyResultsForTerm', [term])}
|
||||
</div>
|
||||
<div>
|
||||
You can also search using the
|
||||
|
|
Loading…
Reference in a new issue