Merge pull request #307 from aenima99x/aenima99x-issue91

Fix: Issue #91 - "Search All Missing" wording
This commit is contained in:
Devin Buhl 2017-01-17 13:48:30 -05:00 committed by GitHub
commit f1fa1553cf
1 changed files with 3 additions and 3 deletions

View File

@ -206,8 +206,8 @@ module.exports = Marionette.Layout.extend({
});
},
_searchMissing : function() {
if (window.confirm('Are you sure you want to search for {0} missing episodes? '.format(this.collection.state.totalRecords) +
'One API request to each indexer will be used for each episode. ' + 'This cannot be stopped once started.')) {
if (window.confirm('Are you sure you want to search for {0} missing movies? '.format(this.collection.state.totalRecords) +
'One API request to each indexer will be used for each movie. ' + 'This cannot be stopped once started.')) {
CommandController.Execute('missingEpisodeSearch', { name : 'missingEpisodeSearch' });
}
},
@ -237,4 +237,4 @@ module.exports = Marionette.Layout.extend({
_manualImport : function () {
vent.trigger(vent.Commands.ShowManualImport);
}
});
});