diff options
Diffstat (limited to 'macosx/HBPicture+UIAdditions.m')
-rw-r--r-- | macosx/HBPicture+UIAdditions.m | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/macosx/HBPicture+UIAdditions.m b/macosx/HBPicture+UIAdditions.m index 23d3e8b0f..369de103b 100644 --- a/macosx/HBPicture+UIAdditions.m +++ b/macosx/HBPicture+UIAdditions.m @@ -59,32 +59,32 @@ { NSString *sizeInfo = @""; - sizeInfo = [NSString stringWithFormat: - @"Source: %dx%d, ", + sizeInfo = [NSString stringWithFormat:HBKitLocalizedString + (@"Source: %dx%d, ", @"HBPicture -> short info"), self.sourceWidth, self.sourceHeight]; if (self.anamorphicMode == HB_ANAMORPHIC_AUTO) { - sizeInfo = [NSString stringWithFormat: - @"%@Output: %dx%d, Anamorphic: %dx%d Auto", + sizeInfo = [NSString stringWithFormat:HBKitLocalizedString + (@"%@Output: %dx%d, Anamorphic: %dx%d Auto", @"HBPicture -> short info"), sizeInfo, self.width, self.height, self.displayWidth, self.height]; } else if (self.anamorphicMode == HB_ANAMORPHIC_LOOSE) // Loose Anamorphic { - sizeInfo = [NSString stringWithFormat: - @"%@Output: %dx%d, Anamorphic: %dx%d Loose", + sizeInfo = [NSString stringWithFormat:HBKitLocalizedString + (@"%@Output: %dx%d, Anamorphic: %dx%d Loose", @"HBPicture -> short info"), sizeInfo, self.width, self.height, self.displayWidth, self.height]; } else if (self.anamorphicMode == HB_ANAMORPHIC_CUSTOM) // Custom Anamorphic { - sizeInfo = [NSString stringWithFormat: - @"%@Output: %dx%d, Anamorphic: %dx%d Custom", + sizeInfo = [NSString stringWithFormat:HBKitLocalizedString + (@"%@Output: %dx%d, Anamorphic: %dx%d Custom", @"HBPicture -> short info"), sizeInfo, self.width, self.height, self.displayWidth, self.height]; } else // No Anamorphic { - sizeInfo = [NSString stringWithFormat: - @"%@Output: %dx%d", + sizeInfo = [NSString stringWithFormat:HBKitLocalizedString + (@"%@Output: %dx%d", @"HBPicture -> short info"), sizeInfo, self.width, self.height]; } |