From ca200fae8f4d167a68da05a3f3ad4380734c03e5 Mon Sep 17 00:00:00 2001 From: Bradley Sepos Date: Tue, 4 Sep 2018 03:07:51 -0400 Subject: [PATCH] MacGUI: Revise stop encoding dialog. Closes #1179. --- macosx/HBQueueController.m | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/macosx/HBQueueController.m b/macosx/HBQueueController.m index 83bb702f0..fc2e5108f 100644 --- a/macosx/HBQueueController.m +++ b/macosx/HBQueueController.m @@ -1276,25 +1276,25 @@ static void *HBControllerQueueCoreContext = &HBControllerQueueCoreContext; NSAlert *alert = [[NSAlert alloc] init]; [alert setMessageText:NSLocalizedString(@"You are currently encoding. What would you like to do?", @"Queue Alert -> cancel rip message")]; - [alert setInformativeText:NSLocalizedString(@"Your encode will be canceled if you don't continue encoding.", @"Queue Alert -> cancel rip informative text")]; + [alert setInformativeText:NSLocalizedString(@"Select Continue Encoding to dismiss this dialog without making changes.", @"Queue Alert -> cancel rip informative text")]; [alert addButtonWithTitle:NSLocalizedString(@"Continue Encoding", @"Queue Alert -> cancel rip first button")]; - [alert addButtonWithTitle:NSLocalizedString(@"Cancel Current and Stop", @"Queue Alert -> cancel rip second button")]; - [alert addButtonWithTitle:NSLocalizedString(@"Cancel Current and Continue", @"Queue Alert -> cancel rip third button")]; - [alert addButtonWithTitle:NSLocalizedString(@"Finish Current and Stop", @"Queue Alert -> cancel rip fourth button")]; + [alert addButtonWithTitle:NSLocalizedString(@"Skip Current Job", @"Queue Alert -> cancel rip second button")]; + [alert addButtonWithTitle:NSLocalizedString(@"Stop After Current Job", @"Queue Alert -> cancel rip third button")]; + [alert addButtonWithTitle:NSLocalizedString(@"Stop All", @"Queue Alert -> cancel rip fourth button")]; [alert setAlertStyle:NSAlertStyleCritical]; [alert beginSheetModalForWindow:window completionHandler:^(NSModalResponse returnCode) { if (returnCode == NSAlertSecondButtonReturn) { - [self cancelCurrentJobAndStop]; + [self cancelCurrentJobAndContinue]; } else if (returnCode == NSAlertThirdButtonReturn) { - [self cancelCurrentJobAndContinue]; + [self finishCurrentAndStop]; } else if (returnCode == NSAlertThirdButtonReturn + 1) { - [self finishCurrentAndStop]; + [self cancelCurrentJobAndStop]; } }]; } -- 2.40.0