summaryrefslogtreecommitdiffstats
path: root/macosx
diff options
context:
space:
mode:
authorBradley Sepos <[email protected]>2018-01-28 06:38:48 -0500
committerBradley Sepos <[email protected]>2018-01-28 06:38:48 -0500
commiteb78c4a667f2923393afccd8b68c9f8f9bb07e25 (patch)
treef38194d2cb0947399d9b117c999bbf8622a97122 /macosx
parent21d0e57075cd5b5e33e920c31f9deac625001882 (diff)
MacGUI: Minor revision to notification text.
Capitalize the description and remove app title so more file name characters will fit.
Diffstat (limited to 'macosx')
-rw-r--r--macosx/HBQueueController.m4
1 files 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];
}