Browse Source

fix: check if has storage framework

main
Distopico Vegan 5 years ago
parent
commit
1a07f5faed
40 changed files with 44 additions and 1 deletions
  1. +5
    -1
      app/src/main/java/org/dystopia/email/ActivityView.java
  2. +1
    -0
      app/src/main/res/values-af/strings.xml
  3. +1
    -0
      app/src/main/res/values-ar-rBH/strings.xml
  4. +1
    -0
      app/src/main/res/values-ar-rEG/strings.xml
  5. +1
    -0
      app/src/main/res/values-ar-rSA/strings.xml
  6. +1
    -0
      app/src/main/res/values-ar-rYE/strings.xml
  7. +1
    -0
      app/src/main/res/values-ar/strings.xml
  8. +1
    -0
      app/src/main/res/values-az/strings.xml
  9. +1
    -0
      app/src/main/res/values-ca/strings.xml
  10. +1
    -0
      app/src/main/res/values-cs/strings.xml
  11. +1
    -0
      app/src/main/res/values-da/strings.xml
  12. +1
    -0
      app/src/main/res/values-de/strings.xml
  13. +1
    -0
      app/src/main/res/values-el/strings.xml
  14. +1
    -0
      app/src/main/res/values-en/strings.xml
  15. +1
    -0
      app/src/main/res/values-es-rES/strings.xml
  16. +1
    -0
      app/src/main/res/values-fa/strings.xml
  17. +1
    -0
      app/src/main/res/values-fi/strings.xml
  18. +1
    -0
      app/src/main/res/values-fr/strings.xml
  19. +1
    -0
      app/src/main/res/values-he/strings.xml
  20. +1
    -0
      app/src/main/res/values-hu/strings.xml
  21. +1
    -0
      app/src/main/res/values-it/strings.xml
  22. +1
    -0
      app/src/main/res/values-iw/strings.xml
  23. +1
    -0
      app/src/main/res/values-ja/strings.xml
  24. +1
    -0
      app/src/main/res/values-ko/strings.xml
  25. +1
    -0
      app/src/main/res/values-nb/strings.xml
  26. +1
    -0
      app/src/main/res/values-nl/strings.xml
  27. +1
    -0
      app/src/main/res/values-no/strings.xml
  28. +1
    -0
      app/src/main/res/values-pl/strings.xml
  29. +1
    -0
      app/src/main/res/values-pt-rBR/strings.xml
  30. +1
    -0
      app/src/main/res/values-pt-rPT/strings.xml
  31. +1
    -0
      app/src/main/res/values-ro/strings.xml
  32. +1
    -0
      app/src/main/res/values-ru/strings.xml
  33. +1
    -0
      app/src/main/res/values-sr/strings.xml
  34. +1
    -0
      app/src/main/res/values-sv-rSE/strings.xml
  35. +1
    -0
      app/src/main/res/values-tr/strings.xml
  36. +1
    -0
      app/src/main/res/values-uk/strings.xml
  37. +1
    -0
      app/src/main/res/values-vi/strings.xml
  38. +1
    -0
      app/src/main/res/values-zh-rCN/strings.xml
  39. +1
    -0
      app/src/main/res/values-zh-rTW/strings.xml
  40. +1
    -0
      app/src/main/res/values/strings.xml

+ 5
- 1
app/src/main/java/org/dystopia/email/ActivityView.java View File

