Browse Source

Add remarks about POP and insecure connections

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

+ 22
- 2
app/src/main/res/layout/fragment_account.xml View File

@ -42,6 +42,26 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/spProvider" />
<TextView
android:id="@+id/tvPop"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/title_pop"
android:textAppearance="@style/TextAppearance.AppCompat.Small"
android:textStyle="italic"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvImap" />
<TextView
android:id="@+id/tvInsecure"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/title_insecure"
android:textAppearance="@style/TextAppearance.AppCompat.Small"
android:textStyle="italic"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvPop" />
<!-- host -->
<TextView
@ -52,7 +72,7 @@
android:text="@string/title_host"
android:textAppearance="@style/TextAppearance.AppCompat.Small"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvImap" />
app:layout_constraintTop_toBottomOf="@id/tvInsecure" />
<EditText
android:id="@+id/etHost"
@ -365,7 +385,7 @@
android:id="@+id/grpServer"
android:layout_width="0dp"
android:layout_height="0dp"
app:constraint_referenced_ids="tvImap,tvHost,etHost,tvPort,etPort" />
app:constraint_referenced_ids="tvImap,tvPop,tvInsecure,tvHost,etHost,tvPort,etPort" />
<androidx.constraintlayout.widget.Group
android:id="@+id/grpAuthorize"


+ 12
- 2
app/src/main/res/layout/fragment_identity.xml View File

@ -137,6 +137,16 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/spProvider" />
<TextView
android:id="@+id/tvInsecure"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/title_insecure"
android:textAppearance="@style/TextAppearance.AppCompat.Small"
android:textStyle="italic"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvSmtp" />
<!-- host -->
<TextView
@ -147,7 +157,7 @@
android:text="@string/title_host"
android:textAppearance="@style/TextAppearance.AppCompat.Small"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvSmtp" />
app:layout_constraintTop_toBottomOf="@id/tvInsecure" />
<EditText
android:id="@+id/etHost"
@ -312,6 +322,6 @@
android:id="@+id/grpAdvanced"
android:layout_width="0dp"
android:layout_height="0dp"
app:constraint_referenced_ids="tvEmail,etEmail,tvReplyTo,etReplyTo,tvProvider,spProvider,tvSmtp,tvHost,etHost,cbStartTls,tvPort,etPort,tvUser,etUser,tvPassword,tilPassword,cbSynchronize,cbPrimary,cbStoreSent" />
app:constraint_referenced_ids="tvEmail,etEmail,tvReplyTo,etReplyTo,tvProvider,spProvider,tvSmtp,tvInsecure,tvHost,etHost,cbStartTls,tvPort,etPort,tvUser,etUser,tvPassword,tilPassword,cbSynchronize,cbPrimary,cbStoreSent" />
</androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView>

+ 4
- 2
app/src/main/res/values-af/strings.xml View File

@ -94,10 +94,12 @@
<string name="title_no_user">User name missing</string>
<string name="title_no_password">Password missing</string>
<string name="title_no_drafts">Drafts folder missing</string>
<string name="title_no_idle">IDLE not supported</string>
<string name="title_no_uidplus">UIDPLUS not supported</string>
<string name="title_no_idle">IMAP IDLE not supported</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported</string>
<string name="title_account_delete">Delete this account permanently?</string>
<string name="title_identity_delete">Delete this identity permanently?</string>
<string name="title_pop">POP is not support</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_folder">Synchronize (receive messages)</string>
<string name="title_unified_folder">Show in unified inbox</string>
<string name="title_after">Synchronize (days)</string>


+ 4
- 2
app/src/main/res/values-ar-rBH/strings.xml View File

@ -110,10 +110,12 @@
<string name="title_no_user">User name missing</string>
<string name="title_no_password">Password missing</string>
<string name="title_no_drafts">Drafts folder missing</string>
<string name="title_no_idle">IDLE not supported</string>
<string name="title_no_uidplus">UIDPLUS not supported</string>
<string name="title_no_idle">IMAP IDLE not supported</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported</string>
<string name="title_account_delete">Delete this account permanently?</string>
<string name="title_identity_delete">Delete this identity permanently?</string>
<string name="title_pop">POP is not support</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_folder">Synchronize (receive messages)</string>
<string name="title_unified_folder">Show in unified inbox</string>
<string name="title_after">Synchronize (days)</string>


