diff options
author | Kenny Root <kenny@the-b.org> | 2009-06-27 05:40:50 +0000 |
---|---|---|
committer | Kenny Root <kenny@the-b.org> | 2009-06-27 05:40:50 +0000 |
commit | a3b3e8b14c5a9468aafc1925b3e9763a56269472 (patch) | |
tree | 54a8687be76063dbd1bcde0bcab5bbe9fc5ef088 /res | |
parent | 9184616dc5e0c02d646a0dd6d86b97567f1810f6 (diff) | |
download | connectbot-a3b3e8b14c5a9468aafc1925b3e9763a56269472.tar.gz connectbot-a3b3e8b14c5a9468aafc1925b3e9763a56269472.tar.bz2 connectbot-a3b3e8b14c5a9468aafc1925b3e9763a56269472.zip |
Externalize the last few strings lingering in SSH and TerminalBridge
git-svn-id: https://connectbot.googlecode.com/svn/trunk/connectbot@339 df292f66-193f-0410-a5fc-6d59da041ff2
Diffstat (limited to 'res')
-rw-r--r-- | res/values/strings.xml | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/res/values/strings.xml b/res/values/strings.xml index 1cc691c..44b6832 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -307,7 +307,7 @@ <string name="list_format_error">Use the format "%1$s"</string> <!-- Part of the formatting hints that will be used like: username@hostname:port --> - <string name="format_username">username</string> + <string name="format_username">username</string> <!-- Part of the formatting hints that will be used like: username@hostname:port --> <string name="format_hostname">hostname</string> <!-- Part of the formatting hints that will be used like: username@hostname:port --> @@ -360,23 +360,39 @@ <string name="terminal_no_hosts_connected">No hosts currently connected</string> + <!-- Displayed in terminal when attempting to connect to a host. The first two + variables are host:port and the third is the protocol (e.g., SSH) --> + <string name="terminal_connecting">Connecting to %1$s:%2$d via %3$s</string> + + <!-- Displays the host key to the user in the terminal --> + <string name="terminal_sucess">Verified host '%1$s' key: %2$s</string> <string name="terminal_failed">Host key verification failed.</string> + <!-- Displayed on the terminal describing the cryptographic algorithm names --> + <string name="terminal_using_s2c_algorithm">Server-to-client algorithm: %1$s %2$s</string> + <!-- Displayed on the terminal describing the cryptographic algorithm names --> + <string name="terminal_using_c2s_algorithm">Client-to-server algorithm: %1$s %2$s</string> + <!-- Displayed on the terminal describing the cryptographic algorithm names --> + <string name="terminal_using_algorithm">Using algorithm: %1$s %2$s</string> + <string name="terminal_auth">Trying to authenticate</string> <string name="terminal_auth_pass">Attempting 'password' authentication</string> - <string name="terminal_auth_pass_hint">Password</string> <string name="terminal_auth_pass_fail">Authentication method 'password' failed</string> <string name="terminal_auth_pubkey_any">Attempting 'publickey' authentication with any in-memory public keys</string> <string name="terminal_auth_pubkey_invalid">Selected public key is invalid, try reselecting key in host editor</string> <string name="terminal_auth_pubkey_specific">Attempting 'publickey' authentication with a specific public key</string> + <string name="terminal_auth_pubkey_fail">Authentication method 'publickey' with key '%1$s' failed</string> <string name="terminal_auth_ki">Attempting 'keyboard-interactive' authentication</string> <string name="terminal_auth_ki_fail">Authentication method 'keyboard-interactive' failed</string> <string name="terminal_auth_fail">[Your host doesn't support 'password' or 'keyboard-interactive' authentication.]</string> + <string name="terminal_no_session">Session will not be started due to host preference.</string> + <string name="terminal_enable_portfoward">Enable port forward: %1$s</string> + <string name="local_shell_unavailable">Failure! Local shell is unavailable on this phone.</string> <!-- Text sent to the user to alert them that a Terminal Bell is received in a background session --> |