diff options
| author | Arne Schwabe <arne@rfc2549.org> | 2012-07-01 12:08:50 +0200 | 
|---|---|---|
| committer | Arne Schwabe <arne@rfc2549.org> | 2012-07-01 12:08:50 +0200 | 
| commit | a7e5a8faad65d9cdc3eb3cf9373ba27e582ac793 (patch) | |
| tree | 4f3993a6417a6626d6479c705b3d7d39912774e3 | |
| parent | 5435cd62e945a47f3a506acde2af3affe3c72790 (diff) | |
0.5.9 removed the configimporter activity from the manifest. Fix this.v0.5.9b
| -rw-r--r-- | AndroidManifest.xml | 7 | ||||
| -rw-r--r-- | res/values-de/strings.xml | 15 | ||||
| -rw-r--r-- | res/values/strings.xml | 1 | 
3 files changed, 14 insertions, 9 deletions
| diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 3a2b458e..e601f11e 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -17,8 +17,8 @@  <manifest xmlns:android="http://schemas.android.com/apk/res/android"      package="de.blinkt.openvpn" -    android:versionCode="31" -    android:versionName="0.5.9" > +    android:versionCode="33" +    android:versionName="0.5.9b" >      <uses-permission android:name="android.permission.INTERNET" />      <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> @@ -53,6 +53,7 @@              </intent-filter>          </service> +                  <activity              android:name=".ConfigConverter"              android:label="Convert Config File" > @@ -92,7 +93,7 @@                      android:pathPattern=".*\\.ovpn"                      android:scheme="file" />              </intent-filter> -        </activity> +        </activity>            <activity              android:name=".LaunchVPN"              android:label="@string/vpn_launch_title" > diff --git a/res/values-de/strings.xml b/res/values-de/strings.xml index aebfe351..f0be67e8 100644 --- a/res/values-de/strings.xml +++ b/res/values-de/strings.xml @@ -146,9 +146,7 @@      <string name="copied_entry">Log Eintrag in die Zwischenablage kopiert</string>      <string name="tap_mode">Tap Mode</string>      <string name="faq_tap_mode">Die VPN API von Android, die ohne rooten des Telefons funktioniert, unterstützt nur den tun modus. Das Unterstützen des Tap Modus ist daher nicht möglich.</string> -    <string name="tap_faq2">Again? Are you kidding? No tap mode is really not supported and sending more mail aksing if it will be supported will not help.</string> -    <string name="tap_faq3">A third time? Actually one could write a a tap emulator based on tun that would add layer2 information on send and strip layer2 information on receive. But this tap emulator would have to implement also ARP and possible a DHCP client. I am not aware of anybody doing any work in this direction. Contact me if you want to start coding on this.</string> -    <string name="faq">FAQ</string> +        <string name="faq">FAQ</string>      <string name="faq_summary">häufig gestellte Fragen und Hinweise</string>      <string name="copying_log_entries">Kopieren von Log Einträgen</string>      <string name="faq_copying">To copy a single log entry press and and hold on the log entry. To copy/send the whole log use the Send Log option. Use the hardware menu button if not visible in the gui.</string> @@ -175,5 +173,12 @@      <string name="keychain_nocacert">Beim Abfragen des Android KeyStore wurde kein CA Zertifikat zurückgegeben. Überprüfen des Serverzertifikat wird warscheinlich fehlschlagen. Geben Sie manuell ein CA Zertifikat an.</string>      <string name="cert_from_keystore">Zertifikat (KeyStore): \'%s\' </string>      <string name="extracahint">Das CA Zertifikat wird meist aus dem Zertifikatsspeicher automatisch ausgewählt. Sollte dies nicht funktionieren und Sie Verifizierungsprobleme erhalten(self signed certificate), wählen Sie manuell ein Zertifikat aus.</string> - -</resources>
\ No newline at end of file +   <string name="show_log_summary">Zeigt das Status Log, wenn ein VPN verbunden wird. Das Status log kann immer über die Benachrichtigung aufgerufen werden.</string> +    <string name="show_log_window">Zeige Log</string> +    <string name="keppstatus_summary">Zeige die OpenVPN Benachrichtung nach Verbinden zusätzlich zu der System Benachrichtigung an um Traffic Statistiken anzuzeigen.</string> +    <string name="keepstatus">Traffic Statistiken</string> +    <string name="mobile_info">Modell %1$s (%2$s) %3$s, Android API %4$d</string> +    <string name="error_rsa_sign">Fehler beim Zugriff auf den Android Keystore %1$s: %2$s</string> +</resources> +<!-- LocalWords:  OpenVPN +--> diff --git a/res/values/strings.xml b/res/values/strings.xml index d6b55458..59b89042 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -33,7 +33,6 @@      <string name="client_key_title">Client Certificate Key</string>      <string name="client_pkcs12_title">PKCS12 File</string>      <string name="ca_title">CA Certificate</string> -    <string name="select_certificate">Select</string>      <string name="no_certificate">Nothing selected</string>      <string name="opevpn_copyright" translatable="false">Copyright © 2002–2010 OpenVPN Technologies, Inc. <sales@openvpn.net>\n | 