+ 4
- 2
app/src/main/res/values-ar-rEG/strings.xml View File

@ -110,10 +110,12 @@
<string name="title_no_user">User name missing</string>
<string name="title_no_password">Password missing</string>
<string name="title_no_drafts">Drafts folder missing</string>
<string name="title_no_idle">IDLE not supported</string>
<string name="title_no_uidplus">UIDPLUS not supported</string>
<string name="title_no_idle">IMAP IDLE not supported</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported</string>
<string name="title_account_delete">Delete this account permanently?</string>
<string name="title_identity_delete">Delete this identity permanently?</string>
<string name="title_pop">POP is not support</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_folder">Synchronize (receive messages)</string>
<string name="title_unified_folder">Show in unified inbox</string>
<string name="title_after">Synchronize (days)</string>


+ 4
- 2
app/src/main/res/values-ar-rSA/strings.xml View File

@ -110,10 +110,12 @@
<string name="title_no_user">User name missing</string>
<string name="title_no_password">Password missing</string>
<string name="title_no_drafts">Drafts folder missing</string>
<string name="title_no_idle">IDLE not supported</string>
<string name="title_no_uidplus">UIDPLUS not supported</string>
<string name="title_no_idle">IMAP IDLE not supported</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported</string>
<string name="title_account_delete">Delete this account permanently?</string>
<string name="title_identity_delete">Delete this identity permanently?</string>
<string name="title_pop">POP is not support</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_folder">Synchronize (receive messages)</string>
<string name="title_unified_folder">Show in unified inbox</string>
<string name="title_after">Synchronize (days)</string>


+ 4
- 2
app/src/main/res/values-ar-rYE/strings.xml View File

@ -110,10 +110,12 @@
<string name="title_no_user">User name missing</string>
<string name="title_no_password">Password missing</string>
<string name="title_no_drafts">Drafts folder missing</string>
<string name="title_no_idle">IDLE not supported</string>
<string name="title_no_uidplus">UIDPLUS not supported</string>
<string name="title_no_idle">IMAP IDLE not supported</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported</string>
<string name="title_account_delete">Delete this account permanently?</string>
<string name="title_identity_delete">Delete this identity permanently?</string>
<string name="title_pop">POP is not support</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_folder">Synchronize (receive messages)</string>
<string name="title_unified_folder">Show in unified inbox</string>
<string name="title_after">Synchronize (days)</string>


+ 4
- 2
app/src/main/res/values-ar/strings.xml View File

@ -110,10 +110,12 @@
<string name="title_no_user">User name missing</string>
<string name="title_no_password">Password missing</string>
<string name="title_no_drafts">Drafts folder missing</string>
<string name="title_no_idle">IDLE not supported</string>
<string name="title_no_uidplus">UIDPLUS not supported</string>
<string name="title_no_idle">IMAP IDLE not supported</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported</string>
<string name="title_account_delete">Delete this account permanently?</string>
<string name="title_identity_delete">Delete this identity permanently?</string>
<string name="title_pop">POP is not support</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_folder">Synchronize (receive messages)</string>
<string name="title_unified_folder">Show in unified inbox</string>
<string name="title_after">Synchronize (days)</string>


+ 4
- 2
app/src/main/res/values-ca/strings.xml View File

@ -94,10 +94,12 @@
<string name="title_no_user">User name missing</string>
<string name="title_no_password">Password missing</string>
<string name="title_no_drafts">Drafts folder missing</string>
<string name="title_no_idle">IDLE not supported</string>
<string name="title_no_uidplus">UIDPLUS not supported</string>
<string name="title_no_idle">IMAP IDLE not supported</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported</string>
<string name="title_account_delete">Delete this account permanently?</string>
<string name="title_identity_delete">Delete this identity permanently?</string>
<string name="title_pop">POP is not support</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_folder">Synchronize (receive messages)</string>
<string name="title_unified_folder">Show in unified inbox</string>
<string name="title_after">Synchronize (days)</string>


