From 78c1745c3653c31b376cd3f020c218afac3ab88a Mon Sep 17 00:00:00 2001 From: Mitchell Livingston Date: Sat, 10 Jul 2010 13:33:08 +0000 Subject: [PATCH] Change "Total {down/up}load rate:" to "Global {down/up}load limit:" --- macosx/Controller.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/macosx/Controller.m b/macosx/Controller.m index e49a6818d..0cc1b3a12 100644 --- a/macosx/Controller.m +++ b/macosx/Controller.m @@ -1823,9 +1823,9 @@ static void sleepCallback(void * controller, io_service_t y, natural_t messageTy downloadText = NSLocalizedString(@"unlimited", "Status Bar -> speed tooltip"); } - uploadText = [NSLocalizedString(@"Total upload rate", "Status Bar -> speed tooltip") + uploadText = [NSLocalizedString(@"Global upload limit", "Status Bar -> speed tooltip") stringByAppendingFormat: @": %@", uploadText]; - downloadText = [NSLocalizedString(@"Total download rate", "Status Bar -> speed tooltip") + downloadText = [NSLocalizedString(@"Global download limit", "Status Bar -> speed tooltip") stringByAppendingFormat: @": %@", downloadText]; [fTotalULField setToolTip: uploadText];