diff --git a/app/src/main/java/org/dystopia/email/ActivityView.java b/app/src/main/java/org/dystopia/email/ActivityView.java index 538e7022..5ffc3a3c 100644 --- a/app/src/main/java/org/dystopia/email/ActivityView.java +++ b/app/src/main/java/org/dystopia/email/ActivityView.java @@ -825,7 +825,11 @@ public class ActivityView extends ActivityBase implements FragmentManager.OnBack create.addCategory(Intent.CATEGORY_OPENABLE); create.setType(intent.getStringExtra("type")); create.putExtra(Intent.EXTRA_TITLE, intent.getStringExtra("name")); - startActivityForResult(create, REQUEST_ATTACHMENT); + if (create.resolveActivity(getPackageManager()) != null) { + startActivityForResult(create, REQUEST_ATTACHMENT); + } else { + Snackbar.make(view, R.string.title_no_storage_framework, Snackbar.LENGTH_LONG).show(); + } } private void onDecrypt(Intent intent) { diff --git a/app/src/main/res/values-af/strings.xml b/app/src/main/res/values-af/strings.xml index e10aac2b..6faed09e 100644 --- a/app/src/main/res/values-af/strings.xml +++ b/app/src/main/res/values-af/strings.xml @@ -254,4 +254,5 @@ SimpleEmail does not collect any information, does not require unnecessary permissions and is 100% Free Software. Permissions are needed and why • have full network access (INTERNET): to send and receive email • view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes • run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start • foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later • prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages • [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos • [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords + Storage framework not available diff --git a/app/src/main/res/values-ar-rBH/strings.xml b/app/src/main/res/values-ar-rBH/strings.xml index f2407fe3..5a904f52 100644 --- a/app/src/main/res/values-ar-rBH/strings.xml +++ b/app/src/main/res/values-ar-rBH/strings.xml @@ -270,4 +270,5 @@ SimpleEmail does not collect any information, does not require unnecessary permissions and is 100% Free Software. Permissions are needed and why • have full network access (INTERNET): to send and receive email • view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes • run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start • foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later • prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages • [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos • [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords + Storage framework not available diff --git a/app/src/main/res/values-ar-rEG/strings.xml b/app/src/main/res/values-ar-rEG/strings.xml index 640adf71..b7fe4bbc 100644 --- a/app/src/main/res/values-ar-rEG/strings.xml +++ b/app/src/main/res/values-ar-rEG/strings.xml @@ -270,4 +270,5 @@ SimpleEmail does not collect any information, does not require unnecessary permissions and is 100% Free Software. Permissions are needed and why • have full network access (INTERNET): to send and receive email • view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes • run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start • foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later • prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages • [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos • [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords + Storage framework not available diff --git a/app/src/main/res/values-ar-rSA/strings.xml b/app/src/main/res/values-ar-rSA/strings.xml index f2407fe3..5a904f52 100644 --- a/app/src/main/res/values-ar-rSA/strings.xml +++ b/app/src/main/res/values-ar-rSA/strings.xml @@ -270,4 +270,5 @@ SimpleEmail does not collect any information, does not require unnecessary permissions and is 100% Free Software. Permissions are needed and why • have full network access (INTERNET): to send and receive email • view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes • run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start • foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later • prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages • [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos • [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords + Storage framework not available diff --git a/app/src/main/res/values-ar-rYE/strings.xml b/app/src/main/res/values-ar-rYE/strings.xml index f2407fe3..5a904f52 100644 --- a/app/src/main/res/values-ar-rYE/strings.xml +++ b/app/src/main/res/values-ar-rYE/strings.xml @@ -270,4 +270,5 @@ SimpleEmail does not collect any information, does not require unnecessary permissions and is 100% Free Software. Permissions are needed and why • have full network access (INTERNET): to send and receive email • view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes • run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start • foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later • prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages • [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos • [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords + Storage framework not available diff --git a/app/src/main/res/values-ar/strings.xml b/app/src/main/res/values-ar/strings.xml index f2407fe3..5a904f52 100644 --- a/app/src/main/res/values-ar/strings.xml +++ b/app/src/main/res/values-ar/strings.xml @@ -270,4 +270,5 @@ SimpleEmail does not collect any information, does not require unnecessary permissions and is 100% Free Software. Permissions are needed and why • have full network access (INTERNET): to send and receive email • view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes • run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start • foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later • prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages • [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos • [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords + Storage framework not available diff --git a/app/src/main/res/values-az/strings.xml b/app/src/main/res/values-az/strings.xml index b183ec80..cb5018b8 100644 --- a/app/src/main/res/values-az/strings.xml +++ b/app/src/main/res/values-az/strings.xml @@ -254,4 +254,5 @@ SimpleEmail does not collect any information, does not require unnecessary permissions and is 100% Free Software. Permissions are needed and why • have full network access (INTERNET): to send and receive email • view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes • run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start • foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later • prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages • [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos • [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords + Storage framework not available diff --git a/app/src/main/res/values-ca/strings.xml b/app/src/main/res/values-ca/strings.xml index 05409958..320a59e3 100644 --- a/app/src/main/res/values-ca/strings.xml +++ b/app/src/main/res/values-ca/strings.xml @@ -254,4 +254,5 @@ SimpleEmail does not collect any information, does not require unnecessary permissions and is 100% Free Software. Permissions are needed and why • have full network access (INTERNET): to send and receive email • view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes • run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start • foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later • prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages • [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos • [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords + Storage framework not available diff --git a/app/src/main/res/values-cs/strings.xml b/app/src/main/res/values-cs/strings.xml index 88d00319..3c524e90 100644 --- a/app/src/main/res/values-cs/strings.xml +++ b/app/src/main/res/values-cs/strings.xml @@ -262,4 +262,5 @@ SimpleEmail does not collect any information, does not require unnecessary permissions and is 100% Free Software. Permissions are needed and why • have full network access (INTERNET): to send and receive email • view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes • run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start • foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later • prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages • [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos • [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords + Storage framework not available diff --git a/app/src/main/res/values-da/strings.xml b/app/src/main/res/values-da/strings.xml index 943513ec..665bb005 100644 --- a/app/src/main/res/values-da/strings.xml +++ b/app/src/main/res/values-da/strings.xml @@ -254,4 +254,5 @@ SimpleEmail does not collect any information, does not require unnecessary permissions and is 100% Free Software. Permissions are needed and why • have full network access (INTERNET): to send and receive email • view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes • run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start • foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later • prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages • [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos • [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords + Storage framework not available diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml index 70ab6cf7..64a54e39 100644 --- a/app/src/main/res/values-de/strings.xml +++ b/app/src/main/res/values-de/strings.xml @@ -254,4 +254,5 @@ SimpleEmail does not collect any information, does not require unnecessary permissions and is 100% Free Software. Permissions are needed and why • have full network access (INTERNET): to send and receive email • view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes • run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start • foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later • prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages • [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos • [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords + Storage framework not available diff --git a/app/src/main/res/values-el/strings.xml b/app/src/main/res/values-el/strings.xml index 9ec81f1f..fa59f639 100644 --- a/app/src/main/res/values-el/strings.xml +++ b/app/src/main/res/values-el/strings.xml @@ -254,4 +254,5 @@ SimpleEmail does not collect any information, does not require unnecessary permissions and is 100% Free Software. Permissions are needed and why • have full network access (INTERNET): to send and receive email • view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes • run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start • foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later • prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages • [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos • [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords + Storage framework not available diff --git a/app/src/main/res/values-en/strings.xml b/app/src/main/res/values-en/strings.xml index 1031e9f6..d80e9a47 100644 --- a/app/src/main/res/values-en/strings.xml +++ b/app/src/main/res/values-en/strings.xml @@ -254,4 +254,5 @@ SimpleEmail does not collect any information, does not require unnecessary permissions and is 100\% Free Software. Permissions are needed and why • have full network access (INTERNET): to send and receive email • view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes • run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start • foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later • prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages • [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos • [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords + Storage framework not available diff --git a/app/src/main/res/values-es-rES/strings.xml b/app/src/main/res/values-es-rES/strings.xml index 46de3b9c..36a218a8 100644 --- a/app/src/main/res/values-es-rES/strings.xml +++ b/app/src/main/res/values-es-rES/strings.xml @@ -254,4 +254,5 @@ SimpleEmail no recopila ninguna información, no requiere permisos innecesarios y es 100\% software libre. Se necesitan permisos y por qué • tiene acceso completo a la red (INTERNET): para enviar y recibir correo electrónico • ver conexiones de red (ACCESS_NETWORK_STATE): para monitorear los cambios de conectividad a internet • ejecutar al inicio (RECEIVE_BOOT_COMPLETED): para iniciar el monitoreo en el inicio del dispositivo • Servicio de primer plano (FOREGROUND_SERVICE): para ejecutar un servicio de primer plano en Android 9 Pie y posterior • evitar que el dispositivo entre en suspensión (WAKE_LOCK): para mantener el dispositivo despierto mientras se sincronizan los mensajes • [Opcional] lee tus contactos (READ_CONTACTS): autocompletar direcciones y mostrar fotos • [Opcional] encuentre cuentas en el dispositivo (GET_ACCOUNTS): usar OAuth en lugar de contraseñas + Storage framework not available diff --git a/app/src/main/res/values-fa/strings.xml b/app/src/main/res/values-fa/strings.xml index ea73d9df..c0357c9d 100644 --- a/app/src/main/res/values-fa/strings.xml +++ b/app/src/main/res/values-fa/strings.xml @@ -254,4 +254,5 @@ SimpleEmail does not collect any information, does not require unnecessary permissions and is 100% Free Software. Permissions are needed and why • have full network access (INTERNET): to send and receive email • view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes • run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start • foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later • prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages • [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos • [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords + Storage framework not available diff --git a/app/src/main/res/values-fi/strings.xml b/app/src/main/res/values-fi/strings.xml index e96064f7..40014deb 100644 --- a/app/src/main/res/values-fi/strings.xml +++ b/app/src/main/res/values-fi/strings.xml @@ -254,4 +254,5 @@ SimpleEmail does not collect any information, does not require unnecessary permissions and is 100% Free Software. Permissions are needed and why • have full network access (INTERNET): to send and receive email • view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes • run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start • foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later • prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages • [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos • [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords + Storage framework not available diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml index 9b3715c9..87fef9f8 100644 --- a/app/src/main/res/values-fr/strings.xml +++ b/app/src/main/res/values-fr/strings.xml @@ -254,4 +254,5 @@ SimpleEmail does not collect any information, does not require unnecessary permissions and is 100% Free Software. Permissions are needed and why • have full network access (INTERNET): to send and receive email • view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes • run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start • foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later • prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages • [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos • [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords + Storage framework not available diff --git a/app/src/main/res/values-he/strings.xml b/app/src/main/res/values-he/strings.xml index 5aa20ea5..c197c0a4 100644 --- a/app/src/main/res/values-he/strings.xml +++ b/app/src/main/res/values-he/strings.xml @@ -262,4 +262,5 @@ SimpleEmail does not collect any information, does not require unnecessary permissions and is 100% Free Software. Permissions are needed and why • have full network access (INTERNET): to send and receive email • view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes • run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start • foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later • prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages • [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos • [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords + Storage framework not available diff --git a/app/src/main/res/values-hu/strings.xml b/app/src/main/res/values-hu/strings.xml index 65808e64..f70c3052 100644 --- a/app/src/main/res/values-hu/strings.xml +++ b/app/src/main/res/values-hu/strings.xml @@ -254,4 +254,5 @@ SimpleEmail does not collect any information, does not require unnecessary permissions and is 100% Free Software. Permissions are needed and why • have full network access (INTERNET): to send and receive email • view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes • run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start • foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later • prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages • [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos • [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords + Storage framework not available diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml index 96b012f0..85704084 100644 --- a/app/src/main/res/values-it/strings.xml +++ b/app/src/main/res/values-it/strings.xml @@ -254,4 +254,5 @@ SimpleEmail does not collect any information, does not require unnecessary permissions and is 100% Free Software. Permissions are needed and why • have full network access (INTERNET): to send and receive email • view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes • run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start • foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later • prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages • [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos • [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords + Storage framework not available diff --git a/app/src/main/res/values-iw/strings.xml b/app/src/main/res/values-iw/strings.xml index 5aa20ea5..c197c0a4 100644 --- a/app/src/main/res/values-iw/strings.xml +++ b/app/src/main/res/values-iw/strings.xml @@ -262,4 +262,5 @@ SimpleEmail does not collect any information, does not require unnecessary permissions and is 100% Free Software. Permissions are needed and why • have full network access (INTERNET): to send and receive email • view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes • run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start • foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later • prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages • [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos • [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords + Storage framework not available diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml index 5c1b1944..83ed9612 100644 --- a/app/src/main/res/values-ja/strings.xml +++ b/app/src/main/res/values-ja/strings.xml @@ -250,4 +250,5 @@ SimpleEmail does not collect any information, does not require unnecessary permissions and is 100% Free Software. Permissions are needed and why • have full network access (INTERNET): to send and receive email • view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes • run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start • foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later • prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages • [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos • [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords + Storage framework not available diff --git a/app/src/main/res/values-ko/strings.xml b/app/src/main/res/values-ko/strings.xml index 5c1b1944..83ed9612 100644 --- a/app/src/main/res/values-ko/strings.xml +++ b/app/src/main/res/values-ko/strings.xml @@ -250,4 +250,5 @@ SimpleEmail does not collect any information, does not require unnecessary permissions and is 100% Free Software. Permissions are needed and why • have full network access (INTERNET): to send and receive email • view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes • run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start • foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later • prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages • [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos • [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords + Storage framework not available diff --git a/app/src/main/res/values-nb/strings.xml b/app/src/main/res/values-nb/strings.xml index e96064f7..40014deb 100644 --- a/app/src/main/res/values-nb/strings.xml +++ b/app/src/main/res/values-nb/strings.xml @@ -254,4 +254,5 @@ SimpleEmail does not collect any information, does not require unnecessary permissions and is 100% Free Software. Permissions are needed and why • have full network access (INTERNET): to send and receive email • view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes • run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start • foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later • prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages • [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos • [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords + Storage framework not available diff --git a/app/src/main/res/values-nl/strings.xml b/app/src/main/res/values-nl/strings.xml index 5a6c34c3..d3f0bd08 100644 --- a/app/src/main/res/values-nl/strings.xml +++ b/app/src/main/res/values-nl/strings.xml @@ -254,4 +254,5 @@ SimpleEmail does not collect any information, does not require unnecessary permissions and is 100% Free Software. Permissions are needed and why • have full network access (INTERNET): to send and receive email • view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes • run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start • foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later • prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages • [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos • [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords + Storage framework not available diff --git a/app/src/main/res/values-no/strings.xml b/app/src/main/res/values-no/strings.xml index e96064f7..40014deb 100644 --- a/app/src/main/res/values-no/strings.xml +++ b/app/src/main/res/values-no/strings.xml @@ -254,4 +254,5 @@ SimpleEmail does not collect any information, does not require unnecessary permissions and is 100% Free Software. Permissions are needed and why • have full network access (INTERNET): to send and receive email • view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes • run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start • foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later • prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages • [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos • [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords + Storage framework not available diff --git a/app/src/main/res/values-pl/strings.xml b/app/src/main/res/values-pl/strings.xml index 5714d348..33105fd9 100644 --- a/app/src/main/res/values-pl/strings.xml +++ b/app/src/main/res/values-pl/strings.xml @@ -262,4 +262,5 @@ SimpleEmail does not collect any information, does not require unnecessary permissions and is 100% Free Software. Permissions are needed and why • have full network access (INTERNET): to send and receive email • view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes • run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start • foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later • prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages • [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos • [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords + Storage framework not available diff --git a/app/src/main/res/values-pt-rBR/strings.xml b/app/src/main/res/values-pt-rBR/strings.xml index cbe09cea..49e2f1fe 100644 --- a/app/src/main/res/values-pt-rBR/strings.xml +++ b/app/src/main/res/values-pt-rBR/strings.xml @@ -254,4 +254,5 @@ SimpleEmail does not collect any information, does not require unnecessary permissions and is 100% Free Software. Permissions are needed and why • have full network access (INTERNET): to send and receive email • view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes • run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start • foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later • prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages • [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos • [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords + Storage framework not available diff --git a/app/src/main/res/values-pt-rPT/strings.xml b/app/src/main/res/values-pt-rPT/strings.xml index e96064f7..40014deb 100644 --- a/app/src/main/res/values-pt-rPT/strings.xml +++ b/app/src/main/res/values-pt-rPT/strings.xml @@ -254,4 +254,5 @@ SimpleEmail does not collect any information, does not require unnecessary permissions and is 100% Free Software. Permissions are needed and why • have full network access (INTERNET): to send and receive email • view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes • run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start • foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later • prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages • [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos • [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords + Storage framework not available diff --git a/app/src/main/res/values-ro/strings.xml b/app/src/main/res/values-ro/strings.xml index db909dd3..4be0d627 100644 --- a/app/src/main/res/values-ro/strings.xml +++ b/app/src/main/res/values-ro/strings.xml @@ -258,4 +258,5 @@ SimpleEmail does not collect any information, does not require unnecessary permissions and is 100% Free Software. Permissions are needed and why • have full network access (INTERNET): to send and receive email • view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes • run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start • foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later • prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages • [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos • [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords + Storage framework not available diff --git a/app/src/main/res/values-ru/strings.xml b/app/src/main/res/values-ru/strings.xml index 88d00319..3c524e90 100644 --- a/app/src/main/res/values-ru/strings.xml +++ b/app/src/main/res/values-ru/strings.xml @@ -262,4 +262,5 @@ SimpleEmail does not collect any information, does not require unnecessary permissions and is 100% Free Software. Permissions are needed and why • have full network access (INTERNET): to send and receive email • view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes • run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start • foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later • prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages • [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos • [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords + Storage framework not available diff --git a/app/src/main/res/values-sr/strings.xml b/app/src/main/res/values-sr/strings.xml index 2a0eb02b..f2d51640 100644 --- a/app/src/main/res/values-sr/strings.xml +++ b/app/src/main/res/values-sr/strings.xml @@ -258,4 +258,5 @@ SimpleEmail does not collect any information, does not require unnecessary permissions and is 100% Free Software. Permissions are needed and why • have full network access (INTERNET): to send and receive email • view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes • run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start • foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later • prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages • [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos • [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords + Storage framework not available diff --git a/app/src/main/res/values-sv-rSE/strings.xml b/app/src/main/res/values-sv-rSE/strings.xml index 51d7ddb4..df0d3f35 100644 --- a/app/src/main/res/values-sv-rSE/strings.xml +++ b/app/src/main/res/values-sv-rSE/strings.xml @@ -254,4 +254,5 @@ SimpleEmail does not collect any information, does not require unnecessary permissions and is 100% Free Software. Permissions are needed and why • have full network access (INTERNET): to send and receive email • view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes • run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start • foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later • prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages • [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos • [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords + Storage framework not available diff --git a/app/src/main/res/values-tr/strings.xml b/app/src/main/res/values-tr/strings.xml index b907607e..89d809bb 100644 --- a/app/src/main/res/values-tr/strings.xml +++ b/app/src/main/res/values-tr/strings.xml @@ -254,4 +254,5 @@ SimpleEmail does not collect any information, does not require unnecessary permissions and is 100% Free Software. Permissions are needed and why • have full network access (INTERNET): to send and receive email • view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes • run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start • foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later • prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages • [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos • [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords + Storage framework not available diff --git a/app/src/main/res/values-uk/strings.xml b/app/src/main/res/values-uk/strings.xml index 88d00319..3c524e90 100644 --- a/app/src/main/res/values-uk/strings.xml +++ b/app/src/main/res/values-uk/strings.xml @@ -262,4 +262,5 @@ SimpleEmail does not collect any information, does not require unnecessary permissions and is 100% Free Software. Permissions are needed and why • have full network access (INTERNET): to send and receive email • view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes • run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start • foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later • prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages • [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos • [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords + Storage framework not available diff --git a/app/src/main/res/values-vi/strings.xml b/app/src/main/res/values-vi/strings.xml index 5c1b1944..83ed9612 100644 --- a/app/src/main/res/values-vi/strings.xml +++ b/app/src/main/res/values-vi/strings.xml @@ -250,4 +250,5 @@ SimpleEmail does not collect any information, does not require unnecessary permissions and is 100% Free Software. Permissions are needed and why • have full network access (INTERNET): to send and receive email • view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes • run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start • foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later • prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages • [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos • [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords + Storage framework not available diff --git a/app/src/main/res/values-zh-rCN/strings.xml b/app/src/main/res/values-zh-rCN/strings.xml index b9abb062..26dc11aa 100644 --- a/app/src/main/res/values-zh-rCN/strings.xml +++ b/app/src/main/res/values-zh-rCN/strings.xml @@ -250,4 +250,5 @@ SimpleEmail does not collect any information, does not require unnecessary permissions and is 100% Free Software. Permissions are needed and why • have full network access (INTERNET): to send and receive email • view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes • run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start • foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later • prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages • [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos • [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords + Storage framework not available diff --git a/app/src/main/res/values-zh-rTW/strings.xml b/app/src/main/res/values-zh-rTW/strings.xml index 5c1b1944..83ed9612 100644 --- a/app/src/main/res/values-zh-rTW/strings.xml +++ b/app/src/main/res/values-zh-rTW/strings.xml @@ -250,4 +250,5 @@ SimpleEmail does not collect any information, does not require unnecessary permissions and is 100% Free Software. Permissions are needed and why • have full network access (INTERNET): to send and receive email • view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes • run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start • foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later • prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages • [Optional] read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos • [Optional] find accounts on the device (GET_ACCOUNTS): to use OAuth instead of passwords + Storage framework not available diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index b1748446..133545f4 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -320,4 +320,5 @@ BCB07BD93B29C1959C15F1CF6C3A2619BAF7A17 + Storage framework not available