aboutsummaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
Diffstat (limited to 'res')
-rw-r--r--res/drawable/button_ctrl.png (renamed from res/drawable/keyboard_icon.png)bin3326 -> 3254 bytes
-rw-r--r--res/drawable/button_esc.pngbin0 -> 3638 bytes
-rw-r--r--res/layout/act_console.xml32
-rw-r--r--res/values/strings.xml5
4 files changed, 33 insertions, 4 deletions
diff --git a/res/drawable/keyboard_icon.png b/res/drawable/button_ctrl.png
index 9205d8b..dc4d786 100644
--- a/res/drawable/keyboard_icon.png
+++ b/res/drawable/button_ctrl.png
Binary files differ
diff --git a/res/drawable/button_esc.png b/res/drawable/button_esc.png
new file mode 100644
index 0000000..5f0cfc6
--- /dev/null
+++ b/res/drawable/button_esc.png
Binary files differ
diff --git a/res/layout/act_console.xml b/res/layout/act_console.xml
index d0d7ae6..22741b0 100644
--- a/res/layout/act_console.xml
+++ b/res/layout/act_console.xml
@@ -92,7 +92,7 @@
<Button
android:id="@+id/console_prompt_no"
- android:text="No"
+ android:text="@string/button_no"
android:paddingTop="5dip"
android:paddingBottom="10dip"
android:paddingLeft="40dip"
@@ -106,7 +106,7 @@
<Button
android:id="@+id/console_prompt_yes"
- android:text="Yes"
+ android:text="@string/button_yes"
android:paddingTop="5dip"
android:paddingBottom="10dip"
android:paddingLeft="40dip"
@@ -120,7 +120,7 @@
</RelativeLayout>
<ImageView
- android:id="@+id/keyboard_button"
+ android:id="@+id/button_keyboard"
android:paddingRight="15dip"
android:paddingBottom="15dip"
android:layout_width="wrap_content"
@@ -128,7 +128,31 @@
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:visibility="gone"
- android:src="@+drawable/keyboard_icon"
+ android:src="@+drawable/button_keyboard"
+ />
+
+ <ImageView
+ android:id="@+id/button_ctrl"
+ android:paddingRight="15dip"
+ android:paddingBottom="15dip"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_alignParentBottom="true"
+ android:layout_toLeftOf="@+id/button_keyboard"
+ android:visibility="gone"
+ android:src="@+drawable/button_ctrl"
+ />
+
+ <ImageView
+ android:id="@+id/button_esc"
+ android:paddingRight="15dip"
+ android:paddingBottom="15dip"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_alignParentBottom="true"
+ android:layout_toLeftOf="@+id/button_ctrl"
+ android:visibility="gone"
+ android:src="@+drawable/button_esc"
/>
</RelativeLayout>
diff --git a/res/values/strings.xml b/res/values/strings.xml
index 49e88ac..d489338 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -317,6 +317,11 @@
<!-- 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. -->