diff options
author | Arne Schwabe <arne@blinkt.de> | 2012-05-03 11:05:51 +0200 |
---|---|---|
committer | Arne Schwabe <arne@blinkt.de> | 2012-05-03 11:05:51 +0200 |
commit | 69f36a1ffafafc233291f44af0b7146428b764a3 (patch) | |
tree | df014ff7249ae21affb2c15b4065bf2993ba9ce5 /res/xml/vpn_authentification.xml | |
parent | 3d54881bc78b893ab286681338dd7b9b69d871b3 (diff) |
extract settings string to ressource file.
Fix calucation of netmaks
Make p2p assumption message clearer
closes issue #5
Diffstat (limited to 'res/xml/vpn_authentification.xml')
-rw-r--r-- | res/xml/vpn_authentification.xml | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/res/xml/vpn_authentification.xml b/res/xml/vpn_authentification.xml index ceeb514b..bd8d8ca5 100644 --- a/res/xml/vpn_authentification.xml +++ b/res/xml/vpn_authentification.xml @@ -3,29 +3,29 @@ <CheckBoxPreference android:key="remoteServerTLS" - android:summary="Checks whether the server uses a TLS Server Certificate" - android:title="Except TLS Server" /> + android:summary="@string/check_remote_tlscert" + android:title="@string/check_remote_tlscert_title" /> <CheckBoxPreference android:key="checkRemoteCN" - android:summary="Checks the Remote Server Certificate CN against a String" - android:title="Certificate Hostname Check" /> + android:summary="@string/remote_tlscn_check_summary" + android:title="@string/remote_tlscn_check_title" /> <EditTextPreference android:dependency="checkRemoteCN" - android:dialogMessage="Enter the String against which the remote Server is checked. Openvpn will use prefix matching. "Server" matches "Server-1" and "Server-2"\nLeave empty to check the CN against the server hostname." + android:dialogMessage="@string/enter_tlscn_dialog" android:key="remotecn" - android:title="Remote Hostname(CN)" /> + android:title="@string/enter_tlscn_title" /> <PreferenceCategory android:title="TLS Authentication" > <SwitchPreference android:key="useTLSAuth" - android:summary="Enables the TLS Key Authentication" + android:summary="@string/tls_key_auth" android:title="@string/useTLSAuth" /> <Preference android:dependency="useTLSAuth" android:key="tlsAuthFile" - android:title="TLS Auth File" /> + android:title="@string/tls_auth_file" /> <ListPreference android:entries="@array/tls_directions_entries" @@ -34,7 +34,7 @@ android:entryValues="@array/tls_directions_values" android:key="tls_direction" android:persistent="false" - android:title="TLS Direction" /> + android:title="@string/tls_direction" /> </PreferenceCategory> /> |