aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/main/res/values
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/values')
-rw-r--r--app/src/main/res/values/arrays.xml142
-rw-r--r--app/src/main/res/values/notrans.xml25
-rw-r--r--app/src/main/res/values/strings.xml500
-rw-r--r--app/src/main/res/values/styles.xml25
-rw-r--r--app/src/main/res/values/version.xml4
5 files changed, 696 insertions, 0 deletions
diff --git a/app/src/main/res/values/arrays.xml b/app/src/main/res/values/arrays.xml
new file mode 100644
index 0000000..c9090ea
--- /dev/null
+++ b/app/src/main/res/values/arrays.xml
@@ -0,0 +1,142 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+/*
+ * ConnectBot: simple, powerful, open-source SSH client for Android
+ * Copyright 2007 Kenny Root, Jeffrey Sharkey
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+-->
+<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string-array name="list_emulation_modes" translatable="false">
+ <item>xterm-color</item>
+ <item>xterm-256color</item>
+ <item>xterm</item>
+ <item>vt100</item>
+ <item>ansi</item>
+ <item>screen</item>
+ </string-array>
+
+ <string-array name="list_rotation" translatable="false">
+ <item>@string/list_rotation_default</item>
+ <item>@string/list_rotation_land</item>
+ <item>@string/list_rotation_port</item>
+ <item>@string/list_rotation_auto</item>
+ </string-array>
+
+ <string-array name="list_rotation_values" translatable="false">
+ <item>Default</item>
+ <item>Force landscape</item>
+ <item>Force portrait</item>
+ <item>Automatic</item>
+ </string-array>
+
+ <string-array name="list_camera" translatable="false">
+ <item>@string/list_camera_ctrlaspace</item>
+ <item>@string/list_camera_ctrla</item>
+ <item>@string/list_camera_esc</item>
+ <item>@string/list_camera_esc_a</item>
+ <item>@string/list_camera_none</item>
+ </string-array>
+
+ <string-array name="list_camera_values" translatable="false">
+ <item>Ctrl+A then Space</item>
+ <item>Ctrl+A</item>
+ <item>Esc</item>
+ <item>Esc+A</item>
+ <item>None</item>
+ </string-array>
+
+ <string-array name="list_colors" translatable="false">
+ <item>@string/color_red</item>
+ <item>@string/color_green</item>
+ <item>@string/color_blue</item>
+ <item>@string/color_gray</item>
+ </string-array>
+
+ <string-array name="list_color_values" translatable="false">
+ <item>red</item>
+ <item>green</item>
+ <item>blue</item>
+ <item>gray</item>
+ </string-array>
+
+ <string-array name="list_update" translatable="false">
+ <item>@string/list_update_daily</item>
+ <item>@string/list_update_weekly</item>
+ <item>@string/list_update_never</item>
+ </string-array>
+
+ <string-array name="list_update_values" translatable="false">
+ <item>Daily</item>
+ <item>Weekly</item>
+ <item>Never</item>
+ </string-array>
+
+ <string-array name="list_keymode" translatable="false">
+ <item>@string/list_keymode_right</item>
+ <item>@string/list_keymode_left</item>
+ <item>@string/list_keymode_none</item>
+ </string-array>
+
+ <string-array name="list_keymode_values" translatable="false">
+ <item>Use right-side keys</item>
+ <item>Use left-side keys</item>
+ <item>none</item>
+ </string-array>
+
+ <string-array name="list_pubkeyids" translatable="false">
+ <item>@string/list_pubkeyids_none</item>
+ <item>@string/list_pubkeyids_any</item>
+ </string-array>
+
+ <string-array name="list_pubkeyids_value" translatable="false">
+ <item>-2</item>
+ <item>-1</item>
+ </string-array>
+
+ <string-array name="list_authagent" translatable="false">
+ <item>@string/no</item>
+ <item>@string/with_confirmation</item>
+ <item>@string/yes</item>
+ </string-array>
+
+ <string-array name="list_authagent_values" translatable="false">
+ <item>no</item>
+ <item>confirm</item>
+ <item>yes</item>
+ </string-array>
+
+ <string-array name="list_portforward_types" translatable="false">
+ <item>@string/portforward_local</item>
+ <item>@string/portforward_remote</item>
+ <item>@string/portforward_dynamic</item>
+ </string-array>
+
+ <string-array name="list_wizard_topics" translatable="false">
+ <item>Hints</item>
+ <item>PhysicalKeyboard</item>
+ <item>VirtualKeyboard</item>
+ </string-array>
+
+ <string-array name="list_delkey" translatable="false">
+ <item>@string/list_delkey_del</item>
+ <item>@string/list_delkey_backspace</item>
+ </string-array>
+
+ <string-array name="list_delkey_values" translatable="false">
+ <item>del</item>
+ <item>backspace</item>
+ </string-array>
+
+</resources>
diff --git a/app/src/main/res/values/notrans.xml b/app/src/main/res/values/notrans.xml
new file mode 100644
index 0000000..3142ed6
--- /dev/null
+++ b/app/src/main/res/values/notrans.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+/*
+ * ConnectBot: simple, powerful, open-source SSH client for Android
+ * Copyright 2007 Kenny Root, Jeffrey Sharkey
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+-->
+<resources>
+ <string name="app_name" translatable="false">ConnectBot</string>
+
+ <string name="copyright_info" translatable="false">Before we get started, we need to get some legal information out of the way. ConnectBot is provided under the Apache License, Version 2.0 (the &#x201C;License&#x201D;). Here are a few key points:\n\nYou may not use this program except in compliance with the License. You may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an &#x201C;AS IS&#x201D; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.</string>
+
+</resources>
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
new file mode 100644
index 0000000..f8f8f89
--- /dev/null
+++ b/app/src/main/res/values/strings.xml
@@ -0,0 +1,500 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+/*
+ * ConnectBot: simple, powerful, open-source SSH client for Android
+ * Copyright 2007 Kenny Root, Jeffrey Sharkey
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+-->
+
+<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="app_desc">"Simple, powerful, open-source SSH client."</string>
+ <string name="service_desc">"Maintains SSH connections and loaded pubkeys"</string>
+
+ <!-- Window title for the Host List -->
+ <string name="title_hosts_list">"Hosts"</string>
+ <!-- Window title for the Pubkeys List -->
+ <string name="title_pubkey_list">"Pubkeys"</string>
+ <!-- Window title for the Port Forwards List -->
+ <string name="title_port_forwards_list">"Port forwards"</string>
+ <!-- Window title when editing host details -->
+ <string name="title_host_editor">"Edit Host"</string>
+ <!-- Window title for Help index -->
+ <string name="title_help">"Help"</string>
+ <!-- Window title for color list editing screen -->
+ <string name="title_colors">"Colors"</string>
+
+ <string name="resolve_connect">"Connect"</string>
+ <!-- Menu selection where user must move finger randomly over an area to gather entropy (collect random bits) -->
+ <string name="resolve_entropy">"Gather Entropy"</string>
+
+ <string name="menu_insert">"Add Host"</string>
+ <string name="menu_delete">"Delete Host"</string>
+ <string name="menu_preferences">"Preferences"</string>
+
+ <string name="help_intro">"Please select a topic below for more information on a particular subject."</string>
+ <string name="help_about">"About ConnectBot"</string>
+ <string name="help_keyboard">"Keyboard"</string>
+
+ <string name="pubkey_generate">"Generate"</string>
+ <string name="pubkey_import">"Import"</string>
+ <string name="pubkey_delete">"Delete key"</string>
+ <!-- Dialog title when user must move finger randomly over an area to gather entropy (collect random bits) -->
+ <string name="pubkey_gather_entropy">"Gathering Entropy"</string>
+ <string name="pubkey_touch_prompt">"Touch this box to gather randomness: %1$d%% done"</string>
+ <string name="pubkey_touch_hint">"In order to assure randomness during the key generation, move your finger randomly over the box below."</string>
+ <string name="pubkey_generating">"Generating key pair..."</string>
+ <string name="pubkey_copy_private">"Copy private key"</string>
+ <string name="pubkey_copy_public">"Copy public key"</string>
+ <!-- Note that the '\n' just splits lines, so it's actually "create or import" -->
+ <string name="pubkey_list_empty">"Tap \"Menu\" to create"\n"or import key pairs."</string>
+ <string name="pubkey_unknown_format">"Unknown format"</string>
+ <string name="pubkey_change_password">"Change password"</string>
+ <string name="pubkey_list_pick">"Pick from /sdcard"</string>
+ <string name="pubkey_import_parse_problem">"Problem parsing imported private key"</string>
+ <string name="pubkey_unlock">"Unlock key"</string>
+ <string name="pubkey_failed_add">"Bad password for key '%1$s'. Authentication failed."</string>
+ <string name="pubkey_memory_load">"Load into memory"</string>
+ <string name="pubkey_memory_unload">"Unload from memory"</string>
+ <string name="pubkey_load_on_start">"Load key on start"</string>
+ <!-- Pubkey preference asking user whether the key use should be confirmed via prompt before it can be used for authentication -->
+ <string name="pubkey_confirm_use">"Confirm before use"</string>
+
+ <!-- Note that the '\n' splits lines, so it's actually "create port forwards" -->
+ <string name="portforward_list_empty">"Tap \"Menu\" to create"\n"port forwards."</string>
+ <string name="portforward_edit">"Edit port forward"</string>
+ <string name="portforward_delete">"Delete port forward"</string>
+
+ <string name="prompt_nickname">"Nickname:"</string>
+ <!-- An example string that could be used as a nickname for a pubkey. -->
+ <string name="prompt_nickname_hint_pubkey">"My work key"</string>
+ <!-- The source TCP port for port forwards. -->
+ <string name="prompt_source_port">"Source port:"</string>
+ <!-- The "host:port" combination used for port forward destinations. -->
+ <string name="prompt_destination">"Destination:"</string>
+ <string name="prompt_old_password">"Old password:"</string>
+ <string name="prompt_password">"Password:"</string>
+ <!-- Added after a "Password:" prompt to indicate user needs to confirm entry. -->
+ <string name="prompt_again">"(again)"</string>
+ <!-- Label for the user to select port forward type. -->
+ <string name="prompt_type">"Type:"</string>
+ <string name="prompt_password_can_be_blank">"Note: password can be blank"</string>
+ <!-- Prompt for the size of the private key in bits. -->
+ <string name="prompt_bits">"Bits:"</string>
+
+ <!-- Prompt for the password to unlock a certain pubkey. -->
+ <string name="prompt_pubkey_password">"Password for key '%1$s'"</string>
+
+ <!-- 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" -->
+ <string name="prompt_allow_agent_to_use_key">"Allow remote host to"\n"use key '%1$s'?"</string>
+
+ <!-- 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. -->
+ <string name="host_verification_failure_warning_header">"WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!"</string>
+ <!-- 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. -->
+ <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>
+
+ <!-- Prompt user gets when the remote host has disconnected unexpectedly. -->
+ <string name="prompt_host_disconnected">"Host has disconnected."\n"Close session?"</string>
+ <!-- Prompt user must answer yes or no to when the remote host fails verification of encryption fingerprint -->
+ <string name="prompt_continue_connecting">"Are you sure you want"\n"to continue connecting?"</string>
+
+ <!-- Sent to user when the remote public encryption key fingerprint doesn't match the local database -->
+ <string name="host_authenticity_warning">"The authenticity of host '%1$s' can't be established."</string>
+ <!-- First field is encryption algorithm. Second is the actual fingerprint in hex digits -->
+ <string name="host_fingerprint">"Host %1$s key fingerprint is %2$s"</string>
+
+ <string name="alert_passwords_do_not_match_msg">"Passwords do not match!"</string>
+ <string name="alert_wrong_password_msg">"Wrong password!"</string>
+ <string name="alert_key_corrupted_msg">"Private key appears corrupt!"</string>
+ <string name="alert_sdcard_absent">"SD card is not inserted!"</string>
+
+ <!-- Add a new item (e.g., host or pubkey) to the list. -->
+ <string name="button_add">"Add"</string>
+ <!-- Change an existing item's (e.g., host or pubkey) details. -->
+ <string name="button_change">"Change"</string>
+ <!-- Button that begins the generation of a public key pair. -->
+ <string name="button_generate">"Generate Key"</string>
+ <!-- Button that resizes the screen to the user-specified dimensions. -->
+ <string name="button_resize">"Resize"</string>
+
+ <string name="alert_disconnect_msg">"Connection Lost"</string>
+
+ <string name="msg_copyright">"Copyright &#169; 2007-2008 Kenny Root http://the-b.org/, Jeffrey Sharkey http://jsharkey.org/"</string>
+
+ <!-- The category title for terminal emulation preferences. -->
+ <string name="pref_emulation_category">"Terminal emulation"</string>
+
+ <!-- Name for the emulation terminal type preference. -->
+ <string name="pref_emulation_title">"Emulation mode"</string>
+ <!-- Description of the emulation terminal type preference. -->
+ <string name="pref_emulation_summary">"Terminal emulation mode to use for PTY connections"</string>
+
+ <!-- Name for the scrollback size preference -->
+ <string name="pref_scrollback_title">"Scrollback size"</string>
+ <!-- Description of the scrollback size preference -->
+ <string name="pref_scrollback_summary">"Size of scrollback buffer to keep in memory for each console"</string>
+
+ <!-- The category title for user interface preferences -->
+ <string name="pref_ui_category">"User interface"</string>
+
+ <!-- Name for the rotation mode preference -->
+ <string name="pref_rotation_title">"Rotation mode"</string>
+ <!-- Summary for the rotation mode preference -->
+ <string name="pref_rotation_summary">"How to change rotation when keyboard popped in/out"</string>
+
+ <!-- Name for the full screen preference -->
+ <string name="pref_fullscreen_title">"Full screen"</string>
+ <!-- Summary for the full screen preference -->
+ <string name="pref_fullscreen_summary">"Hide status bar while in console"</string>
+
+ <!-- Name for the shifted numbers are f-keys preference -->
+ <string name="pref_shiftfkeys_title">"Shift+num are F-keys"</string>
+ <!-- Summary for the shifted numbers are f-keys preference -->
+ <string name="pref_shiftfkeys_summary">"On hardware keyboards, number keys send F1-F10 with shift"</string>
+
+ <!-- Name for the ctrl'ed numbers are f-keys preference -->
+ <string name="pref_ctrlfkeys_title">"Ctrl+num are F-keys"</string>
+ <!-- Summary for the ctrl'ed numbers are f-keys preference -->
+ <string name="pref_ctrlfkeys_summary">"On software keyboards, number keys send F1-F10 with ctrl"</string>
+
+ <!-- Name for the volume keys control font size preference -->
+ <string name="pref_volumefont_title">"Volume keys change font size"</string>
+ <!-- Summary for the volume keys control font size preference -->
+ <string name="pref_volumefont_summary">"Font size can also be changed in per-host settings"</string>
+
+ <!-- Name for the memorize keys preference -->
+ <string name="pref_memkeys_title">"Remember keys in memory"</string>
+ <!-- Summary for the memorize keys preference -->
+ <string name="pref_memkeys_summary">"Keep unlocked keys in memory until backend service is terminated"</string>
+
+ <!-- Name for the update check preference -->
+ <string name="pref_update_title">"Update check"</string>
+ <!-- Summary for the update check preference -->
+ <string name="pref_update_summary">"Set the maximum frequency to check for ConnectBot updates"</string>
+
+ <!-- Name for the preference that forces the service to stay running in the background.-->
+ <string name="pref_conn_persist_title">"Persist connections"</string>
+ <!-- Summary for the preference that forces the service to stay running in the background. -->
+ <string name="pref_conn_persist_summary">"Force connections to stay connected while in background"</string>
+
+ <!-- Name for the keyboard shortcuts preference -->
+ <string name="pref_keymode_title">"Directory shortcuts"</string>
+ <!-- Summary for the keyboard shortcuts preference -->
+ <string name="pref_keymode_summary">"Select how to use Alt for '/' and Shift for Tab"</string>
+
+ <!-- Name for the camera shortcut usage preference -->
+ <string name="pref_camera_title">"Camera shortcut"</string>
+ <!-- Summary for the camera shortcut usage preference -->
+ <string name="pref_camera_summary">"Select which shortcut to trigger when the camera button is pushed"</string>
+
+ <!-- Name for the keep screen on preference -->
+ <string name="pref_keepalive_title">"Keep screen awake"</string>
+ <!-- Summary for the camera shortcut usage preference -->
+ <string name="pref_keepalive_summary">"Prevent the screen from turning off when working in a console"</string>
+
+ <!-- Name for the Wi-Fi lock preference -->
+ <string name="pref_wifilock_title">"Keep Wi-Fi active"</string>
+ <!-- Summary for the Wi-Fi lock preference -->
+ <string name="pref_wifilock_summary">"Prevent Wi-Fi from turning off when a session is active"</string>
+
+ <!-- Name for the haptic feedback (bumpy arrow) preference -->
+ <string name="pref_bumpyarrows_title">"Bumpy arrows"</string>
+ <!-- Summary for the haptic feedback (bumpy arrow) preference -->
+ <string name="pref_bumpyarrows_summary">"Vibrate when sending arrow keys from trackball; useful for laggy connections"</string>
+
+ <!-- Category title for the Terminal Bell preferences -->
+ <string name="pref_bell_category">"Terminal bell"</string>
+
+ <!-- Checkbox preference title for the audible terminal bell feature -->
+ <string name="pref_bell_title">"Audible bell"</string>
+
+ <!-- Title for the slider preference to set the volume -->
+ <string name="pref_bell_volume_title">"Bell volume"</string>
+
+ <!-- Checkbox preference title for the vibrate on terminal bell feature -->
+ <string name="pref_bell_vibrate_title">"Vibrate on bell"</string>
+
+ <!-- Checkbox preference title for the receive notifications on terminal bell feature -->
+ <string name="pref_bell_notification_title">"Background notifications"</string>
+ <!-- Brief summary of the feature that is enabled when the checkbox preference for the receive notifications on terminal bell feature is checked -->
+ <string name="pref_bell_notification_summary">"Send notification when a terminal running in the background sounds a bell."</string>
+
+ <!-- Preference selection to indicate use of right side of keyboard for special shortcuts. -->
+ <string name="list_keymode_right">"Use right-side keys"</string>
+ <!-- Preference selection to indicate use of left side of keyboard for special shortcuts. -->
+ <string name="list_keymode_left">"Use left-side keys"</string>
+ <!-- Preference selection to indicate never to use special shortcut keys. -->
+ <string name="list_keymode_none">"Disable"</string>
+
+ <!-- Preference to not use pubkeys to authenticate to this host. -->
+ <string name="list_pubkeyids_none">"Do not use keys"</string>
+ <!-- Preference to use any pubkey to authenticate to this host. -->
+ <string name="list_pubkeyids_any">"Use any unlocked key"</string>
+
+ <!-- Frequency for which to check for program updates. -->
+ <string name="list_update_daily">"Daily"</string>
+ <!-- Frequency for which to check for program updates. -->
+ <string name="list_update_weekly">"Weekly"</string>
+ <!-- Frequency for which to check for program updates. -->
+ <string name="list_update_never">"Never"</string>
+
+ <!-- Host nickname field preference title -->
+ <string name="hostpref_nickname_title">"Nickname"</string>
+
+ <!-- Host color category preference title -->
+ <string name="hostpref_color_title">"Color category"</string>
+
+ <!-- Host's default font size when opening the terminal in points (pt) -->
+ <string name="hostpref_fontsize_title">"Font size (pt)"</string>
+
+ <!-- Host pubkey usage preference title -->
+ <string name="hostpref_pubkeyid_title">"Use pubkey authentication"</string>
+
+ <!-- Preference title for the SSH Authentication Agent Forwarding for a host connection -->
+ <string name="hostpref_authagent_title">"Use SSH auth agent"</string>
+
+ <!-- Host post-login automation preference title -->
+ <string name="hostpref_postlogin_title">"Post-login automation"</string>
+ <!-- Host post-login automation preference summary -->
+ <string name="hostpref_postlogin_summary">"Commands to run on remote server once authenticated"</string>
+
+ <!-- Host compression preference title -->
+ <string name="hostpref_compression_title">"Compression"</string>
+ <!-- Summary for compression preference -->
+ <string name="hostpref_compression_summary">"This may help with slower networks"</string>
+
+ <!-- Setting for whether we want a session to start up when we connect to a host -->
+ <string name="hostpref_wantsession_title">"Start shell session"</string>
+ <!-- Summary for field asking whether a shell session should be started up upon connection or not -->
+ <string name="hostpref_wantsession_summary">"Disable this preference to only use port forwards"</string>
+
+ <!-- Setting for whether the host should be reconnected to automatically upon disconnect -->
+ <string name="hostpref_stayconnected_title">"Stay connected"</string>
+ <!-- Summary for preference asking whether the host should be reconnected to when it disconnects -->
+ <string name="hostpref_stayconnected_summary">"Try to reconnect to host if disconnected"</string>
+
+ <!-- Setting for what key code is sent to the server when DEL key is pressed. -->
+ <string name="hostpref_delkey_title">"DEL Key"</string>
+ <!-- Summary for field asking what key code is sent to the server when DEL key is pressed. -->
+ <string name="hostpref_delkey_summary">"The key code sent when DEL key is pressed"</string>
+
+ <!-- Host character encoding preference title -->
+ <string name="hostpref_encoding_title">"Encoding"</string>
+ <!-- Host character encoding preference summary -->
+ <string name="hostpref_encoding_summary">"Character encoding for the host"</string>
+
+ <!-- Host preference category title for connection settings -->
+ <string name="hostpref_connection_category">"Connection settings"</string>
+
+ <!-- Username field title for host editor preference -->
+ <string name="hostpref_username_title">"Username"</string>
+
+ <!-- Hostname field title for host editor preference -->
+ <string name="hostpref_hostname_title">"Host"</string>
+
+ <!-- Port field title for host editor preference -->
+ <string name="hostpref_port_title">"Port"</string>
+
+ <!-- Displayed to indicate a host has never been connected to. -->
+ <string name="bind_never">"Never connected"</string>
+ <!-- The time that has elapsed since a host was connected to when it has been less than an hour. -->
+ <string name="bind_minutes">"%1$s minutes ago"</string>
+ <!-- The time that has elapsed since a host was connected to when it has been less than a day. -->
+ <string name="bind_hours">"%1$s hours ago"</string>
+ <!-- The time that has elapsed since a host was connected to when it has been a day or more. -->
+ <string name="bind_days">"%1$s days ago"</string>
+
+ <!-- Message given when user copies from the terminal. -->
+ <string name="console_copy_done">"Copied %1$d bytes to clipboard"</string>
+ <!-- Instructions for how to copy from the terminal. The '\n' entries are to split lines to improve readability and prevent wrapping off the screen. -->
+ <string name="console_copy_start">"Touch and drag"\n"or use directional pad"\n"to select area to copy"</string>
+
+ <!-- Button to close the disconnected terminal window. -->
+ <string name="console_menu_close">"Close"</string>
+ <!-- Button to begin copying from the terminal to the clipboard. -->
+ <string name="console_menu_copy">"Copy"</string>
+ <!-- Button to paste from the clipboard to the terminal. -->
+ <string name="console_menu_paste">"Paste"</string>
+ <!-- Button that brings user to the Port Forwards List. -->
+ <string name="console_menu_portforwards">"Port Forwards"</string>
+ <!-- Button that brings user to the terminal resizing dialog where they can force a size. -->
+ <string name="console_menu_resize">"Force Size"</string>
+ <!-- Button that brings up the list of URLs on the current screen -->
+ <string name="console_menu_urlscan">"URL Scan"</string>
+
+ <!-- Button label to answer "Yes" to a yes/no prompt -->
+ <string name="button_yes">"Yes"</string>
+ <!-- Button label to answer "No" to a yes/no prompt -->
+ <string name="button_no">"No"</string>
+
+ <!-- Selection for a "local" port forward. E.g., connections to a port listening locally is forwarded to the remote end's listening port. -->
+ <string name="portforward_local">"Local"</string>
+ <!-- Selection for a "remote" port forward. E.g., connections to a port listening remotely is forwarded to the local end's listening port. -->
+ <string name="portforward_remote">"Remote"</string>
+ <!-- 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. -->
+ <string name="portforward_dynamic">"Dynamic (SOCKS)"</string>
+ <!-- Button that commits the port forward to be made from the Port Forward Creation dialog. -->
+ <string name="portforward_pos">"Create port forward"</string>
+
+ <string name="portforward_done">"Successfully created port forward"</string>
+ <string name="portforward_problem">"Problem creating port forward, maybe you're using ports under 1024 or port is already used?"</string>
+
+ <string name="portforward_menu_add">"Add port forward"</string>
+
+ <!-- The string to present in the quick-connect box to hint the user to the format for connecting to hosts. -->
+ <string name="hint_userhost">"user@hostname"</string>
+
+ <!-- Hint given to user when the format they're using is incorrect in the quick-connect box. -->
+ <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>
+ <!-- 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 -->
+ <string name="format_port">"port"</string>
+
+ <string name="list_menu_pubkeys">"Manage Pubkeys"</string>
+ <!-- Selection choice to sort hosts by color. -->
+ <string name="list_menu_sortcolor">"Sort by color"</string>
+ <!-- Selection choice to sort hosts by nickname. -->
+ <string name="list_menu_sortname">"Sort by name"</string>
+ <string name="list_menu_settings">"Settings"</string>
+
+ <string name="list_host_disconnect">"Disconnect"</string>
+ <string name="list_host_edit">"Edit host"</string>
+ <string name="list_host_portforwards">"Edit port forwards"</string>
+ <string name="list_host_delete">"Delete host"</string>
+ <!-- Note that the '\n' splits the lines so it's actually "quick-connect box below to connect" -->
+ <string name="list_host_empty">"Use the quick-connect box"\n"below to connect to a host."</string>
+
+ <!-- Default screen rotation preference selection -->
+ <string name="list_rotation_default">"Default"</string>
+ <string name="list_rotation_land">"Force landscape"</string>
+ <string name="list_rotation_port">"Force portrait"</string>
+ <!-- Selection to indicate the rotation should be selected automatically based on the tilt sensor. -->
+ <string name="list_rotation_auto">"Automatic"</string>
+
+ <!-- Selection to indicate pressing the Camera button should send "Ctrl+A then Space". -->
+ <string name="list_camera_ctrlaspace">"Ctrl+A then Space"</string>
+ <!-- Selection to indicate pressing the Camera button should send "Ctrl+A". -->
+ <string name="list_camera_ctrla">"Ctrl+A"</string>
+ <!-- Selection to indicate pressing the Camera button should send the "Esc" key. -->
+ <string name="list_camera_esc">"Esc"</string>
+ <!-- Selection to indicate pressing the Camera button should send "Esc+A". -->
+ <string name="list_camera_esc_a">"Esc+A"</string>
+ <!-- Selection to indicate pressing the Camera button should send nothing at all. -->
+ <string name="list_camera_none">"None"</string>
+
+ <!-- Name for the backspace character -->
+ <string name="list_delkey_backspace">"Backspace"</string>
+ <!-- Name for the ASCII DEL character -->
+ <string name="list_delkey_del">"Delete"</string>
+
+ <string name="delete_message">"Are you sure you want to delete '%1$s'?"</string>
+ <string name="delete_pos">"Yes, delete"</string>
+ <string name="delete_neg">"Cancel"</string>
+
+ <!-- Button to agree to license terms. -->
+ <string name="wizard_agree">"Agree"</string>
+ <!-- Button to go to the next page in the first time start-up wizard. -->
+ <string name="wizard_next">"Next"</string>
+ <!-- Button to go to the previous page in the first time start-up wizard. -->
+ <string name="wizard_back">"Back"</string>
+
+ <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_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 -->
+ <string name="notification_text">"%1$s wants your attention."</string>
+
+ <!-- Preference selection for SSH Authentication Agent to never use pubkeys -->
+ <string name="no">"No"</string>
+ <!-- Preference selection for SSH Authentication Agent to be able to use pubkeys "with confirmation" only -->
+ <string name="with_confirmation">"With confirmation"</string>
+ <!-- Preference selection for SSH Authentication Agent to be able to use pubkeys -->
+ <string name="yes">"Yes"</string>
+
+ <!-- String displayed to user when they're asked to submit exceptions to the ConnectBot developers -->
+ <string name="exceptions_submit_message">"It appears ConnectBot had a problem last time it ran. Submit error report to ConnectBot developers?"</string>
+
+ <!-- Menu selection to reset colors to their defaults. -->
+ <string name="menu_colors_reset">"Reset"</string>
+
+ <!-- Displayed in the notification bar that connections are active -->
+ <string name="app_is_running">"ConnectBot is running"</string>
+
+ <string name="color_red">"red"</string>
+ <string name="color_green">"green"</string>
+ <string name="color_blue">"blue"</string>
+ <string name="color_gray">"gray"</string>
+
+ <!-- Very short label indicating the thing next to it is "foreground color." -->
+ <string name="colors_fg">"FG":</string>
+
+ <!-- Very short label indicating the thing next to it is "background color." -->
+ <string name="color_bg">"BG:"</string>
+
+ <!-- Describes the image of the "connected to host" icon for accessibility purposes. -->
+ <string name="image_description_connected">"Connected."</string>
+
+ <!-- Describes the icon of the "locked pubkey" icon for accessibility purposes. -->
+ <string name="image_description_key_is_locked">"Key is locked."</string>
+
+ <!-- Describes the icon of the "send control character" button in the terminal view for
+ accessibility purposes. -->
+ <string name="image_description_toggle_control_character">Toggle control character.</string>
+
+ <!-- Describes the icon of the "send escape character" button in the terminal view for
+ accessibility purposes. -->
+ <string name="image_description_send_escape_character">Send escape character.</string>
+
+ <!-- Describes the icon of the "show keyboard" button in the terminal view for accessibility
+ purposes. -->
+ <string name="image_description_show_keyboard">Show keyboard.</string>
+</resources>
diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml
new file mode 100644
index 0000000..22e830b
--- /dev/null
+++ b/app/src/main/res/values/styles.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+/*
+ * ConnectBot: simple, powerful, open-source SSH client for Android
+ * Copyright 2007 Kenny Root, Jeffrey Sharkey
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+-->
+<resources>
+ <style name="NoTitle" parent="android:Theme">
+ <item name="android:windowNoTitle">true</item>
+ <item name="android:windowContentOverlay">@null</item>
+ </style>
+</resources>
diff --git a/app/src/main/res/values/version.xml b/app/src/main/res/values/version.xml
new file mode 100644
index 0000000..94227c9
--- /dev/null
+++ b/app/src/main/res/values/version.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+ <string name="msg_version" translatable="false">ConnectBot (working copy)</string>
+</resources>