diff options
author | rowanbeentje <rowan@beent.je> | 2010-08-01 20:11:43 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2010-08-01 20:11:43 +0000 |
commit | 9f1097088cd2748c8f7e78c2afd0d7c461d814ae (patch) | |
tree | eb6b72b8f17d34ed7307d8aa99675451ead72d42 /Source/SPSSHTunnel.m | |
parent | 309e1058669d1d6b1bd6e665c2bb6b20591419c5 (diff) | |
download | sequelpro-9f1097088cd2748c8f7e78c2afd0d7c461d814ae.tar.gz sequelpro-9f1097088cd2748c8f7e78c2afd0d7c461d814ae.tar.bz2 sequelpro-9f1097088cd2748c8f7e78c2afd0d7c461d814ae.zip |
- Make a few more strings localizable
Diffstat (limited to 'Source/SPSSHTunnel.m')
-rw-r--r-- | Source/SPSSHTunnel.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPSSHTunnel.m b/Source/SPSSHTunnel.m index 0cf2a724..5cc833fd 100644 --- a/Source/SPSSHTunnel.m +++ b/Source/SPSSHTunnel.m @@ -581,7 +581,7 @@ // Work out whether a passphrase is being requested, extracting the key name NSString *keyName = [theQuery stringByMatching:@"^\\s*Enter passphrase for key \\'(.*)\\':\\s*$" capture:1L]; if (keyName) { - [sshPasswordText setStringValue:[NSString stringWithFormat:@"Enter your password for the SSH key\n\"%@\"", keyName]]; + [sshPasswordText setStringValue:[NSString stringWithFormat:NSLocalizedString(@"Enter your password for the SSH key\n\"%@\"", @"SSH key password prompt"), keyName]]; [sshPasswordKeychainCheckbox setHidden:NO]; currentKeyName = [keyName retain]; } else { |