diff --git a/src/frontends/android/res/values-de/strings.xml b/src/frontends/android/res/values-de/strings.xml index 7299acfaf..ed4456497 100644 --- a/src/frontends/android/res/values-de/strings.xml +++ b/src/frontends/android/res/values-de/strings.xml @@ -27,6 +27,7 @@ Profil hinzufügen Bearbeiten Löschen + Profile auswählen Ausgewählte Profile gelöscht Kein Profil ausgewählt Ein Profil ausgewählt diff --git a/src/frontends/android/res/values/strings.xml b/src/frontends/android/res/values/strings.xml index 04e09265e..0dad64233 100644 --- a/src/frontends/android/res/values/strings.xml +++ b/src/frontends/android/res/values/strings.xml @@ -27,6 +27,7 @@ Add VPN profile Edit Delete + Select profiles Selected profiles deleted No profile selected One profile selected diff --git a/src/frontends/android/src/org/strongswan/android/ui/VpnProfileListFragment.java b/src/frontends/android/src/org/strongswan/android/ui/VpnProfileListFragment.java index be0a9004e..1052558f2 100644 --- a/src/frontends/android/src/org/strongswan/android/ui/VpnProfileListFragment.java +++ b/src/frontends/android/src/org/strongswan/android/ui/VpnProfileListFragment.java @@ -191,7 +191,7 @@ public class VpnProfileListFragment extends Fragment inflater.inflate(R.menu.profile_list_context, menu); mEditProfile = menu.findItem(R.id.edit_profile); mSelected = new HashSet(); - mode.setTitle("Select Profiles"); + mode.setTitle(R.string.select_profiles); return true; }