From 315bf6aaadcaf8764a5225aa29b17a7085f43584 Mon Sep 17 00:00:00 2001 From: dynaflash Date: Fri, 26 Sep 2008 14:27:08 +0000 Subject: [PATCH] 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://localhost/HandBrake/trunk@1768 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- macosx/English.lproj/MainMenu.xib | 30 +++++++++++++----------------- macosx/HBQueueController.mm | 6 +++--- 2 files changed, 16 insertions(+), 20 deletions(-) diff --git a/macosx/English.lproj/MainMenu.xib b/macosx/English.lproj/MainMenu.xib index 724a048e..d1c74642 100644 --- a/macosx/English.lproj/MainMenu.xib +++ b/macosx/English.lproj/MainMenu.xib @@ -9,7 +9,6 @@ YES - YES @@ -100,7 +99,7 @@ 1 - + 256 YES @@ -883,6 +882,7 @@ {{10, 25}, {714, 305}} + Video @@ -891,7 +891,7 @@ 2 - + 256 YES @@ -2379,7 +2379,6 @@ {{10, 25}, {714, 305}} - QXVkaW8gJiBTdWJ0aXRsZXM @@ -2646,14 +2645,14 @@ - + 134217728 YES YES YES - + @@ -3184,7 +3183,7 @@ 67239424 131072 - HTTP Optimized MP4 + Web optimized 1211912703 @@ -3200,13 +3199,13 @@ 264 - {{283, 383}, {89, 18}} + {{283, 383}, {102, 18}} YES 67239424 131072 - 64 Bit MP4 + Large file size 1211912703 @@ -3222,13 +3221,13 @@ 264 - {{548, 383}, {141, 18}} + {{541, 383}, {141, 18}} YES 67239424 131072 - Insert iPod Atom + iPod 5G support 1211912703 @@ -4030,7 +4029,7 @@ - + 256 YES @@ -4135,7 +4134,6 @@ {{1, 1}, {247, 506}} - 4 @@ -4163,7 +4161,6 @@ {{4, 31}, {260, 508}} - 18 @@ -4295,7 +4292,6 @@ {270, 550} - NSView NSResponder @@ -11027,10 +11023,10 @@ com.apple.InterfaceBuilder.CocoaPlugin - {{231, 306}, {760, 550}} + {{104, 306}, {760, 550}} com.apple.InterfaceBuilder.CocoaPlugin - {{231, 306}, {760, 550}} + {{104, 306}, {760, 550}} {{65, 541}, {760, 550}} diff --git a/macosx/HBQueueController.mm b/macosx/HBQueueController.mm index f7c7a6f0..26a6a4a1 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) { -- 2.11.0