diff --git a/cocoa/base/DirectoryPanel.m b/cocoa/base/DirectoryPanel.m index 88bf0aa0..62b51578 100644 --- a/cocoa/base/DirectoryPanel.m +++ b/cocoa/base/DirectoryPanel.m @@ -41,7 +41,7 @@ http://www.hardcoded.net/licenses/bsd_license - (void)fillPopUpMenu { NSMenu *m = [addButtonPopUp menu]; - NSMenuItem *mi = [m addItemWithTitle:@"Add New Directory..." action:@selector(askForDirectory:) keyEquivalent:@""]; + NSMenuItem *mi = [m addItemWithTitle:@"Add New Folder..." action:@selector(askForDirectory:) keyEquivalent:@""]; [mi setTarget:self]; [m addItem:[NSMenuItem separatorItem]]; } @@ -54,7 +54,7 @@ http://www.hardcoded.net/licenses/bsd_license [op setCanChooseFiles:YES]; [op setCanChooseDirectories:YES]; [op setAllowsMultipleSelection:YES]; - [op setTitle:@"Select a directory to add to the scanning list"]; + [op setTitle:@"Select a folder to add to the scanning list"]; [op setDelegate:self]; if ([op runModal] == NSOKButton) { for (NSString *directory in [op filenames]) { diff --git a/cocoa/base/xib/MainMenu.xib b/cocoa/base/xib/MainMenu.xib index 7fc5b0d3..05e8726d 100644 --- a/cocoa/base/xib/MainMenu.xib +++ b/cocoa/base/xib/MainMenu.xib @@ -12,7 +12,7 @@ YES - + YES @@ -509,7 +509,7 @@ YES - Power Marker + Show Dupes Only 1 1048576 2147483647 @@ -518,7 +518,7 @@ - Delta Values + Show Delta Values 2 1048576 2147483647 @@ -551,7 +551,7 @@ - Directories Window + Folder Selection Window 2147483647 @@ -1794,7 +1794,7 @@ com.apple.InterfaceBuilder.CocoaPlugin - {{827, 658}, {208, 163}} + {{827, 658}, {243, 163}} com.apple.InterfaceBuilder.CocoaPlugin {{436, 821}, {523, 20}} @@ -1812,7 +1812,7 @@ com.apple.InterfaceBuilder.CocoaPlugin - {{152, 595}, {221, 173}} + {{448, 648}, {221, 173}} com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin @@ -1871,7 +1871,7 @@ com.apple.InterfaceBuilder.CocoaPlugin - {{771, 778}, {167, 43}} + {{771, 778}, {199, 43}} com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin @@ -2953,7 +2953,7 @@ YES - ../../me/dupeguru.xcodeproj + ../../se/dupeguru.xcodeproj 3 YES diff --git a/cocoa/me/ResultWindow.m b/cocoa/me/ResultWindow.m index 0290fc85..14d301d9 100644 --- a/cocoa/me/ResultWindow.m +++ b/cocoa/me/ResultWindow.m @@ -46,7 +46,7 @@ http://www.hardcoded.net/licenses/bsd_license NSTableColumn *refCol = [matches tableColumnWithIdentifier:@"0"]; _resultColumns = [[NSMutableArray alloc] init]; [_resultColumns addObject:[matches tableColumnWithIdentifier:@"0"]]; // File Name - [_resultColumns addObject:[self getColumnForIdentifier:1 title:@"Directory" width:120 refCol:refCol]]; + [_resultColumns addObject:[self getColumnForIdentifier:1 title:@"Folder" width:120 refCol:refCol]]; NSTableColumn *sizeCol = [self getColumnForIdentifier:2 title:@"Size (MB)" width:63 refCol:refCol]; [[sizeCol dataCell] setAlignment:NSRightTextAlignment]; [_resultColumns addObject:sizeCol]; diff --git a/cocoa/pe/ResultWindow.m b/cocoa/pe/ResultWindow.m index 8f815a58..571fd47f 100644 --- a/cocoa/pe/ResultWindow.m +++ b/cocoa/pe/ResultWindow.m @@ -27,7 +27,7 @@ http://www.hardcoded.net/licenses/bsd_license NSTableColumn *refCol = [matches tableColumnWithIdentifier:@"0"]; _resultColumns = [[NSMutableArray alloc] init]; [_resultColumns addObject:[matches tableColumnWithIdentifier:@"0"]]; // File Name - [_resultColumns addObject:[self getColumnForIdentifier:1 title:@"Directory" width:120 refCol:refCol]]; + [_resultColumns addObject:[self getColumnForIdentifier:1 title:@"Folder" width:120 refCol:refCol]]; NSTableColumn *sizeCol = [self getColumnForIdentifier:2 title:@"Size (KB)" width:63 refCol:refCol]; [[sizeCol dataCell] setAlignment:NSRightTextAlignment]; [_resultColumns addObject:sizeCol]; diff --git a/cocoa/se/ResultWindow.m b/cocoa/se/ResultWindow.m index 43097f82..c5ae8d9a 100644 --- a/cocoa/se/ResultWindow.m +++ b/cocoa/se/ResultWindow.m @@ -26,7 +26,7 @@ http://www.hardcoded.net/licenses/bsd_license NSTableColumn *refCol = [matches tableColumnWithIdentifier:@"0"]; _resultColumns = [[NSMutableArray alloc] init]; [_resultColumns addObject:[matches tableColumnWithIdentifier:@"0"]]; // File Name - [_resultColumns addObject:[self getColumnForIdentifier:1 title:@"Directory" width:120 refCol:refCol]]; + [_resultColumns addObject:[self getColumnForIdentifier:1 title:@"Folder" width:120 refCol:refCol]]; NSTableColumn *sizeCol = [self getColumnForIdentifier:2 title:@"Size (KB)" width:63 refCol:refCol]; [[sizeCol dataCell] setAlignment:NSRightTextAlignment]; [_resultColumns addObject:sizeCol];