From: Damiano Galassi Date: Sat, 9 Jun 2018 09:12:21 +0000 (+0200) Subject: MacGui: add a few more comments. X-Git-Tag: 1.2.0~353 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=235f656bbac07caec3f730f47d71b1df79992674;p=handbrake MacGui: add a few more comments. --- diff --git a/macosx/HBPreviewView.m b/macosx/HBPreviewView.m index 705f5c750..ff97ad274 100644 --- a/macosx/HBPreviewView.m +++ b/macosx/HBPreviewView.m @@ -296,7 +296,7 @@ { 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 diff --git a/macosx/HBQueueController.m b/macosx/HBQueueController.m index de91f35f9..fae219c20 100644 --- a/macosx/HBQueueController.m +++ b/macosx/HBQueueController.m @@ -961,14 +961,14 @@ 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]; }