Changeset 5078
- Timestamp:
- Feb 19, 2008, 4:20:38 PM (15 years ago)
- Location:
- trunk/macosx
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/macosx/Controller.m
r5075 r5078 474 474 [self autoSpeedLimitChange: nil]; 475 475 fSpeedLimitTimer = [NSTimer scheduledTimerWithTimeInterval: AUTO_SPEED_LIMIT_SECONDS target: self 476 selector: @selector(autoSpeedLimit) userInfo: nil repeats: YES];476 selector: @selector(autoSpeedLimit) userInfo: nil repeats: YES]; 477 477 [[NSRunLoop currentRunLoop] addTimer: fSpeedLimitTimer forMode: NSModalPanelRunLoopMode]; 478 478 [[NSRunLoop currentRunLoop] addTimer: fSpeedLimitTimer forMode: NSEventTrackingRunLoopMode]; … … 484 484 485 485 //register for dock icon drags 486 [[NSAppleEventManager sharedAppleEventManager] setEventHandler: self 487 andSelector: @selector(handleOpenContentsEvent:replyEvent:) 486 [[NSAppleEventManager sharedAppleEventManager] setEventHandler: self andSelector: @selector(handleOpenContentsEvent:replyEvent:) 488 487 forEventClass: kCoreEventClass andEventID: kAEOpenContents]; 489 488 -
trunk/macosx/English.lproj/Localizable.strings
r4686 r5078 150 150 "1 time" = "1 time"; 151 151 152 /* Filter Button -> tool tip */ 153 "1 Transfer" = "1 Transfer"; 154 152 155 /* Status bar transfer count */ 153 156 "1 transfer" = "1 transfer"; 154 155 /* Filter Button -> tool tip */156 "1 Transfer" = "1 Transfer";157 157 158 158 /* Move folder cannot be used alert -> message */ … … 434 434 No Ratio */ 435 435 "N/A" = "N/A"; 436 437 /* Group table row */ 438 "No Group" = "No Group"; 436 439 437 440 /* Inspector -> above tabs -> selected torrents */ … … 475 478 "Open" = "Open"; 476 479 480 /* Open address toolbar item -> label */ 481 "Open Address" = "Open Address"; 482 483 /* Open address toolbar item -> palette label */ 484 "Open Torrent Address" = "Open Torrent Address"; 485 477 486 /* Open toolbar item -> tooltip */ 478 487 "Open torrent files" = "Open torrent files"; … … 480 489 /* Open toolbar item -> palette label */ 481 490 "Open Torrent Files" = "Open Torrent Files"; 491 492 /* Open address toolbar item -> tooltip */ 493 "Open torrent web address" = "Open torrent web address"; 482 494 483 495 /* Inspector -> title */ … … 558 570 "Quit" = "Quit"; 559 571 560 /* Dock Badger -> quit message */ 572 /* Dock Badger -> quit message 573 Dock Badger -> quit */ 561 574 "Quitting" = "Quitting"; 562 575 563 /* Torrent -> status string 564 status bar -> status label */ 576 /* status bar -> status label */ 565 577 "Ratio: " = "Ratio: "; 566 578 … … 608 620 "Seeding" = "Seeding"; 609 621 622 /* Torrent -> status string */ 623 "Seeding complete" = "Seeding complete"; 624 610 625 /* Growl notification title */ 611 626 "Seeding Complete" = "Seeding Complete"; 612 613 /* Torrent -> status string */614 "Seeding complete" = "Seeding complete";615 627 616 628 /* Torrent -> status string */ -
trunk/macosx/TorrentTableView.m
r5077 r5078 78 78 [self sizeLastColumnToFit]; 79 79 80 [ [self tableColumnWithIdentifier: @"Group"]setDataCell: fTorrentCell];80 [groupColumn setDataCell: fTorrentCell]; 81 81 } 82 82
Note: See TracChangeset
for help on using the changeset viewer.