@ -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) {


+ 1
- 0
app/src/main/res/values-af/strings.xml View File

@ -254,4 +254,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> does not collect any information, does not require unnecessary permissions and is <b>100% Free Software</b>.</string>
<string name="title_permissions"><b>Permissions are needed and why</b></string>
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b> • view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b> • run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b> • foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b> • prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b> • [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b> • [Optional] find accounts on the device</b> (GET_ACCOUNTS): to use OAuth instead of passwords</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values-ar-rBH/strings.xml View File

@ -270,4 +270,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> does not collect any information, does not require unnecessary permissions and is <b>100% Free Software</b>.</string>
<string name="title_permissions"><b>Permissions are needed and why</b></string>
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b> • view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b> • run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b> • foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b> • prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b> • [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b> • [Optional] find accounts on the device</b> (GET_ACCOUNTS): to use OAuth instead of passwords</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values-ar-rEG/strings.xml View File

@ -270,4 +270,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> does not collect any information, does not require unnecessary permissions and is <b>100% Free Software</b>.</string>
<string name="title_permissions"><b>Permissions are needed and why</b></string>
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b> • view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b> • run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b> • foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b> • prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b> • [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b> • [Optional] find accounts on the device</b> (GET_ACCOUNTS): to use OAuth instead of passwords</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values-ar-rSA/strings.xml View File

@ -270,4 +270,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> does not collect any information, does not require unnecessary permissions and is <b>100% Free Software</b>.</string>
<string name="title_permissions"><b>Permissions are needed and why</b></string>
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b> • view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b> • run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b> • foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b> • prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b> • [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b> • [Optional] find accounts on the device</b> (GET_ACCOUNTS): to use OAuth instead of passwords</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values-ar-rYE/strings.xml View File

@ -270,4 +270,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> does not collect any information, does not require unnecessary permissions and is <b>100% Free Software</b>.</string>
<string name="title_permissions"><b>Permissions are needed and why</b></string>
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b> • view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b> • run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b> • foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b> • prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b> • [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b> • [Optional] find accounts on the device</b> (GET_ACCOUNTS): to use OAuth instead of passwords</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values-ar/strings.xml View File

@ -270,4 +270,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> does not collect any information, does not require unnecessary permissions and is <b>100% Free Software</b>.</string>
<string name="title_permissions"><b>Permissions are needed and why</b></string>
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b> • view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b> • run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b> • foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b> • prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b> • [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b> • [Optional] find accounts on the device</b> (GET_ACCOUNTS): to use OAuth instead of passwords</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values-az/strings.xml View File

@ -254,4 +254,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> does not collect any information, does not require unnecessary permissions and is <b>100% Free Software</b>.</string>
<string name="title_permissions"><b>Permissions are needed and why</b></string>
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b> • view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b> • run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b> • foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b> • prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b> • [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b> • [Optional] find accounts on the device</b> (GET_ACCOUNTS): to use OAuth instead of passwords</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values-ca/strings.xml View File

@ -254,4 +254,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> does not collect any information, does not require unnecessary permissions and is <b>100% Free Software</b>.</string>
<string name="title_permissions"><b>Permissions are needed and why</b></string>
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b> • view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b> • run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b> • foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b> • prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b> • [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b> • [Optional] find accounts on the device</b> (GET_ACCOUNTS): to use OAuth instead of passwords</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values-cs/strings.xml View File

@ -262,4 +262,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> does not collect any information, does not require unnecessary permissions and is <b>100% Free Software</b>.</string>
<string name="title_permissions"><b>Permissions are needed and why</b></string>
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b> • view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b> • run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b> • foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b> • prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b> • [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b> • [Optional] find accounts on the device</b> (GET_ACCOUNTS): to use OAuth instead of passwords</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values-da/strings.xml View File

@ -254,4 +254,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> does not collect any information, does not require unnecessary permissions and is <b>100% Free Software</b>.</string>
<string name="title_permissions"><b>Permissions are needed and why</b></string>
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b> • view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b> • run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b> • foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b> • prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b> • [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b> • [Optional] find accounts on the device</b> (GET_ACCOUNTS): to use OAuth instead of passwords</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values-de/strings.xml View File

@ -254,4 +254,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> does not collect any information, does not require unnecessary permissions and is <b>100% Free Software</b>.</string>
<string name="title_permissions"><b>Permissions are needed and why</b></string>
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b> • view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b> • run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b> • foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b> • prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b> • [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b> • [Optional] find accounts on the device</b> (GET_ACCOUNTS): to use OAuth instead of passwords</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values-el/strings.xml View File

@ -254,4 +254,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> does not collect any information, does not require unnecessary permissions and is <b>100% Free Software</b>.</string>
<string name="title_permissions"><b>Permissions are needed and why</b></string>
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b> • view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b> • run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b> • foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b> • prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b> • [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b> • [Optional] find accounts on the device</b> (GET_ACCOUNTS): to use OAuth instead of passwords</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values-en/strings.xml View File

@ -254,4 +254,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> does not collect any information, does not require unnecessary permissions and is <b>100\% Free Software</b>.</string>
<string name="title_permissions"><b>Permissions are needed and why</b></string>
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b> • view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b> • run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b> • foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b> • prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b> • [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b> • [Optional] find accounts on the device</b> (GET_ACCOUNTS): to use OAuth instead of passwords</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values-es-rES/strings.xml View File

@ -254,4 +254,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> no recopila ninguna información, no requiere permisos innecesarios y es <b>100\% software libre</b>.</string>
<string name="title_permissions"><b>Se necesitan permisos y por qué</b></string>
<string name="title_permissions_list"><b> • tiene acceso completo a la red </b> (INTERNET): para enviar y recibir correo electrónico <b> • ver conexiones de red </b> (ACCESS_NETWORK_STATE): para monitorear los cambios de conectividad a internet <b> • ejecutar al inicio </b> (RECEIVE_BOOT_COMPLETED): para iniciar el monitoreo en el inicio del dispositivo <b> • Servicio de primer plano </b> (FOREGROUND_SERVICE): para ejecutar un servicio de primer plano en Android 9 Pie y posterior <b> • evitar que el dispositivo entre en suspensión </b> (WAKE_LOCK): para mantener el dispositivo despierto mientras se sincronizan los mensajes <b> • [Opcional] lee tus contactos </b> (READ_CONTACTS): autocompletar direcciones y mostrar fotos <b> • [Opcional] encuentre cuentas en el dispositivo </b> (GET_ACCOUNTS): usar OAuth en lugar de contraseñas</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values-fa/strings.xml View File

@ -254,4 +254,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> does not collect any information, does not require unnecessary permissions and is <b>100% Free Software</b>.</string>
<string name="title_permissions"><b>Permissions are needed and why</b></string>
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b> • view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b> • run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b> • foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b> • prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b> • [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b> • [Optional] find accounts on the device</b> (GET_ACCOUNTS): to use OAuth instead of passwords</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values-fi/strings.xml View File

@ -254,4 +254,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> does not collect any information, does not require unnecessary permissions and is <b>100% Free Software</b>.</string>
<string name="title_permissions"><b>Permissions are needed and why</b></string>
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b> • view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b> • run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b> • foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b> • prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b> • [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b> • [Optional] find accounts on the device</b> (GET_ACCOUNTS): to use OAuth instead of passwords</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values-fr/strings.xml View File

@ -254,4 +254,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> does not collect any information, does not require unnecessary permissions and is <b>100% Free Software</b>.</string>
<string name="title_permissions"><b>Permissions are needed and why</b></string>
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b> • view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b> • run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b> • foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b> • prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b> • [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b> • [Optional] find accounts on the device</b> (GET_ACCOUNTS): to use OAuth instead of passwords</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values-he/strings.xml View File

@ -262,4 +262,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> does not collect any information, does not require unnecessary permissions and is <b>100% Free Software</b>.</string>
<string name="title_permissions"><b>Permissions are needed and why</b></string>
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b> • view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b> • run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b> • foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b> • prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b> • [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b> • [Optional] find accounts on the device</b> (GET_ACCOUNTS): to use OAuth instead of passwords</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values-hu/strings.xml View File

@ -254,4 +254,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> does not collect any information, does not require unnecessary permissions and is <b>100% Free Software</b>.</string>
<string name="title_permissions"><b>Permissions are needed and why</b></string>
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b> • view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b> • run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b> • foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b> • prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b> • [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b> • [Optional] find accounts on the device</b> (GET_ACCOUNTS): to use OAuth instead of passwords</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values-it/strings.xml View File

@ -254,4 +254,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> does not collect any information, does not require unnecessary permissions and is <b>100% Free Software</b>.</string>
<string name="title_permissions"><b>Permissions are needed and why</b></string>
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b> • view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b> • run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b> • foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b> • prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b> • [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b> • [Optional] find accounts on the device</b> (GET_ACCOUNTS): to use OAuth instead of passwords</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values-iw/strings.xml View File

@ -262,4 +262,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> does not collect any information, does not require unnecessary permissions and is <b>100% Free Software</b>.</string>
<string name="title_permissions"><b>Permissions are needed and why</b></string>
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b> • view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b> • run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b> • foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b> • prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b> • [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b> • [Optional] find accounts on the device</b> (GET_ACCOUNTS): to use OAuth instead of passwords</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values-ja/strings.xml View File

@ -250,4 +250,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> does not collect any information, does not require unnecessary permissions and is <b>100% Free Software</b>.</string>
<string name="title_permissions"><b>Permissions are needed and why</b></string>
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b> • view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b> • run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b> • foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b> • prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b> • [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b> • [Optional] find accounts on the device</b> (GET_ACCOUNTS): to use OAuth instead of passwords</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values-ko/strings.xml View File

@ -250,4 +250,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> does not collect any information, does not require unnecessary permissions and is <b>100% Free Software</b>.</string>
<string name="title_permissions"><b>Permissions are needed and why</b></string>
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b> • view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b> • run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b> • foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b> • prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b> • [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b> • [Optional] find accounts on the device</b> (GET_ACCOUNTS): to use OAuth instead of passwords</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values-nb/strings.xml View File

@ -254,4 +254,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> does not collect any information, does not require unnecessary permissions and is <b>100% Free Software</b>.</string>
<string name="title_permissions"><b>Permissions are needed and why</b></string>
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b> • view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b> • run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b> • foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b> • prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b> • [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b> • [Optional] find accounts on the device</b> (GET_ACCOUNTS): to use OAuth instead of passwords</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values-nl/strings.xml View File

@ -254,4 +254,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> does not collect any information, does not require unnecessary permissions and is <b>100% Free Software</b>.</string>
<string name="title_permissions"><b>Permissions are needed and why</b></string>
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b> • view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b> • run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b> • foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b> • prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b> • [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b> • [Optional] find accounts on the device</b> (GET_ACCOUNTS): to use OAuth instead of passwords</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values-no/strings.xml View File

@ -254,4 +254,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> does not collect any information, does not require unnecessary permissions and is <b>100% Free Software</b>.</string>
<string name="title_permissions"><b>Permissions are needed and why</b></string>
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b> • view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b> • run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b> • foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b> • prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b> • [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b> • [Optional] find accounts on the device</b> (GET_ACCOUNTS): to use OAuth instead of passwords</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values-pl/strings.xml View File

@ -262,4 +262,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> does not collect any information, does not require unnecessary permissions and is <b>100% Free Software</b>.</string>
<string name="title_permissions"><b>Permissions are needed and why</b></string>
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b> • view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b> • run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b> • foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b> • prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b> • [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b> • [Optional] find accounts on the device</b> (GET_ACCOUNTS): to use OAuth instead of passwords</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values-pt-rBR/strings.xml View File

@ -254,4 +254,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> does not collect any information, does not require unnecessary permissions and is <b>100% Free Software</b>.</string>
<string name="title_permissions"><b>Permissions are needed and why</b></string>
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b> • view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b> • run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b> • foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b> • prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b> • [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b> • [Optional] find accounts on the device</b> (GET_ACCOUNTS): to use OAuth instead of passwords</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values-pt-rPT/strings.xml View File

@ -254,4 +254,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> does not collect any information, does not require unnecessary permissions and is <b>100% Free Software</b>.</string>
<string name="title_permissions"><b>Permissions are needed and why</b></string>
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b> • view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b> • run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b> • foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b> • prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b> • [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b> • [Optional] find accounts on the device</b> (GET_ACCOUNTS): to use OAuth instead of passwords</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values-ro/strings.xml View File

@ -258,4 +258,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> does not collect any information, does not require unnecessary permissions and is <b>100% Free Software</b>.</string>
<string name="title_permissions"><b>Permissions are needed and why</b></string>
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b> • view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b> • run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b> • foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b> • prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b> • [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b> • [Optional] find accounts on the device</b> (GET_ACCOUNTS): to use OAuth instead of passwords</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values-ru/strings.xml View File

@ -262,4 +262,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> does not collect any information, does not require unnecessary permissions and is <b>100% Free Software</b>.</string>
<string name="title_permissions"><b>Permissions are needed and why</b></string>
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b> • view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b> • run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b> • foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b> • prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b> • [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b> • [Optional] find accounts on the device</b> (GET_ACCOUNTS): to use OAuth instead of passwords</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values-sr/strings.xml View File

@ -258,4 +258,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> does not collect any information, does not require unnecessary permissions and is <b>100% Free Software</b>.</string>
<string name="title_permissions"><b>Permissions are needed and why</b></string>
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b> • view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b> • run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b> • foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b> • prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b> • [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b> • [Optional] find accounts on the device</b> (GET_ACCOUNTS): to use OAuth instead of passwords</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values-sv-rSE/strings.xml View File

@ -254,4 +254,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> does not collect any information, does not require unnecessary permissions and is <b>100% Free Software</b>.</string>
<string name="title_permissions"><b>Permissions are needed and why</b></string>
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b> • view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b> • run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b> • foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b> • prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b> • [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b> • [Optional] find accounts on the device</b> (GET_ACCOUNTS): to use OAuth instead of passwords</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values-tr/strings.xml View File

@ -254,4 +254,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> does not collect any information, does not require unnecessary permissions and is <b>100% Free Software</b>.</string>
<string name="title_permissions"><b>Permissions are needed and why</b></string>
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b> • view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b> • run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b> • foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b> • prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b> • [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b> • [Optional] find accounts on the device</b> (GET_ACCOUNTS): to use OAuth instead of passwords</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values-uk/strings.xml View File

@ -262,4 +262,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> does not collect any information, does not require unnecessary permissions and is <b>100% Free Software</b>.</string>
<string name="title_permissions"><b>Permissions are needed and why</b></string>
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b> • view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b> • run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b> • foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b> • prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b> • [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b> • [Optional] find accounts on the device</b> (GET_ACCOUNTS): to use OAuth instead of passwords</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values-vi/strings.xml View File

@ -250,4 +250,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> does not collect any information, does not require unnecessary permissions and is <b>100% Free Software</b>.</string>
<string name="title_permissions"><b>Permissions are needed and why</b></string>
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b> • view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b> • run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b> • foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b> • prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b> • [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b> • [Optional] find accounts on the device</b> (GET_ACCOUNTS): to use OAuth instead of passwords</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values-zh-rCN/strings.xml View File

@ -250,4 +250,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> does not collect any information, does not require unnecessary permissions and is <b>100% Free Software</b>.</string>
<string name="title_permissions"><b>Permissions are needed and why</b></string>
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b> • view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b> • run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b> • foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b> • prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b> • [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b> • [Optional] find accounts on the device</b> (GET_ACCOUNTS): to use OAuth instead of passwords</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values-zh-rTW/strings.xml View File

@ -250,4 +250,5 @@
<string name="title_privacy_description"><b>SimpleEmail</b> does not collect any information, does not require unnecessary permissions and is <b>100% Free Software</b>.</string>
<string name="title_permissions"><b>Permissions are needed and why</b></string>
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b> • view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b> • run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b> • foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b> • prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b> • [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b> • [Optional] find accounts on the device</b> (GET_ACCOUNTS): to use OAuth instead of passwords</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

+ 1
- 0
app/src/main/res/values/strings.xml View File

@ -320,4 +320,5 @@
</array>
<string name="fingerprint" translatable="false">BCB07BD93B29C1959C15F1CF6C3A2619BAF7A17</string>
<string name="title_no_storage_framework">Storage framework not available</string>
</resources>

Loading…
Cancel
Save