mirror of https://github.com/M66B/FairEmail.git
Added POP3 warning
This commit is contained in:
parent
677ce0e562
commit
dc430cf79a
|
@ -26,6 +26,17 @@
|
|||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
<eu.faircode.email.FixedTextView
|
||||
android:id="@+id/tvPopWarning"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="12dp"
|
||||
android:text="@string/title_pop_warning"
|
||||
android:textAppearance="@style/TextAppearance.AppCompat.Small"
|
||||
android:textColor="?attr/colorWarning"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@id/tvPopSupport" />
|
||||
|
||||
<eu.faircode.email.FixedTextView
|
||||
android:id="@+id/tvHost"
|
||||
android:layout_width="wrap_content"
|
||||
|
@ -34,7 +45,7 @@
|
|||
android:text="@string/title_host"
|
||||
android:textAppearance="@style/TextAppearance.AppCompat.Small"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@id/tvPopSupport" />
|
||||
app:layout_constraintTop_toBottomOf="@id/tvPopWarning" />
|
||||
|
||||
<eu.faircode.email.EditTextPlain
|
||||
android:id="@+id/etHost"
|
||||
|
|
|
@ -757,6 +757,7 @@
|
|||
<string name="title_backoff_until">Waiting after failure until: %1$s</string>
|
||||
<string name="title_storage_quota">Server storage usage: %1$s/%2$s</string>
|
||||
<string name="title_pop_support">The POP3 protocol supports downloading and deleting messages from the inbox only. POP3 cannot mark messages as read, move messages, etc. POP3 will use more battery power and data than IMAP. So, consider using the IMAP protocol whenever possible.</string>
|
||||
<string name="title_pop_warning">If a POP3 server does not support the UIDL command, the data usage might be high. So, adjust the poll frequency below accordingly.</string>
|
||||
<string name="title_oauth_support">OAuth is not supported</string>
|
||||
<string name="title_review">Review</string>
|
||||
<string name="title_hint_alias">Long press an identity to display options, like copy to create alias identities</string>
|
||||
|
|
Loading…
Reference in New Issue