From eb78c4a667f2923393afccd8b68c9f8f9bb07e25 Mon Sep 17 00:00:00 2001 From: Bradley Sepos Date: Sun, 28 Jan 2018 06:38:48 -0500 Subject: [PATCH] MacGUI: Minor revision to notification text. Capitalize the description and remove app title so more file name characters will fit. --- macosx/HBQueueController.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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]; } -- 2.40.0