{
return [NSString stringWithFormat:NSLocalizedString(@"Preview Image, Size: %zu x %zu, Scale: %.0f%%", @"Preview -> accessibility label"), CGImageGetWidth(self.image), CGImageGetHeight(self.image), self.scale * 100];
}
- return NSLocalizedString(@"No image", nil);
+ return NSLocalizedString(@"No image", @"Preview -> accessibility label");
}
@end
NSString *description;
if (result == HBCoreResultDone)
{
- title = NSLocalizedString(@"Put down that cocktail…", nil);
+ title = NSLocalizedString(@"Put down that cocktail…", @"Queue notification alert message");
description = [NSString stringWithFormat:NSLocalizedString(@"Your encode %@ is done!", @"Queue done notification message"),
job.outputFileName];
}
else
{
- title = NSLocalizedString(@"Encode failed", nil);
+ title = NSLocalizedString(@"Encode failed", @"Queue done notification failed message");
description = [NSString stringWithFormat:NSLocalizedString(@"Your encode %@ couldn't be completed.", @"Queue done notification message"),
job.outputFileName];
}