Changed terminology to "Open" from "Listen"

This commit is contained in:
Aparajita Fishman
2013-04-24 15:06:30 -04:00
parent bd96d1b5e2
commit 934dedecd2
3 changed files with 100 additions and 75 deletions
+2 -2
View File
@@ -204,7 +204,7 @@ AppController *SharedAppControllerInstance = nil;
- (void)XcodeCappListeningDidStart:(NSNotification *)aNotification
{
self.statusItem.image = self.iconActive;
self.menuItemListen.title = [NSString stringWithFormat:@"Stop Listening to “%@”", self.xcc.currentProjectPath.lastPathComponent];
self.menuItemListen.title = [NSString stringWithFormat:@"Close “%@”", self.xcc.currentProjectPath.lastPathComponent];
self.menuItemListen.action = @selector(stopListening:);
}
@@ -277,7 +277,7 @@ AppController *SharedAppControllerInstance = nil;
[self.xcc stop];
self.statusItem.image = self.iconInactive;
self.menuItemListen.title = @"Listen to Project…";
self.menuItemListen.title = @"Open Project…";
self.menuItemListen.action = @selector(listenToProject:);
[[NSUserDefaults standardUserDefaults] removeObjectForKey:kDefaultLastOpenedPath];