summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2012-05-03 22:20:26 +0200
committerArne Schwabe <arne@rfc2549.org>2012-05-03 22:20:26 +0200
commitb7b4e00536107c951a2642a2a1a3fe21a65510a0 (patch)
tree289c4b239d34314283b94159e3790b40796ca247 /res
parentc3e7e4fbab09a55a7e433f76f290be75d77bcb28 (diff)
Error message if tun cannot be opened
Diffstat (limited to 'res')
-rw-r--r--res/menu/vpn_context.xml20
-rw-r--r--res/values/strings.xml9
2 files changed, 27 insertions, 2 deletions
diff --git a/res/menu/vpn_context.xml b/res/menu/vpn_context.xml
new file mode 100644
index 00000000..ab681379
--- /dev/null
+++ b/res/menu/vpn_context.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<menu xmlns:android="http://schemas.android.com/apk/res/android" >
+
+ <item
+ android:id="@+id/edit_vpn"
+ android:icon="@android:drawable/ic_menu_edit"
+ android:showAsAction="withText|ifRoom"
+ android:title="@string/edit_vpn"/>
+ <item
+ android:id="@+id/remove_vpn"
+ android:icon="@android:drawable/ic_menu_delete"
+ android:showAsAction="withText|ifRoom"
+ android:title="@string/remove_vpn"/>
+ <item
+ android:id="@+id/connect_vpn"
+ android:icon="@android:drawable/ic_media_play"
+ android:showAsAction="withText|ifRoom"
+ android:title="@string/connect"/>
+
+</menu> \ No newline at end of file
diff --git a/res/values/strings.xml b/res/values/strings.xml
index c8e2b1e1..5434f48b 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -21,7 +21,7 @@
<string name="address">Server Address:</string>
<string name="port">Server Port:</string>
<string name="secret">Shared Secret:</string>
- <string name="connect">Connect!</string>
+ <string name="connect">Connect</string>
<string name="connecting">OpenVPN is connecting…</string>
<string name="connected">OpenVPN is connected!</string>
@@ -113,9 +113,14 @@
<string name="custom_config_summary">Specify custom options. Use with care!</string>
<string name="route_rejected">Route rejected by Android</string>
<string formatted="false" name="ip_not_cidr">Cannot make sense of %s and %s as IP and CIDR netmask, assuming P2P for local address (/32)</string>
- <string name="cancel_connection">cancel</string>
+ <string name="cancel_connection">Disconnect</string>
<string name="clear_log">clear log</string>
<string name="title_cancel">Cancel Confirmation</string>
<string name="cancel_connection_query">Disconnect the connected VPN/cancel the connection attempt?</string>
<string name="remove_vpn">Remove VPN</string>
+ <string name="edit_vpn">Edit VPN Settings</string>
+ <string name="remove_vpn_query">Remove the VPN Profile %s?</string>
+ <string name="tun_error_helpful">" On some custom ICS images the permission on /dev/tun might be wrong, or the tun module might be missing completly"</string>
+ <string name="tun_open_error">Opening tun interface failed badly.</string>
+ <string name="error">"Error: "</string>
</resources>