diff options
author | rowanbeentje <rowan@beent.je> | 2010-08-01 16:37:07 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2010-08-01 16:37:07 +0000 |
commit | e853ce6672f1548cb2e5cc120e7b6fa1b7ce63a7 (patch) | |
tree | 6ff85c35a79999a6dfd7cc7708f71f5f9953aded /Source/SPConnectionController.m | |
parent | 99ac3b5a59e43296984fd794eefc500e0e314f54 (diff) | |
download | sequelpro-e853ce6672f1548cb2e5cc120e7b6fa1b7ce63a7.tar.gz sequelpro-e853ce6672f1548cb2e5cc120e7b6fa1b7ce63a7.tar.bz2 sequelpro-e853ce6672f1548cb2e5cc120e7b6fa1b7ce63a7.zip |
- Make SSH titlebar strings and preferences' favourite "Last Used" menu item localisable
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 bd239e6c..7dc40181 100644 --- a/Source/SPConnectionController.m +++ b/Source/SPConnectionController.m @@ -318,10 +318,10 @@ [tableDocument setTitlebarStatus:@"SSH Disconnected"]; [self failConnectionWithTitle:NSLocalizedString(@"SSH connection failed!", @"SSH connection failed title") errorMessage:[theTunnel lastError] detail:[sshTunnel debugMessages]]; } else if (newState == PROXY_STATE_CONNECTED) { - [tableDocument setTitlebarStatus:@"SSH Connected"]; + [tableDocument setTitlebarStatus:NSLocalizedString(@"SSH Connected", @"SSH connected titlebar marker")]; [self initiateMySQLConnection]; } else { - [tableDocument setTitlebarStatus:@"SSH Connecting…"]; + [tableDocument setTitlebarStatus:NSLocalizedString(@"SSH Connecting…", @"SSH connecting titlebar marker")]; } } |