add a missed localized string

This commit is contained in:
Mitchell Livingston 2007-12-28 22:17:41 +00:00
parent c179c881c0
commit fd644baf80
2 changed files with 2 additions and 1 deletions

View File

@ -1942,7 +1942,8 @@ void sleepCallBack(void * controller, io_service_t y, natural_t messageType, voi
totalTorrentsString = NSLocalizedString(@"1 transfer", "Status bar transfer count");
if (filterStatus || filterGroup || filterText)
totalTorrentsString = [NSString stringWithFormat: @"%d of %@", [fDisplayedTorrents count], totalTorrentsString];
totalTorrentsString = [NSString stringWithFormat: NSLocalizedString(@"%d of %@", "Status bar transfer count"),
[fDisplayedTorrents count], totalTorrentsString];
[fTotalTorrentsField setStringValue: totalTorrentsString];