mirror of
https://github.com/M66B/FairEmail.git
synced 2025-03-14 16:10:39 +00:00
Added remark
This commit is contained in:
parent
af15c9fa70
commit
a47cda9a42
4 changed files with 29 additions and 0 deletions
|
@ -5593,6 +5593,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
|||
CheckBox cbNotAgainDomain = dview.findViewById(R.id.cbNotAgainDomain);
|
||||
CheckBox cbNotAgain = dview.findViewById(R.id.cbNotAgain);
|
||||
CheckBox cbNeverAgain = dview.findViewById(R.id.cbNeverAgain);
|
||||
TextView tvNeverAgainHint = dview.findViewById(R.id.tvNeverAgainHint);
|
||||
|
||||
if (junk) {
|
||||
if (full)
|
||||
|
@ -5601,6 +5602,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
|||
cbNotAgainDomain.setVisibility(View.GONE);
|
||||
cbNotAgain.setVisibility(View.GONE);
|
||||
cbNeverAgain.setVisibility(View.GONE);
|
||||
tvNeverAgainHint.setVisibility(View.GONE);
|
||||
} else if (senders == null || senders.length == 0) {
|
||||
cbNotAgainSender.setVisibility(View.GONE);
|
||||
cbNotAgainDomain.setVisibility(View.GONE);
|
||||
|
|
|
@ -113,6 +113,19 @@
|
|||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@id/cbNotAgain" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tvNeverAgainHint"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="24dp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:text="@string/title_undo_privacy"
|
||||
android:textAppearance="@style/TextAppearance.AppCompat.Small"
|
||||
android:textStyle="italic"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@id/cbNeverAgain" />
|
||||
|
||||
<androidx.constraintlayout.widget.Group
|
||||
android:id="@+id/grpTracking"
|
||||
android:layout_width="0dp"
|
||||
|
|
|
@ -90,6 +90,19 @@
|
|||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@id/cbNotAgain" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tvNeverAgainHint"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="24dp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:text="@string/title_undo_privacy"
|
||||
android:textAppearance="@style/TextAppearance.AppCompat.Small"
|
||||
android:textStyle="italic"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@id/cbNeverAgain" />
|
||||
|
||||
<androidx.constraintlayout.widget.Group
|
||||
android:id="@+id/grpTracking"
|
||||
android:layout_width="0dp"
|
||||
|
|
|
@ -2339,6 +2339,7 @@
|
|||
<string name="title_ask_what">Ask what to do</string>
|
||||
<string name="title_no_ask_again">Do not ask this again</string>
|
||||
<string name="title_no_ask_for_again">Do not ask this again for %1$s</string>
|
||||
<string name="title_undo_privacy">This can be undone in the privacy-settings tab page</string>
|
||||
<string name="title_no_body">No message text found</string>
|
||||
<string name="title_large_body">This message is very large and this may cause problems!</string>
|
||||
<string name="title_no_charset">Unsupported encoding: %1$s</string>
|
||||
|
|
Loading…
Add table
Reference in a new issue