1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-01-19 05:38:31 +00:00

Show 'date' instead of 'received' in extended reply header

This commit is contained in:
M66B 2021-04-24 17:21:02 +02:00
parent 6029f03eda
commit 36ef00fc32
2 changed files with 2 additions and 1 deletions

View file

@ -357,7 +357,7 @@ public class EntityMessage implements Serializable {
}
if (received != null) { // embedded messages
Element strong = document.createElement("strong");
strong.text(Helper.getString(context, l, R.string.title_received) + " ");
strong.text(Helper.getString(context, l, R.string.title_date) + " ");
p.appendChild(strong);
p.appendText(DF.format(received));
p.appendElement("br");

View file

@ -1024,6 +1024,7 @@
<string name="title_via_identity">Via:</string>
<string name="title_sent">Sent:</string>
<string name="title_received">Received:</string>
<string name="title_date">Date:</string>
<string name="title_stored">Stored:</string>
<string name="title_size">Size:</string>
<string name="title_language">Language:</string>