+ 4
- 2
app/src/main/res/values-cs/strings.xml View File

@ -102,10 +102,12 @@
<string name="title_no_user">User name missing</string>
<string name="title_no_password">Password missing</string>
<string name="title_no_drafts">Drafts folder missing</string>
<string name="title_no_idle">IDLE not supported</string>
<string name="title_no_uidplus">UIDPLUS not supported</string>
<string name="title_no_idle">IMAP IDLE not supported</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported</string>
<string name="title_account_delete">Delete this account permanently?</string>
<string name="title_identity_delete">Delete this identity permanently?</string>
<string name="title_pop">POP is not support</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_folder">Synchronize (receive messages)</string>
<string name="title_unified_folder">Show in unified inbox</string>
<string name="title_after">Synchronize (days)</string>


+ 4
- 2
app/src/main/res/values-da/strings.xml View File

@ -94,10 +94,12 @@
<string name="title_no_user">Brugernavn mangler</string>
<string name="title_no_password">Adgangskode mangler</string>
<string name="title_no_drafts">Kladdemappe mangler</string>
<string name="title_no_idle">IDLE understøttes ikke</string>
<string name="title_no_uidplus">UIDPLUS understøttes ikke</string>
<string name="title_no_idle">IMAP IDLE not supported</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported</string>
<string name="title_account_delete">Slet denne konto permanent?</string>
<string name="title_identity_delete">Slet denne identitet permanent?</string>
<string name="title_pop">POP is not support</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_folder">Synkronisér (modtag meddelelser)</string>
<string name="title_unified_folder">Show in unified inbox</string>
<string name="title_after">Synkronisér (dage)</string>


+ 4
- 2
app/src/main/res/values-de/strings.xml View File

@ -94,10 +94,12 @@
<string name="title_no_user">Benutzername fehlt</string>
<string name="title_no_password">Passwort fehlt</string>
<string name="title_no_drafts">Entwurfsordner fehlt</string>
<string name="title_no_idle">IDLE wird nicht unterstützt</string>
<string name="title_no_uidplus">UIDPLUS nicht unterstützt</string>
<string name="title_no_idle">IMAP IDLE not supported</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported</string>
<string name="title_account_delete">Möchten Sie dieses Konto unwiderruflich löschen?</string>
<string name="title_identity_delete">Möchten Sie diese Identität unwiderruflich löschen?</string>
<string name="title_pop">POP is not support</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_folder">Synchronisiere (empfange E-Mails)</string>
<string name="title_unified_folder">Im gemeinsamen Posteingang anzeigen</string>
<string name="title_after">Synchronisiere (Tage)</string>


+ 4
- 2
app/src/main/res/values-el/strings.xml View File

@ -94,10 +94,12 @@
<string name="title_no_user">User name missing</string>
<string name="title_no_password">Password missing</string>
<string name="title_no_drafts">Drafts folder missing</string>
<string name="title_no_idle">IDLE not supported</string>
<string name="title_no_uidplus">UIDPLUS not supported</string>
<string name="title_no_idle">IMAP IDLE not supported</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported</string>
<string name="title_account_delete">Delete this account permanently?</string>
<string name="title_identity_delete">Delete this identity permanently?</string>
<string name="title_pop">POP is not support</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_folder">Synchronize (receive messages)</string>
<string name="title_unified_folder">Show in unified inbox</string>
<string name="title_after">Synchronize (days)</string>


+ 4
- 2
app/src/main/res/values-en/strings.xml View File

@ -94,10 +94,12 @@
<string name="title_no_user">User name missing</string>
<string name="title_no_password">Password missing</string>
<string name="title_no_drafts">Drafts folder missing</string>
<string name="title_no_idle">IDLE not supported</string>
<string name="title_no_uidplus">UIDPLUS not supported</string>
<string name="title_no_idle">IMAP IDLE not supported</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported</string>
<string name="title_account_delete">Delete this account permanently?</string>
<string name="title_identity_delete">Delete this identity permanently?</string>
<string name="title_pop">POP is not support</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_folder">Synchronize (receive messages)</string>
<string name="title_unified_folder">Show in unified inbox</string>
<string name="title_after">Synchronize (days)</string>


