Browse Source

feat: add text when no have accounts yet

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

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

@ -52,7 +52,7 @@ public class ActivityMain extends AppCompatActivity implements FragmentManager.O
}
});
}
@Override
public void onBackStackChanged() {
int count = getSupportFragmentManager().getBackStackEntryCount();


+ 8
- 1
app/src/main/java/org/dystopia/email/FragmentAccounts.java View File

@ -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<List<EntityAccount>>() {
@Override
public void onChanged(@Nullable List<EntityAccount> accounts) {
if (accounts == null)
if (accounts == null) {
accounts = new ArrayList<>();
} else if (accounts.size() == 0) {
tvNoAccounts.setVisibility(View.VISIBLE);
}
adapter.set(accounts);


+ 4
- 13
app/src/main/res/layout/fragment_account.xml View File

@ -25,8 +25,9 @@
<Spinner
android:id="@+id/spProvider"
android:layout_width="wrap_content"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
style="@style/Widget.AppCompat.Spinner.Underlined"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvProvider" />
@ -298,26 +299,16 @@
<EditText
android:id="@+id/etSignature"
android:layout_width="0dp"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:fontFamily="monospace"
android:hint="@string/title_optional"
android:inputType="textCapSentences|textMultiLine"
android:textAppearance="@style/TextAppearance.AppCompat.Small"
app:layout_constraintEnd_toStartOf="@+id/ibPro"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvSignature" />
<ImageButton
android:id="@+id/ibPro"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="6dp"
android:src="@drawable/baseline_info_24"
app:layout_constraintBottom_toBottomOf="@id/etSignature"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="@id/etSignature" />
<CheckBox
android:id="@+id/cbSynchronize"
android:layout_width="wrap_content"


+ 17
- 0
app/src/main/res/layout/fragment_accounts.xml View File

@ -34,6 +34,23 @@
android:layout_height="0dp"
app:constraint_referenced_ids="rvAccount" />
<TextView
android:id="@+id/tvNoAccounts"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:minHeight="33dp"
android:alpha = "0.8"
android:layout_marginEnd="@dimen/layout_margin"
android:layout_marginStart="@dimen/layout_margin"
android:text="@string/title_no_accounts_yet"
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
android:textColor="?android:attr/textColorPrimary"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"


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

@ -255,5 +255,6 @@
<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>\n• view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b>\n• run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b>\n• foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b>\n• prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b>\n• [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b>\n• [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>
<string name="title_show_details">See details</string>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

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

@ -271,5 +271,6 @@
<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>\n• view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b>\n• run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b>\n• foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b>\n• prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b>\n• [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b>\n• [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>
<string name="title_show_details">See details</string>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

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

@ -271,5 +271,6 @@
<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>\n• view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b>\n• run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b>\n• foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b>\n• prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b>\n• [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b>\n• [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>
<string name="title_show_details">See details</string>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

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

@ -271,5 +271,6 @@
<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>\n• view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b>\n• run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b>\n• foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b>\n• prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b>\n• [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b>\n• [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>
<string name="title_show_details">See details</string>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

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

@ -271,5 +271,6 @@
<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>\n• view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b>\n• run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b>\n• foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b>\n• prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b>\n• [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b>\n• [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>
<string name="title_show_details">See details</string>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

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

@ -271,5 +271,6 @@
<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>\n• view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b>\n• run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b>\n• foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b>\n• prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b>\n• [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b>\n• [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>
<string name="title_show_details">See details</string>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

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

@ -255,5 +255,6 @@
<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>\n• view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b>\n• run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b>\n• foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b>\n• prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b>\n• [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b>\n• [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>
<string name="title_show_details">See details</string>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

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

@ -255,5 +255,6 @@
<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>\n• view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b>\n• run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b>\n• foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b>\n• prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b>\n• [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b>\n• [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>
<string name="title_show_details">See details</string>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

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

@ -263,5 +263,6 @@
<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>\n• view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b>\n• run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b>\n• foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b>\n• prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b>\n• [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b>\n• [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>
<string name="title_show_details">See details</string>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

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

@ -255,5 +255,6 @@
<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>\n• view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b>\n• run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b>\n• foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b>\n• prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b>\n• [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b>\n• [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>
<string name="title_show_details">See details</string>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

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

@ -255,5 +255,6 @@
<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>\n• view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b>\n• run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b>\n• foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b>\n• prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b>\n• [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b>\n• [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>
<string name="title_show_details">See details</string>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

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

@ -255,5 +255,6 @@
<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>\n• view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b>\n• run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b>\n• foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b>\n• prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b>\n• [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b>\n• [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>
<string name="title_show_details">See details</string>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

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

@ -256,4 +256,5 @@
<string name="title_permissions_list"><b>• have full network access</b> (INTERNET): to send and receive email <b>\n• view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b>\n• run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b>\n• foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b>\n• prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b>\n• [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b>\n• [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>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

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

@ -256,4 +256,5 @@
<string name="title_permissions_list"><b>\n• tiene acceso completo a la red </b> (INTERNET): para enviar y recibir correo electrónico <b>\n• ver conexiones de red </b> (ACCESS_NETWORK_STATE): para monitorear los cambios de conectividad a internet <b>\n• ejecutar al inicio </b> (RECEIVE_BOOT_COMPLETED): para iniciar el monitoreo en el inicio del dispositivo <b>\n• Servicio de primer plano </b> (FOREGROUND_SERVICE): para ejecutar un servicio de primer plano en Android 9 Pie y posterior <b>\n• evitar que el dispositivo entre en suspensión </b> (WAKE_LOCK): para mantener el dispositivo despierto mientras se sincronizan los mensajes <b>\n• [Opcional] lee tus contactos </b> (READ_CONTACTS): autocompletar direcciones y mostrar fotos <b>\n• [Opcional] encuentre cuentas en el dispositivo </b> (GET_ACCOUNTS): usar OAuth en lugar de contraseñas</string>
<string name="title_no_storage_framework">Framework de almacenamiento no disponible</string>
<string name="title_show_details">Ver detalles</string>
<string name="title_no_accounts_yet">Aún no tienes cuentas configuradas</string>
</resources>

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

@ -255,5 +255,6 @@
<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>\n• view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b>\n• run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b>\n• foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b>\n• prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b>\n• [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b>\n• [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>
<string name="title_show_details">See details</string>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

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

@ -255,5 +255,6 @@
<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>\n• view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b>\n• run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b>\n• foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b>\n• prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b>\n• [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b>\n• [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>
<string name="title_show_details">See details</string>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

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

@ -255,5 +255,6 @@
<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>\n• view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b>\n• run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b>\n• foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b>\n• prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b>\n• [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b>\n• [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>
<string name="title_show_details">See details</string>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

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

@ -263,5 +263,6 @@
<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>\n• view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b>\n• run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b>\n• foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b>\n• prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b>\n• [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b>\n• [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>
<string name="title_show_details">See details</string>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

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

@ -255,5 +255,6 @@
<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>\n• view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b>\n• run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b>\n• foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b>\n• prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b>\n• [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b>\n• [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>
<string name="title_show_details">See details</string>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

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

@ -255,5 +255,6 @@
<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>\n• view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b>\n• run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b>\n• foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b>\n• prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b>\n• [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b>\n• [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>
<string name="title_show_details">See details</string>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

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

@ -263,5 +263,6 @@
<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>\n• view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b>\n• run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b>\n• foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b>\n• prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b>\n• [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b>\n• [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>
<string name="title_show_details">See details</string>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

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

@ -251,5 +251,6 @@
<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>\n• view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b>\n• run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b>\n• foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b>\n• prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b>\n• [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b>\n• [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>
<string name="title_show_details">See details</string>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

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

@ -251,5 +251,6 @@
<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>\n• view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b>\n• run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b>\n• foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b>\n• prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b>\n• [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b>\n• [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>
<string name="title_show_details">See details</string>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

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

@ -255,5 +255,6 @@
<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>\n• view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b>\n• run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b>\n• foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b>\n• prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b>\n• [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b>\n• [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>
<string name="title_show_details">See details</string>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

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

@ -255,5 +255,6 @@
<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>\n• view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b>\n• run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b>\n• foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b>\n• prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b>\n• [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b>\n• [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>
<string name="title_show_details">See details</string>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

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

@ -255,5 +255,6 @@
<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>\n• view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b>\n• run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b>\n• foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b>\n• prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b>\n• [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b>\n• [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>
<string name="title_show_details">See details</string>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

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

@ -263,5 +263,6 @@
<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>\n• view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b>\n• run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b>\n• foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b>\n• prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b>\n• [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b>\n• [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>
<string name="title_show_details">See details</string>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

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

@ -255,5 +255,6 @@
<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>\n• view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b>\n• run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b>\n• foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b>\n• prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b>\n• [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b>\n• [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>
<string name="title_show_details">See details</string>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

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

@ -255,5 +255,6 @@
<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>\n• view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b>\n• run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b>\n• foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b>\n• prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b>\n• [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b>\n• [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>
<string name="title_show_details">See details</string>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

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

@ -259,5 +259,6 @@
<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>\n• view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b>\n• run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b>\n• foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b>\n• prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b>\n• [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b>\n• [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>
<string name="title_show_details">See details</string>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

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

@ -263,5 +263,6 @@
<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>\n• view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b>\n• run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b>\n• foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b>\n• prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b>\n• [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b>\n• [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>
<string name="title_show_details">See details</string>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

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

@ -259,5 +259,6 @@
<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>\n• view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b>\n• run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b>\n• foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b>\n• prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b>\n• [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b>\n• [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>
<string name="title_show_details">See details</string>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

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

@ -255,5 +255,6 @@
<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>\n• view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b>\n• run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b>\n• foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b>\n• prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b>\n• [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b>\n• [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>
<string name="title_show_details">See details</string>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

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

@ -255,5 +255,6 @@
<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>\n• view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b>\n• run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b>\n• foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b>\n• prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b>\n• [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b>\n• [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>
<string name="title_show_details">See details</string>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

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

@ -263,5 +263,6 @@
<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>\n• view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b>\n• run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b>\n• foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b>\n• prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b>\n• [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b>\n• [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>
<string name="title_show_details">See details</string>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

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

@ -251,5 +251,6 @@
<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>\n• view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b>\n• run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b>\n• foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b>\n• prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b>\n• [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b>\n• [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>
<string name="title_show_details">See details</string>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

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

@ -251,5 +251,6 @@
<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>\n• view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b>\n• run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b>\n• foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b>\n• prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b>\n• [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b>\n• [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>
<string name="title_show_details">See details</string>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

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

@ -251,5 +251,6 @@
<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>\n• view network connections</b> (ACCESS_NETWORK_STATE): to monitor internet connectivity changes <b>\n• run at startup</b> (RECEIVE_BOOT_COMPLETED): to start monitoring on device start <b>\n• foreground service</b> (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later <b>\n• prevent device from sleeping</b> (WAKE_LOCK): to keep the device awake while synchronizing messages <b>\n• [Optional] read your contacts</b> (READ_CONTACTS): to autocomplete addresses and to show photos <b>\n• [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>
<string name="title_show_details">See details</string>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

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

@ -321,5 +321,6 @@
<string name="fingerprint" translatable="false">BCB07BD93B29C1959C15F1CF6C3A2619BAF7A17</string>
<string name="title_no_storage_framework">Storage framework not available</string>
<string name="title_show_details">See details</string>
<string name="title_show_details">See details</string>
<string name="title_no_accounts_yet">You don\'t have accounts configured yet</string>
</resources>

Loading…
Cancel
Save