From: Bradley Sepos Date: Sun, 28 Jan 2018 11:38:48 +0000 (-0500) Subject: MacGUI: Minor revision to notification text. X-Git-Tag: 1.1.0~44 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eb78c4a667f2923393afccd8b68c9f8f9bb07e25;p=handbrake MacGUI: Minor revision to notification text. Capitalize the description and remove app title so more file name characters will fit. --- diff --git a/macosx/HBQueueController.m b/macosx/HBQueueController.m index f3432da68..db6cfe481 100644 --- a/macosx/HBQueueController.m +++ b/macosx/HBQueueController.m @@ -969,14 +969,14 @@ if (result == HBCoreResultDone) { title = NSLocalizedString(@"Put down that cocktail…", nil); - description = [NSString stringWithFormat:NSLocalizedString(@"your HandBrake encode %@ is done!", nil), + description = [NSString stringWithFormat:NSLocalizedString(@"Your encode %@ is done!", nil), job.outputFileName]; } else { title = NSLocalizedString(@"Encode failed", nil); - description = [NSString stringWithFormat:NSLocalizedString(@"your HandBrake encode %@ couldn't be completed.", nil), + description = [NSString stringWithFormat:NSLocalizedString(@"Your encode %@ couldn't be completed.", nil), job.outputFileName]; }