Add translation for missing movies count from collection

This commit is contained in:
Bogdan 2025-06-04 18:54:09 +03:00
parent 15c34a61de
commit 73b99d0be2
2 changed files with 2 additions and 1 deletions

View file

@ -196,7 +196,7 @@ class CollectionOverview extends Component {
size={13} size={13}
/> />
<span className={styles.status}> <span className={styles.status}>
{`${missingMovies} missing movie(s)`} {translate('CountMissingMoviesFromLibrary', { count: missingMovies })}
</span> </span>
</Label> </Label>

View file

@ -260,6 +260,7 @@
"CountDownloadClientsSelected": "{count} download client(s) selected", "CountDownloadClientsSelected": "{count} download client(s) selected",
"CountImportListsSelected": "{count} import list(s) selected", "CountImportListsSelected": "{count} import list(s) selected",
"CountIndexersSelected": "{count} indexer(s) selected", "CountIndexersSelected": "{count} indexer(s) selected",
"CountMissingMoviesFromLibrary": "{count} missing movie(s) from library",
"CountVotes": "{votes} votes", "CountVotes": "{votes} votes",
"CreateEmptyMovieFolders": "Create empty movie folders", "CreateEmptyMovieFolders": "Create empty movie folders",
"CreateEmptyMovieFoldersHelpText": "Create missing movie folders during disk scan", "CreateEmptyMovieFoldersHelpText": "Create missing movie folders during disk scan",