diff --git a/app/src/main/java/org/dystopia/email/ActivityMain.java b/app/src/main/java/org/dystopia/email/ActivityMain.java index 499cbb5c..0440f4f8 100644 --- a/app/src/main/java/org/dystopia/email/ActivityMain.java +++ b/app/src/main/java/org/dystopia/email/ActivityMain.java @@ -52,7 +52,7 @@ public class ActivityMain extends AppCompatActivity implements FragmentManager.O } }); } - + @Override public void onBackStackChanged() { int count = getSupportFragmentManager().getBackStackEntryCount(); diff --git a/app/src/main/java/org/dystopia/email/FragmentAccounts.java b/app/src/main/java/org/dystopia/email/FragmentAccounts.java index f6589b24..dcf89515 100644 --- a/app/src/main/java/org/dystopia/email/FragmentAccounts.java +++ b/app/src/main/java/org/dystopia/email/FragmentAccounts.java @@ -24,6 +24,7 @@ import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ProgressBar; +import android.widget.TextView; import com.google.android.material.floatingactionbutton.FloatingActionButton; @@ -40,6 +41,7 @@ import androidx.recyclerview.widget.RecyclerView; public class FragmentAccounts extends FragmentEx { private RecyclerView rvAccount; + private TextView tvNoAccounts; private ProgressBar pbWait; private Group grpReady; private FloatingActionButton fab; @@ -55,6 +57,7 @@ public class FragmentAccounts extends FragmentEx { // Get controls rvAccount = view.findViewById(R.id.rvAccount); + tvNoAccounts = view.findViewById(R.id.tvNoAccounts); pbWait = view.findViewById(R.id.pbWait); grpReady = view.findViewById(R.id.grpReady); fab = view.findViewById(R.id.fab); @@ -81,6 +84,7 @@ public class FragmentAccounts extends FragmentEx { // Initialize grpReady.setVisibility(View.GONE); + tvNoAccounts.setVisibility(View.GONE); pbWait.setVisibility(View.VISIBLE); return view; @@ -94,8 +98,11 @@ public class FragmentAccounts extends FragmentEx { DB.getInstance(getContext()).account().liveAccounts().observe(getViewLifecycleOwner(), new Observer>() { @Override public void onChanged(@Nullable List accounts) { - if (accounts == null) + if (accounts == null) { accounts = new ArrayList<>(); + } else if (accounts.size() == 0) { + tvNoAccounts.setVisibility(View.VISIBLE); + } adapter.set(accounts); diff --git a/app/src/main/res/layout/fragment_account.xml b/app/src/main/res/layout/fragment_account.xml index ab0303e0..4a77eb24 100644 --- a/app/src/main/res/layout/fragment_account.xml +++ b/app/src/main/res/layout/fragment_account.xml @@ -25,8 +25,9 @@ @@ -298,26 +299,16 @@ - - + + Permissions are needed and why • have full network access (INTERNET): to send and receive email \n• view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes \n• run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start \n• foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later \n• prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages \n• [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos \n• [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords Storage framework not available - See details + See details + You don\'t have accounts configured yet diff --git a/app/src/main/res/values-ar-rBH/strings.xml b/app/src/main/res/values-ar-rBH/strings.xml index b94fc2b7..8a4a922a 100644 --- a/app/src/main/res/values-ar-rBH/strings.xml +++ b/app/src/main/res/values-ar-rBH/strings.xml @@ -271,5 +271,6 @@ Permissions are needed and why • have full network access (INTERNET): to send and receive email \n• view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes \n• run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start \n• foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later \n• prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages \n• [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos \n• [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords Storage framework not available - See details + See details + You don\'t have accounts configured yet diff --git a/app/src/main/res/values-ar-rEG/strings.xml b/app/src/main/res/values-ar-rEG/strings.xml index b94fc2b7..8a4a922a 100644 --- a/app/src/main/res/values-ar-rEG/strings.xml +++ b/app/src/main/res/values-ar-rEG/strings.xml @@ -271,5 +271,6 @@ Permissions are needed and why • have full network access (INTERNET): to send and receive email \n• view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes \n• run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start \n• foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later \n• prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages \n• [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos \n• [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords Storage framework not available - See details + See details + You don\'t have accounts configured yet diff --git a/app/src/main/res/values-ar-rSA/strings.xml b/app/src/main/res/values-ar-rSA/strings.xml index b94fc2b7..8a4a922a 100644 --- a/app/src/main/res/values-ar-rSA/strings.xml +++ b/app/src/main/res/values-ar-rSA/strings.xml @@ -271,5 +271,6 @@ Permissions are needed and why • have full network access (INTERNET): to send and receive email \n• view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes \n• run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start \n• foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later \n• prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages \n• [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos \n• [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords Storage framework not available - See details + See details + You don\'t have accounts configured yet diff --git a/app/src/main/res/values-ar-rYE/strings.xml b/app/src/main/res/values-ar-rYE/strings.xml index b94fc2b7..8a4a922a 100644 --- a/app/src/main/res/values-ar-rYE/strings.xml +++ b/app/src/main/res/values-ar-rYE/strings.xml @@ -271,5 +271,6 @@ Permissions are needed and why • have full network access (INTERNET): to send and receive email \n• view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes \n• run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start \n• foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later \n• prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages \n• [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos \n• [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords Storage framework not available - See details + See details + You don\'t have accounts configured yet diff --git a/app/src/main/res/values-ar/strings.xml b/app/src/main/res/values-ar/strings.xml index b94fc2b7..8a4a922a 100644 --- a/app/src/main/res/values-ar/strings.xml +++ b/app/src/main/res/values-ar/strings.xml @@ -271,5 +271,6 @@ Permissions are needed and why • have full network access (INTERNET): to send and receive email \n• view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes \n• run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start \n• foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later \n• prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages \n• [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos \n• [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords Storage framework not available - See details + See details + You don\'t have accounts configured yet diff --git a/app/src/main/res/values-az/strings.xml b/app/src/main/res/values-az/strings.xml index 5333b5d0..c1c66a2c 100644 --- a/app/src/main/res/values-az/strings.xml +++ b/app/src/main/res/values-az/strings.xml @@ -255,5 +255,6 @@ Permissions are needed and why • have full network access (INTERNET): to send and receive email \n• view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes \n• run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start \n• foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later \n• prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages \n• [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos \n• [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords Storage framework not available - See details + See details + You don\'t have accounts configured yet diff --git a/app/src/main/res/values-ca/strings.xml b/app/src/main/res/values-ca/strings.xml index 1bd54b15..5d245892 100644 --- a/app/src/main/res/values-ca/strings.xml +++ b/app/src/main/res/values-ca/strings.xml @@ -255,5 +255,6 @@ Permissions are needed and why • have full network access (INTERNET): to send and receive email \n• view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes \n• run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start \n• foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later \n• prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages \n• [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos \n• [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords Storage framework not available - See details + See details + You don\'t have accounts configured yet diff --git a/app/src/main/res/values-cs/strings.xml b/app/src/main/res/values-cs/strings.xml index ef8e1865..e8194841 100644 --- a/app/src/main/res/values-cs/strings.xml +++ b/app/src/main/res/values-cs/strings.xml @@ -263,5 +263,6 @@ Permissions are needed and why • have full network access (INTERNET): to send and receive email \n• view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes \n• run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start \n• foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later \n• prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages \n• [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos \n• [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords Storage framework not available - See details + See details + You don\'t have accounts configured yet diff --git a/app/src/main/res/values-da/strings.xml b/app/src/main/res/values-da/strings.xml index 7cbfdf7f..3e515430 100644 --- a/app/src/main/res/values-da/strings.xml +++ b/app/src/main/res/values-da/strings.xml @@ -255,5 +255,6 @@ Permissions are needed and why • have full network access (INTERNET): to send and receive email \n• view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes \n• run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start \n• foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later \n• prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages \n• [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos \n• [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords Storage framework not available - See details + See details + You don\'t have accounts configured yet diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml index 8b518417..fceae176 100644 --- a/app/src/main/res/values-de/strings.xml +++ b/app/src/main/res/values-de/strings.xml @@ -255,5 +255,6 @@ Permissions are needed and why • have full network access (INTERNET): to send and receive email \n• view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes \n• run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start \n• foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later \n• prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages \n• [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos \n• [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords Storage framework not available - See details + See details + You don\'t have accounts configured yet diff --git a/app/src/main/res/values-el/strings.xml b/app/src/main/res/values-el/strings.xml index fb39a2bf..4a52f5eb 100644 --- a/app/src/main/res/values-el/strings.xml +++ b/app/src/main/res/values-el/strings.xml @@ -255,5 +255,6 @@ Permissions are needed and why • have full network access (INTERNET): to send and receive email \n• view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes \n• run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start \n• foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later \n• prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages \n• [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos \n• [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords Storage framework not available - See details + See details + You don\'t have accounts configured yet diff --git a/app/src/main/res/values-en/strings.xml b/app/src/main/res/values-en/strings.xml index 0f68f15b..9854224d 100644 --- a/app/src/main/res/values-en/strings.xml +++ b/app/src/main/res/values-en/strings.xml @@ -256,4 +256,5 @@ • have full network access (INTERNET): to send and receive email \n• view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes \n• run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start \n• foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later \n• prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages \n• [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos \n• [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords Storage framework not available See details + You don\'t have accounts configured yet diff --git a/app/src/main/res/values-es-rES/strings.xml b/app/src/main/res/values-es-rES/strings.xml index b88d5318..1cc07e38 100644 --- a/app/src/main/res/values-es-rES/strings.xml +++ b/app/src/main/res/values-es-rES/strings.xml @@ -256,4 +256,5 @@ \n• tiene acceso completo a la red (INTERNET): para enviar y recibir correo electrónico \n• ver conexiones de red (ACCESS_NETWORK_STATE): para monitorear los cambios de conectividad a internet \n• ejecutar al inicio (RECEIVE_BOOT_COMPLETED): para iniciar el monitoreo en el inicio del dispositivo \n• Servicio de primer plano (FOREGROUND_SERVICE): para ejecutar un servicio de primer plano en Android 9 Pie y posterior \n• evitar que el dispositivo entre en suspensión (WAKE_LOCK): para mantener el dispositivo despierto mientras se sincronizan los mensajes \n• [Opcional] lee tus contactos (READ_CONTACTS): autocompletar direcciones y mostrar fotos \n• [Opcional] encuentre cuentas en el dispositivo (GET_ACCOUNTS): usar OAuth en lugar de contraseñas Framework de almacenamiento no disponible Ver detalles + Aún no tienes cuentas configuradas diff --git a/app/src/main/res/values-fa/strings.xml b/app/src/main/res/values-fa/strings.xml index 98e7636a..9dff8d74 100644 --- a/app/src/main/res/values-fa/strings.xml +++ b/app/src/main/res/values-fa/strings.xml @@ -255,5 +255,6 @@ Permissions are needed and why • have full network access (INTERNET): to send and receive email \n• view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes \n• run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start \n• foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later \n• prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages \n• [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos \n• [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords Storage framework not available - See details + See details + You don\'t have accounts configured yet diff --git a/app/src/main/res/values-fi/strings.xml b/app/src/main/res/values-fi/strings.xml index fb39a2bf..4a52f5eb 100644 --- a/app/src/main/res/values-fi/strings.xml +++ b/app/src/main/res/values-fi/strings.xml @@ -255,5 +255,6 @@ Permissions are needed and why • have full network access (INTERNET): to send and receive email \n• view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes \n• run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start \n• foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later \n• prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages \n• [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos \n• [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords Storage framework not available - See details + See details + You don\'t have accounts configured yet diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml index d5f0ed82..7b370b9c 100644 --- a/app/src/main/res/values-fr/strings.xml +++ b/app/src/main/res/values-fr/strings.xml @@ -255,5 +255,6 @@ Permissions are needed and why • have full network access (INTERNET): to send and receive email \n• view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes \n• run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start \n• foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later \n• prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages \n• [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos \n• [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords Storage framework not available - See details + See details + You don\'t have accounts configured yet diff --git a/app/src/main/res/values-he/strings.xml b/app/src/main/res/values-he/strings.xml index 1c449c7a..08f737a9 100644 --- a/app/src/main/res/values-he/strings.xml +++ b/app/src/main/res/values-he/strings.xml @@ -263,5 +263,6 @@ Permissions are needed and why • have full network access (INTERNET): to send and receive email \n• view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes \n• run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start \n• foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later \n• prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages \n• [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos \n• [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords Storage framework not available - See details + See details + You don\'t have accounts configured yet diff --git a/app/src/main/res/values-hu/strings.xml b/app/src/main/res/values-hu/strings.xml index 4ba9c89f..72012bb3 100644 --- a/app/src/main/res/values-hu/strings.xml +++ b/app/src/main/res/values-hu/strings.xml @@ -255,5 +255,6 @@ Permissions are needed and why • have full network access (INTERNET): to send and receive email \n• view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes \n• run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start \n• foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later \n• prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages \n• [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos \n• [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords Storage framework not available - See details + See details + You don\'t have accounts configured yet diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml index bb7f4651..1032e834 100644 --- a/app/src/main/res/values-it/strings.xml +++ b/app/src/main/res/values-it/strings.xml @@ -255,5 +255,6 @@ Permissions are needed and why • have full network access (INTERNET): to send and receive email \n• view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes \n• run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start \n• foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later \n• prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages \n• [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos \n• [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords Storage framework not available - See details + See details + You don\'t have accounts configured yet diff --git a/app/src/main/res/values-iw/strings.xml b/app/src/main/res/values-iw/strings.xml index 1c449c7a..08f737a9 100644 --- a/app/src/main/res/values-iw/strings.xml +++ b/app/src/main/res/values-iw/strings.xml @@ -263,5 +263,6 @@ Permissions are needed and why • have full network access (INTERNET): to send and receive email \n• view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes \n• run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start \n• foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later \n• prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages \n• [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos \n• [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords Storage framework not available - See details + See details + You don\'t have accounts configured yet diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml index 0927d8a1..bd329ba9 100644 --- a/app/src/main/res/values-ja/strings.xml +++ b/app/src/main/res/values-ja/strings.xml @@ -251,5 +251,6 @@ Permissions are needed and why • have full network access (INTERNET): to send and receive email \n• view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes \n• run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start \n• foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later \n• prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages \n• [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos \n• [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords Storage framework not available - See details + See details + You don\'t have accounts configured yet diff --git a/app/src/main/res/values-ko/strings.xml b/app/src/main/res/values-ko/strings.xml index 0927d8a1..bd329ba9 100644 --- a/app/src/main/res/values-ko/strings.xml +++ b/app/src/main/res/values-ko/strings.xml @@ -251,5 +251,6 @@ Permissions are needed and why • have full network access (INTERNET): to send and receive email \n• view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes \n• run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start \n• foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later \n• prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages \n• [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos \n• [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords Storage framework not available - See details + See details + You don\'t have accounts configured yet diff --git a/app/src/main/res/values-nb/strings.xml b/app/src/main/res/values-nb/strings.xml index fb39a2bf..4a52f5eb 100644 --- a/app/src/main/res/values-nb/strings.xml +++ b/app/src/main/res/values-nb/strings.xml @@ -255,5 +255,6 @@ Permissions are needed and why • have full network access (INTERNET): to send and receive email \n• view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes \n• run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start \n• foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later \n• prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages \n• [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos \n• [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords Storage framework not available - See details + See details + You don\'t have accounts configured yet diff --git a/app/src/main/res/values-nl/strings.xml b/app/src/main/res/values-nl/strings.xml index 13f359f7..7ec7b1a8 100644 --- a/app/src/main/res/values-nl/strings.xml +++ b/app/src/main/res/values-nl/strings.xml @@ -255,5 +255,6 @@ Permissions are needed and why • have full network access (INTERNET): to send and receive email \n• view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes \n• run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start \n• foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later \n• prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages \n• [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos \n• [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords Storage framework not available - See details + See details + You don\'t have accounts configured yet diff --git a/app/src/main/res/values-no/strings.xml b/app/src/main/res/values-no/strings.xml index fb39a2bf..4a52f5eb 100644 --- a/app/src/main/res/values-no/strings.xml +++ b/app/src/main/res/values-no/strings.xml @@ -255,5 +255,6 @@ Permissions are needed and why • have full network access (INTERNET): to send and receive email \n• view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes \n• run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start \n• foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later \n• prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages \n• [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos \n• [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords Storage framework not available - See details + See details + You don\'t have accounts configured yet diff --git a/app/src/main/res/values-pl/strings.xml b/app/src/main/res/values-pl/strings.xml index 19687b00..bfa3be9d 100644 --- a/app/src/main/res/values-pl/strings.xml +++ b/app/src/main/res/values-pl/strings.xml @@ -263,5 +263,6 @@ Permissions are needed and why • have full network access (INTERNET): to send and receive email \n• view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes \n• run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start \n• foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later \n• prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages \n• [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos \n• [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords Storage framework not available - See details + See details + You don\'t have accounts configured yet diff --git a/app/src/main/res/values-pt-rBR/strings.xml b/app/src/main/res/values-pt-rBR/strings.xml index c0af5a4e..f9807ccf 100644 --- a/app/src/main/res/values-pt-rBR/strings.xml +++ b/app/src/main/res/values-pt-rBR/strings.xml @@ -255,5 +255,6 @@ Permissions are needed and why • have full network access (INTERNET): to send and receive email \n• view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes \n• run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start \n• foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later \n• prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages \n• [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos \n• [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords Storage framework not available - See details + See details + You don\'t have accounts configured yet diff --git a/app/src/main/res/values-pt-rPT/strings.xml b/app/src/main/res/values-pt-rPT/strings.xml index fb39a2bf..4a52f5eb 100644 --- a/app/src/main/res/values-pt-rPT/strings.xml +++ b/app/src/main/res/values-pt-rPT/strings.xml @@ -255,5 +255,6 @@ Permissions are needed and why • have full network access (INTERNET): to send and receive email \n• view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes \n• run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start \n• foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later \n• prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages \n• [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos \n• [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords Storage framework not available - See details + See details + You don\'t have accounts configured yet diff --git a/app/src/main/res/values-ro/strings.xml b/app/src/main/res/values-ro/strings.xml index 22ae1112..e5f27d97 100644 --- a/app/src/main/res/values-ro/strings.xml +++ b/app/src/main/res/values-ro/strings.xml @@ -259,5 +259,6 @@ Permissions are needed and why • have full network access (INTERNET): to send and receive email \n• view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes \n• run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start \n• foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later \n• prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages \n• [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos \n• [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords Storage framework not available - See details + See details + You don\'t have accounts configured yet diff --git a/app/src/main/res/values-ru/strings.xml b/app/src/main/res/values-ru/strings.xml index ef8e1865..e8194841 100644 --- a/app/src/main/res/values-ru/strings.xml +++ b/app/src/main/res/values-ru/strings.xml @@ -263,5 +263,6 @@ Permissions are needed and why • have full network access (INTERNET): to send and receive email \n• view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes \n• run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start \n• foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later \n• prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages \n• [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos \n• [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords Storage framework not available - See details + See details + You don\'t have accounts configured yet diff --git a/app/src/main/res/values-sr/strings.xml b/app/src/main/res/values-sr/strings.xml index 2e90d4fb..7090dcef 100644 --- a/app/src/main/res/values-sr/strings.xml +++ b/app/src/main/res/values-sr/strings.xml @@ -259,5 +259,6 @@ Permissions are needed and why • have full network access (INTERNET): to send and receive email \n• view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes \n• run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start \n• foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later \n• prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages \n• [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos \n• [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords Storage framework not available - See details + See details + You don\'t have accounts configured yet diff --git a/app/src/main/res/values-sv-rSE/strings.xml b/app/src/main/res/values-sv-rSE/strings.xml index de4843fc..356553b0 100644 --- a/app/src/main/res/values-sv-rSE/strings.xml +++ b/app/src/main/res/values-sv-rSE/strings.xml @@ -255,5 +255,6 @@ Permissions are needed and why • have full network access (INTERNET): to send and receive email \n• view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes \n• run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start \n• foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later \n• prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages \n• [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos \n• [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords Storage framework not available - See details + See details + You don\'t have accounts configured yet diff --git a/app/src/main/res/values-tr/strings.xml b/app/src/main/res/values-tr/strings.xml index 00a60392..d5134d03 100644 --- a/app/src/main/res/values-tr/strings.xml +++ b/app/src/main/res/values-tr/strings.xml @@ -255,5 +255,6 @@ Permissions are needed and why • have full network access (INTERNET): to send and receive email \n• view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes \n• run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start \n• foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later \n• prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages \n• [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos \n• [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords Storage framework not available - See details + See details + You don\'t have accounts configured yet diff --git a/app/src/main/res/values-uk/strings.xml b/app/src/main/res/values-uk/strings.xml index ef8e1865..e8194841 100644 --- a/app/src/main/res/values-uk/strings.xml +++ b/app/src/main/res/values-uk/strings.xml @@ -263,5 +263,6 @@ Permissions are needed and why • have full network access (INTERNET): to send and receive email \n• view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes \n• run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start \n• foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later \n• prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages \n• [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos \n• [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords Storage framework not available - See details + See details + You don\'t have accounts configured yet diff --git a/app/src/main/res/values-vi/strings.xml b/app/src/main/res/values-vi/strings.xml index 0927d8a1..bd329ba9 100644 --- a/app/src/main/res/values-vi/strings.xml +++ b/app/src/main/res/values-vi/strings.xml @@ -251,5 +251,6 @@ Permissions are needed and why • have full network access (INTERNET): to send and receive email \n• view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes \n• run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start \n• foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later \n• prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages \n• [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos \n• [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords Storage framework not available - See details + See details + You don\'t have accounts configured yet diff --git a/app/src/main/res/values-zh-rCN/strings.xml b/app/src/main/res/values-zh-rCN/strings.xml index 74438e05..4917dee9 100644 --- a/app/src/main/res/values-zh-rCN/strings.xml +++ b/app/src/main/res/values-zh-rCN/strings.xml @@ -251,5 +251,6 @@ Permissions are needed and why • have full network access (INTERNET): to send and receive email \n• view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes \n• run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start \n• foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later \n• prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages \n• [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos \n• [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords Storage framework not available - See details + See details + You don\'t have accounts configured yet diff --git a/app/src/main/res/values-zh-rTW/strings.xml b/app/src/main/res/values-zh-rTW/strings.xml index 0927d8a1..bd329ba9 100644 --- a/app/src/main/res/values-zh-rTW/strings.xml +++ b/app/src/main/res/values-zh-rTW/strings.xml @@ -251,5 +251,6 @@ Permissions are needed and why • have full network access (INTERNET): to send and receive email \n• view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes \n• run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start \n• foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later \n• prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages \n• [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos \n• [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords Storage framework not available - See details + See details + You don\'t have accounts configured yet diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 6a67f875..42857ded 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -321,5 +321,6 @@ BCB07BD93B29C1959C15F1CF6C3A2619BAF7A17 Storage framework not available - See details + See details + You don\'t have accounts configured yet