+ 4
- 2
app/src/main/res/values-es-rES/strings.xml View File

@ -94,10 +94,12 @@
<string name="title_no_user">User name missing</string>
<string name="title_no_password">Password missing</string>
<string name="title_no_drafts">Drafts folder missing</string>
<string name="title_no_idle">IDLE not supported</string>
<string name="title_no_uidplus">UIDPLUS not supported</string>
<string name="title_no_idle">IMAP IDLE not supported</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported</string>
<string name="title_account_delete">Delete this account permanently?</string>
<string name="title_identity_delete">Delete this identity permanently?</string>
<string name="title_pop">POP is not support</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_folder">Synchronize (receive messages)</string>
<string name="title_unified_folder">Show in unified inbox</string>
<string name="title_after">Synchronize (days)</string>


+ 4
- 2
app/src/main/res/values-fi/strings.xml View File

@ -94,10 +94,12 @@
<string name="title_no_user">User name missing</string>
<string name="title_no_password">Password missing</string>
<string name="title_no_drafts">Drafts folder missing</string>
<string name="title_no_idle">IDLE not supported</string>
<string name="title_no_uidplus">UIDPLUS not supported</string>
<string name="title_no_idle">IMAP IDLE not supported</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported</string>
<string name="title_account_delete">Delete this account permanently?</string>
<string name="title_identity_delete">Delete this identity permanently?</string>
<string name="title_pop">POP is not support</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_folder">Synchronize (receive messages)</string>
<string name="title_unified_folder">Show in unified inbox</string>
<string name="title_after">Synchronize (days)</string>


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

@ -94,10 +94,12 @@
<string name="title_no_user">Nom d\'utilisateur manquant</string>
<string name="title_no_password">Mot de passe manquant</string>
<string name="title_no_drafts">Répertoire Brouillons manquant</string>
<string name="title_no_idle">IDLE non supporté</string>
<string name="title_no_uidplus">UIDPLUS non supporté</string>
<string name="title_no_idle">IMAP IDLE not supported</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported</string>
<string name="title_account_delete">Supprimer définitivement ce compte ?</string>
<string name="title_identity_delete">Supprimer définitivement cette identité ?</string>
<string name="title_pop">POP is not support</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_folder">Synchroniser (recevoir des messages)</string>
<string name="title_unified_folder">Afficher dans la boîte de réception unifiée</string>
<string name="title_after">Synchroniser (jours)</string>


+ 4
- 2
app/src/main/res/values-he/strings.xml View File

@ -102,10 +102,12 @@
<string name="title_no_user">User name missing</string>
<string name="title_no_password">Password missing</string>
<string name="title_no_drafts">Drafts folder missing</string>
<string name="title_no_idle">IDLE not supported</string>
<string name="title_no_uidplus">UIDPLUS not supported</string>
<string name="title_no_idle">IMAP IDLE not supported</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported</string>
<string name="title_account_delete">Delete this account permanently?</string>
<string name="title_identity_delete">Delete this identity permanently?</string>
<string name="title_pop">POP is not support</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_folder">Synchronize (receive messages)</string>
<string name="title_unified_folder">Show in unified inbox</string>
<string name="title_after">Synchronize (days)</string>


+ 4
- 2
app/src/main/res/values-hu/strings.xml View File

@ -94,10 +94,12 @@
<string name="title_no_user">User name missing</string>
<string name="title_no_password">Password missing</string>
<string name="title_no_drafts">Drafts folder missing</string>
<string name="title_no_idle">IDLE not supported</string>
<string name="title_no_uidplus">UIDPLUS not supported</string>
<string name="title_no_idle">IMAP IDLE not supported</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported</string>
<string name="title_account_delete">Delete this account permanently?</string>
<string name="title_identity_delete">Delete this identity permanently?</string>
<string name="title_pop">POP is not support</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_folder">Synchronize (receive messages)</string>
<string name="title_unified_folder">Show in unified inbox</string>
<string name="title_after">Synchronize (days)</string>


