aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/main/res
diff options
context:
space:
mode:
authorJeremy Klein <jlklein@google.com>2015-10-05 17:28:41 -0700
committerJeremy Klein <jlklein@google.com>2015-10-06 13:02:43 -0700
commit505d8fdab97829cbd87dbcf476e029a44d886a90 (patch)
tree1801e80bdd066969cbe080d6bcc505e7fab482e8 /app/src/main/res
parent28a10c2e533942eb208d3bdf68902645cbf2e3f8 (diff)
downloadconnectbot-505d8fdab97829cbd87dbcf476e029a44d886a90.tar.gz
connectbot-505d8fdab97829cbd87dbcf476e029a44d886a90.tar.bz2
connectbot-505d8fdab97829cbd87dbcf476e029a44d886a90.zip
Get rid of the final html help view and switch it to native.
Diffstat (limited to 'app/src/main/res')
-rw-r--r--app/src/main/res/drawable/gesture_hostnext.pngbin0 -> 8161 bytes
-rw-r--r--app/src/main/res/drawable/gesture_hostprev.pngbin0 -> 8232 bytes
-rw-r--r--app/src/main/res/drawable/gesture_pgdn.pngbin0 -> 8434 bytes
-rw-r--r--app/src/main/res/drawable/gesture_pgup.pngbin0 -> 8560 bytes
-rw-r--r--app/src/main/res/drawable/gesture_scrollback.pngbin0 -> 9061 bytes
-rw-r--r--app/src/main/res/drawable/gesture_scrollforward.pngbin0 -> 8691 bytes
-rw-r--r--app/src/main/res/layout-sw500dp/act_hints.xml262
-rw-r--r--app/src/main/res/layout/act_help.xml18
-rw-r--r--app/src/main/res/layout/act_help_topic.xml33
-rw-r--r--app/src/main/res/layout/act_hints.xml196
-rw-r--r--app/src/main/res/values/strings.xml39
11 files changed, 515 insertions, 33 deletions
diff --git a/app/src/main/res/drawable/gesture_hostnext.png b/app/src/main/res/drawable/gesture_hostnext.png
new file mode 100644
index 0000000..624223d
--- /dev/null
+++ b/app/src/main/res/drawable/gesture_hostnext.png
Binary files differ
diff --git a/app/src/main/res/drawable/gesture_hostprev.png b/app/src/main/res/drawable/gesture_hostprev.png
new file mode 100644
index 0000000..f99f70c
--- /dev/null
+++ b/app/src/main/res/drawable/gesture_hostprev.png
Binary files differ
diff --git a/app/src/main/res/drawable/gesture_pgdn.png b/app/src/main/res/drawable/gesture_pgdn.png
new file mode 100644
index 0000000..61b769b
--- /dev/null
+++ b/app/src/main/res/drawable/gesture_pgdn.png
Binary files differ
diff --git a/app/src/main/res/drawable/gesture_pgup.png b/app/src/main/res/drawable/gesture_pgup.png
new file mode 100644
index 0000000..0e7f1ca
--- /dev/null
+++ b/app/src/main/res/drawable/gesture_pgup.png
Binary files differ
diff --git a/app/src/main/res/drawable/gesture_scrollback.png b/app/src/main/res/drawable/gesture_scrollback.png
new file mode 100644
index 0000000..714e626
--- /dev/null
+++ b/app/src/main/res/drawable/gesture_scrollback.png
Binary files differ
diff --git a/app/src/main/res/drawable/gesture_scrollforward.png b/app/src/main/res/drawable/gesture_scrollforward.png
new file mode 100644
index 0000000..0172e45
--- /dev/null
+++ b/app/src/main/res/drawable/gesture_scrollforward.png
Binary files differ
diff --git a/app/src/main/res/layout-sw500dp/act_hints.xml b/app/src/main/res/layout-sw500dp/act_hints.xml
new file mode 100644
index 0000000..d0b82e2
--- /dev/null
+++ b/app/src/main/res/layout-sw500dp/act_hints.xml
@@ -0,0 +1,262 @@
+<!--
+ ~ ConnectBot: simple, powerful, open-source SSH client for Android
+ ~ Copyright 2015 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.
+ -->
+
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ tools:context="org.connectbot.HintsActivity">
+
+ <ScrollView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ >
+
+ <LinearLayout
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:orientation="vertical"
+ android:padding="10dip"
+ >
+
+ <TextView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/host_shortcuts_header"
+ android:textAppearance="?android:attr/textAppearanceLarge"
+ android:layout_marginTop="10dp"/>
+
+ <TextView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/host_shortcuts_content"
+ android:textAppearance="?android:attr/textAppearanceMedium"
+ android:layout_marginTop="5dp"
+ android:layout_marginBottom="5dp"/>
+
+ <TextView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/scroll_hints_header"
+ android:textAppearance="?android:attr/textAppearanceLarge"
+ android:layout_marginTop="10dp"/>
+
+ <TextView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/scroll_hints_content"
+ android:textAppearance="?android:attr/textAppearanceMedium"
+ android:layout_marginTop="5dp"
+ android:layout_marginBottom="5dp"/>
+
+ <RelativeLayout
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:gravity="center">
+ <ImageView
+ android:id="@+id/scrollback_image"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:src="@drawable/gesture_scrollback"
+ android:contentDescription="@string/scrolling_back"
+ android:layout_marginTop="10dp"
+ android:layout_marginRight="10dp"
+ android:layout_gravity="center_horizontal"/>
+
+ <TextView
+ android:id="@+id/scrollback_text"
+ android:layout_width="0dp"
+ android:layout_height="wrap_content"
+ android:text="@string/scrolling_back"
+ android:textAppearance="?android:attr/textAppearanceSmall"
+ android:layout_marginBottom="5dp"
+ android:layout_alignStart="@id/scrollback_image"
+ android:layout_alignLeft="@id/scrollback_image"
+ android:layout_alignEnd="@id/scrollback_image"
+ android:layout_alignRight="@id/scrollback_image"
+ android:layout_below="@id/scrollback_image"
+ android:gravity="center_horizontal"/>
+
+ <ImageView
+ android:id="@+id/scrollforward_image"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:src="@drawable/gesture_scrollforward"
+ android:contentDescription="@string/scrolling_forward"
+ android:layout_marginTop="10dp"
+ android:layout_marginLeft="10dp"
+ android:layout_toRightOf="@id/scrollback_image"
+ android:layout_toEndOf="@id/scrollback_image"/>
+
+ <TextView
+ android:id="@+id/scrollforward_text"
+ android:layout_width="0dp"
+ android:layout_height="wrap_content"
+ android:text="@string/scrolling_forward"
+ android:textAppearance="?android:attr/textAppearanceSmall"
+ android:layout_marginBottom="5dp"
+ android:layout_below="@id/scrollforward_image"
+ android:layout_alignStart="@id/scrollforward_image"
+ android:layout_alignLeft="@id/scrollforward_image"
+ android:layout_alignEnd="@id/scrollforward_image"
+ android:layout_alignRight="@id/scrollforward_image"
+ android:gravity="center_horizontal"/>
+ </RelativeLayout>
+
+ <TextView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/page_updn_header"
+ android:textAppearance="?android:attr/textAppearanceLarge"
+ android:layout_marginTop="10dp"/>
+
+ <TextView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/page_updn_content"
+ android:textAppearance="?android:attr/textAppearanceMedium"
+ android:layout_marginTop="5dp"
+ android:layout_marginBottom="5dp"/>
+
+ <RelativeLayout
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:gravity="center">
+ <ImageView
+ android:id="@+id/pgup_image"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:src="@drawable/gesture_pgup"
+ android:contentDescription="@string/page_up"
+ android:layout_marginTop="10dp"
+ android:layout_marginRight="10dp"
+ android:layout_gravity="center_horizontal"/>
+
+ <TextView
+ android:id="@+id/pgup_text"
+ android:layout_width="0dp"
+ android:layout_height="wrap_content"
+ android:text="@string/page_up"
+ android:textAppearance="?android:attr/textAppearanceSmall"
+ android:layout_marginBottom="5dp"
+ android:layout_alignStart="@id/pgup_image"
+ android:layout_alignLeft="@id/pgup_image"
+ android:layout_alignEnd="@id/pgup_image"
+ android:layout_alignRight="@id/pgup_image"
+ android:layout_below="@id/pgup_image"
+ android:gravity="center_horizontal"/>
+
+ <ImageView
+ android:id="@+id/pgdn_image"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:src="@drawable/gesture_pgdn"
+ android:contentDescription="@string/page_down"
+ android:layout_marginTop="10dp"
+ android:layout_marginLeft="10dp"
+ android:layout_toRightOf="@id/pgup_image"
+ android:layout_toEndOf="@id/pgup_image"/>
+
+ <TextView
+ android:id="@+id/pgdn_text"
+ android:layout_width="0dp"
+ android:layout_height="wrap_content"
+ android:text="@string/page_down"
+ android:textAppearance="?android:attr/textAppearanceSmall"
+ android:layout_marginBottom="5dp"
+ android:layout_below="@id/pgdn_image"
+ android:layout_alignStart="@id/pgdn_image"
+ android:layout_alignLeft="@id/pgdn_image"
+ android:layout_alignEnd="@id/pgdn_image"
+ android:layout_alignRight="@id/pgdn_image"
+ android:gravity="center_horizontal"/>
+ </RelativeLayout>
+
+ <TextView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/switching_hosts_header"
+ android:textAppearance="?android:attr/textAppearanceLarge"
+ android:layout_marginTop="10dp"/>
+
+ <TextView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/switching_hosts_content"
+ android:textAppearance="?android:attr/textAppearanceMedium"
+ android:layout_marginTop="5dp"
+ android:layout_marginBottom="5dp"/>
+
+ <RelativeLayout
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:gravity="center">
+ <ImageView
+ android:id="@+id/prev_host_image"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:src="@drawable/gesture_hostprev"
+ android:contentDescription="@string/prev_host"
+ android:layout_marginTop="10dp"
+ android:layout_marginRight="10dp"
+ android:layout_gravity="center_horizontal"/>
+
+ <TextView
+ android:id="@+id/prev_host_text"
+ android:layout_width="0dp"
+ android:layout_height="wrap_content"
+ android:text="@string/prev_host"
+ android:textAppearance="?android:attr/textAppearanceSmall"
+ android:layout_marginBottom="5dp"
+ android:layout_alignStart="@id/prev_host_image"
+ android:layout_alignLeft="@id/prev_host_image"
+ android:layout_alignEnd="@id/prev_host_image"
+ android:layout_alignRight="@id/prev_host_image"
+ android:layout_below="@id/prev_host_image"
+ android:gravity="center_horizontal"/>
+
+ <ImageView
+ android:id="@+id/next_host_image"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:src="@drawable/gesture_hostnext"
+ android:contentDescription="@string/next_host"
+ android:layout_marginTop="10dp"
+ android:layout_marginLeft="5dp"
+ android:layout_toRightOf="@id/prev_host_image"
+ android:layout_toEndOf="@id/prev_host_image"/>
+
+ <TextView
+ android:id="@+id/next_host_text"
+ android:layout_width="0dp"
+ android:layout_height="wrap_content"
+ android:text="@string/next_host"
+ android:textAppearance="?android:attr/textAppearanceSmall"
+ android:layout_marginBottom="10dp"
+ android:layout_below="@id/next_host_image"
+ android:layout_alignStart="@id/next_host_image"
+ android:layout_alignLeft="@id/next_host_image"
+ android:layout_alignEnd="@id/next_host_image"
+ android:layout_alignRight="@id/next_host_image"
+ android:gravity="center_horizontal"/>
+ </RelativeLayout>
+
+ </LinearLayout>
+
+ </ScrollView>
+
+</RelativeLayout>
diff --git a/app/src/main/res/layout/act_help.xml b/app/src/main/res/layout/act_help.xml
index b4bb808..146eaa1 100644
--- a/app/src/main/res/layout/act_help.xml
+++ b/app/src/main/res/layout/act_help.xml
@@ -52,5 +52,23 @@
android:textAppearance="?android:attr/textAppearanceMedium"
/>
+ <Button
+ android:id="@+id/hints_button"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/hints"/>
+
+ <Button
+ android:id="@+id/shortcuts_button"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/keyboard_shortcuts"/>
+
+ <Button
+ android:id="@+id/eula_button"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/terms_and_conditions"/>
+
</LinearLayout>
</ScrollView>
diff --git a/app/src/main/res/layout/act_help_topic.xml b/app/src/main/res/layout/act_help_topic.xml
deleted file mode 100644
index f02e35e..0000000
--- a/app/src/main/res/layout/act_help_topic.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-<?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.
- */
--->
-
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical"
- >
-
- <org.connectbot.util.HelpTopicView
- android:id="@+id/topic_text"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- />
-
-</LinearLayout>
diff --git a/app/src/main/res/layout/act_hints.xml b/app/src/main/res/layout/act_hints.xml
new file mode 100644
index 0000000..69475d9
--- /dev/null
+++ b/app/src/main/res/layout/act_hints.xml
@@ -0,0 +1,196 @@
+<!--
+ ~ ConnectBot: simple, powerful, open-source SSH client for Android
+ ~ Copyright 2015 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.
+ -->
+
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ tools:context="org.connectbot.HintsActivity">
+
+ <ScrollView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ >
+
+ <LinearLayout
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:orientation="vertical"
+ android:padding="10dip"
+ >
+
+ <TextView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/host_shortcuts_header"
+ android:textAppearance="?android:attr/textAppearanceLarge"
+ android:layout_marginTop="10dp"/>
+
+ <TextView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/host_shortcuts_content"
+ android:textAppearance="?android:attr/textAppearanceMedium"
+ android:layout_marginTop="5dp"
+ android:layout_marginBottom="5dp"/>
+
+ <TextView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/scroll_hints_header"
+ android:textAppearance="?android:attr/textAppearanceLarge"
+ android:layout_marginTop="10dp"/>
+
+ <TextView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/scroll_hints_content"
+ android:textAppearance="?android:attr/textAppearanceMedium"
+ android:layout_marginTop="5dp"
+ android:layout_marginBottom="5dp"/>
+
+ <ImageView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:src="@drawable/gesture_scrollback"
+ android:contentDescription="@string/scrolling_back"
+ android:layout_marginTop="10dp"
+ android:layout_gravity="center_horizontal"/>
+
+ <TextView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/scrolling_back"
+ android:textAppearance="?android:attr/textAppearanceSmall"
+ android:layout_marginBottom="5dp"
+ android:gravity="center_horizontal"/>
+
+ <ImageView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:src="@drawable/gesture_scrollforward"
+ android:contentDescription="@string/scrolling_forward"
+ android:layout_marginTop="10dp"
+ android:layout_gravity="center_horizontal"/>
+
+ <TextView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/scrolling_forward"
+ android:textAppearance="?android:attr/textAppearanceSmall"
+ android:layout_marginBottom="5dp"
+ android:gravity="center_horizontal"/>
+
+ <TextView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/page_updn_header"
+ android:textAppearance="?android:attr/textAppearanceLarge"
+ android:layout_marginTop="10dp"/>
+
+ <TextView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/page_updn_content"
+ android:textAppearance="?android:attr/textAppearanceMedium"
+ android:layout_marginTop="5dp"
+ android:layout_marginBottom="5dp"/>
+
+ <ImageView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:src="@drawable/gesture_pgup"
+ android:contentDescription="@string/page_up"
+ android:layout_marginTop="10dp"
+ android:layout_gravity="center_horizontal"/>
+
+ <TextView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/page_up"
+ android:textAppearance="?android:attr/textAppearanceSmall"
+ android:layout_marginBottom="5dp"
+ android:gravity="center_horizontal"/>
+
+ <ImageView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:src="@drawable/gesture_pgdn"
+ android:contentDescription="@string/page_down"
+ android:layout_marginTop="10dp"
+ android:layout_gravity="center_horizontal"/>
+
+ <TextView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/page_down"
+ android:textAppearance="?android:attr/textAppearanceSmall"
+ android:layout_marginBottom="5dp"
+ android:gravity="center_horizontal"/>
+
+ <TextView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/switching_hosts_header"
+ android:textAppearance="?android:attr/textAppearanceLarge"
+ android:layout_marginTop="10dp"/>
+
+ <TextView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/switching_hosts_content"
+ android:textAppearance="?android:attr/textAppearanceMedium"
+ android:layout_marginTop="5dp"
+ android:layout_marginBottom="5dp"/>
+
+ <ImageView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:src="@drawable/gesture_hostprev"
+ android:contentDescription="@string/prev_host"
+ android:layout_marginTop="10dp"
+ android:layout_gravity="center_horizontal"/>
+
+ <TextView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/prev_host"
+ android:textAppearance="?android:attr/textAppearanceSmall"
+ android:layout_marginBottom="5dp"
+ android:gravity="center_horizontal"/>
+
+ <ImageView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:src="@drawable/gesture_hostnext"
+ android:contentDescription="@string/next_host"
+ android:layout_marginTop="10dp"
+ android:layout_gravity="center_horizontal"/>
+
+ <TextView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/next_host"
+ android:textAppearance="?android:attr/textAppearanceSmall"
+ android:layout_marginBottom="5dp"
+ android:gravity="center_horizontal"/>
+
+ </LinearLayout>
+
+ </ScrollView>
+
+</RelativeLayout>
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index a0dc643..9482d9c 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -60,6 +60,45 @@
<!-- Title for the help page with the terms & conditions of the app. -->
<string name="terms_and_conditions">"Terms &amp; Conditions"</string>
+ <!-- Title for the help page with the hints about the app. -->
+ <string name="hints">"Hints"</string>
+
+ <!-- Header text for instructions about creating host shortcuts. -->
+ <string name="host_shortcuts_header">"Host Shortcuts"</string>
+
+ <!-- Instructions about creating host shortcuts. -->
+ <string name="host_shortcuts_content">"Long-press on your Android desktop to create direct shortcuts to frequently-used SSH hosts."</string>
+
+ <!-- Header text for instructions about scrolling the terminal. -->
+ <string name="scroll_hints_header">"Scroll back / Scroll forward"</string>
+
+ <!-- Instructions about scrolling the terminal. -->
+ <string name="scroll_hints_content">"Swiping your finger up on the right side of the screen allows you to scroll backward and forward in the local terminal buffer history."</string>
+
+ <!-- Captions for images showing the scroll back/forward gestures. -->
+ <string name="scrolling_back">"Scrolling back"</string>
+ <string name="scrolling_forward">"Scrolling forward"</string>
+
+ <!-- Header text for instructions about paging up and down in the terminal. -->
+ <string name="page_updn_header">"Page Up / Page Down"</string>
+
+ <!-- Instructions about paging up and down in the terminal. -->
+ <string name="page_updn_content">"Swiping your finger up and down on the left third of the screen will send a page up and page down key to the remote host. Many programs map this to scrolling back into history such as irssi or tinyfugue."</string>
+
+ <!-- Captions for images showing the page up/down gestures. -->
+ <string name="page_up">"Page up"</string>
+ <string name="page_down">"Page down"</string>
+
+ !-- Header text for instructions about switching to the next and previous host in the terminal. -->
+ <string name="switching_hosts_header">"Switching Hosts"</string>
+
+ <!-- Instructions about switching to the next and previous host in the terminal. -->
+ <string name="switching_hosts_content">"Swiping your finger from one side of the screen to the other will switch between currently connected hosts."</string>
+
+ <!-- Captions for images showing the next/previous host gestures. -->
+ <string name="next_host">"Next host"</string>
+ <string name="prev_host">"Previous host"</string>
+
<!-- Title for the help dialog showing keyboard shortcuts. -->
<string name="keyboard_shortcuts">"Keyboard Shortcuts"</string>
<!-- Text in a keyboard shortcuts list lined up to keys which increase the terminal font-size. -->