diff options
Diffstat (limited to 'src/frontends/android/res')
-rw-r--r-- | src/frontends/android/res/layout/profile_detail_view.xml | 20 | ||||
-rw-r--r-- | src/frontends/android/res/values-de/arrays.xml | 1 | ||||
-rw-r--r-- | src/frontends/android/res/values-de/strings.xml | 4 | ||||
-rw-r--r-- | src/frontends/android/res/values-pl/arrays.xml | 1 | ||||
-rw-r--r-- | src/frontends/android/res/values-pl/strings.xml | 6 | ||||
-rw-r--r-- | src/frontends/android/res/values/arrays.xml | 1 | ||||
-rw-r--r-- | src/frontends/android/res/values/strings.xml | 4 |
7 files changed, 35 insertions, 2 deletions
diff --git a/src/frontends/android/res/layout/profile_detail_view.xml b/src/frontends/android/res/layout/profile_detail_view.xml index 2a52ae032..39c94348b 100644 --- a/src/frontends/android/res/layout/profile_detail_view.xml +++ b/src/frontends/android/res/layout/profile_detail_view.xml @@ -62,7 +62,7 @@ android:id="@+id/vpn_type" android:layout_width="match_parent" android:layout_height="wrap_content" - android:spinnerMode="dialog" + android:spinnerMode="dropdown" android:entries="@array/vpn_types" /> <LinearLayout @@ -100,6 +100,24 @@ </LinearLayout> + <LinearLayout + android:id="@+id/user_certificate_group" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="vertical" > + + <TextView + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_marginTop="10dp" + android:text="@string/profile_user_certificate_label" /> + + <include + android:id="@+id/select_user_certificate" + layout="@layout/certificate_selector" /> + + </LinearLayout> + <TextView android:layout_width="match_parent" android:layout_height="wrap_content" diff --git a/src/frontends/android/res/values-de/arrays.xml b/src/frontends/android/res/values-de/arrays.xml index 8661a37be..efa4bcb03 100644 --- a/src/frontends/android/res/values-de/arrays.xml +++ b/src/frontends/android/res/values-de/arrays.xml @@ -17,5 +17,6 @@ <!-- the order here must match the enum entries in VpnType.java --> <string-array name="vpn_types"> <item>IKEv2 EAP (Benutzername/Passwort)</item> + <item>IKEv2 Zertifikat</item> </string-array> </resources>
\ No newline at end of file diff --git a/src/frontends/android/res/values-de/strings.xml b/src/frontends/android/res/values-de/strings.xml index 9e415ab8b..a04da7208 100644 --- a/src/frontends/android/res/values-de/strings.xml +++ b/src/frontends/android/res/values-de/strings.xml @@ -25,6 +25,7 @@ <string name="search">Suchen</string> <string name="vpn_not_supported_title">VPN nicht unterstützt</string> <string name="vpn_not_supported">Ihr Gerät unterstützt keine VPN Anwendungen.\nBitte kontaktieren Sie den Hersteller.</string> + <string name="loading">Laden…</string> <!-- Log view --> <string name="log_title">Log</string> @@ -53,6 +54,9 @@ <string name="profile_username_label">Benutzername:</string> <string name="profile_password_label">Passwort:</string> <string name="profile_password_hint">(anfordern wenn benötigt)</string> + <string name="profile_user_certificate_label">Benutzer-Zertifikat:</string> + <string name="profile_user_select_certificate_label">Benutzer-Zertifikat auswählen</string> + <string name="profile_user_select_certificate">Wählen Sie ein bestimmtes Benutzer-Zertifikat</string> <string name="profile_ca_label">CA-Zertifikat:</string> <string name="profile_ca_auto_label">Automatisch wählen</string> <string name="profile_ca_select_certificate_label">CA-Zertifikat auswählen</string> diff --git a/src/frontends/android/res/values-pl/arrays.xml b/src/frontends/android/res/values-pl/arrays.xml index ed14934e0..3e1af5f82 100644 --- a/src/frontends/android/res/values-pl/arrays.xml +++ b/src/frontends/android/res/values-pl/arrays.xml @@ -17,5 +17,6 @@ <!-- the order here must match the enum entries in VpnType.java --> <string-array name="vpn_types"> <item>IKEv2 EAP (użytkownik/hasło)</item> + <item>IKEv2 certyfikat</item> </string-array> </resources>
\ No newline at end of file diff --git a/src/frontends/android/res/values-pl/strings.xml b/src/frontends/android/res/values-pl/strings.xml index 4a474e88b..54f4259ae 100644 --- a/src/frontends/android/res/values-pl/strings.xml +++ b/src/frontends/android/res/values-pl/strings.xml @@ -27,6 +27,7 @@ <string name="search">Szukaj</string> <string name="vpn_not_supported_title">Nie obsługiwany VPN</string> <string name="vpn_not_supported">Urządzenie nie obsługuje aplikacji VPN.\nProszę skontaktować się z producentem.</string> + <string name="loading">Wczytywanie…</string> <!-- Log view --> <string name="log_title">Log</string> @@ -54,7 +55,10 @@ <string name="profile_vpn_type_label">Typ:</string> <string name="profile_username_label">Użytkownik:</string> <string name="profile_password_label">Hasło:</string> - <string name="profile_password_hint">(w razie potrzebz zapromptuj)</string> + <string name="profile_password_hint">(w razie potrzeby zapromptuj)</string> + <string name="profile_user_certificate_label">Certyfikat użytkownika:</string> + <string name="profile_user_select_certificate_label">Wybierz certyfikat użytkownika</string> + <string name="profile_user_select_certificate">>Wybierz określony certyfikat użytkownika</string> <string name="profile_ca_label">Certyfikat CA:</string> <string name="profile_ca_auto_label">Wybierz automatycznie</string> <string name="profile_ca_select_certificate_label">Wybierz certyfikat CA</string> diff --git a/src/frontends/android/res/values/arrays.xml b/src/frontends/android/res/values/arrays.xml index 62164f7c2..21576f22c 100644 --- a/src/frontends/android/res/values/arrays.xml +++ b/src/frontends/android/res/values/arrays.xml @@ -17,5 +17,6 @@ <!-- the order here must match the enum entries in VpnType.java --> <string-array name="vpn_types"> <item>IKEv2 EAP (Username/Password)</item> + <item>IKEv2 Certificate</item> </string-array> </resources>
\ No newline at end of file diff --git a/src/frontends/android/res/values/strings.xml b/src/frontends/android/res/values/strings.xml index 29cd6430b..3e4b746fd 100644 --- a/src/frontends/android/res/values/strings.xml +++ b/src/frontends/android/res/values/strings.xml @@ -25,6 +25,7 @@ <string name="search">Search</string> <string name="vpn_not_supported_title">VPN not supported</string> <string name="vpn_not_supported">Your device does not support VPN applications.\nPlease contact the manufacturer.</string> + <string name="loading">Loading…</string> <!-- Log view --> <string name="log_title">Log</string> @@ -53,6 +54,9 @@ <string name="profile_username_label">Username:</string> <string name="profile_password_label">Password:</string> <string name="profile_password_hint">(prompt when needed)</string> + <string name="profile_user_certificate_label">User certificate:</string> + <string name="profile_user_select_certificate_label">Select user certificate</string> + <string name="profile_user_select_certificate">Select a specific user certificate</string> <string name="profile_ca_label">CA certificate:</string> <string name="profile_ca_auto_label">Select automatically</string> <string name="profile_ca_select_certificate_label">Select CA certificate</string> |