diff options
author | dynaflash <[email protected]> | 2010-09-16 14:48:03 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2010-09-16 14:48:03 +0000 |
commit | 895432f2ec008d1b290aaec0101fdb8d6e719ef6 (patch) | |
tree | 9f4efd524baf8b8c8502ba520b4f56238bb800f3 /macosx/Controller.m | |
parent | a1ef8c9369edd85a1194e00dfba9e996f3a30e05 (diff) |
MacGui: Fix two line status readout in the main window originally implemented in svn rev 3483 which somehow got borked in svn rev 3532.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3535 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/Controller.m')
-rw-r--r-- | macosx/Controller.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/Controller.m b/macosx/Controller.m index 371949b1d..6aea1507d 100644 --- a/macosx/Controller.m +++ b/macosx/Controller.m @@ -2093,11 +2093,11 @@ fWorkingCount = 0; NSMutableString * string; if (fPendingCount == 1) { - string = [NSMutableString stringWithFormat: NSLocalizedString( @"%d encode pending in queue", @"" ), fPendingCount]; + string = [NSMutableString stringWithFormat: NSLocalizedString( @"%d encode pending", @"" ), fPendingCount]; } else { - string = [NSMutableString stringWithFormat: NSLocalizedString( @"%d encode(s) pending in queue", @"" ), fPendingCount]; + string = [NSMutableString stringWithFormat: NSLocalizedString( @"%d encode(s) pending", @"" ), fPendingCount]; } [fQueueStatus setStringValue:string]; } |