diff options
author | Damiano Galassi <[email protected]> | 2018-06-09 11:12:21 +0200 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2018-06-09 11:12:21 +0200 |
commit | 235f656bbac07caec3f730f47d71b1df79992674 (patch) | |
tree | 54845370c66f3a9035913fc9d3bed5edb5f4049b /macosx | |
parent | a9977ba65de8c671924d60cdd7abb2597032cd5e (diff) |
MacGui: add a few more comments.
Diffstat (limited to 'macosx')
-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]; } |