+ 4
- 2
app/src/main/res/values-it/strings.xml View File

@ -94,10 +94,12 @@
<string name="title_no_user">Nome utente mancante</string>
<string name="title_no_password">Password mancante</string>
<string name="title_no_drafts">Cartella delle bozze mancante</string>
<string name="title_no_idle">IDLE non supportato</string>
<string name="title_no_uidplus">UIDPLUS non supportato</string>
<string name="title_no_idle">IMAP IDLE not supported</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported</string>
<string name="title_account_delete">Cancellare questo account permanentemente?</string>
<string name="title_identity_delete">Cancellare questa identità permanentemente?</string>
<string name="title_pop">POP is not support</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_folder">Sincronizza (ricevi messaggi)</string>
<string name="title_unified_folder">Show in unified inbox</string>
<string name="title_after">Sincronizza (giorni)</string>


+ 4
- 2
app/src/main/res/values-iw/strings.xml View File

@ -102,10 +102,12 @@
<string name="title_no_user">User name missing</string>
<string name="title_no_password">Password missing</string>
<string name="title_no_drafts">Drafts folder missing</string>
<string name="title_no_idle">IDLE not supported</string>
<string name="title_no_uidplus">UIDPLUS not supported</string>
<string name="title_no_idle">IMAP IDLE not supported</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported</string>
<string name="title_account_delete">Delete this account permanently?</string>
<string name="title_identity_delete">Delete this identity permanently?</string>
<string name="title_pop">POP is not support</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_folder">Synchronize (receive messages)</string>
<string name="title_unified_folder">Show in unified inbox</string>
<string name="title_after">Synchronize (days)</string>


+ 4
- 2
app/src/main/res/values-ja/strings.xml View File

@ -90,10 +90,12 @@
<string name="title_no_user">User name missing</string>
<string name="title_no_password">Password missing</string>
<string name="title_no_drafts">Drafts folder missing</string>
<string name="title_no_idle">IDLE not supported</string>
<string name="title_no_uidplus">UIDPLUS not supported</string>
<string name="title_no_idle">IMAP IDLE not supported</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported</string>
<string name="title_account_delete">Delete this account permanently?</string>
<string name="title_identity_delete">Delete this identity permanently?</string>
<string name="title_pop">POP is not support</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_folder">Synchronize (receive messages)</string>
<string name="title_unified_folder">Show in unified inbox</string>
<string name="title_after">Synchronize (days)</string>


+ 4
- 2
app/src/main/res/values-ko/strings.xml View File

@ -90,10 +90,12 @@
<string name="title_no_user">User name missing</string>
<string name="title_no_password">Password missing</string>
<string name="title_no_drafts">Drafts folder missing</string>
<string name="title_no_idle">IDLE not supported</string>
<string name="title_no_uidplus">UIDPLUS not supported</string>
<string name="title_no_idle">IMAP IDLE not supported</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported</string>
<string name="title_account_delete">Delete this account permanently?</string>
<string name="title_identity_delete">Delete this identity permanently?</string>
<string name="title_pop">POP is not support</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_folder">Synchronize (receive messages)</string>
<string name="title_unified_folder">Show in unified inbox</string>
<string name="title_after">Synchronize (days)</string>


+ 4
- 2
app/src/main/res/values-nb/strings.xml View File

@ -94,10 +94,12 @@
<string name="title_no_user">User name missing</string>
<string name="title_no_password">Password missing</string>
<string name="title_no_drafts">Drafts folder missing</string>
<string name="title_no_idle">IDLE not supported</string>
<string name="title_no_uidplus">UIDPLUS not supported</string>
<string name="title_no_idle">IMAP IDLE not supported</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported</string>
<string name="title_account_delete">Delete this account permanently?</string>
<string name="title_identity_delete">Delete this identity permanently?</string>
<string name="title_pop">POP is not support</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_folder">Synchronize (receive messages)</string>
<string name="title_unified_folder">Show in unified inbox</string>
<string name="title_after">Synchronize (days)</string>


+ 4
- 2
app/src/main/res/values-nl/strings.xml View File

