Browse Source

Added IMAP compression (default enabled)

main
M66B 6 years ago
parent
commit
e3b4674378
44 changed files with 81 additions and 9 deletions
  1. +2
    -2
      app/src/main/java/eu/faircode/email/FragmentAccount.java
  2. +1
    -1
      app/src/main/java/eu/faircode/email/FragmentIdentity.java
  3. +10
    -0
      app/src/main/java/eu/faircode/email/FragmentOptions.java
  4. +14
    -1
      app/src/main/java/eu/faircode/email/MessageHelper.java
  5. +1
    -1
      app/src/main/java/eu/faircode/email/SearchDataSource.java
  6. +2
    -2
      app/src/main/java/eu/faircode/email/ServiceSynchronize.java
  7. +13
    -1
      app/src/main/res/layout/fragment_options.xml
  8. +1
    -0
      app/src/main/res/values-af/strings.xml
  9. +1
    -0
      app/src/main/res/values-ar-rBH/strings.xml
  10. +1
    -0
      app/src/main/res/values-ar-rEG/strings.xml
  11. +1
    -0
      app/src/main/res/values-ar-rSA/strings.xml
  12. +1
    -0
      app/src/main/res/values-ar-rYE/strings.xml
  13. +1
    -0
      app/src/main/res/values-ar/strings.xml
  14. +1
    -0
      app/src/main/res/values-ca/strings.xml
  15. +1
    -0
      app/src/main/res/values-cs/strings.xml
  16. +1
    -0
      app/src/main/res/values-da/strings.xml
  17. +1
    -0
      app/src/main/res/values-de/strings.xml
  18. +1
    -0
      app/src/main/res/values-el/strings.xml
  19. +1
    -0
      app/src/main/res/values-en/strings.xml
  20. +1
    -0
      app/src/main/res/values-es-rES/strings.xml
  21. +1
    -0
      app/src/main/res/values-fi/strings.xml
  22. +2
    -1
      app/src/main/res/values-fr/strings.xml
  23. +1
    -0
      app/src/main/res/values-he/strings.xml
  24. +1
    -0
      app/src/main/res/values-hu/strings.xml
  25. +1
    -0
      app/src/main/res/values-it/strings.xml
  26. +1
    -0
      app/src/main/res/values-iw/strings.xml
  27. +1
    -0
      app/src/main/res/values-ja/strings.xml
  28. +1
    -0
      app/src/main/res/values-ko/strings.xml
  29. +1
    -0
      app/src/main/res/values-nb/strings.xml
  30. +1
    -0
      app/src/main/res/values-nl/strings.xml
  31. +1
    -0
      app/src/main/res/values-no/strings.xml
  32. +1
    -0
      app/src/main/res/values-pl/strings.xml
  33. +1
    -0
      app/src/main/res/values-pt-rBR/strings.xml
  34. +1
    -0
      app/src/main/res/values-pt-rPT/strings.xml
  35. +1
    -0
      app/src/main/res/values-ro/strings.xml
  36. +1
    -0
      app/src/main/res/values-ru/strings.xml
  37. +1
    -0
      app/src/main/res/values-sr/strings.xml
  38. +1
    -0
      app/src/main/res/values-sv-rSE/strings.xml
  39. +1
    -0
      app/src/main/res/values-tr/strings.xml
  40. +1
    -0
      app/src/main/res/values-uk/strings.xml
  41. +1
    -0
      app/src/main/res/values-vi/strings.xml
  42. +1
    -0
      app/src/main/res/values-zh-rCN/strings.xml
  43. +1
    -0
      app/src/main/res/values-zh-rTW/strings.xml
  44. +1
    -0
      app/src/main/res/values/strings.xml

+ 2
- 2
app/src/main/java/eu/faircode/email/FragmentAccount.java View File

