diff options
author | Bradley Sepos <[email protected]> | 2018-09-04 03:07:51 -0400 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2018-11-02 06:28:53 -0400 |
commit | ca200fae8f4d167a68da05a3f3ad4380734c03e5 (patch) | |
tree | 6217870ad3f2225b3c67fc29d3bb0b5344d6b29c /macosx/HBQueueController.m | |
parent | 2efd759f074b9aa9d59795f7a2169c599030b94f (diff) |
MacGUI: Revise stop encoding dialog.
Closes #1179.
Diffstat (limited to 'macosx/HBQueueController.m')
-rw-r--r-- | macosx/HBQueueController.m | 14 |
1 files 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]; } }]; } |