@ -94,10 +94,12 @@
<string name="title_no_user">User name missing</string>
<string name="title_no_password">Password missing</string>
<string name="title_no_drafts">Drafts folder missing</string>
<string name="title_no_idle">IDLE not supported</string>
<string name="title_no_uidplus">UIDPLUS not supported</string>
<string name="title_no_idle">IMAP IDLE not supported</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported</string>
<string name="title_account_delete">Delete this account permanently?</string>
<string name="title_identity_delete">Delete this identity permanently?</string>
<string name="title_pop">POP is not support</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_folder">Synchronize (receive messages)</string>
<string name="title_unified_folder">Show in unified inbox</string>
<string name="title_after">Synchronize (days)</string>


+ 4
- 2
app/src/main/res/values-no/strings.xml View File

@ -94,10 +94,12 @@
<string name="title_no_user">User name missing</string>
<string name="title_no_password">Password missing</string>
<string name="title_no_drafts">Drafts folder missing</string>
<string name="title_no_idle">IDLE not supported</string>
<string name="title_no_uidplus">UIDPLUS not supported</string>
<string name="title_no_idle">IMAP IDLE not supported</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported</string>
<string name="title_account_delete">Delete this account permanently?</string>
<string name="title_identity_delete">Delete this identity permanently?</string>
<string name="title_pop">POP is not support</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_folder">Synchronize (receive messages)</string>
<string name="title_unified_folder">Show in unified inbox</string>
<string name="title_after">Synchronize (days)</string>


+ 4
- 2
app/src/main/res/values-pl/strings.xml View File

@ -102,10 +102,12 @@
<string name="title_no_user">Brak nazwy użytkownika</string>
<string name="title_no_password">Brak hasła</string>
<string name="title_no_drafts">Brakuje folderu Szkice</string>
<string name="title_no_idle">IDLE nie obsługiwany</string>
<string name="title_no_uidplus">UIDPLUS nie obsługiwany</string>
<string name="title_no_idle">IMAP IDLE not supported</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported</string>
<string name="title_account_delete">Usunąć to konto bezpowrotnie?</string>
<string name="title_identity_delete">Usunąć tożsamość bezpowrotnie?</string>
<string name="title_pop">POP is not support</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_folder">Synchronizuj (odbierz wiadomości)</string>
<string name="title_unified_folder">Show in unified inbox</string>
<string name="title_after">Synchronizuj (dni)</string>


+ 4
- 2
app/src/main/res/values-pt-rBR/strings.xml View File

@ -94,10 +94,12 @@
<string name="title_no_user">Nome do usuário faltante</string>
<string name="title_no_password">Senha faltante</string>
<string name="title_no_drafts">Drafts folder missing</string>
<string name="title_no_idle">IDLE não suportado</string>
<string name="title_no_uidplus">UIDPLUS not supported</string>
<string name="title_no_idle">IMAP IDLE not supported</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported</string>
<string name="title_account_delete">Delete this account permanently?</string>
<string name="title_identity_delete">Delete this identity permanently?</string>
<string name="title_pop">POP is not support</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_folder">Sincronizar (receber mensagens)</string>
<string name="title_unified_folder">Show in unified inbox</string>
<string name="title_after">Sincronizar (dias)</string>


+ 4
- 2
app/src/main/res/values-pt-rPT/strings.xml View File

@ -94,10 +94,12 @@
<string name="title_no_user">User name missing</string>
<string name="title_no_password">Password missing</string>
<string name="title_no_drafts">Drafts folder missing</string>
<string name="title_no_idle">IDLE not supported</string>
<string name="title_no_uidplus">UIDPLUS not supported</string>
<string name="title_no_idle">IMAP IDLE not supported</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported</string>
<string name="title_account_delete">Delete this account permanently?</string>
<string name="title_identity_delete">Delete this identity permanently?</string>
<string name="title_pop">POP is not support</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_folder">Synchronize (receive messages)</string>
<string name="title_unified_folder">Show in unified inbox</string>
<string name="title_after">Synchronize (days)</string>


+ 4
- 2
app/src/main/res/values-ro/strings.xml View File

