diff options
author | dynaflash <[email protected]> | 2008-09-26 14:27:08 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2008-09-26 14:27:08 +0000 |
commit | 6a2cf3083eb45f82ffa2b6d7b7ea16e8775e732f (patch) | |
tree | a89b387427e7a8e26dc5a72be23307e7176ac2b9 /macosx/HBQueueController.mm | |
parent | e6e01081163b49d38116b4d657afe4f1c5bd1c31 (diff) |
MacGui: Update labels for the mp4 options in both the main window and the queue readout.
- "64 Bit MP4" -> "Large file size"
- "HTTP Optimized MP4" -> "Web optimized"
- "Insert iPod Atom" -> "iPod 5G support"
Less technical and hopefully more descriptive to the users (one of those rare instances where jbrjake prefers to be less technical) :)
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1768 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBQueueController.mm')
-rw-r--r-- | macosx/HBQueueController.mm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/macosx/HBQueueController.mm b/macosx/HBQueueController.mm index f7c7a6f0b..26a6a4a19 100644 --- a/macosx/HBQueueController.mm +++ b/macosx/HBQueueController.mm @@ -962,18 +962,18 @@ if (fWorkingCount > 0) if( [[item objectForKey:@"Mp4LargeFile"] intValue] == 1) { mp4OptsPresent = YES; - MP4Opts = [MP4Opts stringByAppendingString:@" - 64 Bit"]; + MP4Opts = [MP4Opts stringByAppendingString:@" - Large file size"]; } if( [[item objectForKey:@"Mp4HttpOptimize"] intValue] == 1) { mp4OptsPresent = YES; - MP4Opts = [MP4Opts stringByAppendingString:@" - Http Optimized"]; + MP4Opts = [MP4Opts stringByAppendingString:@" - Web optimized"]; } if( [[item objectForKey:@"Mp4iPodCompatible"] intValue] == 1) { mp4OptsPresent = YES; - MP4Opts = [MP4Opts stringByAppendingString:@" - iPod Atom "]; + MP4Opts = [MP4Opts stringByAppendingString:@" - iPod 5G support "]; } if (mp4OptsPresent == YES) { |