diff options
author | Bradley Sepos <[email protected]> | 2017-07-26 17:20:25 -0400 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2017-07-26 17:20:25 -0400 |
commit | a0e28aa2a32e41029e7373ef98d9a24fea8e8ce9 (patch) | |
tree | a01d8f5dd5b970317efdd7274bbcd8549d10b794 /macosx | |
parent | 712b5e726c60397f354933285368f83fe3a21b4b (diff) |
MacGUI: Capitalize Web Optimized and iPod 5G Support.
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/English.lproj/MainWindow.xib | 4 | ||||
-rw-r--r-- | macosx/HBJob+UIAdditions.m | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/macosx/English.lproj/MainWindow.xib b/macosx/English.lproj/MainWindow.xib index 73bc06091..05d5cacf9 100644 --- a/macosx/English.lproj/MainWindow.xib +++ b/macosx/English.lproj/MainWindow.xib @@ -432,7 +432,7 @@ <rect key="frame" x="269" y="401" width="102" height="18"/> <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> <string key="toolTip">Optimize MP4 for progressive download. After encoding, data is reorganized and rewritten to allow immediate playback over a network, without needing to download the entire file.</string> - <buttonCell key="cell" type="check" title="Web optimized" bezelStyle="regularSquare" imagePosition="left" alignment="left" controlSize="small" inset="2" id="4927"> + <buttonCell key="cell" type="check" title="Web Optimized" bezelStyle="regularSquare" imagePosition="left" alignment="left" controlSize="small" inset="2" id="4927"> <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/> <font key="font" metaFont="smallSystem"/> </buttonCell> @@ -449,7 +449,7 @@ <rect key="frame" x="496" y="401" width="126" height="18"/> <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/> <string key="toolTip">Add a special MP4 marker to allow playback on vintage iPod 5th Generation devices circa 2006. Other settings may affect compatibility.</string> - <buttonCell key="cell" type="check" title="iPod 5G support" bezelStyle="regularSquare" imagePosition="left" alignment="left" controlSize="small" inset="2" id="4968"> + <buttonCell key="cell" type="check" title="iPod 5G Support" bezelStyle="regularSquare" imagePosition="left" alignment="left" controlSize="small" inset="2" id="4968"> <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/> <font key="font" metaFont="smallSystem"/> </buttonCell> diff --git a/macosx/HBJob+UIAdditions.m b/macosx/HBJob+UIAdditions.m index a3a3322cf..e3eaea0ac 100644 --- a/macosx/HBJob+UIAdditions.m +++ b/macosx/HBJob+UIAdditions.m @@ -198,12 +198,12 @@ static NSDictionary *shortHeightAttr; if ((self.container & HB_MUX_MASK_MP4) && self.mp4HttpOptimize) { - [options appendString:@", Web optimized"]; + [options appendString:@", Web Optimized"]; } if ((self.container & HB_MUX_MASK_MP4) && self.mp4iPodCompatible) { - [options appendString:@", iPod 5G support"]; + [options appendString:@", iPod 5G Support"]; } if ([options hasPrefix:@", "]) |