@ -98,10 +98,12 @@
<string name="title_no_user">Lipsește numele de utilizator</string>
<string name="title_no_password">Lipsește parola</string>
<string name="title_no_drafts">Lipsește dosarul de ciorne</string>
<string name="title_no_idle">IDLE nu este suportat</string>
<string name="title_no_uidplus">UIDPLUS nu este suportat</string>
<string name="title_no_idle">IMAP IDLE not supported</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported</string>
<string name="title_account_delete">Ștergeți definitiv acest cont?</string>
<string name="title_identity_delete">Ștergeți definitiv această identitate?</string>
<string name="title_pop">POP is not support</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_folder">Sincronizare (primire mesaje)</string>
<string name="title_unified_folder">Arată în căsuța poștală comună</string>
<string name="title_after">Sincronizare (zile)</string>


+ 4
- 2
app/src/main/res/values-ru/strings.xml View File

@ -102,10 +102,12 @@
<string name="title_no_user">User name missing</string>
<string name="title_no_password">Password missing</string>
<string name="title_no_drafts">Drafts folder missing</string>
<string name="title_no_idle">IDLE not supported</string>
<string name="title_no_uidplus">UIDPLUS not supported</string>
<string name="title_no_idle">IMAP IDLE not supported</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported</string>
<string name="title_account_delete">Delete this account permanently?</string>
<string name="title_identity_delete">Delete this identity permanently?</string>
<string name="title_pop">POP is not support</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_folder">Synchronize (receive messages)</string>
<string name="title_unified_folder">Show in unified inbox</string>
<string name="title_after">Synchronize (days)</string>


+ 4
- 2
app/src/main/res/values-sr/strings.xml View File

@ -98,10 +98,12 @@
<string name="title_no_user">User name missing</string>
<string name="title_no_password">Password missing</string>
<string name="title_no_drafts">Drafts folder missing</string>
<string name="title_no_idle">IDLE not supported</string>
<string name="title_no_uidplus">UIDPLUS not supported</string>
<string name="title_no_idle">IMAP IDLE not supported</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported</string>
<string name="title_account_delete">Delete this account permanently?</string>
<string name="title_identity_delete">Delete this identity permanently?</string>
<string name="title_pop">POP is not support</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_folder">Synchronize (receive messages)</string>
<string name="title_unified_folder">Show in unified inbox</string>
<string name="title_after">Synchronize (days)</string>


+ 4
- 2
app/src/main/res/values-sv-rSE/strings.xml View File

@ -94,10 +94,12 @@
<string name="title_no_user">User name missing</string>
<string name="title_no_password">Password missing</string>
<string name="title_no_drafts">Drafts folder missing</string>
<string name="title_no_idle">IDLE not supported</string>
<string name="title_no_uidplus">UIDPLUS not supported</string>
<string name="title_no_idle">IMAP IDLE not supported</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported</string>
<string name="title_account_delete">Delete this account permanently?</string>
<string name="title_identity_delete">Delete this identity permanently?</string>
<string name="title_pop">POP is not support</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_folder">Synchronize (receive messages)</string>
<string name="title_unified_folder">Show in unified inbox</string>
<string name="title_after">Synchronize (days)</string>


+ 4
- 2
app/src/main/res/values-tr/strings.xml View File

@ -94,10 +94,12 @@
<string name="title_no_user">Kullanıcı adı eksik</string>
<string name="title_no_password">Parola Eksik</string>
<string name="title_no_drafts">Taslaklar klasörü eksik</string>
<string name="title_no_idle">IDLE desteklenmiyor</string>
<string name="title_no_uidplus">UIDPLUS desteklenmiyor</string>
<string name="title_no_idle">IMAP IDLE not supported</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported</string>
<string name="title_account_delete">Bu hesabı kalıcı olarak sil?</string>
<string name="title_identity_delete">Bu kimliği kalıcı olarak sil?</string>
<string name="title_pop">POP is not support</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_folder">Senkronize et (iletileri al)</string>
<string name="title_unified_folder">Show in unified inbox</string>
<string name="title_after">Senkronize (günler)</string>


