diff options
-rw-r--r-- | macosx/HBPreviewView.m | 2 | ||||
-rw-r--r-- | macosx/HBQueueController.m | 4 |
2 files changed, 3 insertions, 3 deletions
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]; } |