summaryrefslogtreecommitdiffstats
path: root/macosx/HBTitle.m
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/HBTitle.m')
-rw-r--r--macosx/HBTitle.m3
1 files changed, 2 insertions, 1 deletions
diff --git a/macosx/HBTitle.m b/macosx/HBTitle.m
index 7a34612eb..d060ef427 100644
--- a/macosx/HBTitle.m
+++ b/macosx/HBTitle.m
@@ -150,7 +150,8 @@ extern NSString *keySubTrackType;
[format appendString:@", "];
- [format appendFormat:HBKitLocalizedString(@"%.6g FPS", @"Title short description -> video format"), _hb_title->vrate.num / (double)_hb_title->vrate.den];
+ NSString *fps = [NSString localizedStringWithFormat:HBKitLocalizedString(@"%.6g FPS", @"Title short description -> video format"), _hb_title->vrate.num / (double)_hb_title->vrate.den];
+ [format appendString:fps];
hb_list_t *audioList = _hb_title->list_audio;
int audioCount = hb_list_count(audioList);