summaryrefslogtreecommitdiffstats
path: root/macosx
diff options
context:
space:
mode:
authorDamiano Galassi <[email protected]>2016-07-21 10:45:29 +0200
committerDamiano Galassi <[email protected]>2016-07-21 10:45:29 +0200
commit15d868aa76cf3a01dec1837bccb840276037b4bc (patch)
tree86772cd1b7af9d73ac0b5078178c8f8969e4fd8a /macosx
parentdb9ae28991fe8b10ee624ded5a94509cf9fa7174 (diff)
MacGui: made the framerate radio button strings localizable.
Diffstat (limited to 'macosx')
-rw-r--r--macosx/HBVideoController.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/HBVideoController.m b/macosx/HBVideoController.m
index a3ed3337c..ef51a5a68 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:@"Variable Framerate"];
+ [fFramerateVfrPfrCell setTitle:NSLocalizedString(@"Variable Framerate", nil)];
}
else
{
- [fFramerateVfrPfrCell setTitle:@"Peak Framerate (VFR)"];
+ [fFramerateVfrPfrCell setTitle:NSLocalizedString(@"Peak Framerate (VFR)", nil)];
}
}
else if ([keyPath isEqualToString:@"video.unparseOptions"])