@ -255,7 +255,7 @@ public class FragmentAccount extends FragmentEx {
// Check IMAP server / get folders // Check IMAP server / get folders
List<EntityFolder> folders = new ArrayList<>(); List<EntityFolder> folders = new ArrayList<>();
Properties props = MessageHelper.getSessionProperties(auth_type);
Properties props = MessageHelper.getSessionProperties(context, auth_type);
Session isession = Session.getInstance(props, null); Session isession = Session.getInstance(props, null);
isession.setDebug(true); isession.setDebug(true);
IMAPStore istore = null; IMAPStore istore = null;
@ -481,7 +481,7 @@ public class FragmentAccount extends FragmentEx {
// Check IMAP server // Check IMAP server
if (synchronize) { if (synchronize) {
Session isession = Session.getInstance(MessageHelper.getSessionProperties(auth_type), null);
Session isession = Session.getInstance(MessageHelper.getSessionProperties(context, auth_type), null);
isession.setDebug(true); isession.setDebug(true);
IMAPStore istore = null; IMAPStore istore = null;
try { try {


+ 1
- 1
app/src/main/java/eu/faircode/email/FragmentIdentity.java View File

@ -273,7 +273,7 @@ public class FragmentIdentity extends FragmentEx {
// Check SMTP server // Check SMTP server
if (synchronize) { if (synchronize) {
Properties props = MessageHelper.getSessionProperties(auth_type);
Properties props = MessageHelper.getSessionProperties(context, auth_type);
Session isession = Session.getInstance(props, null); Session isession = Session.getInstance(props, null);
isession.setDebug(true); isession.setDebug(true);
Transport itransport = isession.getTransport(starttls ? "smtp" : "smtps"); Transport itransport = isession.getTransport(starttls ? "smtp" : "smtps");


+ 10
- 0
app/src/main/java/eu/faircode/email/FragmentOptions.java View File

@ -37,6 +37,7 @@ public class FragmentOptions extends FragmentEx {
private CheckBox cbWebView; private CheckBox cbWebView;
private TextView tvCustomTabs; private TextView tvCustomTabs;
private CheckBox cbSanitize; private CheckBox cbSanitize;
private CheckBox cbCompressImap;
private CheckBox cbDebug; private CheckBox cbDebug;
@Override @Override
@ -50,6 +51,7 @@ public class FragmentOptions extends FragmentEx {
cbWebView = view.findViewById(R.id.cbWebView); cbWebView = view.findViewById(R.id.cbWebView);
tvCustomTabs = view.findViewById(R.id.tvCustomTabs); tvCustomTabs = view.findViewById(R.id.tvCustomTabs);
cbSanitize = view.findViewById(R.id.cbSanitize); cbSanitize = view.findViewById(R.id.cbSanitize);
cbCompressImap = view.findViewById(R.id.cbCompressImap);
cbDebug = view.findViewById(R.id.cbDebug); cbDebug = view.findViewById(R.id.cbDebug);
// Wire controls // Wire controls
@ -72,6 +74,14 @@ public class FragmentOptions extends FragmentEx {
} }
}); });
cbCompressImap.setChecked(prefs.getBoolean("compress", true));
cbCompressImap.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
prefs.edit().putBoolean("compress", checked).apply();
}
});
cbDebug.setChecked(prefs.getBoolean("debug", false)); cbDebug.setChecked(prefs.getBoolean("debug", false));
cbDebug.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { cbDebug.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override @Override


+ 14
- 1
app/src/main/java/eu/faircode/email/MessageHelper.java View File

@ -20,6 +20,8 @@ package eu.faircode.email;
*/ */
import android.content.Context; import android.content.Context;
import android.content.SharedPreferences;
import android.preference.PreferenceManager;
import android.text.TextUtils; import android.text.TextUtils;
import android.util.Base64; import android.util.Base64;
import android.util.Log; import android.util.Log;
@ -57,9 +59,11 @@ public class MessageHelper {
private MimeMessage imessage; private MimeMessage imessage;
private String raw = null; private String raw = null;
static Properties getSessionProperties(int auth_type) {
static Properties getSessionProperties(Context context, int auth_type) {
Properties props = new Properties(); Properties props = new Properties();
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
// https://javaee.github.io/javamail/docs/api/com/sun/mail/imap/package-summary.html#properties // https://javaee.github.io/javamail/docs/api/com/sun/mail/imap/package-summary.html#properties
props.put("mail.imaps.ssl.checkserveridentity", "true"); props.put("mail.imaps.ssl.checkserveridentity", "true");
props.put("mail.imaps.ssl.trust", "*"); props.put("mail.imaps.ssl.trust", "*");
@ -72,6 +76,15 @@ public class MessageHelper {
props.put("mail.imaps.connectionpooltimeout", Integer.toString(3 * 60 * 1000)); // default: 45 sec props.put("mail.imaps.connectionpooltimeout", Integer.toString(3 * 60 * 1000)); // default: 45 sec
// https://tools.ietf.org/html/rfc4978
// https://docs.oracle.com/javase/8/docs/api/java/util/zip/Deflater.html
if (prefs.getBoolean("compress", true)) {
Log.i(Helper.TAG, "IMAP compress enabled");
props.put("mail.imaps.compress.enable", "true");
//props.put("mail.imaps.compress.level", "-1");
//props.put("mail.imaps.compress.strategy", "0");
}
// https://javaee.github.io/javamail/docs/api/com/sun/mail/smtp/package-summary.html#properties // https://javaee.github.io/javamail/docs/api/com/sun/mail/smtp/package-summary.html#properties
props.put("mail.smtps.ssl.checkserveridentity", "true"); props.put("mail.smtps.ssl.checkserveridentity", "true");
props.put("mail.smtps.ssl.trust", "*"); props.put("mail.smtps.ssl.trust", "*");


+ 1
- 1
app/src/main/java/eu/faircode/email/SearchDataSource.java View File

@ -123,7 +123,7 @@ public class SearchDataSource extends PositionalDataSource<TupleMessageEx> imple
db.account().setAccountPassword(account.id, account.password); db.account().setAccountPassword(account.id, account.password);
} }
Properties props = MessageHelper.getSessionProperties(account.auth_type);
Properties props = MessageHelper.getSessionProperties(context, account.auth_type);
props.setProperty("mail.imap.throwsearchexception", "true"); props.setProperty("mail.imap.throwsearchexception", "true");
Session isession = Session.getInstance(props, null); Session isession = Session.getInstance(props, null);


+ 2
- 2
app/src/main/java/eu/faircode/email/ServiceSynchronize.java View File

@ -402,7 +402,7 @@ public class ServiceSynchronize extends LifecycleService {
db.account().setAccountPassword(account.id, account.password); db.account().setAccountPassword(account.id, account.password);
} }
Properties props = MessageHelper.getSessionProperties(account.auth_type);
Properties props = MessageHelper.getSessionProperties(this, account.auth_type);
final Session isession = Session.getInstance(props, null); final Session isession = Session.getInstance(props, null);
isession.setDebug(debug); isession.setDebug(debug);
// adb -t 1 logcat | grep "fairemail\|System.out" // adb -t 1 logcat | grep "fairemail\|System.out"
@ -987,7 +987,7 @@ public class ServiceSynchronize extends LifecycleService {
} }
// Create session // Create session
Properties props = MessageHelper.getSessionProperties(ident.auth_type);
Properties props = MessageHelper.getSessionProperties(this, ident.auth_type);
final Session isession = Session.getInstance(props, null); final Session isession = Session.getInstance(props, null);
// Create message // Create message


+ 13
- 1
app/src/main/res/layout/fragment_options.xml View File

@ -45,6 +45,18 @@
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvCustomTabs" /> app:layout_constraintTop_toBottomOf="@id/tvCustomTabs" />
<CheckBox
android:id="@+id/cbCompressImap"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="12dp"
android:layout_marginTop="12dp"
android:text="@string/title_advanced_compress_imap"
android:textAppearance="@style/TextAppearance.AppCompat.Small"
android:textColor="?android:attr/textColorSecondary"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/cbSanitize" />
<CheckBox <CheckBox
android:id="@+id/cbDebug" android:id="@+id/cbDebug"
android:layout_width="wrap_content" android:layout_width="wrap_content"
@ -55,6 +67,6 @@
android:textAppearance="@style/TextAppearance.AppCompat.Small" android:textAppearance="@style/TextAppearance.AppCompat.Small"
android:textColor="?android:attr/textColorSecondary" android:textColor="?android:attr/textColorSecondary"
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/cbSanitize" />
app:layout_constraintTop_toBottomOf="@id/cbCompressImap" />
</androidx.constraintlayout.widget.ConstraintLayout> </androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView> </ScrollView>

+ 1
- 0
app/src/main/res/values-af/strings.xml View File

@ -54,6 +54,7 @@
<string name="title_advanced_webview">Use WebView to show external links</string> <string name="title_advanced_webview">Use WebView to show external links</string>
<string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string> <string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string>
<string name="title_advanced_sanitize">Remove HTML formatting from messages</string> <string name="title_advanced_sanitize">Remove HTML formatting from messages</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_debug">Debug</string> <string name="title_advanced_debug">Debug</string>
<string name="title_select">Select &#8230;</string> <string name="title_select">Select &#8230;</string>
<string name="title_identity_name">Your name</string> <string name="title_identity_name">Your name</string>


+ 1
- 0
app/src/main/res/values-ar-rBH/strings.xml View File

@ -70,6 +70,7 @@
<string name="title_advanced_webview">Use WebView to show external links</string> <string name="title_advanced_webview">Use WebView to show external links</string>
<string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string> <string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string>
<string name="title_advanced_sanitize">Remove HTML formatting from messages</string> <string name="title_advanced_sanitize">Remove HTML formatting from messages</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_debug">Debug</string> <string name="title_advanced_debug">Debug</string>
<string name="title_select">Select &#8230;</string> <string name="title_select">Select &#8230;</string>
<string name="title_identity_name">Your name</string> <string name="title_identity_name">Your name</string>


+ 1
- 0
app/src/main/res/values-ar-rEG/strings.xml View File

@ -70,6 +70,7 @@
<string name="title_advanced_webview">Use WebView to show external links</string> <string name="title_advanced_webview">Use WebView to show external links</string>
<string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string> <string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string>
<string name="title_advanced_sanitize">Remove HTML formatting from messages</string> <string name="title_advanced_sanitize">Remove HTML formatting from messages</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_debug">Debug</string> <string name="title_advanced_debug">Debug</string>
<string name="title_select">Select &#8230;</string> <string name="title_select">Select &#8230;</string>
<string name="title_identity_name">Your name</string> <string name="title_identity_name">Your name</string>


+ 1
- 0
app/src/main/res/values-ar-rSA/strings.xml View File

@ -70,6 +70,7 @@
<string name="title_advanced_webview">Use WebView to show external links</string> <string name="title_advanced_webview">Use WebView to show external links</string>
<string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string> <string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string>
<string name="title_advanced_sanitize">Remove HTML formatting from messages</string> <string name="title_advanced_sanitize">Remove HTML formatting from messages</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_debug">Debug</string> <string name="title_advanced_debug">Debug</string>
<string name="title_select">Select &#8230;</string> <string name="title_select">Select &#8230;</string>
<string name="title_identity_name">Your name</string> <string name="title_identity_name">Your name</string>


+ 1
- 0
app/src/main/res/values-ar-rYE/strings.xml View File

@ -70,6 +70,7 @@
<string name="title_advanced_webview">Use WebView to show external links</string> <string name="title_advanced_webview">Use WebView to show external links</string>
<string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string> <string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string>
<string name="title_advanced_sanitize">Remove HTML formatting from messages</string> <string name="title_advanced_sanitize">Remove HTML formatting from messages</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_debug">Debug</string> <string name="title_advanced_debug">Debug</string>
<string name="title_select">Select &#8230;</string> <string name="title_select">Select &#8230;</string>
<string name="title_identity_name">Your name</string> <string name="title_identity_name">Your name</string>


+ 1
- 0
app/src/main/res/values-ar/strings.xml View File

@ -70,6 +70,7 @@
<string name="title_advanced_webview">Use WebView to show external links</string> <string name="title_advanced_webview">Use WebView to show external links</string>
<string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string> <string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string>
<string name="title_advanced_sanitize">Remove HTML formatting from messages</string> <string name="title_advanced_sanitize">Remove HTML formatting from messages</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_debug">Debug</string> <string name="title_advanced_debug">Debug</string>
<string name="title_select">Select &#8230;</string> <string name="title_select">Select &#8230;</string>
<string name="title_identity_name">Your name</string> <string name="title_identity_name">Your name</string>


+ 1
- 0
app/src/main/res/values-ca/strings.xml View File

@ -54,6 +54,7 @@
<string name="title_advanced_webview">Use WebView to show external links</string> <string name="title_advanced_webview">Use WebView to show external links</string>
<string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string> <string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string>
<string name="title_advanced_sanitize">Remove HTML formatting from messages</string> <string name="title_advanced_sanitize">Remove HTML formatting from messages</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_debug">Debug</string> <string name="title_advanced_debug">Debug</string>
<string name="title_select">Select &#8230;</string> <string name="title_select">Select &#8230;</string>
<string name="title_identity_name">Your name</string> <string name="title_identity_name">Your name</string>


+ 1
- 0
app/src/main/res/values-cs/strings.xml View File

@ -62,6 +62,7 @@
<string name="title_advanced_webview">Use WebView to show external links</string> <string name="title_advanced_webview">Use WebView to show external links</string>
<string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string> <string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string>
<string name="title_advanced_sanitize">Remove HTML formatting from messages</string> <string name="title_advanced_sanitize">Remove HTML formatting from messages</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_debug">Debug</string> <string name="title_advanced_debug">Debug</string>
<string name="title_select">Select &#8230;</string> <string name="title_select">Select &#8230;</string>
<string name="title_identity_name">Your name</string> <string name="title_identity_name">Your name</string>


+ 1
- 0
app/src/main/res/values-da/strings.xml View File

@ -54,6 +54,7 @@
<string name="title_advanced_webview">Use WebView to show external links</string> <string name="title_advanced_webview">Use WebView to show external links</string>
<string name="title_advanced_customtabs">I stedet for <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome tilpasset faner</a></string> <string name="title_advanced_customtabs">I stedet for <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome tilpasset faner</a></string>
<string name="title_advanced_sanitize">Remove HTML formatting from messages</string> <string name="title_advanced_sanitize">Remove HTML formatting from messages</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_debug">Debug</string> <string name="title_advanced_debug">Debug</string>
<string name="title_select">Select &#8230;</string> <string name="title_select">Select &#8230;</string>
<string name="title_identity_name">Dit navn</string> <string name="title_identity_name">Dit navn</string>


+ 1
- 0
app/src/main/res/values-de/strings.xml View File

@ -54,6 +54,7 @@
<string name="title_advanced_webview">Use WebView to show external links</string> <string name="title_advanced_webview">Use WebView to show external links</string>
<string name="title_advanced_customtabs">Anstatt <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome benutzerdefinierte Tabs</a></string> <string name="title_advanced_customtabs">Anstatt <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome benutzerdefinierte Tabs</a></string>
<string name="title_advanced_sanitize">Remove HTML formatting from messages</string> <string name="title_advanced_sanitize">Remove HTML formatting from messages</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_debug">Debuggen</string> <string name="title_advanced_debug">Debuggen</string>
<string name="title_select">Wählen Sie &#8230;</string> <string name="title_select">Wählen Sie &#8230;</string>
<string name="title_identity_name">Ihr Name</string> <string name="title_identity_name">Ihr Name</string>


+ 1
- 0
app/src/main/res/values-el/strings.xml View File

@ -54,6 +54,7 @@
<string name="title_advanced_webview">Use WebView to show external links</string> <string name="title_advanced_webview">Use WebView to show external links</string>
<string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string> <string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string>
<string name="title_advanced_sanitize">Remove HTML formatting from messages</string> <string name="title_advanced_sanitize">Remove HTML formatting from messages</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_debug">Debug</string> <string name="title_advanced_debug">Debug</string>
<string name="title_select">Select &#8230;</string> <string name="title_select">Select &#8230;</string>
<string name="title_identity_name">Your name</string> <string name="title_identity_name">Your name</string>


+ 1
- 0
app/src/main/res/values-en/strings.xml View File

@ -54,6 +54,7 @@
<string name="title_advanced_webview">Use WebView to show external links</string> <string name="title_advanced_webview">Use WebView to show external links</string>
<string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string> <string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string>
<string name="title_advanced_sanitize">Remove HTML formatting from messages</string> <string name="title_advanced_sanitize">Remove HTML formatting from messages</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_debug">Debug</string> <string name="title_advanced_debug">Debug</string>
<string name="title_select">Select &#8230;</string> <string name="title_select">Select &#8230;</string>
<string name="title_identity_name">Your name</string> <string name="title_identity_name">Your name</string>


+ 1
- 0
app/src/main/res/values-es-rES/strings.xml View File

@ -54,6 +54,7 @@
<string name="title_advanced_webview">Use WebView to show external links</string> <string name="title_advanced_webview">Use WebView to show external links</string>
<string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string> <string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string>
<string name="title_advanced_sanitize">Remove HTML formatting from messages</string> <string name="title_advanced_sanitize">Remove HTML formatting from messages</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_debug">Debug</string> <string name="title_advanced_debug">Debug</string>
<string name="title_select">Select &#8230;</string> <string name="title_select">Select &#8230;</string>
<string name="title_identity_name">Your name</string> <string name="title_identity_name">Your name</string>


+ 1
- 0
app/src/main/res/values-fi/strings.xml View File

@ -54,6 +54,7 @@
<string name="title_advanced_webview">Use WebView to show external links</string> <string name="title_advanced_webview">Use WebView to show external links</string>
<string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string> <string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string>
<string name="title_advanced_sanitize">Remove HTML formatting from messages</string> <string name="title_advanced_sanitize">Remove HTML formatting from messages</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_debug">Debug</string> <string name="title_advanced_debug">Debug</string>
<string name="title_select">Select &#8230;</string> <string name="title_select">Select &#8230;</string>
<string name="title_identity_name">Your name</string> <string name="title_identity_name">Your name</string>


+ 2
- 1
app/src/main/res/values-fr/strings.xml View File

@ -54,6 +54,7 @@
<string name="title_advanced_webview">Utiliser WebView pour afficher les liens externes</string> <string name="title_advanced_webview">Utiliser WebView pour afficher les liens externes</string>
<string name="title_advanced_customtabs">Au lieu des <a href="https://developer.chrome.com/multidevice/android/customtabs">onglets personnalisés Chrome</a></string> <string name="title_advanced_customtabs">Au lieu des <a href="https://developer.chrome.com/multidevice/android/customtabs">onglets personnalisés Chrome</a></string>
<string name="title_advanced_sanitize">Supprimer le formatage HTML des messages</string> <string name="title_advanced_sanitize">Supprimer le formatage HTML des messages</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_debug">Débogage</string> <string name="title_advanced_debug">Débogage</string>
<string name="title_select">Sélectionner &#8230;</string> <string name="title_select">Sélectionner &#8230;</string>
<string name="title_identity_name">Votre nom</string> <string name="title_identity_name">Votre nom</string>
@ -161,7 +162,7 @@
<string name="title_legend_disconnected">Déconnecté</string> <string name="title_legend_disconnected">Déconnecté</string>
<string name="title_legend_connecting">Connexion en cours</string> <string name="title_legend_connecting">Connexion en cours</string>
<string name="title_legend_connected">Connecté</string> <string name="title_legend_connected">Connecté</string>
<string name="title_legend_synchronizing">Synchronizing</string>
<string name="title_legend_synchronizing">Synchronisation en cours</string>
<string name="title_legend_closing">Fermeture en cours</string> <string name="title_legend_closing">Fermeture en cours</string>
<string name="title_hint_swipe">Balayer à gauche pour supprimer et balayer à droite pour archiver (si disponible)</string> <string name="title_hint_swipe">Balayer à gauche pour supprimer et balayer à droite pour archiver (si disponible)</string>
<string name="title_understood">Compris</string> <string name="title_understood">Compris</string>


+ 1
- 0
app/src/main/res/values-he/strings.xml View File

@ -62,6 +62,7 @@
<string name="title_advanced_webview">Use WebView to show external links</string> <string name="title_advanced_webview">Use WebView to show external links</string>
<string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string> <string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string>
<string name="title_advanced_sanitize">Remove HTML formatting from messages</string> <string name="title_advanced_sanitize">Remove HTML formatting from messages</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_debug">Debug</string> <string name="title_advanced_debug">Debug</string>
<string name="title_select">Select &#8230;</string> <string name="title_select">Select &#8230;</string>
<string name="title_identity_name">Your name</string> <string name="title_identity_name">Your name</string>


+ 1
- 0
app/src/main/res/values-hu/strings.xml View File

@ -54,6 +54,7 @@
<string name="title_advanced_webview">Use WebView to show external links</string> <string name="title_advanced_webview">Use WebView to show external links</string>
<string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string> <string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string>
<string name="title_advanced_sanitize">Remove HTML formatting from messages</string> <string name="title_advanced_sanitize">Remove HTML formatting from messages</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_debug">Debug</string> <string name="title_advanced_debug">Debug</string>
<string name="title_select">Select &#8230;</string> <string name="title_select">Select &#8230;</string>
<string name="title_identity_name">Your name</string> <string name="title_identity_name">Your name</string>


+ 1
- 0
app/src/main/res/values-it/strings.xml View File

@ -54,6 +54,7 @@
<string name="title_advanced_webview">Use WebView to show external links</string> <string name="title_advanced_webview">Use WebView to show external links</string>
<string name="title_advanced_customtabs">Al posto di <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string> <string name="title_advanced_customtabs">Al posto di <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string>
<string name="title_advanced_sanitize">Remove HTML formatting from messages</string> <string name="title_advanced_sanitize">Remove HTML formatting from messages</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_debug">Debug</string> <string name="title_advanced_debug">Debug</string>
<string name="title_select">Select &#8230;</string> <string name="title_select">Select &#8230;</string>
<string name="title_identity_name">Il tuo nome</string> <string name="title_identity_name">Il tuo nome</string>


+ 1
- 0
app/src/main/res/values-iw/strings.xml View File

@ -62,6 +62,7 @@
<string name="title_advanced_webview">Use WebView to show external links</string> <string name="title_advanced_webview">Use WebView to show external links</string>
<string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string> <string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string>
<string name="title_advanced_sanitize">Remove HTML formatting from messages</string> <string name="title_advanced_sanitize">Remove HTML formatting from messages</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_debug">Debug</string> <string name="title_advanced_debug">Debug</string>
<string name="title_select">Select &#8230;</string> <string name="title_select">Select &#8230;</string>
<string name="title_identity_name">Your name</string> <string name="title_identity_name">Your name</string>


+ 1
- 0
app/src/main/res/values-ja/strings.xml View File

@ -50,6 +50,7 @@
<string name="title_advanced_webview">Use WebView to show external links</string> <string name="title_advanced_webview">Use WebView to show external links</string>
<string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string> <string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string>
<string name="title_advanced_sanitize">Remove HTML formatting from messages</string> <string name="title_advanced_sanitize">Remove HTML formatting from messages</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_debug">Debug</string> <string name="title_advanced_debug">Debug</string>
<string name="title_select">Select &#8230;</string> <string name="title_select">Select &#8230;</string>
<string name="title_identity_name">Your name</string> <string name="title_identity_name">Your name</string>


+ 1
- 0
app/src/main/res/values-ko/strings.xml View File

@ -50,6 +50,7 @@
<string name="title_advanced_webview">Use WebView to show external links</string> <string name="title_advanced_webview">Use WebView to show external links</string>
<string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string> <string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string>
<string name="title_advanced_sanitize">Remove HTML formatting from messages</string> <string name="title_advanced_sanitize">Remove HTML formatting from messages</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_debug">Debug</string> <string name="title_advanced_debug">Debug</string>
<string name="title_select">Select &#8230;</string> <string name="title_select">Select &#8230;</string>
<string name="title_identity_name">Your name</string> <string name="title_identity_name">Your name</string>


+ 1
- 0
app/src/main/res/values-nb/strings.xml View File

@ -54,6 +54,7 @@
<string name="title_advanced_webview">Use WebView to show external links</string> <string name="title_advanced_webview">Use WebView to show external links</string>
<string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string> <string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string>
<string name="title_advanced_sanitize">Remove HTML formatting from messages</string> <string name="title_advanced_sanitize">Remove HTML formatting from messages</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_debug">Debug</string> <string name="title_advanced_debug">Debug</string>
<string name="title_select">Select &#8230;</string> <string name="title_select">Select &#8230;</string>
<string name="title_identity_name">Your name</string> <string name="title_identity_name">Your name</string>


+ 1
- 0
app/src/main/res/values-nl/strings.xml View File

@ -54,6 +54,7 @@
<string name="title_advanced_webview">Use WebView to show external links</string> <string name="title_advanced_webview">Use WebView to show external links</string>
<string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string> <string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string>
<string name="title_advanced_sanitize">Remove HTML formatting from messages</string> <string name="title_advanced_sanitize">Remove HTML formatting from messages</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_debug">Debug</string> <string name="title_advanced_debug">Debug</string>
<string name="title_select">Select &#8230;</string> <string name="title_select">Select &#8230;</string>
<string name="title_identity_name">Your name</string> <string name="title_identity_name">Your name</string>


+ 1
- 0
app/src/main/res/values-no/strings.xml View File

@ -54,6 +54,7 @@
<string name="title_advanced_webview">Use WebView to show external links</string> <string name="title_advanced_webview">Use WebView to show external links</string>
<string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string> <string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string>
<string name="title_advanced_sanitize">Remove HTML formatting from messages</string> <string name="title_advanced_sanitize">Remove HTML formatting from messages</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_debug">Debug</string> <string name="title_advanced_debug">Debug</string>
<string name="title_select">Select &#8230;</string> <string name="title_select">Select &#8230;</string>
<string name="title_identity_name">Your name</string> <string name="title_identity_name">Your name</string>


+ 1
- 0
app/src/main/res/values-pl/strings.xml View File

@ -62,6 +62,7 @@
<string name="title_advanced_webview">Użyj WebView do pokazywania zewnętrznych linków</string> <string name="title_advanced_webview">Użyj WebView do pokazywania zewnętrznych linków</string>
<string name="title_advanced_customtabs">Zamiast <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string> <string name="title_advanced_customtabs">Zamiast <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string>
<string name="title_advanced_sanitize">Usuń formatowanie HTML z wiadomości</string> <string name="title_advanced_sanitize">Usuń formatowanie HTML z wiadomości</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_debug">Debug</string> <string name="title_advanced_debug">Debug</string>
<string name="title_select">Wybierz &#8230;</string> <string name="title_select">Wybierz &#8230;</string>
<string name="title_identity_name">Twoja nazwa</string> <string name="title_identity_name">Twoja nazwa</string>


+ 1
- 0
app/src/main/res/values-pt-rBR/strings.xml View File

@ -54,6 +54,7 @@
<string name="title_advanced_webview">Use WebView to show external links</string> <string name="title_advanced_webview">Use WebView to show external links</string>
<string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string> <string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string>
<string name="title_advanced_sanitize">Remove HTML formatting from messages</string> <string name="title_advanced_sanitize">Remove HTML formatting from messages</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_debug">Debug</string> <string name="title_advanced_debug">Debug</string>
<string name="title_select">Select &#8230;</string> <string name="title_select">Select &#8230;</string>
<string name="title_identity_name">Your name</string> <string name="title_identity_name">Your name</string>


+ 1
- 0
app/src/main/res/values-pt-rPT/strings.xml View File

@ -54,6 +54,7 @@
<string name="title_advanced_webview">Use WebView to show external links</string> <string name="title_advanced_webview">Use WebView to show external links</string>
<string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string> <string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string>
<string name="title_advanced_sanitize">Remove HTML formatting from messages</string> <string name="title_advanced_sanitize">Remove HTML formatting from messages</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_debug">Debug</string> <string name="title_advanced_debug">Debug</string>
<string name="title_select">Select &#8230;</string> <string name="title_select">Select &#8230;</string>
<string name="title_identity_name">Your name</string> <string name="title_identity_name">Your name</string>


+ 1
- 0
app/src/main/res/values-ro/strings.xml View File

@ -58,6 +58,7 @@
<string name="title_advanced_webview">Folosește WebView pentru legăturile externe</string> <string name="title_advanced_webview">Folosește WebView pentru legăturile externe</string>
<string name="title_advanced_customtabs">în loc de <a href="https://developer.chrome.com/multidevice/android/customtabs">tab Chrome personalizat</a></string> <string name="title_advanced_customtabs">în loc de <a href="https://developer.chrome.com/multidevice/android/customtabs">tab Chrome personalizat</a></string>
<string name="title_advanced_sanitize">Înlătură formatarea HTML din mesaje</string> <string name="title_advanced_sanitize">Înlătură formatarea HTML din mesaje</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_debug">Depanare</string> <string name="title_advanced_debug">Depanare</string>
<string name="title_select">Selectaţi &#8230;</string> <string name="title_select">Selectaţi &#8230;</string>
<string name="title_identity_name">Numele dumneavoastră</string> <string name="title_identity_name">Numele dumneavoastră</string>


+ 1
- 0
app/src/main/res/values-ru/strings.xml View File

@ -62,6 +62,7 @@
<string name="title_advanced_webview">Use WebView to show external links</string> <string name="title_advanced_webview">Use WebView to show external links</string>
<string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string> <string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string>
<string name="title_advanced_sanitize">Remove HTML formatting from messages</string> <string name="title_advanced_sanitize">Remove HTML formatting from messages</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_debug">Debug</string> <string name="title_advanced_debug">Debug</string>
<string name="title_select">Select &#8230;</string> <string name="title_select">Select &#8230;</string>
<string name="title_identity_name">Your name</string> <string name="title_identity_name">Your name</string>


+ 1
- 0
app/src/main/res/values-sr/strings.xml View File

@ -58,6 +58,7 @@
<string name="title_advanced_webview">Use WebView to show external links</string> <string name="title_advanced_webview">Use WebView to show external links</string>
<string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string> <string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string>
<string name="title_advanced_sanitize">Remove HTML formatting from messages</string> <string name="title_advanced_sanitize">Remove HTML formatting from messages</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_debug">Debug</string> <string name="title_advanced_debug">Debug</string>
<string name="title_select">Select &#8230;</string> <string name="title_select">Select &#8230;</string>
<string name="title_identity_name">Your name</string> <string name="title_identity_name">Your name</string>


+ 1
- 0
app/src/main/res/values-sv-rSE/strings.xml View File

@ -54,6 +54,7 @@
<string name="title_advanced_webview">Use WebView to show external links</string> <string name="title_advanced_webview">Use WebView to show external links</string>
<string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string> <string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string>
<string name="title_advanced_sanitize">Remove HTML formatting from messages</string> <string name="title_advanced_sanitize">Remove HTML formatting from messages</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_debug">Debug</string> <string name="title_advanced_debug">Debug</string>
<string name="title_select">Select &#8230;</string> <string name="title_select">Select &#8230;</string>
<string name="title_identity_name">Your name</string> <string name="title_identity_name">Your name</string>


+ 1
- 0
app/src/main/res/values-tr/strings.xml View File

@ -54,6 +54,7 @@
<string name="title_advanced_webview">Use WebView to show external links</string> <string name="title_advanced_webview">Use WebView to show external links</string>
<string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string> <string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string>
<string name="title_advanced_sanitize">Remove HTML formatting from messages</string> <string name="title_advanced_sanitize">Remove HTML formatting from messages</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_debug">Debug</string> <string name="title_advanced_debug">Debug</string>
<string name="title_select">Select &#8230;</string> <string name="title_select">Select &#8230;</string>
<string name="title_identity_name">Your name</string> <string name="title_identity_name">Your name</string>


+ 1
- 0
app/src/main/res/values-uk/strings.xml View File

@ -62,6 +62,7 @@
<string name="title_advanced_webview">Use WebView to show external links</string> <string name="title_advanced_webview">Use WebView to show external links</string>
<string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string> <string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string>
<string name="title_advanced_sanitize">Remove HTML formatting from messages</string> <string name="title_advanced_sanitize">Remove HTML formatting from messages</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_debug">Debug</string> <string name="title_advanced_debug">Debug</string>
<string name="title_select">Select &#8230;</string> <string name="title_select">Select &#8230;</string>
<string name="title_identity_name">Your name</string> <string name="title_identity_name">Your name</string>


+ 1
- 0
app/src/main/res/values-vi/strings.xml View File

@ -50,6 +50,7 @@
<string name="title_advanced_webview">Use WebView to show external links</string> <string name="title_advanced_webview">Use WebView to show external links</string>
<string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string> <string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string>
<string name="title_advanced_sanitize">Remove HTML formatting from messages</string> <string name="title_advanced_sanitize">Remove HTML formatting from messages</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_debug">Debug</string> <string name="title_advanced_debug">Debug</string>
<string name="title_select">Select &#8230;</string> <string name="title_select">Select &#8230;</string>
<string name="title_identity_name">Your name</string> <string name="title_identity_name">Your name</string>


+ 1
- 0
app/src/main/res/values-zh-rCN/strings.xml View File

@ -50,6 +50,7 @@
<string name="title_advanced_webview">Use WebView to show external links</string> <string name="title_advanced_webview">Use WebView to show external links</string>
<string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string> <string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string>
<string name="title_advanced_sanitize">Remove HTML formatting from messages</string> <string name="title_advanced_sanitize">Remove HTML formatting from messages</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_debug">Debug</string> <string name="title_advanced_debug">Debug</string>
<string name="title_select">Select &#8230;</string> <string name="title_select">Select &#8230;</string>
<string name="title_identity_name">Your name</string> <string name="title_identity_name">Your name</string>


+ 1
- 0
app/src/main/res/values-zh-rTW/strings.xml View File

@ -50,6 +50,7 @@
<string name="title_advanced_webview">Use WebView to show external links</string> <string name="title_advanced_webview">Use WebView to show external links</string>
<string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string> <string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string>
<string name="title_advanced_sanitize">Remove HTML formatting from messages</string> <string name="title_advanced_sanitize">Remove HTML formatting from messages</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_debug">Debug</string> <string name="title_advanced_debug">Debug</string>
<string name="title_select">Select &#8230;</string> <string name="title_select">Select &#8230;</string>
<string name="title_identity_name">Your name</string> <string name="title_identity_name">Your name</string>


+ 1
- 0
app/src/main/res/values/strings.xml View File

@ -69,6 +69,7 @@
<string name="title_advanced_webview">Use WebView to show external links</string> <string name="title_advanced_webview">Use WebView to show external links</string>
<string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string> <string name="title_advanced_customtabs">Instead of <a href="https://developer.chrome.com/multidevice/android/customtabs">Chrome Custom Tabs</a></string>
<string name="title_advanced_sanitize">Remove HTML formatting from messages</string> <string name="title_advanced_sanitize">Remove HTML formatting from messages</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_debug">Debug</string> <string name="title_advanced_debug">Debug</string>
<string name="title_select">Select &#8230;</string> <string name="title_select">Select &#8230;</string>


Loading…
Cancel
Save