Changeset 6144
- Timestamp:
- Jun 11, 2008, 7:06:31 PM (14 years ago)
- Location:
- trunk/macosx
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/macosx/Controller.m
r6141 r6144 3695 3695 } 3696 3696 3697 #warning hide queue options if all queues are disabled?3698 3699 3697 //enable resume all waiting item 3700 3698 if (action == @selector(resumeWaitingTorrents:)) -
trunk/macosx/English.lproj/Localizable.strings
r6089 r6144 79 79 "%d transfers" = "%d transfers"; 80 80 81 /* Torrent -> status string */ 82 "%d web seeds" = "%d web seeds"; 83 81 84 /* stats -> bytes 82 85 Inspector -> selected torrents */ … … 117 120 Status bar transfer count */ 118 121 "1 transfer" = "1 transfer"; 122 123 /* Torrent -> status string */ 124 "1 web seed" = "1 web seed"; 119 125 120 126 /* Move folder cannot be used alert -> message */ … … 678 684 "Seeding" = "Seeding"; 679 685 686 /* Torrent -> status string */ 687 "Seeding complete" = "Seeding complete"; 688 680 689 /* Growl notification title */ 681 690 "Seeding Complete" = "Seeding Complete"; 682 683 /* Torrent -> status string */684 "Seeding complete" = "Seeding complete";685 691 686 692 /* Torrent -> status string */ -
trunk/macosx/Torrent.m
r6141 r6144 1154 1154 NSString * webSeedString; 1155 1155 if (webSeedCount == 1) 1156 webSeedString = NSLocalizedString(@" web seed", "Torrent -> status string");1156 webSeedString = NSLocalizedString(@"1 web seed", "Torrent -> status string"); 1157 1157 else 1158 1158 webSeedString = [NSString stringWithFormat: NSLocalizedString(@"%d web seeds", "Torrent -> status string"),
Note: See TracChangeset
for help on using the changeset viewer.