mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-02 13:14:39 +00:00
Added original/reformatted to legend
This commit is contained in:
parent
ef629e5329
commit
21e3673632
2 changed files with 47 additions and 1 deletions
|
@ -632,6 +632,50 @@
|
|||
app:layout_constraintStart_toEndOf="@id/ivUnsubscribe"
|
||||
app:layout_constraintTop_toTopOf="@id/ivUnsubscribe" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/ivOriginal"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:contentDescription="@string/title_legend_view"
|
||||
android:padding="12dp"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@id/ivUnsubscribe"
|
||||
app:srcCompat="@drawable/twotone_fullscreen_24" />
|
||||
|
||||
<eu.faircode.email.FixedTextView
|
||||
android:id="@+id/tvOriginal"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="0dp"
|
||||
android:gravity="center_vertical"
|
||||
android:text="@string/title_legend_original"
|
||||
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
|
||||
app:layout_constraintBottom_toBottomOf="@id/ivOriginal"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toEndOf="@id/ivOriginal"
|
||||
app:layout_constraintTop_toTopOf="@id/ivOriginal" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/ivReformatted"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:contentDescription="@string/title_legend_hide"
|
||||
android:padding="12dp"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@id/ivOriginal"
|
||||
app:srcCompat="@drawable/twotone_fullscreen_exit_24" />
|
||||
|
||||
<eu.faircode.email.FixedTextView
|
||||
android:id="@+id/tvReformatted"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="0dp"
|
||||
android:gravity="center_vertical"
|
||||
android:text="@string/title_legend_reformatted"
|
||||
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
|
||||
app:layout_constraintBottom_toBottomOf="@id/ivReformatted"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toEndOf="@id/ivReformatted"
|
||||
app:layout_constraintTop_toTopOf="@id/ivReformatted" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/ivExternalImage"
|
||||
android:layout_width="wrap_content"
|
||||
|
@ -639,7 +683,7 @@
|
|||
android:contentDescription="@string/title_legend_external_image"
|
||||
android:padding="12dp"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@id/ivUnsubscribe"
|
||||
app:layout_constraintTop_toBottomOf="@id/ivReformatted"
|
||||
app:srcCompat="@drawable/twotone_image_24" />
|
||||
|
||||
<eu.faircode.email.FixedTextView
|
||||
|
|
|
@ -1405,6 +1405,8 @@
|
|||
<string name="title_legend_view">View content</string>
|
||||
<string name="title_legend_hide">Hide content</string>
|
||||
<string name="title_legend_download">Download content</string>
|
||||
<string name="title_legend_original">View original message</string>
|
||||
<string name="title_legend_reformatted">View reformatted message</string>
|
||||
<string name="title_legend_external_image">External image placeholder</string>
|
||||
<string name="title_legend_embedded_image">Embedded image placeholder</string>
|
||||
<string name="title_legend_tracking_pixel">Tracking image</string>
|
||||
|
|
Loading…
Reference in a new issue