Changeset 2140
- Timestamp:
- Jun 17, 2007, 6:04:27 PM (15 years ago)
- Location:
- branches/file_selection/macosx
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/file_selection/macosx/CreatorWindowController.h
r2137 r2140 32 32 IBOutlet NSTextField * fNameField, * fStatusField, * fPiecesField, * fTrackerField, * fLocationField; 33 33 IBOutlet NSTextView * fCommentView; 34 IBOutlet NSButton * fPrivateCheck ;34 IBOutlet NSButton * fPrivateCheck, * fOpenCheck; 35 35 36 36 IBOutlet NSView * fProgressView; -
branches/file_selection/macosx/CreatorWindowController.m
r2139 r2140 260 260 else 261 261 { 262 #warning make optional 263 NSDictionary * dict = [[NSDictionary alloc] initWithObjectsAndKeys: fLocation, @"File", 264 [fPath stringByDeletingLastPathComponent], @"Path", nil]; 265 [[NSNotificationCenter defaultCenter] postNotificationName: @"OpenCreatedTorrentFile" object: self userInfo: dict]; 262 if ([fOpenCheck state] == NSOnState) 263 { 264 NSDictionary * dict = [[NSDictionary alloc] initWithObjectsAndKeys: fLocation, @"File", 265 [fPath stringByDeletingLastPathComponent], @"Path", nil]; 266 [[NSNotificationCenter defaultCenter] postNotificationName: @"OpenCreatedTorrentFile" object: self userInfo: dict]; 267 } 266 268 } 267 269 -
branches/file_selection/macosx/DragOverlayWindow.m
r2137 r2140 117 117 NSString * fileString; 118 118 if (fileCount == 1) 119 fileString = NSLocalizedString(@"1 File, ", "Drag overlay -> drag files");119 fileString = NSLocalizedString(@"1 File, ", "Drag overlay -> torrents"); 120 120 else 121 fileString= [NSString stringWithFormat: NSLocalizedString(@"%d Files, ", "Drag overlay -> drag files"), fileCount];121 fileString= [NSString stringWithFormat: NSLocalizedString(@"%d Files, ", "Drag overlay -> torrents"), fileCount]; 122 122 secondString = [fileString stringByAppendingString: secondString]; 123 123 } … … 127 127 else 128 128 { 129 name = [NSString stringWithFormat: NSLocalizedString(@"%d Torrent Files", "Drag overlay -> drag files"), count];129 name = [NSString stringWithFormat: NSLocalizedString(@"%d Torrent Files", "Drag overlay -> torrents"), count]; 130 130 secondString = [secondString stringByAppendingString: @" Total"]; 131 131 } -
branches/file_selection/macosx/English.lproj/Creator.nib/classes.nib
r2130 r2140 15 15 fLocationField = NSTextField; 16 16 fNameField = NSTextField; 17 fOpenCheck = NSButton; 17 18 fPiecesField = NSTextField; 18 19 fPrivateCheck = NSButton; -
branches/file_selection/macosx/English.lproj/Creator.nib/info.nib
r2130 r2140 8 8 <dict> 9 9 <key>56</key> 10 <string>3 65 224368 126 0 0 1152 842 </string>10 <string>392 515 368 126 0 0 1152 842 </string> 11 11 </dict> 12 12 <key>IBFramework Version</key> … … 14 14 <key>IBOpenObjects</key> 15 15 <array> 16 <integer>5</integer> 16 17 <integer>56</integer> 17 <integer>5</integer>18 18 </array> 19 19 <key>IBSystem Version</key>
Note: See TracChangeset
for help on using the changeset viewer.