+ 4
- 2
app/src/main/res/values-uk/strings.xml View File

@ -102,10 +102,12 @@
<string name="title_no_user">User name missing</string>
<string name="title_no_password">Password missing</string>
<string name="title_no_drafts">Drafts folder missing</string>
<string name="title_no_idle">IDLE not supported</string>
<string name="title_no_uidplus">UIDPLUS not supported</string>
<string name="title_no_idle">IMAP IDLE not supported</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported</string>
<string name="title_account_delete">Delete this account permanently?</string>
<string name="title_identity_delete">Delete this identity permanently?</string>
<string name="title_pop">POP is not support</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_folder">Synchronize (receive messages)</string>
<string name="title_unified_folder">Show in unified inbox</string>
<string name="title_after">Synchronize (days)</string>


+ 4
- 2
app/src/main/res/values-vi/strings.xml View File

@ -90,10 +90,12 @@
<string name="title_no_user">User name missing</string>
<string name="title_no_password">Password missing</string>
<string name="title_no_drafts">Drafts folder missing</string>
<string name="title_no_idle">IDLE not supported</string>
<string name="title_no_uidplus">UIDPLUS not supported</string>
<string name="title_no_idle">IMAP IDLE not supported</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported</string>
<string name="title_account_delete">Delete this account permanently?</string>
<string name="title_identity_delete">Delete this identity permanently?</string>
<string name="title_pop">POP is not support</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_folder">Synchronize (receive messages)</string>
<string name="title_unified_folder">Show in unified inbox</string>
<string name="title_after">Synchronize (days)</string>


+ 4
- 2
app/src/main/res/values-zh-rCN/strings.xml View File

@ -90,10 +90,12 @@
<string name="title_no_user">缺少用户名</string>
<string name="title_no_password">缺少密码</string>
<string name="title_no_drafts">缺少草稿箱</string>
<string name="title_no_idle">IDLE 不受支持</string>
<string name="title_no_uidplus">UIDPLUS 不受支持</string>
<string name="title_no_idle">IMAP IDLE not supported</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported</string>
<string name="title_account_delete">确定永久删除这个账户吗?</string>
<string name="title_identity_delete">确定永久删除这个身份吗?</string>
<string name="title_pop">POP is not support</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_folder">同步文件夹(接收)</string>
<string name="title_unified_folder">Show in unified inbox</string>
<string name="title_after">同步天数</string>


+ 4
- 2
app/src/main/res/values-zh-rTW/strings.xml View File

@ -90,10 +90,12 @@
<string name="title_no_user">User name missing</string>
<string name="title_no_password">Password missing</string>
<string name="title_no_drafts">Drafts folder missing</string>
<string name="title_no_idle">IDLE not supported</string>
<string name="title_no_uidplus">UIDPLUS not supported</string>
<string name="title_no_idle">IMAP IDLE not supported</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported</string>
<string name="title_account_delete">Delete this account permanently?</string>
<string name="title_identity_delete">Delete this identity permanently?</string>
<string name="title_pop">POP is not support</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_synchronize_folder">Synchronize (receive messages)</string>
<string name="title_unified_folder">Show in unified inbox</string>
<string name="title_after">Synchronize (days)</string>


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

@ -110,10 +110,12 @@
<string name="title_no_user">User name missing</string>
<string name="title_no_password">Password missing</string>
<string name="title_no_drafts">Drafts folder missing</string>
<string name="title_no_idle">IDLE not supported</string>
<string name="title_no_uidplus">UIDPLUS not supported</string>
<string name="title_no_idle">IMAP IDLE not supported</string>
<string name="title_no_uidplus">IMAP UIDPLUS not supported</string>
<string name="title_account_delete">Delete this account permanently?</string>
<string name="title_identity_delete">Delete this identity permanently?</string>
<string name="title_pop">POP is not support</string>
<string name="title_insecure">Insecure connections are not supported</string>
<string name="title_folder_unseen" translatable="false">%1$s (%2$d)</string>
<string name="title_synchronize_folder">Synchronize (receive messages)</string>


Loading…
Cancel
Save