diff options
author | Damiano Galassi <[email protected]> | 2017-11-25 12:10:49 +0100 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2017-11-25 12:10:49 +0100 |
commit | a4e41b985dc75693271cab2f7ce3dbfb23922816 (patch) | |
tree | 559189e28064496f4d9a5c0733894b47ca8ec80a /macosx/HBPicture+UIAdditions.m | |
parent | 3dc03746790c5c0167de9b9be7db5a8bdb7a37c4 (diff) |
MacGui: fix some layout issues on older version of macOS.
Diffstat (limited to 'macosx/HBPicture+UIAdditions.m')
-rw-r--r-- | macosx/HBPicture+UIAdditions.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/HBPicture+UIAdditions.m b/macosx/HBPicture+UIAdditions.m index be4140b56..21b92d851 100644 --- a/macosx/HBPicture+UIAdditions.m +++ b/macosx/HBPicture+UIAdditions.m @@ -91,7 +91,7 @@ - (NSString *)shortInfo { - return [NSString stringWithFormat:@"%dx%d storage, %dx%d display", self.width, self.height, self.displayWidth, self.height]; + return [NSString stringWithFormat:NSLocalizedString(@"%dx%d Storage, %dx%d Display", nil), self.width, self.height, self.displayWidth, self.height]; } - (NSString *)sourceInfo |