From 99123be93691d7277485d35c37d8234dc32773f8 Mon Sep 17 00:00:00 2001 From: Aenima99x Date: Tue, 17 Jan 2017 09:00:56 -0800 Subject: [PATCH] Fix: Issue #91 - "Search All Missing" wording --- src/UI/Wanted/Missing/MissingLayout.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/UI/Wanted/Missing/MissingLayout.js b/src/UI/Wanted/Missing/MissingLayout.js index e6a8ce33d..96096e780 100644 --- a/src/UI/Wanted/Missing/MissingLayout.js +++ b/src/UI/Wanted/Missing/MissingLayout.js @@ -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); } -}); \ No newline at end of file +});