diff options
author | Nomis101 <[email protected]> | 2019-09-12 17:20:12 +0200 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2019-09-12 20:37:40 +0200 |
commit | f56543e718ca6aa61bac707be61ee2c3a24ecdf6 (patch) | |
tree | bbc6fa088a295e0d2002eff8eeb8e366e90037a3 | |
parent | da579aecbcb0ea3fe5718f61bea75fdabbe87679 (diff) |
Localization support for FPS PFR and FPS CFR
-rw-r--r-- | macosx/HBJob+UIAdditions.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/HBJob+UIAdditions.m b/macosx/HBJob+UIAdditions.m index 85118083e..ebdf3e374 100644 --- a/macosx/HBJob+UIAdditions.m +++ b/macosx/HBJob+UIAdditions.m @@ -713,11 +713,11 @@ static NSDictionary *shortHeightAttr; } if (self.video.frameRateMode == 0) { - [info appendString:@" FPS PFR"]; + [info appendString:HBKitLocalizedString(@" FPS PFR", @"HBJob -> video short description framerate")]; } else { - [info appendString:@" FPS CFR"]; + [info appendString:HBKitLocalizedString(@" FPS CFR", @"HBJob -> video short description framerate")]; } } |