diff options
author | schwabe <devnull@localhost> | 2012-04-29 15:22:01 +0200 |
---|---|---|
committer | schwabe <devnull@localhost> | 2012-04-29 15:22:01 +0200 |
commit | 1f3ea57ee9f0cabdcfd2b585f16bf754984a669d (patch) | |
tree | a40f9151d8bd58ec0c39835168f268101d5a4104 /res/xml | |
parent | 63e466054c2f1d66e4618ac4d73208751f1e5bd1 (diff) |
Version 0.4
fixes iusse #1
fixes iusse #2
fixes iusse #3
Diffstat (limited to 'res/xml')
-rw-r--r-- | res/xml/main_headers.xml | 2 | ||||
-rw-r--r-- | res/xml/vpn_authentification.xml | 15 | ||||
-rw-r--r-- | res/xml/vpn_ipsettings.xml | 8 |
3 files changed, 15 insertions, 10 deletions
diff --git a/res/xml/main_headers.xml b/res/xml/main_headers.xml index a0c4f432..7ea95848 100644 --- a/res/xml/main_headers.xml +++ b/res/xml/main_headers.xml @@ -3,7 +3,7 @@ <header android:fragment="de.blinkt.openvpn.VPNProfileList" - android:summary="List of all VPN, confusing to be here :)" + android:summary="List of all configured VPNs" android:title="All your precious VPNs" /> <header android:fragment="de.blinkt.openvpn.AboutFragment" diff --git a/res/xml/vpn_authentification.xml b/res/xml/vpn_authentification.xml index 0444831b..ceeb514b 100644 --- a/res/xml/vpn_authentification.xml +++ b/res/xml/vpn_authentification.xml @@ -25,16 +25,17 @@ <Preference android:dependency="useTLSAuth" android:key="tlsAuthFile" - android:title="Title Auth File" /> + android:title="TLS Auth File" /> <ListPreference - android:dependency="useTLSAuth" - android:dialogMessage="Select the direction for TLS Auth." - android:entries="@array/tls_directions" - android:entryValues="@array/tls_directions_entries" + android:entries="@array/tls_directions_entries" + android:dependency="useTLSAuth" + + android:entryValues="@array/tls_directions_values" android:key="tls_direction" - android:title="TLS Direction" - android:persistent="false"/> + android:persistent="false" + android:title="TLS Direction" /> </PreferenceCategory> +/> </PreferenceScreen>
\ No newline at end of file diff --git a/res/xml/vpn_ipsettings.xml b/res/xml/vpn_ipsettings.xml index 79356e69..a018321f 100644 --- a/res/xml/vpn_ipsettings.xml +++ b/res/xml/vpn_ipsettings.xml @@ -40,8 +40,12 @@ </PreferenceCategory> <PreferenceCategory android:title="Routing" > <CheckBoxPreference - android:defaultValue="true" - android:dependency="usePull" + android:title="Ignore pushed routes" + android:key="routenopull" + android:summary="Ignore routed pushed by the server." + + /> + <CheckBoxPreference android:disableDependentsState="true" android:key="useDefaultRoute" android:summary="Redirects all Traffic over the VPN" |