add 2 missing strings to the localization

This commit is contained in:
Mitchell Livingston 2007-04-14 13:52:03 +00:00
parent 193e43d2fc
commit d06610dce7
2 changed files with 4 additions and 2 deletions

View File

@ -2653,7 +2653,8 @@ static void sleepCallBack(void * controller, io_service_t y, natural_t messageTy
if (seeding > 0)
{
NSString * title = [NSString stringWithFormat: @"%d Seeding", seeding];
NSString * title = [NSString stringWithFormat: NSLocalizedString(@"%d Seeding",
"Dock item - Seeding"), seeding];
if (!seedingItem)
{
seedingItem = [[[NSMenuItem alloc] initWithTitle: title action: nil keyEquivalent: @""] autorelease];
@ -2671,7 +2672,8 @@ static void sleepCallBack(void * controller, io_service_t y, natural_t messageTy
if (downloading > 0)
{
NSString * title = [NSString stringWithFormat: @"%d Downloading", downloading];
NSString * title = [NSString stringWithFormat: NSLocalizedString(@"%d Downloading",
"Dock item - Downloading"), downloading];
if (!downloadingItem)
{
downloadingItem = [[[NSMenuItem alloc] initWithTitle: title action: nil keyEquivalent: @""] autorelease];