diff options
author | Damiano Galassi <[email protected]> | 2018-06-09 10:06:52 +0200 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2018-06-09 10:06:52 +0200 |
commit | 041d228b23f622ee86a528f8c667e048503c226e (patch) | |
tree | 31e2a6e0422acd1765c68f78a2209d6014bb186f /macosx/HBVideoController.m | |
parent | 047c78c7946aeba026a259c1a9cad8937975115b (diff) |
MacGui: improve NSLocalizedString comments.
Diffstat (limited to 'macosx/HBVideoController.m')
-rw-r--r-- | macosx/HBVideoController.m | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/macosx/HBVideoController.m b/macosx/HBVideoController.m index a08d87bcc..5e43e3e74 100644 --- a/macosx/HBVideoController.m +++ b/macosx/HBVideoController.m @@ -119,11 +119,11 @@ static void *HBVideoControllerContext = &HBVideoControllerContext; // fFramerateVfrPfrCell if (self.video.frameRate == 0) // We are Same as Source { - [fFramerateVfrPfrCell setTitle:NSLocalizedString(@"Variable Framerate", nil)]; + [fFramerateVfrPfrCell setTitle:NSLocalizedString(@"Variable Framerate", @"Video -> Framerate")]; } else { - [fFramerateVfrPfrCell setTitle:NSLocalizedString(@"Peak Framerate (VFR)", nil)]; + [fFramerateVfrPfrCell setTitle:NSLocalizedString(@"Peak Framerate (VFR)", @"Video -> Framerate")]; } } else if ([keyPath isEqualToString:@"video.quality"]) @@ -264,13 +264,13 @@ static void *HBVideoControllerContext = &HBVideoControllerContext; { fX264UseAdvancedOptionsCheck.hidden = NO; fDividerLine.hidden = YES; - fEncoderOptionsLabel.stringValue = NSLocalizedString(@"Encoder Options:", @""); + fEncoderOptionsLabel.stringValue = NSLocalizedString(@"Encoder Options:", @"Video -> Advanced panel checkbox"); } else { fX264UseAdvancedOptionsCheck.hidden =YES; fDividerLine.hidden = NO; - fEncoderOptionsLabel.stringValue = NSLocalizedString(@"Encoder Options", @""); + fEncoderOptionsLabel.stringValue = NSLocalizedString(@"Encoder Options", @"Video -> Encoder options title"); self.video.advancedOptions = NO; } } |