diff options
author | ritsuka <[email protected]> | 2014-11-16 12:11:03 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2014-11-16 12:11:03 +0000 |
commit | 36893eb4e3ce06ddb97aa0ce6dbc5de37e413a4b (patch) | |
tree | f559cd9b9299aedc1cecc448180ca09c3ae8b707 | |
parent | 1955ce78c755735cb5b46c8a42a28d8b1c5aaab5 (diff) |
MacGui: updated the "add all to queue" alert to say it will use the current preset, not the current settings.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6523 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | macosx/Controller.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/Controller.m b/macosx/Controller.m index 1f3f00b9d..b44b58265 100644 --- a/macosx/Controller.m +++ b/macosx/Controller.m @@ -4189,7 +4189,7 @@ fWorkingCount = 0; defaultButton:@"Cancel" alternateButton:@"Yes, I want to add all titles to the queue" otherButton:nil - informativeTextWithFormat:@"Current settings will be applied to all %ld titles. Are you sure you want to do this?", (long)[fSrcTitlePopUp numberOfItems]]; + informativeTextWithFormat:@"Current preset will be applied to all %ld titles. Are you sure you want to do this?", (long)[fSrcTitlePopUp numberOfItems]]; [alert setAlertStyle:NSCriticalAlertStyle]; [alert beginSheetModalForWindow:fWindow modalDelegate:self didEndSelector:@selector( addAllTitlesToQueueAlertDone:returnCode:contextInfo: ) contextInfo:NULL]; |