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/HBVideo+UIAdditions.m | |
parent | 047c78c7946aeba026a259c1a9cad8937975115b (diff) |
MacGui: improve NSLocalizedString comments.
Diffstat (limited to 'macosx/HBVideo+UIAdditions.m')
-rw-r--r-- | macosx/HBVideo+UIAdditions.m | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/macosx/HBVideo+UIAdditions.m b/macosx/HBVideo+UIAdditions.m index 0c0410b3a..46667a82e 100644 --- a/macosx/HBVideo+UIAdditions.m +++ b/macosx/HBVideo+UIAdditions.m @@ -43,7 +43,7 @@ { NSMutableArray *framerates = [NSMutableArray array]; - [framerates addObject:NSLocalizedString(@"Same as source", @"")]; + [framerates addObject:NSLocalizedString(@"Same as source", @"HBVideo -> frame rates display name")]; for (const hb_rate_t *video_framerate = hb_video_framerate_get_next(NULL); video_framerate != NULL; @@ -265,7 +265,7 @@ } else { - return NSLocalizedString(@"Same as source", @""); + return NSLocalizedString(@"Same as source", @"HBVideo -> frame rates display name"); } } @@ -276,7 +276,7 @@ - (id)reverseTransformedValue:(id)value { - if ([value isEqualTo:NSLocalizedString(@"Same as source", @"")]) + if ([value isEqualTo:NSLocalizedString(@"Same as source", @"HBVideo -> frame rates display name")]) { return @0; } |