mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-05 16:43:26 +02:00
Updated text
This commit is contained in:
@@ -730,13 +730,19 @@ public class HtmlHelper {
|
||||
document.normalise();
|
||||
}
|
||||
|
||||
if (length > MAX_TEXT_SIZE)
|
||||
if (length > MAX_TEXT_SIZE) {
|
||||
document.body()
|
||||
.appendElement("p")
|
||||
.appendElement("em")
|
||||
.text(context.getString(R.string.title_too_large));
|
||||
|
||||
document.body()
|
||||
.appendElement("p")
|
||||
.appendElement("big")
|
||||
.appendElement("a")
|
||||
.attr("href", "more:")
|
||||
.text(context.getString(R.string.title_show_more));
|
||||
.attr("href", "full:")
|
||||
.text(context.getString(R.string.title_show_full));
|
||||
}
|
||||
|
||||
return document;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user