comparison res/values/strings.xml @ 0:0ce5cc452d02

initial version
author Carl Byington <carl@five-ten-sg.com>
date Thu, 22 May 2014 10:41:19 -0700
parents
children 3b760b39962a
comparison
equal deleted inserted replaced
-1:000000000000 0:0ce5cc452d02
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
3 /*
4 * ConnectBot: simple, powerful, open-source SSH client for Android
5 * Copyright 2007 Kenny Root, Jeffrey Sharkey
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 */
19 -->
20
21 <resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
22 <string name="app_desc">"Simple, powerful, open-source SSH client."</string>
23 <string name="service_desc">"Maintains SSH connections and loaded pubkeys"</string>
24 <string name="auth_agent_service_desc">"Acts as an ssh-agent for other Android Apps on the device"</string>
25
26 <string name="ssh_agent_permission_label">use SSH keys stored in your SSH Agent</string>
27 <string name="ssh_agent_permission_desc">Allows the application to authenticate SSH transactions using your private keys stored in ConnectBot.
28 VERY DANGEROUS if used by a malicious application.</string>
29
30 <!-- Window title for the Host List -->
31 <string name="title_hosts_list">"Hosts"</string>
32 <!-- Window title for the Pubkeys List -->
33 <string name="title_pubkey_list">"Pubkeys"</string>
34 <!-- Window title for the Port Forwards List -->
35 <string name="title_port_forwards_list">"Port forwards"</string>
36 <!-- Window title when editing host details -->
37 <string name="title_host_editor">"Edit Host"</string>
38 <!-- Window title for Help index -->
39 <string name="title_help">"Help"</string>
40 <!-- Window title for color list editing screen -->
41 <string name="title_colors">"Colors"</string>
42
43 <string name="resolve_connect">"Connect"</string>
44 <!-- Menu selection where user must move finger randomly over an area to gather entropy (collect random bits) -->
45 <string name="resolve_entropy">"Gather Entropy"</string>
46
47 <string name="menu_insert">"Add Host"</string>
48 <string name="menu_delete">"Delete Host"</string>
49 <string name="menu_preferences">"Preferences"</string>
50
51 <string name="help_intro">"Please select a topic below for more information on a particular subject."</string>
52 <string name="help_about">"About ConnectBot"</string>
53 <string name="help_keyboard">"Keyboard"</string>
54
55 <string name="pubkey_generate">"Generate"</string>
56 <string name="pubkey_import">"Import"</string>
57 <string name="pubkey_delete">"Delete key"</string>
58 <!-- Dialog title when user must move finger randomly over an area to gather entropy (collect random bits) -->
59 <string name="pubkey_gather_entropy">"Gathering Entropy"</string>
60 <string name="pubkey_touch_prompt">"Touch this box to gather randomness: %1$d%% done"</string>
61 <string name="pubkey_touch_hint">"In order to assure randomness during the key generation, move your finger randomly over the box below."</string>
62 <string name="pubkey_generating">"Generating key pair&#8230;"</string>
63 <string name="pubkey_copy_private">"Copy private key"</string>
64 <string name="pubkey_copy_public">"Copy public key"</string>
65 <!-- Note that the '\n' just splits lines, so it's actually "create or import" -->
66 <string name="pubkey_list_empty">"Tap \"Menu\" to create"\n"or import key pairs."</string>
67 <string name="pubkey_unknown_format">"Unknown format"</string>
68 <string name="pubkey_change_password">"Change password"</string>
69 <string name="pubkey_list_pick">"Pick from /sdcard"</string>
70 <string name="pubkey_import_parse_problem">"Problem parsing imported private key"</string>
71 <string name="pubkey_unlock">"Unlock key"</string>
72 <string name="pubkey_failed_add">"Bad password for key '%1$s'. Authentication failed."</string>
73 <string name="pubkey_memory_load">"Load into memory"</string>
74 <string name="pubkey_memory_unload">"Unload from memory"</string>
75 <string name="pubkey_load_on_start">"Load key on start"</string>
76 <!-- Pubkey preference asking user whether the key use should be confirmed via prompt before it can be used for authentication -->
77 <string name="pubkey_confirm_use">"Confirm before use"</string>
78
79 <!-- Note that the '\n' splits lines, so it's actually "create port forwards" -->
80 <string name="portforward_list_empty">"Tap \"Menu\" to create"\n"port forwards."</string>
81 <string name="portforward_edit">"Edit port forward"</string>
82 <string name="portforward_delete">"Delete port forward"</string>
83
84 <string name="prompt_nickname">"Nickname:"</string>
85 <!-- An example string that could be used as a nickname for a pubkey. -->
86 <string name="prompt_nickname_hint_pubkey">"My work key"</string>
87 <!-- The source TCP port for port forwards. -->
88 <string name="prompt_source_port">"Source port:"</string>
89 <!-- The "host:port" combination used for port forward destinations. -->
90 <string name="prompt_destination">"Destination:"</string>
91 <string name="prompt_old_password">"Old password:"</string>
92 <string name="prompt_password">"Password:"</string>
93 <!-- Added after a "Password:" prompt to indicate user needs to confirm entry. -->
94 <string name="prompt_again">"(again)"</string>
95 <!-- Label for the user to select port forward type. -->
96 <string name="prompt_type">"Type:"</string>
97 <string name="prompt_password_can_be_blank">"Note: password can be blank"</string>
98 <!-- Prompt for the size of the private key in bits. -->
99 <string name="prompt_bits">"Bits:"</string>
100
101 <!-- Prompt for the password to unlock a certain pubkey. -->
102 <string name="prompt_pubkey_password">"Password for key '%1$s'"</string>
103
104 <!-- Prompt for whether to allow SSH Authentication Agent to use the specified key. Note that the '\n' means split the line so it's actually "host to use key" -->
105 <string name="prompt_allow_agent_to_use_key">"Allow remote host to"\n"use key '%1$s'?"</string>
106
107 <!-- The header of the warning a user gets when the host key has changed. Note that this can be a very serious attack, so we try to be as "loud" to the user as possible. -->
108 <string name="host_verification_failure_warning_header">"WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!"</string>
109 <!-- The body of the warning a user gets when the host key has changed. Note that this can be a very serious attack, so we try to be as "loud" to the user as possible. -->
110 <string name="host_verification_failure_warning">"IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!"\n"Someone could be eavesdropping on you right now (man-in-the-middle attack)!"\n"It is also possible that the host key has just been changed."</string>
111
112 <!-- Prompt user gets when the remote host has disconnected unexpectedly. -->
113 <string name="prompt_host_disconnected">"Host has disconnected."\n"Close session?"</string>
114 <!-- Prompt user must answer yes or no to when the remote host fails verification of encryption fingerprint -->
115 <string name="prompt_continue_connecting">"Are you sure you want"\n"to continue connecting?"</string>
116
117 <!-- Sent to user when the remote public encryption key fingerprint doesn't match the local database -->
118 <string name="host_authenticity_warning">"The authenticity of host '%1$s' can't be established."</string>
119 <!-- First field is encryption algorithm. Second is the actual fingerprint in hex digits -->
120 <string name="host_fingerprint">"Host %1$s key fingerprint is %2$s"</string>
121
122 <string name="alert_passwords_do_not_match_msg">"Passwords do not match!"</string>
123 <string name="alert_wrong_password_msg">"Wrong password!"</string>
124 <string name="alert_key_corrupted_msg">"Private key appears corrupt!"</string>
125 <string name="alert_sdcard_absent">"SD card is not inserted!"</string>
126
127 <!-- Add a new item (e.g., host or pubkey) to the list. -->
128 <string name="button_add">"Add"</string>
129 <!-- Change an existing item's (e.g., host or pubkey) details. -->
130 <string name="button_change">"Change"</string>
131 <!-- Button that begins the generation of a public key pair. -->
132 <string name="button_generate">"Generate Key"</string>
133 <!-- Button that resizes the screen to the user-specified dimensions. -->
134 <string name="button_resize">"Resize"</string>
135 <!-- Button that resets to default size -->
136 <string name="button_resize_reset">"Default size"</string>
137
138 <string name="alert_disconnect_msg">"Connection Lost"</string>
139
140
141 <!-- The category title for terminal emulation preferences. -->
142 <string name="pref_emulation_category">"Terminal emulation"</string>
143
144 <!-- Name for the emulation terminal type preference. -->
145 <string name="pref_emulation_title">"Emulation mode"</string>
146 <!-- Description of the emulation terminal type preference. -->
147 <string name="pref_emulation_summary">"Terminal emulation mode to use for PTY connections"</string>
148
149 <!-- Name for the scrollback size preference -->
150 <string name="pref_scrollback_title">"Scrollback size"</string>
151 <!-- Description of the scrollback size preference -->
152 <string name="pref_scrollback_summary">"Size of scrollback buffer to keep in memory for each console"</string>
153
154 <!-- The category title for user interface preferences -->
155 <string name="pref_ui_category">"User interface"</string>
156
157 <!-- Name for the rotation mode preference -->
158 <string name="pref_rotation_title">"Rotation mode"</string>
159 <!-- Summary for the rotation mode preference -->
160 <string name="pref_rotation_summary">"How to change rotation when keyboard popped in/out"</string>
161
162 <!-- Name for the full screen preference -->
163 <string name="pref_fullscreen_title">"Full screen"</string>
164 <!-- Summary for the full screen preference -->
165 <string name="pref_fullscreen_summary">"Start terminal in full screen mode"</string>
166
167 <!-- Name for the shifted numbers are f-keys preference -->
168 <string name="pref_shiftfkeys_title">"Shift+num are F-keys"</string>
169 <!-- Summary for the shifted numbers are f-keys preference -->
170 <string name="pref_shiftfkeys_summary">"On hardware keyboards, number keys send F1-F10 with shift"</string>
171
172 <!-- Name for the ctrl'ed numbers are f-keys preference -->
173 <string name="pref_ctrlfkeys_title">"Ctrl+num are F-keys"</string>
174 <!-- Summary for the ctrl'ed numbers are f-keys preference -->
175 <string name="pref_ctrlfkeys_summary">"On software keyboards, number keys send F1-F10 with ctrl"</string>
176
177 <!-- Name for the volume keys control font size preference -->
178 <string name="pref_volumefont_title">"Volume keys change font size"</string>
179 <!-- Summary for the volume keys control font size preference -->
180 <string name="pref_volumefont_summary">"Font size can also be changed in per-host settings"</string>
181
182 <!-- Name for the memorize keys preference -->
183 <string name="pref_memkeys_title">"Remember keys in memory"</string>
184 <!-- Summary for the memorize keys preference -->
185 <string name="pref_memkeys_summary">"Keep unlocked keys in memory until backend service is terminated"</string>
186
187 <!-- Name for the update check preference -->
188 <string name="pref_update_title">"Update check"</string>
189 <!-- Summary for the update check preference -->
190 <string name="pref_update_summary">"Set the maximum frequency to check for ConnectBot updates"</string>
191
192 <!-- Name for the preference that forces the service to stay running in the background.-->
193 <string name="pref_conn_persist_title">"Persist connections"</string>
194 <!-- Summary for the preference that forces the service to stay running in the background. -->
195 <string name="pref_conn_persist_summary">"Force connections to stay connected while in background"</string>
196
197 <!-- Name for the keyboard shortcuts preference -->
198 <string name="pref_keymode_title">"Directory shortcuts"</string>
199 <!-- Summary for the keyboard shortcuts preference -->
200 <string name="pref_keymode_summary">"Select how to use Alt for '/' and Shift for Tab"</string>
201
202 <!-- Name for the camera shortcut usage preference -->
203 <string name="pref_camera_title">"Camera button"</string>
204 <!-- Summary for the camera shortcut usage preference -->
205 <string name="pref_camera_summary">"Action triggered by pressing the camera button"</string>
206
207 <!-- Name for the volup shortcut usage preference -->
208 <string name="pref_volup_title">"Volume up button"</string>
209 <string name="pref_volup_summary">"Action triggered by pressing the volume up button"</string>
210
211 <!-- Name for the volup shortcut usage preference -->
212 <string name="pref_voldn_title">"Volume down button"</string>
213 <string name="pref_voldn_summary">"Action triggered by pressing the volume down button"</string>
214
215 <!-- Name for the volup shortcut usage preference -->
216 <string name="pref_search_title">"Search button"</string>
217 <string name="pref_search_summary">"Action triggered by pressing the search button"</string>
218
219 <!-- Name for the keep screen on preference -->
220 <string name="pref_keepalive_title">"Keep screen awake"</string>
221 <!-- Summary for the camera shortcut usage preference -->
222 <string name="pref_keepalive_summary">"Prevent the screen from turning off when working in a console"</string>
223
224 <!-- Name for the Wi-Fi lock preference -->
225 <string name="pref_wifilock_title">"Keep Wi-Fi active"</string>
226 <!-- Summary for the Wi-Fi lock preference -->
227 <string name="pref_wifilock_summary">"Prevent Wi-Fi from turning off when a session is active"</string>
228
229 <!-- Name for the haptic feedback (bumpy arrow) preference -->
230 <string name="pref_bumpyarrows_title">"Bumpy arrows"</string>
231 <!-- Summary for the haptic feedback (bumpy arrow) preference -->
232 <string name="pref_bumpyarrows_summary">"Vibrate when sending arrow keys from trackball; useful for laggy connections"</string>
233
234 <!-- Category title for the Terminal Bell preferences -->
235 <string name="pref_bell_category">"Terminal bell"</string>
236
237 <!-- Checkbox preference title for the audible terminal bell feature -->
238 <string name="pref_bell_title">"Audible bell"</string>
239
240 <!-- Title for the slider preference to set the volume -->
241 <string name="pref_bell_volume_title">"Bell volume"</string>
242
243 <!-- Checkbox preference title for the vibrate on terminal bell feature -->
244 <string name="pref_bell_vibrate_title">"Vibrate on bell"</string>
245
246 <!-- Checkbox preference title for the receive notifications on terminal bell feature -->
247 <string name="pref_bell_notification_title">"Background notifications"</string>
248 <!-- Brief summary of the feature that is enabled when the checkbox preference for the receive notifications on terminal bell feature is checked -->
249 <string name="pref_bell_notification_summary">"Send notification when a terminal running in the background sounds a bell."</string>
250
251 <!-- Preference selection to indicate use of right side of keyboard for special shortcuts. -->
252 <string name="list_keymode_right">"Use right-side keys"</string>
253 <!-- Preference selection to indicate use of left side of keyboard for special shortcuts. -->
254 <string name="list_keymode_left">"Use left-side keys"</string>
255 <!-- Preference selection to indicate never to use special shortcut keys. -->
256 <string name="list_keymode_none">"Disable"</string>
257
258 <!-- Preference to not use pubkeys to authenticate to this host. -->
259 <string name="list_pubkeyids_none">"Do not use keys"</string>
260 <!-- Preference to use any pubkey to authenticate to this host. -->
261 <string name="list_pubkeyids_any">"Use any unlocked key"</string>
262
263 <!-- Frequency for which to check for program updates. -->
264 <string name="list_update_daily">"Daily"</string>
265 <!-- Frequency for which to check for program updates. -->
266 <string name="list_update_weekly">"Weekly"</string>
267 <!-- Frequency for which to check for program updates. -->
268 <string name="list_update_never">"Never"</string>
269
270 <!-- Host nickname field preference title -->
271 <string name="hostpref_nickname_title">"Nickname"</string>
272
273 <!-- Host color category preference title -->
274 <string name="hostpref_color_title">"Color category"</string>
275
276 <!-- Host's default font size when opening the terminal in points (pt) -->
277 <string name="hostpref_fontsize_title">"Font size (pt)"</string>
278
279 <!-- Host pubkey usage preference title -->
280 <string name="hostpref_pubkeyid_title">"Use pubkey authentication"</string>
281
282 <!-- Preference title for the SSH Authentication Agent Forwarding for a host connection -->
283 <string name="hostpref_authagent_title">"Use SSH auth agent"</string>
284
285 <!-- Host post-login automation preference title -->
286 <string name="hostpref_postlogin_title">"Post-login automation"</string>
287 <!-- Host post-login automation preference summary -->
288 <string name="hostpref_postlogin_summary">"Commands to run on remote server once authenticated"</string>
289
290 <!-- Host compression preference title -->
291 <string name="hostpref_compression_title">"Compression"</string>
292 <!-- Summary for compression preference -->
293 <string name="hostpref_compression_summary">"This may help with slower networks"</string>
294
295 <!-- HTTP Proxy preference title -->
296 <string name="hostpref_httpproxy_title">"Use HTTP Proxy"</string>
297 <!-- Summary for compression preference -->
298 <string name="hostpref_httpproxy_summary">"The host:port of an HTTP proxy"</string>
299
300 <!-- Setting for whether we want a session to start up when we connect to a host -->
301 <string name="hostpref_wantsession_title">"Start shell session"</string>
302 <!-- Summary for field asking whether a shell session should be started up upon connection or not -->
303 <string name="hostpref_wantsession_summary">"Disable this preference to only use port forwards"</string>
304
305 <!-- Setting for whether the host should be reconnected to automatically upon disconnect -->
306 <string name="hostpref_stayconnected_title">"Stay connected"</string>
307 <!-- Summary for preference asking whether the host should be reconnected to when it disconnects -->
308 <string name="hostpref_stayconnected_summary">"Try to reconnect to host if disconnected"</string>
309
310 <!-- Setting for what key code is sent to the server when DEL key is pressed. -->
311 <string name="hostpref_delkey_title">"DEL Key"</string>
312 <!-- Summary for field asking what key code is sent to the server when DEL key is pressed. -->
313 <string name="hostpref_delkey_summary">"The key code sent when DEL key is pressed"</string>
314
315 <!-- Host character encoding preference title -->
316 <string name="hostpref_encoding_title">"Encoding"</string>
317 <!-- Host character encoding preference summary -->
318 <string name="hostpref_encoding_summary">"Character encoding for the host"</string>
319
320 <!-- Host preference category title for connection settings -->
321 <string name="hostpref_connection_category">"Connection settings"</string>
322
323 <!-- Username field title for host editor preference -->
324 <string name="hostpref_username_title">"Username"</string>
325
326 <!-- Hostname field title for host editor preference -->
327 <string name="hostpref_hostname_title">"Host"</string>
328
329 <!-- Port field title for host editor preference -->
330 <string name="hostpref_port_title">"Port"</string>
331
332 <!-- Monitor field title for host editor preference -->
333 <string name="hostpref_monitor_title">"Monitor Init String"</string>
334
335 <!-- Host preference category title for x11 forwarding -->
336 <string name="hostpref_x11_forwarding">"X11 forwarding"</string>
337
338 <!-- Enable x11 forwarding checkbox title for host editor preference -->
339 <string name="hostpref_wantx11forward_title">"Enable X11 forwarding"</string>
340
341 <!-- Enable x11 forwarding checkbox summary for host editor preference -->
342 <string name="hostpref_wantx11forward_summary">"Forward X11 sessions to host and port specified below"</string>
343
344 <!-- Hostname field title for x11 forwarding in host editor preference -->
345 <string name="hostpref_x11host_title">"X11 forwarding host"</string>
346
347 <!-- Port field title for x11 forwarding in host editor preference -->
348 <string name="hostpref_x11port_title">"X11 forwarding port"</string>
349
350 <!-- Displayed to indicate a host has never been connected to. -->
351 <string name="bind_never">"Never connected"</string>
352 <!-- The time that has elapsed since a host was connected to when it has been less than an hour. -->
353 <string name="bind_minutes">"%1$s minutes ago"</string>
354 <!-- The time that has elapsed since a host was connected to when it has been less than a day. -->
355 <string name="bind_hours">"%1$s hours ago"</string>
356 <!-- The time that has elapsed since a host was connected to when it has been a day or more. -->
357 <string name="bind_days">"%1$s days ago"</string>
358
359 <!-- Message given when user copies from the terminal. -->
360 <string name="console_copy_done">"Copied %1$d bytes to clipboard"</string>
361 <!-- Instructions for how to copy from the terminal. The '\n' entries are to split lines to improve readability and prevent wrapping off the screen. -->
362 <string name="console_copy_start">"Touch and drag"\n"or use directional pad"\n"to select area to copy"</string>
363
364 <!-- Button to close the disconnected terminal window. -->
365 <string name="console_menu_close">"Close"</string>
366 <!-- Button to begin copying from the terminal to the clipboard. -->
367 <string name="console_menu_copy">"Copy"</string>
368 <!-- Button to paste from the clipboard to the terminal. -->
369 <string name="console_menu_paste">"Paste"</string>
370 <!-- Button that brings user to the Port Forwards List. -->
371 <string name="console_menu_portforwards">"Port Forwards"</string>
372 <!-- Button that brings user to the terminal resizing dialog where they can force a size. -->
373 <string name="console_menu_resize">"Force Size"</string>
374 <!-- Button that brings up the list of URLs on the current screen -->
375 <string name="console_menu_urlscan">"URL Scan"</string>
376 <!-- Button that initiates screen capture -->
377 <string name="console_menu_screencapture">"Screen Capture"</string>
378 <!-- Button that lets user pick the file to download -->
379 <string name="console_menu_download">"Download File"</string>
380 <!-- Button that lets user pick the file to upload -->
381 <string name="console_menu_upload">"Upload File"</string>
382
383 <!-- Button label to answer "Yes" to a yes/no prompt -->
384 <string name="button_yes">"Yes"</string>
385 <!-- Button label to answer "No" to a yes/no prompt -->
386 <string name="button_no">"No"</string>
387
388 <!-- Selection for a "local" port forward. E.g., connections to a port listening locally is forwarded to the remote end's listening port. -->
389 <string name="portforward_local">"Local"</string>
390 <!-- Selection for a "remote" port forward. E.g., connections to a port listening remotely is forwarded to the local end's listening port. -->
391 <string name="portforward_remote">"Remote"</string>
392 <!-- Selection for a "dynamic" port forward. E.g., connections to a port listening locally is forwarded based on the SOCKS protocol to an arbitrary remote host and port. -->
393 <string name="portforward_dynamic">"Dynamic (SOCKS)"</string>
394 <!-- Button that commits the port forward to be made from the Port Forward Creation dialog. -->
395 <string name="portforward_pos">"Create port forward"</string>
396
397 <string name="portforward_done">"Successfully created port forward"</string>
398 <string name="portforward_problem">"Problem creating port forward, maybe you're using ports under 1024 or port is already used?"</string>
399
400 <string name="portforward_menu_add">"Add port forward"</string>
401
402 <!-- The string to present in the quick-connect box to hint the user to the format for connecting to hosts. -->
403 <string name="hint_userhost">"user@hostname"</string>
404
405 <!-- Hint given to user when the format they're using is incorrect in the quick-connect box. -->
406 <string name="list_format_error">"Use the format \"%1$s\""</string>
407
408 <!-- Part of the formatting hints that will be used like: username@hostname:port -->
409 <string name="format_username">"user"</string>
410 <!-- Part of the formatting hints that will be used like: username@hostname:port -->
411 <string name="format_hostname">"host"</string>
412 <!-- Part of the formatting hints that will be used like: username@hostname:port -->
413 <string name="format_port">"port"</string>
414
415 <string name="list_menu_pubkeys">"Manage Pubkeys"</string>
416 <!-- Selection choice to sort hosts by color. -->
417 <string name="list_menu_sortcolor">"Sort by color"</string>
418 <!-- Selection choice to sort hosts by nickname. -->
419 <string name="list_menu_sortname">"Sort by name"</string>
420 <string name="list_menu_settings">"Settings"</string>
421
422 <string name="list_host_disconnect">"Disconnect"</string>
423 <string name="list_host_edit">"Edit host"</string>
424 <string name="list_host_portforwards">"Edit port forwards"</string>
425 <string name="list_host_delete">"Delete host"</string>
426 <!-- Note that the '\n' splits the lines so it's actually "quick-connect box below to connect" -->
427 <string name="list_host_empty">"Use the quick-connect box"\n"below to connect to a host."</string>
428
429 <!-- Default screen rotation preference selection -->
430 <string name="list_rotation_default">"Default"</string>
431 <string name="list_rotation_land">"Force landscape"</string>
432 <string name="list_rotation_port">"Force portrait"</string>
433 <!-- Selection to indicate the rotation should be selected automatically based on the tilt sensor. -->
434 <string name="list_rotation_auto">"Automatic"</string>
435
436 <!-- Selection to indicate pressing a hardware button should send Ctrl. -->
437 <string name="list_hwbutton_ctrl">"CTRL"</string>
438 <!-- Selection to indicate pressing a hardware button should send Esc. -->
439 <string name="list_hwbutton_esc">"Esc"</string>
440 <!-- Selection to indicate pressing a hardware button should send a Tab. -->
441 <string name="list_hwbutton_tab">"Tab"</string>
442 <!-- Selection to indicate pressing a hardware button should do a screen capture. -->
443 <string name="list_hwbutton_screen_capture">"Screen Capture"</string>
444 <!-- Selection to indicate pressing a hardware button should send "Ctrl then Space". -->
445 <string name="list_hwbutton_ctrlaspace">"Ctrl+A then Space"</string>
446 <!-- Selection to indicate pressing a hardware button should send "Ctrl+A". -->
447 <string name="list_hwbutton_ctrla">"Ctrl+A"</string>
448 <!-- Selection to indicate pressing a hardware button should send "Esc+A". -->
449 <string name="list_hwbutton_esc_a">"Esc+A"</string>
450 <!-- Selection to indicate pressing a hardware button should send nothing at all. -->
451 <string name="list_hwbutton_none">"None"</string>
452
453 <!-- Name for the backspace character -->
454 <string name="list_delkey_backspace">"Backspace"</string>
455 <!-- Name for the ASCII DEL character -->
456 <string name="list_delkey_del">"Delete"</string>
457
458 <string name="delete_message">"Are you sure you want to delete '%1$s'?"</string>
459 <string name="delete_pos">"Yes, delete"</string>
460 <string name="delete_neg">"Cancel"</string>
461
462 <!-- Button to agree to license terms. -->
463 <string name="wizard_agree">"Agree"</string>
464 <!-- Button to go to the next page in the first time start-up wizard. -->
465 <string name="wizard_next">"Next"</string>
466 <!-- Button to go to the previous page in the first time start-up wizard. -->
467 <string name="wizard_back">"Back"</string>
468
469 <string name="terminal_no_hosts_connected">"No hosts currently connected"</string>
470
471 <!-- Displayed in terminal when attempting to connect to a host. The first two
472 variables are host:port and the third is the protocol (e.g., SSH) -->
473 <string name="terminal_connecting">"Connecting to %1$s:%2$d via %3$s"</string>
474
475 <!-- Displays the host key to the user in the terminal -->
476 <string name="terminal_sucess">"Verified host '%1$s' key: %2$s"</string>
477 <string name="terminal_failed">"Host key verification failed."</string>
478
479 <!-- Displayed on the terminal describing the cryptographic algorithm names -->
480 <string name="terminal_using_s2c_algorithm">"Server-to-client algorithm: %1$s %2$s"</string>
481 <!-- Displayed on the terminal describing the cryptographic algorithm names -->
482 <string name="terminal_using_c2s_algorithm">"Client-to-server algorithm: %1$s %2$s"</string>
483 <!-- Displayed on the terminal describing the cryptographic algorithm names -->
484 <string name="terminal_using_algorithm">"Using algorithm: %1$s %2$s"</string>
485
486 <string name="terminal_auth">"Trying to authenticate"</string>
487
488 <string name="terminal_auth_pass">"Attempting 'password' authentication"</string>
489 <string name="terminal_auth_pass_fail">"Authentication method 'password' failed"</string>
490
491 <string name="terminal_auth_pubkey_any">"Attempting 'publickey' authentication with any in-memory public keys"</string>
492 <string name="terminal_auth_pubkey_invalid">"Selected public key is invalid, try reselecting key in host editor"</string>
493 <string name="terminal_auth_pubkey_specific">"Attempting 'publickey' authentication with a specific public key"</string>
494 <string name="terminal_auth_pubkey_fail">"Authentication method 'publickey' with key '%1$s' failed"</string>
495
496 <string name="terminal_auth_ki">"Attempting 'keyboard-interactive' authentication"</string>
497 <string name="terminal_auth_ki_fail">"Authentication method 'keyboard-interactive' failed"</string>
498
499 <string name="terminal_auth_fail">"[Your host doesn't support 'password' or 'keyboard-interactive' authentication.]"</string>
500
501 <string name="terminal_no_session">"Session will not be started due to host preference."</string>
502 <string name="terminal_enable_portfoward">"Enable port forward: %1$s"</string>
503
504 <string name="local_shell_unavailable">"Failure! Local shell is unavailable on this phone."</string>
505
506 <!-- Text sent to the user to alert them that a Terminal Bell is received in a background session -->
507 <string name="notification_text">"%1$s wants your attention."</string>
508
509 <!-- Preference selection for SSH Authentication Agent to never use pubkeys -->
510 <string name="no">"No"</string>
511 <!-- Preference selection for SSH Authentication Agent to be able to use pubkeys "with confirmation" only -->
512 <string name="with_confirmation">"With confirmation"</string>
513 <!-- Preference selection for SSH Authentication Agent to be able to use pubkeys -->
514 <string name="yes">"Yes"</string>
515
516 <!-- String displayed to user when they're asked to submit exceptions to the ConnectBot developers -->
517 <string name="exceptions_submit_message">"It appears ConnectBot had a problem last time it ran. Submit error report to ConnectBot developers?"</string>
518
519 <!-- Menu selection to reset colors to their defaults. -->
520 <string name="menu_colors_reset">"Reset"</string>
521
522 <!-- Displayed in the notification bar that connections are active -->
523 <string name="app_is_running">"510 ConnectBot is running"</string>
524
525 <string name="color_red">"red"</string>
526 <string name="color_green">"green"</string>
527 <string name="color_blue">"blue"</string>
528 <string name="color_gray">"gray"</string>
529
530 <!-- Very short label indicating the thing next to it is "foreground color." -->
531 <string name="colors_fg">"FG":</string>
532
533 <!-- Very short label indicating the thing next to it is "background color." -->
534 <string name="color_bg">"BG:"</string>
535
536 <!-- Describes the image of the "connected to host" icon for accessibility purposes. -->
537 <string name="image_description_connected">"Connected."</string>
538
539 <!-- Describes the icon of the "locked pubkey" icon for accessibility purposes. -->
540 <string name="image_description_key_is_locked">"Key is locked."</string>
541
542 <!-- Describes the icon of the "send control character" button in the terminal view for
543 accessibility purposes. -->
544 <string name="image_description_toggle_control_character">Toggle control character.</string>
545
546 <!-- Describes the icon of the "send escape character" button in the terminal view for
547 accessibility purposes. -->
548 <string name="image_description_send_escape_character">Send escape character.</string>
549
550 <!-- Describes the icon of the "show keyboard" button in the terminal view for accessibility
551 purposes. -->
552 <string name="image_description_show_keyboard">Show keyboard.</string>
553
554 <!-- Describes the icon of the "line input" button in the terminal view for accessibility
555 purposes -->
556 <string name="image_description_line_input">Single line input</string>
557
558 <!-- Describes the icon of the "sym" button in the terminal view for accessibility
559 purposes -->
560 <string name="image_description_sym">Character picker window</string>
561
562 <string name="button_close">Close</string>
563
564 <!-- Keyboard customization -->
565 <string name="pref_custom_keymap_title">Custom Keymap</string>
566 <string name="pref_custom_keymap_summary">Remapping of certain keys on supported devices</string>
567 <string name="pref_custom_keymap_full">Full hardware keyboard</string>
568 <string name="pref_custom_keymap_disabled">disabled</string>
569
570 <!-- Force screen size -->
571 <string name="pref_default_size_category">Default sizing values</string>
572 <string name="pref_default_font_size">Default font size</string>
573 <string name="pref_default_font_size_summary">Default start font size (0 = Auto)</string>
574 <string name="pref_default_fsize_width">Default width (force size)</string>
575 <string name="pref_default_fsize_width_summary">Default screen width in columns for force resize</string>
576 <string name="pref_default_fsize_height">Default height (force size)</string>
577 <string name="pref_default_fsize_height_summary">Default screen height in rows for force resize</string>
578 <string name="resize_error_title">Error resizing screen</string>
579 <string name="resize_error_width_height">Width and height must be higher than 0</string>
580 <string name="dia_resize_x">x</string>
581
582 <!-- Screen capture -->
583 <string name="pref_screen_capture_category">Screen Capture</string>
584 <string name="pref_screen_capture_folder">Screen capture path</string>
585 <string name="pref_screen_capture_folder_summary">Folder to save screen capture files</string>
586 <string name="pref_screen_capture_popup">Screen capture report</string>
587 <string name="pref_screen_capture_popup_summary">Display a pop-up window on successful screen capture</string>
588 <string name="screen_capture">Screen Capture</string>
589 <string name="screenshot_success_title">Screenshot successful</string>
590 <string name="screenshot_saved_as">Screenshot saved as</string>
591 <string name="screenshot_error_title">Error creating screenshot</string>
592 <string name="screenshot_not_saved_as">Could not save screenshot as</string>
593
594 <!-- Character picker (Sym) dialog -->
595 <string name="pref_picker_string">Sym window contents</string>
596 <string name="pref_picker_string_summary">String of characters for the character picker dialog</string>
597 <string name="pref_picker_keep_open">Leave Sym window open</string>
598 <string name="pref_picker_keep_open_summary">Only the cancel button closes the picker dialog</string>
599
600 <!-- File Dialog -->
601 <string name="pref_file_transfer_category">File Transfer</string>
602 <string name="pref_file_dialog_title">File selection</string>
603 <string name="pref_file_dialog_summary">Dialog for choosing files and directories</string>
604 <string name="pref_file_dialog_builtin">built-in</string>
605 <string name="error_starting_app">Error starting %1$s</string>
606 <string name="file_chooser_select_file">Select file %1$s</string>
607 <string name="select_for_download">for download</string>
608 <string name="select_for_upload">for upload</string>
609 <string name="select_for_key_import">for key import</string>
610
611 <!-- com.lamerman.FileExplorer -->
612 <string name="location">Location</string>
613 <string name="cant_read_folder">Error reading folder.</string>
614 <string name="nnew">New</string>
615 <string name="select">Select</string>
616 <string name="file_name">File name:</string>
617 <string name="cancel">Cancel</string>
618 <string name="new_file">New file</string>
619 <string name="save">Save</string>
620 <string name="no_data">No Data</string>
621 <color name="gray">#ffff0000</color>
622
623 <!-- File Transfer -->
624 <string name="pref_download_folder">Download folder</string>
625 <string name="pref_download_folder_summary">Path to save downloaded files</string>
626 <string name="pref_remote_upload_folder">Remote upload folder</string>
627 <string name="pref_remote_upload_folder_summary">Remote path to save uploaded files</string>
628 <string name="pref_upload_dest_prompt">Upload target prompt</string>
629 <string name="pref_upload_dest_prompt_summary">Prompt for remote destination of file uploads</string>
630 <string name="pref_background_file_transfer">Background file transfer</string>
631 <string name="pref_background_file_transfer_summary">Perform file downloads and uploads in background</string>
632 <string name="transfer_downloading">"Downloading file&#8230;"</string>
633 <string name="transfer_downloading_file">Downloading file: %1$s</string>
634 <string name="transfer_download_complete">Download complete</string>
635 <string name="transfer_download_failed">Error downloading file(s):%1$s</string>
636 <string name="transfer_select_remote_download_title">Download file(s)</string>
637 <string name="transfer_select_remote_download_desc">Enter paths of the remote files to download (one per line)</string>
638 <string name="transfer_select_remote_upload_dest_title">Upload destination</string>
639 <string name="transfer_select_remote_upload_dest_desc">Enter remote file name for:</string>
640 <string name="transfer_button_download">Download</string>
641 <string name="transfer_button_upload">Upload</string>
642 <string name="transfer_uploading">"Uploading file&#8230;"</string>
643 <string name="transfer_uploading_file">Uploading file: %1$s</string>
644 <string name="transfer_upload_complete">Upload complete</string>
645 <string name="transfer_upload_failed">Error uploading file(s):%1$s</string>
646
647 <!-- Key export -->
648 <string name="pubkey_export_private">"Export private key"</string>
649 <string name="pubkey_export_public">"Export public key"</string>
650 <string name="pubkey_public_save_as">Save public key</string>
651 <string name="pubkey_public_save_as_desc">File name (full path) to save the public key</string>
652 <string name="pubkey_private_save_as">Save private key</string>
653 <string name="pubkey_private_save_as_desc">File name (full path) to save the private key</string>
654 <string name="pubkey_public_export_success">Public key saved as %1$s</string>
655 <string name="pubkey_public_export_problem">Error exporting public key</string>
656 <string name="pubkey_private_export_success">Private key saved as %1$s</string>
657 <string name="pubkey_private_export_problem">Error exporting private key</string>
658
659 <!-- Debug -->
660 <string name="pref_debug_category">Debug settings</string>
661 <string name="pref_debug_keycodes">Print keycodes</string>
662 <string name="pref_debug_keycodes_summary">Print codes of keys pressed in terminal window</string>
663 <string name="keycode_pressed">Code of pressed key</string>
664
665 <!-- Long Press Menu -->
666 <string name="pref_extended_longpress">Extended longpress menu</string>
667 <string name="pref_extended_longpress_summary">Show input dialogs in tap-and-hold menu</string>
668 <string name="longpress_select_action">Select Action</string>
669 <string name="longpress_enable_full_screen_mode">Enable full screen mode</string>
670 <string name="longpress_disable_full_screen_mode">Disable full screen mode</string>
671 <string name="longpress_change_font_size">Change font size</string>
672 <string name="longpress_arrows_dialog">Arrow keys</string>
673 <string name="longpress_fkeys_dialog">Function keys</string>
674 <string name="longpress_ctrl_dialog">CTRL+?</string>
675 <string name="longpress_sym_dialog">Character picker</string>
676
677 <!-- Ctrl picker dialog -->
678 <string name="pref_ctrl_string">Ctrl window contents</string>
679 <string name="pref_ctrl_string_summary">String of characters for the CTRL+? combination</string>
680
681 <string name="fullscreen">Fullscreen</string>
682 </resources>