diff options
author | rowanbeentje <rowan@beent.je> | 2010-08-01 23:35:37 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2010-08-01 23:35:37 +0000 |
commit | 27afe9f25ea1b7b15ed9fb12928f9d3a6fcf9788 (patch) | |
tree | 3aecba80ffb758948cf5860dde681c1222a95c0d /Source/SPConnectionController.m | |
parent | 9f1097088cd2748c8f7e78c2afd0d7c461d814ae (diff) | |
download | sequelpro-27afe9f25ea1b7b15ed9fb12928f9d3a6fcf9788.tar.gz sequelpro-27afe9f25ea1b7b15ed9fb12928f9d3a6fcf9788.tar.bz2 sequelpro-27afe9f25ea1b7b15ed9fb12928f9d3a6fcf9788.zip |
- Make another couple of strings localisable, and tweak layout of CREATE indexes view labels
Diffstat (limited to 'Source/SPConnectionController.m')
-rw-r--r-- | Source/SPConnectionController.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/SPConnectionController.m b/Source/SPConnectionController.m index 7dc40181..9c7abe57 100644 --- a/Source/SPConnectionController.m +++ b/Source/SPConnectionController.m @@ -315,7 +315,7 @@ NSInteger newState = [theTunnel state]; if (newState == PROXY_STATE_IDLE) { - [tableDocument setTitlebarStatus:@"SSH Disconnected"]; + [tableDocument setTitlebarStatus:NSLocalizedString(@"SSH Disconnected", @"SSH disconnected titlebar marker")]; [self failConnectionWithTitle:NSLocalizedString(@"SSH connection failed!", @"SSH connection failed title") errorMessage:[theTunnel lastError] detail:[sshTunnel debugMessages]]; } else if (newState == PROXY_STATE_CONNECTED) { [tableDocument setTitlebarStatus:NSLocalizedString(@"SSH Connected", @"SSH connected titlebar marker")]; @@ -648,7 +648,7 @@ } else { favorites = [[NSMutableArray alloc] init]; } - [favorites insertObject:[NSDictionary dictionaryWithObject:@"FAVORITES" forKey:@"name"] atIndex:0]; + [favorites insertObject:[NSDictionary dictionaryWithObject:NSLocalizedString(@"FAVORITES", @"Favorites title at the top of the sidebar") forKey:@"name"] atIndex:0]; [favoritesTable reloadData]; } |