Long press to mark read/unread

pull/72/merge
M66B 6 years ago
parent 4e222ec6d1
commit 80755d85d6

@ -22,6 +22,7 @@ package eu.faircode.email;
import android.content.Context;
import android.content.Intent;
import android.graphics.Typeface;
import android.os.Bundle;
import android.preference.PreferenceManager;
import android.text.format.DateUtils;
import android.view.LayoutInflater;
@ -30,6 +31,7 @@ import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.ProgressBar;
import android.widget.TextView;
import android.widget.Toast;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
@ -202,10 +204,38 @@ public class AdapterMessage extends PagedListAdapter<TupleMessageEx, AdapterMess
TupleMessageEx message = getItem(pos);
LocalBroadcastManager lbm = LocalBroadcastManager.getInstance(context);
lbm.sendBroadcast(
new Intent(ActivityView.ACTION_VIEW_MESSAGE)
.putExtra("message", message));
Bundle args = new Bundle();
args.putLong("id", message.id);
new SimpleTask<Void>() {
@Override
protected Void onLoad(Context context, Bundle args) {
long id = args.getLong("id");
DB db = DB.getInstance(context);
try {
db.beginTransaction();
EntityMessage message = db.message().getMessage(id);
for (EntityMessage tmessage : db.message().getMessageByThread(message.account, message.thread)) {
db.message().setMessageUiSeen(tmessage.id, !message.ui_seen);
EntityOperation.queue(db, tmessage, EntityOperation.SEEN, !tmessage.ui_seen);
}
db.setTransactionSuccessful();
} finally {
db.endTransaction();
}
EntityOperation.process(context);
return null;
}
@Override
public void onException(Bundle args, Throwable ex) {
Toast.makeText(context, ex.toString(), Toast.LENGTH_LONG).show();
}
}.load(context, owner, args);
return true;
}

@ -651,16 +651,9 @@ public class FragmentMessage extends FragmentEx {
menu.findItem(R.id.menu_addresses).setVisible(!free);
menu.findItem(R.id.menu_thread).setVisible(!free && !message.virtual && message.count > 1);
menu.findItem(R.id.menu_seen).setVisible(!free && !message.virtual && !inOutbox);
menu.findItem(R.id.menu_forward).setVisible(!free && !message.virtual && !inOutbox);
menu.findItem(R.id.menu_reply_all).setVisible(!free && !message.virtual && message.cc != null && !inOutbox);
menu.findItem(R.id.menu_decrypt).setVisible(decrypted == null);
MenuItem menuSeen = menu.findItem(R.id.menu_seen);
menuSeen.setIcon(message.ui_seen
? R.drawable.baseline_visibility_off_24
: R.drawable.baseline_visibility_24);
menuSeen.setTitle(message.ui_seen ? R.string.title_unseen : R.string.title_seen);
}
@Override
@ -672,9 +665,6 @@ public class FragmentMessage extends FragmentEx {
case R.id.menu_thread:
onMenuThread();
return true;
case R.id.menu_seen:
onMenuSeen();
return true;
case R.id.menu_forward:
onMenuForward();
return true;
@ -710,49 +700,6 @@ public class FragmentMessage extends FragmentEx {
fragmentTransaction.commit();
}
private void onMenuSeen() {
Helper.setViewsEnabled(view, false);
Bundle args = new Bundle();
args.putLong("id", message.id);
new SimpleTask<Void>() {
@Override
protected Void onLoad(Context context, Bundle args) {
long id = args.getLong("id");
DB db = DB.getInstance(context);
try {
db.beginTransaction();
EntityMessage message = db.message().getMessage(id);
for (EntityMessage tmessage : db.message().getMessageByThread(message.account, message.thread)) {
db.message().setMessageUiSeen(tmessage.id, !message.ui_seen);
EntityOperation.queue(db, tmessage, EntityOperation.SEEN, !tmessage.ui_seen);
}
db.setTransactionSuccessful();
} finally {
db.endTransaction();
}
EntityOperation.process(context);
return null;
}
@Override
protected void onLoaded(Bundle args, Void data) {
Helper.setViewsEnabled(view, true);
}
@Override
public void onException(Bundle args, Throwable ex) {
Helper.setViewsEnabled(view, true);
Toast.makeText(getContext(), ex.toString(), Toast.LENGTH_LONG).show();
}
}.load(this, args);
}
private void onMenuForward() {
startActivity(new Intent(getContext(), ActivityCompose.class)
.putExtra("action", "forward")

@ -58,7 +58,7 @@ import androidx.recyclerview.widget.RecyclerView;
public class FragmentMessages extends FragmentEx {
private ViewGroup view;
private Button btnHintSwipe;
private Button btnHintActions;
private RecyclerView rvMessage;
private TextView tvNoEmail;
private ProgressBar pbWait;
@ -99,7 +99,7 @@ public class FragmentMessages extends FragmentEx {
setHasOptionsMenu(true);
// Get controls
btnHintSwipe = view.findViewById(R.id.btnHintSwipe);
btnHintActions = view.findViewById(R.id.btnHintActions);
rvMessage = view.findViewById(R.id.rvFolder);
tvNoEmail = view.findViewById(R.id.tvNoEmail);
pbWait = view.findViewById(R.id.pbWait);
@ -110,10 +110,10 @@ public class FragmentMessages extends FragmentEx {
// Wire controls
final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getContext());
btnHintSwipe.setOnClickListener(new View.OnClickListener() {
btnHintActions.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
prefs.edit().putBoolean("understood_swipe", true).apply();
prefs.edit().putBoolean("understood_actions", true).apply();
grpHintSwipe.setVisibility(View.GONE);
}
});
@ -243,7 +243,7 @@ public class FragmentMessages extends FragmentEx {
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getContext());
grpHintSwipe.setVisibility(prefs.getBoolean("understood_swipe", false) ? View.GONE : View.VISIBLE);
grpHintSwipe.setVisibility(prefs.getBoolean("understood_actions", false) ? View.GONE : View.VISIBLE);
final DB db = DB.getInstance(getContext());

@ -18,28 +18,28 @@
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/tvHintSwipe"
android:id="@+id/tvHintActions"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginEnd="6dp"
android:layout_marginStart="6dp"
android:layout_marginTop="6dp"
android:text="@string/title_hint_swipe"
app:layout_constraintEnd_toStartOf="@+id/btnHintSwipe"
android:text="@string/title_hint_actions"
app:layout_constraintEnd_toStartOf="@+id/btnHintActions"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<Button
android:id="@+id/btnHintSwipe"
android:id="@+id/btnHintActions"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:minHeight="0dp"
android:minWidth="0dp"
android:text="@string/title_understood"
app:layout_constraintBottom_toBottomOf="@id/tvHintSwipe"
app:layout_constraintBottom_toBottomOf="@id/tvHintActions"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="@id/tvHintSwipe" />
app:layout_constraintTop_toTopOf="@id/tvHintActions" />
<View
android:id="@+id/vSeparator"
@ -48,7 +48,7 @@
android:layout_marginTop="6dp"
android:background="?attr/colorSeparator"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/btnHintSwipe" />
app:layout_constraintTop_toBottomOf="@id/btnHintActions" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rvFolder"
@ -88,7 +88,7 @@
android:id="@+id/grpHintSwipe"
android:layout_width="0dp"
android:layout_height="0dp"
app:constraint_referenced_ids="tvHintSwipe,btnHintSwipe,vSeparator" />
app:constraint_referenced_ids="tvHintActions,btnHintActions,vSeparator" />
<androidx.constraintlayout.widget.Group
android:id="@+id/grpReady"

@ -14,12 +14,6 @@
android:title="@string/title_thread"
app:showAsAction="never" />
<item
android:id="@+id/menu_seen"
android:icon="@drawable/baseline_visibility_off_24"
android:title="@string/title_seen"
app:showAsAction="never" />
<item
android:id="@+id/menu_forward"
android:icon="@drawable/baseline_forward_24"

@ -76,7 +76,7 @@
<string name="title_authorize">Select account</string>
<string name="title_instructions">Instructions</string>
<string name="title_store_sent">Store sent messages (enable if needed only)</string>
<string name="title_interval">Poll/keep-alive interval (minutes)</string>
<string name="title_interval">Keep-alive interval (minutes)</string>
<string name="title_synchronize_account">Synchronize (receive messages)</string>
<string name="title_synchronize_identity">Synchronize (send messages)</string>
<string name="title_primary_account">Primary (default account)</string>
@ -165,7 +165,7 @@
<string name="title_legend_connected">Connected</string>
<string name="title_legend_synchronizing">Synchronizing</string>
<string name="title_legend_closing">Closing</string>
<string name="title_hint_swipe">Swipe left to trash and swipe right to archive (if available)</string>
<string name="title_hint_actions">Swipe left to trash; swipe right to archive (if available); long press to mark read/unread</string>
<string name="title_understood">Understood</string>
<string name="title_pro_feature">This is a pro feature</string>
<string name="title_pro_list">List of pro features</string>

@ -92,7 +92,7 @@
<string name="title_authorize">Select account</string>
<string name="title_instructions">Instructions</string>
<string name="title_store_sent">Store sent messages (enable if needed only)</string>
<string name="title_interval">Poll/keep-alive interval (minutes)</string>
<string name="title_interval">Keep-alive interval (minutes)</string>
<string name="title_synchronize_account">Synchronize (receive messages)</string>
<string name="title_synchronize_identity">Synchronize (send messages)</string>
<string name="title_primary_account">Primary (default account)</string>
@ -181,7 +181,7 @@
<string name="title_legend_connected">Connected</string>
<string name="title_legend_synchronizing">Synchronizing</string>
<string name="title_legend_closing">Closing</string>
<string name="title_hint_swipe">Swipe left to trash and swipe right to archive (if available)</string>
<string name="title_hint_actions">Swipe left to trash; swipe right to archive (if available); long press to mark read/unread</string>
<string name="title_understood">Understood</string>
<string name="title_pro_feature">This is a pro feature</string>
<string name="title_pro_list">List of pro features</string>

@ -92,7 +92,7 @@
<string name="title_authorize">Select account</string>
<string name="title_instructions">Instructions</string>
<string name="title_store_sent">Store sent messages (enable if needed only)</string>
<string name="title_interval">Poll/keep-alive interval (minutes)</string>
<string name="title_interval">Keep-alive interval (minutes)</string>
<string name="title_synchronize_account">Synchronize (receive messages)</string>
<string name="title_synchronize_identity">Synchronize (send messages)</string>
<string name="title_primary_account">Primary (default account)</string>
@ -181,7 +181,7 @@
<string name="title_legend_connected">Connected</string>
<string name="title_legend_synchronizing">Synchronizing</string>
<string name="title_legend_closing">Closing</string>
<string name="title_hint_swipe">Swipe left to trash and swipe right to archive (if available)</string>
<string name="title_hint_actions">Swipe left to trash; swipe right to archive (if available); long press to mark read/unread</string>
<string name="title_understood">Understood</string>
<string name="title_pro_feature">This is a pro feature</string>
<string name="title_pro_list">List of pro features</string>

@ -92,7 +92,7 @@
<string name="title_authorize">Select account</string>
<string name="title_instructions">Instructions</string>
<string name="title_store_sent">Store sent messages (enable if needed only)</string>
<string name="title_interval">Poll/keep-alive interval (minutes)</string>
<string name="title_interval">Keep-alive interval (minutes)</string>
<string name="title_synchronize_account">Synchronize (receive messages)</string>
<string name="title_synchronize_identity">Synchronize (send messages)</string>
<string name="title_primary_account">Primary (default account)</string>
@ -181,7 +181,7 @@
<string name="title_legend_connected">Connected</string>
<string name="title_legend_synchronizing">Synchronizing</string>
<string name="title_legend_closing">Closing</string>
<string name="title_hint_swipe">Swipe left to trash and swipe right to archive (if available)</string>
<string name="title_hint_actions">Swipe left to trash; swipe right to archive (if available); long press to mark read/unread</string>
<string name="title_understood">Understood</string>
<string name="title_pro_feature">This is a pro feature</string>
<string name="title_pro_list">List of pro features</string>

@ -92,7 +92,7 @@
<string name="title_authorize">Select account</string>
<string name="title_instructions">Instructions</string>
<string name="title_store_sent">Store sent messages (enable if needed only)</string>
<string name="title_interval">Poll/keep-alive interval (minutes)</string>
<string name="title_interval">Keep-alive interval (minutes)</string>
<string name="title_synchronize_account">Synchronize (receive messages)</string>
<string name="title_synchronize_identity">Synchronize (send messages)</string>
<string name="title_primary_account">Primary (default account)</string>
@ -181,7 +181,7 @@
<string name="title_legend_connected">Connected</string>
<string name="title_legend_synchronizing">Synchronizing</string>
<string name="title_legend_closing">Closing</string>
<string name="title_hint_swipe">Swipe left to trash and swipe right to archive (if available)</string>
<string name="title_hint_actions">Swipe left to trash; swipe right to archive (if available); long press to mark read/unread</string>
<string name="title_understood">Understood</string>
<string name="title_pro_feature">This is a pro feature</string>
<string name="title_pro_list">List of pro features</string>

@ -92,7 +92,7 @@
<string name="title_authorize">Select account</string>
<string name="title_instructions">Instructions</string>
<string name="title_store_sent">Store sent messages (enable if needed only)</string>
<string name="title_interval">Poll/keep-alive interval (minutes)</string>
<string name="title_interval">Keep-alive interval (minutes)</string>
<string name="title_synchronize_account">Synchronize (receive messages)</string>
<string name="title_synchronize_identity">Synchronize (send messages)</string>
<string name="title_primary_account">Primary (default account)</string>
@ -181,7 +181,7 @@
<string name="title_legend_connected">Connected</string>
<string name="title_legend_synchronizing">Synchronizing</string>
<string name="title_legend_closing">Closing</string>
<string name="title_hint_swipe">Swipe left to trash and swipe right to archive (if available)</string>
<string name="title_hint_actions">Swipe left to trash; swipe right to archive (if available); long press to mark read/unread</string>
<string name="title_understood">Understood</string>
<string name="title_pro_feature">This is a pro feature</string>
<string name="title_pro_list">List of pro features</string>

@ -76,7 +76,7 @@
<string name="title_authorize">Select account</string>
<string name="title_instructions">Instructions</string>
<string name="title_store_sent">Store sent messages (enable if needed only)</string>
<string name="title_interval">Poll/keep-alive interval (minutes)</string>
<string name="title_interval">Keep-alive interval (minutes)</string>
<string name="title_synchronize_account">Synchronize (receive messages)</string>
<string name="title_synchronize_identity">Synchronize (send messages)</string>
<string name="title_primary_account">Primary (default account)</string>
@ -165,7 +165,7 @@
<string name="title_legend_connected">Connected</string>
<string name="title_legend_synchronizing">Synchronizing</string>
<string name="title_legend_closing">Closing</string>
<string name="title_hint_swipe">Swipe left to trash and swipe right to archive (if available)</string>
<string name="title_hint_actions">Swipe left to trash; swipe right to archive (if available); long press to mark read/unread</string>
<string name="title_understood">Understood</string>
<string name="title_pro_feature">This is a pro feature</string>
<string name="title_pro_list">List of pro features</string>

@ -84,7 +84,7 @@
<string name="title_authorize">Select account</string>
<string name="title_instructions">Instructions</string>
<string name="title_store_sent">Store sent messages (enable if needed only)</string>
<string name="title_interval">Poll/keep-alive interval (minutes)</string>
<string name="title_interval">Keep-alive interval (minutes)</string>
<string name="title_synchronize_account">Synchronize (receive messages)</string>
<string name="title_synchronize_identity">Synchronize (send messages)</string>
<string name="title_primary_account">Primary (default account)</string>
@ -173,7 +173,7 @@
<string name="title_legend_connected">Connected</string>
<string name="title_legend_synchronizing">Synchronizing</string>
<string name="title_legend_closing">Closing</string>
<string name="title_hint_swipe">Swipe left to trash and swipe right to archive (if available)</string>
<string name="title_hint_actions">Swipe left to trash; swipe right to archive (if available); long press to mark read/unread</string>
<string name="title_understood">Understood</string>
<string name="title_pro_feature">This is a pro feature</string>
<string name="title_pro_list">List of pro features</string>

@ -23,11 +23,11 @@
</plurals>
<string name="title_notification_failed">\'%1$s\' mislykkedes</string>
<string name="menu_setup">Opsætning</string>
<string name="menu_answers">Standard replies</string>
<string name="menu_answers">Standard svar</string>
<string name="menu_operations">Aktiviteter</string>
<string name="menu_legend">Forklaring</string>
<string name="menu_faq">Ofte stillede spørgsmål</string>
<string name="menu_pro">Pro features</string>
<string name="menu_pro">Pro funktioner</string>
<string name="menu_privacy">Privatliv</string>
<string name="menu_about">Om</string>
<string name="menu_other">Andre apps</string>
@ -51,12 +51,12 @@
<string name="title_setup_done">Udført</string>
<string name="title_setup_dark_theme">Mørkt tema</string>
<string name="title_advanced">Avancerede indstillinger</string>
<string name="title_advanced_webview">Use WebView to show external links</string>
<string name="title_advanced_webview">Brug WebView for at vise eksterne 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_sanitize">Remove HTML formatting from messages</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_sanitize">Fjern HTML formatering fra meddelelser</string>
<string name="title_advanced_compress_imap">Komprimér IMAP data</string>
<string name="title_advanced_debug">Debug</string>
<string name="title_select">Select &#8230;</string>
<string name="title_select">Vælg &#8230;</string>
<string name="title_identity_name">Dit navn</string>
<string name="title_identity_email">Din email adresse</string>
<string name="title_identity_reply_to">Svar til adresse</string>
@ -73,10 +73,10 @@
<string name="title_port">Portnummer</string>
<string name="title_user">Brugernavn</string>
<string name="title_password">Adgangskode</string>
<string name="title_authorize">Select account</string>
<string name="title_authorize">Vælg konto</string>
<string name="title_instructions">Vejledning</string>
<string name="title_store_sent">Gem sendte beskeder (aktivér kun hvis nødvendigt)</string>
<string name="title_interval">Afstem/hold i live interval (minutter)</string>
<string name="title_interval">Keep-alive interval (minutes)</string>
<string name="title_synchronize_account">Synkronisér (modtag meddelelser)</string>
<string name="title_synchronize_identity">Synkronisér (send meddelelser)</string>
<string name="title_primary_account">Primær (standard konto)</string>
@ -123,7 +123,7 @@
<string name="title_move">Flyt</string>
<string name="title_archive">Arkivér</string>
<string name="title_reply">Besvar</string>
<string name="title_moving">Moving message to %1$s</string>
<string name="title_moving">Flytter besked til %1$s</string>
<string name="title_no_viewer">Ingen viewer app til rådighed for %1$s</string>
<string name="title_attachment_saved">Vedhæftet fil gemt</string>
<string name="title_ask_delete">Slet meddelelsen permanent?</string>
@ -140,22 +140,22 @@
<string name="title_send">Send</string>
<string name="title_show_addresses">Vis CC/BCC</string>
<string name="title_add_attachment">Vedhæft fil</string>
<string name="title_no_openpgp">OpenPGP not available</string>
<string name="title_not_encrypted">Encrypted message not found</string>
<string name="title_encrypt">Encrypt</string>
<string name="title_decrypt">Decrypt</string>
<string name="title_no_openpgp">OpenPGP ikke tilgængelig</string>
<string name="title_not_encrypted">Krypteret meddelelse ikke fundet</string>
<string name="title_encrypt">Kryptér</string>
<string name="title_decrypt">Dekryptér</string>
<string name="title_from_missing">Afsender mangler</string>
<string name="title_to_missing">Modtager mangler</string>
<string name="title_attachments_missing">Vedhæftede filer indlæses stadig</string>
<string name="title_draft_trashed">Kladde slettet</string>
<string name="title_draft_saved">Kladde gemt</string>
<string name="title_queued">Sender besked</string>
<string name="title_search">Search</string>
<string name="title_search_hint">Search on server</string>
<string name="title_searching">Searching \'%1$s\'</string>
<string name="title_answer_reply">Standard reply</string>
<string name="title_answer_name">Answer name</string>
<string name="title_answer_text">Answer text</string>
<string name="title_search">Søg</string>
<string name="title_search_hint">Søg på server</string>
<string name="title_searching">Søger \'%1$s \'</string>
<string name="title_answer_reply">Standard svar</string>
<string name="title_answer_name">Svarnavn</string>
<string name="title_answer_text">Svartekst</string>
<string name="title_legend_cc">CC/BCC</string>
<string name="title_legend_attachment">Vedhæftning</string>
<string name="title_legend_synchronize">Synkronisér</string>
@ -163,17 +163,17 @@
<string name="title_legend_disconnected">Afbrudt</string>
<string name="title_legend_connecting">Tilslutter</string>
<string name="title_legend_connected">Tilsluttet</string>
<string name="title_legend_synchronizing">Synchronizing</string>
<string name="title_legend_synchronizing">Synkroniserer</string>
<string name="title_legend_closing">Lukker</string>
<string name="title_hint_swipe">Swipe left to trash and swipe right to archive (if available)</string>
<string name="title_understood">Understood</string>
<string name="title_pro_feature">This is a pro feature</string>
<string name="title_pro_list">List of pro features</string>
<string name="title_pro_purchase">Buy</string>
<string name="title_pro_hint">Buying pro features will allow you to use all current and future pro features and will keep this app maintained and supported</string>
<string name="title_pro_activated">All pro features are activated</string>
<string name="title_pro_valid">All pro features activated</string>
<string name="title_pro_invalid">Invalid response</string>
<string name="title_hint_actions">Swipe left to trash; swipe right to archive (if available); long press to mark read/unread</string>
<string name="title_understood">Forstået</string>
<string name="title_pro_feature">Dette er en pro funktion</string>
<string name="title_pro_list">Liste over pro funktioner</string>
<string name="title_pro_purchase">Køb</string>
<string name="title_pro_hint">Køb af pro funktioner vil tillade dig at bruge alle nuværende og fremtidige pro funktioner og vil holde dette app vedligeholdt og understøttet</string>
<string name="title_pro_activated">Alle pro funktioner er aktiveret</string>
<string name="title_pro_valid">Alle pro funktioner aktiveret</string>
<string name="title_pro_invalid">Ugyldigt svar</string>
<string name="title_debug_info">Debugging info</string>
<string name="title_debug_info_remark">Beskriv venligst problemet og angiv tidspunkt for problemet:</string>
</resources>

@ -76,7 +76,7 @@
<string name="title_authorize">Konto wählen</string>
<string name="title_instructions">Anweisungen</string>
<string name="title_store_sent">Speichere gesendete Nachrichten (nur bei Bedarf aktivieren)</string>
<string name="title_interval">Poll/Keep-Alive Intervall (Minuten)</string>
<string name="title_interval">Keep-alive interval (minutes)</string>
<string name="title_synchronize_account">Synchronisiere (empfange E-Mails)</string>
<string name="title_synchronize_identity">Synchronisiere (sende E-Mails)</string>
<string name="title_primary_account">Primär (Standard-Konto)</string>
@ -141,7 +141,7 @@
<string name="title_show_addresses">CC/BCC anzeigen</string>
<string name="title_add_attachment">Anhang hinzufügen</string>
<string name="title_no_openpgp">OpenPGP nicht verfügbar</string>
<string name="title_not_encrypted">Encrypted message not found</string>
<string name="title_not_encrypted">Verschlüsselte Nachricht nicht gefunden</string>
<string name="title_encrypt">Verschlüsseln</string>
<string name="title_decrypt">Entschlüsseln</string>
<string name="title_from_missing">Absender fehlt</string>
@ -165,7 +165,7 @@
<string name="title_legend_connected">Verbunden</string>
<string name="title_legend_synchronizing">Synchronisiere</string>
<string name="title_legend_closing">Schließen</string>
<string name="title_hint_swipe">Streichen Sie nach links zum Löschen und nach rechts zum archivieren (sofern verfügbar)</string>
<string name="title_hint_actions">Swipe left to trash; swipe right to archive (if available); long press to mark read/unread</string>
<string name="title_understood">Verstanden</string>
<string name="title_pro_feature">Dies ist eine Premium Funktion</string>
<string name="title_pro_list">Liste der Premium Funktionen</string>

@ -76,7 +76,7 @@
<string name="title_authorize">Select account</string>
<string name="title_instructions">Instructions</string>
<string name="title_store_sent">Store sent messages (enable if needed only)</string>
<string name="title_interval">Poll/keep-alive interval (minutes)</string>
<string name="title_interval">Keep-alive interval (minutes)</string>
<string name="title_synchronize_account">Synchronize (receive messages)</string>
<string name="title_synchronize_identity">Synchronize (send messages)</string>
<string name="title_primary_account">Primary (default account)</string>
@ -165,7 +165,7 @@
<string name="title_legend_connected">Connected</string>
<string name="title_legend_synchronizing">Synchronizing</string>
<string name="title_legend_closing">Closing</string>
<string name="title_hint_swipe">Swipe left to trash and swipe right to archive (if available)</string>
<string name="title_hint_actions">Swipe left to trash; swipe right to archive (if available); long press to mark read/unread</string>
<string name="title_understood">Understood</string>
<string name="title_pro_feature">This is a pro feature</string>
<string name="title_pro_list">List of pro features</string>

@ -76,7 +76,7 @@
<string name="title_authorize">Select account</string>
<string name="title_instructions">Instructions</string>
<string name="title_store_sent">Store sent messages (enable if needed only)</string>
<string name="title_interval">Poll/keep-alive interval (minutes)</string>
<string name="title_interval">Keep-alive interval (minutes)</string>
<string name="title_synchronize_account">Synchronize (receive messages)</string>
<string name="title_synchronize_identity">Synchronize (send messages)</string>
<string name="title_primary_account">Primary (default account)</string>
@ -165,7 +165,7 @@
<string name="title_legend_connected">Connected</string>
<string name="title_legend_synchronizing">Synchronizing</string>
<string name="title_legend_closing">Closing</string>
<string name="title_hint_swipe">Swipe left to trash and swipe right to archive (if available)</string>
<string name="title_hint_actions">Swipe left to trash; swipe right to archive (if available); long press to mark read/unread</string>
<string name="title_understood">Understood</string>
<string name="title_pro_feature">This is a pro feature</string>
<string name="title_pro_list">List of pro features</string>

@ -76,7 +76,7 @@
<string name="title_authorize">Select account</string>
<string name="title_instructions">Instructions</string>
<string name="title_store_sent">Store sent messages (enable if needed only)</string>
<string name="title_interval">Poll/keep-alive interval (minutes)</string>
<string name="title_interval">Keep-alive interval (minutes)</string>
<string name="title_synchronize_account">Synchronize (receive messages)</string>
<string name="title_synchronize_identity">Synchronize (send messages)</string>
<string name="title_primary_account">Primary (default account)</string>
@ -165,7 +165,7 @@
<string name="title_legend_connected">Connected</string>
<string name="title_legend_synchronizing">Synchronizing</string>
<string name="title_legend_closing">Closing</string>
<string name="title_hint_swipe">Swipe left to trash and swipe right to archive (if available)</string>
<string name="title_hint_actions">Swipe left to trash; swipe right to archive (if available); long press to mark read/unread</string>
<string name="title_understood">Understood</string>
<string name="title_pro_feature">This is a pro feature</string>
<string name="title_pro_list">List of pro features</string>

@ -76,7 +76,7 @@
<string name="title_authorize">Select account</string>
<string name="title_instructions">Instructions</string>
<string name="title_store_sent">Store sent messages (enable if needed only)</string>
<string name="title_interval">Poll/keep-alive interval (minutes)</string>
<string name="title_interval">Keep-alive interval (minutes)</string>
<string name="title_synchronize_account">Synchronize (receive messages)</string>
<string name="title_synchronize_identity">Synchronize (send messages)</string>
<string name="title_primary_account">Primary (default account)</string>
@ -165,7 +165,7 @@
<string name="title_legend_connected">Connected</string>
<string name="title_legend_synchronizing">Synchronizing</string>
<string name="title_legend_closing">Closing</string>
<string name="title_hint_swipe">Swipe left to trash and swipe right to archive (if available)</string>
<string name="title_hint_actions">Swipe left to trash; swipe right to archive (if available); long press to mark read/unread</string>
<string name="title_understood">Understood</string>
<string name="title_pro_feature">This is a pro feature</string>
<string name="title_pro_list">List of pro features</string>

@ -76,7 +76,7 @@
<string name="title_authorize">Sélectionner un compte</string>
<string name="title_instructions">Instructions</string>
<string name="title_store_sent">Stocker les messages envoyés (à activer si nécessaire)</string>
<string name="title_interval">Intervalle de consultation/requête (minutes)</string>
<string name="title_interval">Keep-alive interval (minutes)</string>
<string name="title_synchronize_account">Synchroniser (recevoir des messages)</string>
<string name="title_synchronize_identity">Synchroniser (envoyer des messages)</string>
<string name="title_primary_account">Principal (compte par défaut)</string>
@ -141,7 +141,7 @@
<string name="title_show_addresses">Afficher Cc/Cci</string>
<string name="title_add_attachment">Ajouter une pièce jointe</string>
<string name="title_no_openpgp">OpenPGP nest pas disponible</string>
<string name="title_not_encrypted">Encrypted message not found</string>
<string name="title_not_encrypted">Message chiffré non trouvé</string>
<string name="title_encrypt">Chiffrer</string>
<string name="title_decrypt">Déchiffrer</string>
<string name="title_from_missing">Expéditeur manquant</string>
@ -165,7 +165,7 @@
<string name="title_legend_connected">Connecté</string>
<string name="title_legend_synchronizing">Synchronisation 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_actions">Swipe left to trash; swipe right to archive (if available); long press to mark read/unread</string>
<string name="title_understood">Compris</string>
<string name="title_pro_feature">Il sagit dune fonctionnalité Pro</string>
<string name="title_pro_list">Liste des fonctionnalités Pro</string>

@ -84,7 +84,7 @@
<string name="title_authorize">Select account</string>
<string name="title_instructions">Instructions</string>
<string name="title_store_sent">Store sent messages (enable if needed only)</string>
<string name="title_interval">Poll/keep-alive interval (minutes)</string>
<string name="title_interval">Keep-alive interval (minutes)</string>
<string name="title_synchronize_account">Synchronize (receive messages)</string>
<string name="title_synchronize_identity">Synchronize (send messages)</string>
<string name="title_primary_account">Primary (default account)</string>
@ -173,7 +173,7 @@
<string name="title_legend_connected">Connected</string>
<string name="title_legend_synchronizing">Synchronizing</string>
<string name="title_legend_closing">Closing</string>
<string name="title_hint_swipe">Swipe left to trash and swipe right to archive (if available)</string>
<string name="title_hint_actions">Swipe left to trash; swipe right to archive (if available); long press to mark read/unread</string>
<string name="title_understood">Understood</string>
<string name="title_pro_feature">This is a pro feature</string>
<string name="title_pro_list">List of pro features</string>

@ -76,7 +76,7 @@
<string name="title_authorize">Select account</string>
<string name="title_instructions">Instructions</string>
<string name="title_store_sent">Store sent messages (enable if needed only)</string>
<string name="title_interval">Poll/keep-alive interval (minutes)</string>
<string name="title_interval">Keep-alive interval (minutes)</string>
<string name="title_synchronize_account">Synchronize (receive messages)</string>
<string name="title_synchronize_identity">Synchronize (send messages)</string>
<string name="title_primary_account">Primary (default account)</string>
@ -165,7 +165,7 @@
<string name="title_legend_connected">Connected</string>
<string name="title_legend_synchronizing">Synchronizing</string>
<string name="title_legend_closing">Closing</string>
<string name="title_hint_swipe">Swipe left to trash and swipe right to archive (if available)</string>
<string name="title_hint_actions">Swipe left to trash; swipe right to archive (if available); long press to mark read/unread</string>
<string name="title_understood">Understood</string>
<string name="title_pro_feature">This is a pro feature</string>
<string name="title_pro_list">List of pro features</string>

@ -76,7 +76,7 @@
<string name="title_authorize">Select account</string>
<string name="title_instructions">Instructions</string>
<string name="title_store_sent">Conserva i messaggi inviati (abilita solo se necessario)</string>
<string name="title_interval">Intervallo di poll/keep-alive (minuti)</string>
<string name="title_interval">Keep-alive interval (minutes)</string>
<string name="title_synchronize_account">Sincronizza (ricevi messaggi)</string>
<string name="title_synchronize_identity">Sincronizza (invia messaggi)</string>
<string name="title_primary_account">Principale (account predefinito)</string>
@ -165,7 +165,7 @@
<string name="title_legend_connected">Connesso</string>
<string name="title_legend_synchronizing">Synchronizing</string>
<string name="title_legend_closing">Chiusura</string>
<string name="title_hint_swipe">Swipe left to trash and swipe right to archive (if available)</string>
<string name="title_hint_actions">Swipe left to trash; swipe right to archive (if available); long press to mark read/unread</string>
<string name="title_understood">Understood</string>
<string name="title_pro_feature">This is a pro feature</string>
<string name="title_pro_list">List of pro features</string>

@ -84,7 +84,7 @@
<string name="title_authorize">Select account</string>
<string name="title_instructions">Instructions</string>
<string name="title_store_sent">Store sent messages (enable if needed only)</string>
<string name="title_interval">Poll/keep-alive interval (minutes)</string>
<string name="title_interval">Keep-alive interval (minutes)</string>
<string name="title_synchronize_account">Synchronize (receive messages)</string>
<string name="title_synchronize_identity">Synchronize (send messages)</string>
<string name="title_primary_account">Primary (default account)</string>
@ -173,7 +173,7 @@
<string name="title_legend_connected">Connected</string>
<string name="title_legend_synchronizing">Synchronizing</string>
<string name="title_legend_closing">Closing</string>
<string name="title_hint_swipe">Swipe left to trash and swipe right to archive (if available)</string>
<string name="title_hint_actions">Swipe left to trash; swipe right to archive (if available); long press to mark read/unread</string>
<string name="title_understood">Understood</string>
<string name="title_pro_feature">This is a pro feature</string>
<string name="title_pro_list">List of pro features</string>

@ -72,7 +72,7 @@
<string name="title_authorize">Select account</string>
<string name="title_instructions">Instructions</string>
<string name="title_store_sent">Store sent messages (enable if needed only)</string>
<string name="title_interval">Poll/keep-alive interval (minutes)</string>
<string name="title_interval">Keep-alive interval (minutes)</string>
<string name="title_synchronize_account">Synchronize (receive messages)</string>
<string name="title_synchronize_identity">Synchronize (send messages)</string>
<string name="title_primary_account">Primary (default account)</string>
@ -161,7 +161,7 @@
<string name="title_legend_connected">Connected</string>
<string name="title_legend_synchronizing">Synchronizing</string>
<string name="title_legend_closing">Closing</string>
<string name="title_hint_swipe">Swipe left to trash and swipe right to archive (if available)</string>
<string name="title_hint_actions">Swipe left to trash; swipe right to archive (if available); long press to mark read/unread</string>
<string name="title_understood">Understood</string>
<string name="title_pro_feature">This is a pro feature</string>
<string name="title_pro_list">List of pro features</string>

@ -72,7 +72,7 @@
<string name="title_authorize">Select account</string>
<string name="title_instructions">Instructions</string>
<string name="title_store_sent">Store sent messages (enable if needed only)</string>
<string name="title_interval">Poll/keep-alive interval (minutes)</string>
<string name="title_interval">Keep-alive interval (minutes)</string>
<string name="title_synchronize_account">Synchronize (receive messages)</string>
<string name="title_synchronize_identity">Synchronize (send messages)</string>
<string name="title_primary_account">Primary (default account)</string>
@ -161,7 +161,7 @@
<string name="title_legend_connected">Connected</string>
<string name="title_legend_synchronizing">Synchronizing</string>
<string name="title_legend_closing">Closing</string>
<string name="title_hint_swipe">Swipe left to trash and swipe right to archive (if available)</string>
<string name="title_hint_actions">Swipe left to trash; swipe right to archive (if available); long press to mark read/unread</string>
<string name="title_understood">Understood</string>
<string name="title_pro_feature">This is a pro feature</string>
<string name="title_pro_list">List of pro features</string>

@ -76,7 +76,7 @@
<string name="title_authorize">Select account</string>
<string name="title_instructions">Instructions</string>
<string name="title_store_sent">Store sent messages (enable if needed only)</string>
<string name="title_interval">Poll/keep-alive interval (minutes)</string>
<string name="title_interval">Keep-alive interval (minutes)</string>
<string name="title_synchronize_account">Synchronize (receive messages)</string>
<string name="title_synchronize_identity">Synchronize (send messages)</string>
<string name="title_primary_account">Primary (default account)</string>
@ -165,7 +165,7 @@
<string name="title_legend_connected">Connected</string>
<string name="title_legend_synchronizing">Synchronizing</string>
<string name="title_legend_closing">Closing</string>
<string name="title_hint_swipe">Swipe left to trash and swipe right to archive (if available)</string>
<string name="title_hint_actions">Swipe left to trash; swipe right to archive (if available); long press to mark read/unread</string>
<string name="title_understood">Understood</string>
<string name="title_pro_feature">This is a pro feature</string>
<string name="title_pro_list">List of pro features</string>

@ -76,7 +76,7 @@
<string name="title_authorize">Select account</string>
<string name="title_instructions">Instructions</string>
<string name="title_store_sent">Store sent messages (enable if needed only)</string>
<string name="title_interval">Poll/keep-alive interval (minutes)</string>
<string name="title_interval">Keep-alive interval (minutes)</string>
<string name="title_synchronize_account">Synchronize (receive messages)</string>
<string name="title_synchronize_identity">Synchronize (send messages)</string>
<string name="title_primary_account">Primary (default account)</string>
@ -165,7 +165,7 @@
<string name="title_legend_connected">Connected</string>
<string name="title_legend_synchronizing">Synchronizing</string>
<string name="title_legend_closing">Closing</string>
<string name="title_hint_swipe">Swipe left to trash and swipe right to archive (if available)</string>
<string name="title_hint_actions">Swipe left to trash; swipe right to archive (if available); long press to mark read/unread</string>
<string name="title_understood">Understood</string>
<string name="title_pro_feature">This is a pro feature</string>
<string name="title_pro_list">List of pro features</string>

@ -76,7 +76,7 @@
<string name="title_authorize">Select account</string>
<string name="title_instructions">Instructions</string>
<string name="title_store_sent">Store sent messages (enable if needed only)</string>
<string name="title_interval">Poll/keep-alive interval (minutes)</string>
<string name="title_interval">Keep-alive interval (minutes)</string>
<string name="title_synchronize_account">Synchronize (receive messages)</string>
<string name="title_synchronize_identity">Synchronize (send messages)</string>
<string name="title_primary_account">Primary (default account)</string>
@ -165,7 +165,7 @@
<string name="title_legend_connected">Connected</string>
<string name="title_legend_synchronizing">Synchronizing</string>
<string name="title_legend_closing">Closing</string>
<string name="title_hint_swipe">Swipe left to trash and swipe right to archive (if available)</string>
<string name="title_hint_actions">Swipe left to trash; swipe right to archive (if available); long press to mark read/unread</string>
<string name="title_understood">Understood</string>
<string name="title_pro_feature">This is a pro feature</string>
<string name="title_pro_list">List of pro features</string>

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_copyright">Prawa autorskie &#x24B8; 2018 przez M. Bokhorst</string>
<string name="channel_service">Service</string>
<string name="channel_service">Usługa</string>
<string name="channel_notification">Powiadomienia</string>
<string name="channel_error">Błędy</string>
<plurals name="title_notification_synchronizing">
@ -29,7 +29,7 @@
<item quantity="many">%1$d niewysłanych wiadomości</item>
<item quantity="other">%1$d niewysłanych wiadomości</item>
</plurals>
<string name="title_notification_failed">\'%1$s\' failed</string>
<string name="title_notification_failed">%1$s nie powiodło się</string>
<string name="menu_setup">Ustawienia</string>
<string name="menu_answers">Standardowe odpowiedzi</string>
<string name="menu_operations">Operacje</string>
@ -39,7 +39,7 @@
<string name="menu_privacy">Prywatność</string>
<string name="menu_about">O programie</string>
<string name="menu_other">Inne aplikacje</string>
<string name="title_eula">End-user license agreement</string>
<string name="title_eula">Umowa licencyjna użytkownika końcowego</string>
<string name="title_agree">Zgadzam się</string>
<string name="title_disagree">Nie zgadzam się</string>
<string name="title_version">Wersja %1$s</string>
@ -62,20 +62,20 @@
<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_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_compress_imap">Kompresuj dane IMAP</string>
<string name="title_advanced_debug">Debuguj</string>
<string name="title_select">Wybierz &#8230;</string>
<string name="title_identity_name">Twoja nazwa</string>
<string name="title_identity_email">Twój adres e-mail</string>
<string name="title_identity_reply_to">Odpowiedz na adres</string>
<string name="title_optional">Optional</string>
<string name="title_optional">Opcjonalnie</string>
<string name="title_account_linked">Połączone konto</string>
<string name="title_account_name">Nazwa konta</string>
<string name="title_account_name_hint">Używany do odróżnienia folderów</string>
<string name="title_imap">IMAP</string>
<string name="title_smtp">SMTP</string>
<string name="title_provider">Dostawca</string>
<string name="title_custom">Custom</string>
<string name="title_custom">Własne</string>
<string name="title_host">Nazwa hosta</string>
<string name="title_starttls">STARTTLS</string>
<string name="title_port">Numer portu</string>
@ -84,7 +84,7 @@
<string name="title_authorize">Wybierz konto</string>
<string name="title_instructions">Instrukcje</string>
<string name="title_store_sent">Zachowuj wysłane wiadomości (włącz tylko gdy potrzebne)</string>
<string name="title_interval">Poll/keep-alive interval (minutes)</string>
<string name="title_interval">Keep-alive interval (minutes)</string>
<string name="title_synchronize_account">Synchronizuj (odbierz wiadomości)</string>
<string name="title_synchronize_identity">Synchronizuj (wyślij wiadomości)</string>
<string name="title_primary_account">Podstawowe (domyślne konto)</string>
@ -149,7 +149,7 @@
<string name="title_show_addresses">Pokaż DW/UDW</string>
<string name="title_add_attachment">Dodaj załącznik</string>
<string name="title_no_openpgp">OpenPGP nie dostępne</string>
<string name="title_not_encrypted">Encrypted message not found</string>
<string name="title_not_encrypted">Nie znaleziono zaszyfrowanej wiadomości</string>
<string name="title_encrypt">Zaszyfruj</string>
<string name="title_decrypt">Odszyfruj</string>
<string name="title_from_missing">Brak nadawcy</string>
@ -171,9 +171,9 @@
<string name="title_legend_disconnected">Rozłączony</string>
<string name="title_legend_connecting">Łączenie</string>
<string name="title_legend_connected">Połączony</string>
<string name="title_legend_synchronizing">Synchronizing</string>
<string name="title_legend_synchronizing">Synchronizowanie</string>
<string name="title_legend_closing">Zamykanie</string>
<string name="title_hint_swipe">Przesuń w lewo do kosza i przesuń w prawo do archiwum (jeśli dostępne)</string>
<string name="title_hint_actions">Swipe left to trash; swipe right to archive (if available); long press to mark read/unread</string>
<string name="title_understood">Rozumiem</string>
<string name="title_pro_feature">Jest to funkcja pro</string>
<string name="title_pro_list">List funkcji pro</string>

@ -76,7 +76,7 @@
<string name="title_authorize">Select account</string>
<string name="title_instructions">Instructions</string>
<string name="title_store_sent">Store sent messages (enable if needed only)</string>
<string name="title_interval">Poll/keep-alive interval (minutes)</string>
<string name="title_interval">Keep-alive interval (minutes)</string>
<string name="title_synchronize_account">Sincronizar (receber mensagens)</string>
<string name="title_synchronize_identity">Sincronizar (enviar mensagens)</string>
<string name="title_primary_account">Primary (default account)</string>
@ -165,7 +165,7 @@
<string name="title_legend_connected">Connected</string>
<string name="title_legend_synchronizing">Synchronizing</string>
<string name="title_legend_closing">Closing</string>
<string name="title_hint_swipe">Swipe left to trash and swipe right to archive (if available)</string>
<string name="title_hint_actions">Swipe left to trash; swipe right to archive (if available); long press to mark read/unread</string>
<string name="title_understood">Understood</string>
<string name="title_pro_feature">This is a pro feature</string>
<string name="title_pro_list">List of pro features</string>

@ -76,7 +76,7 @@
<string name="title_authorize">Select account</string>
<string name="title_instructions">Instructions</string>
<string name="title_store_sent">Store sent messages (enable if needed only)</string>
<string name="title_interval">Poll/keep-alive interval (minutes)</string>
<string name="title_interval">Keep-alive interval (minutes)</string>
<string name="title_synchronize_account">Synchronize (receive messages)</string>
<string name="title_synchronize_identity">Synchronize (send messages)</string>
<string name="title_primary_account">Primary (default account)</string>
@ -165,7 +165,7 @@
<string name="title_legend_connected">Connected</string>
<string name="title_legend_synchronizing">Synchronizing</string>
<string name="title_legend_closing">Closing</string>
<string name="title_hint_swipe">Swipe left to trash and swipe right to archive (if available)</string>
<string name="title_hint_actions">Swipe left to trash; swipe right to archive (if available); long press to mark read/unread</string>
<string name="title_understood">Understood</string>
<string name="title_pro_feature">This is a pro feature</string>
<string name="title_pro_list">List of pro features</string>

@ -58,7 +58,7 @@
<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_sanitize">Înlătură formatarea HTML din mesaje</string>
<string name="title_advanced_compress_imap">Compress IMAP data</string>
<string name="title_advanced_compress_imap">Comprimă datele IMAP</string>
<string name="title_advanced_debug">Depanare</string>
<string name="title_select">Selectaţi &#8230;</string>
<string name="title_identity_name">Numele dumneavoastră</string>
@ -80,7 +80,7 @@
<string name="title_authorize">Selectare cont</string>
<string name="title_instructions">Instrucțiuni</string>
<string name="title_store_sent">Stochează mesajele trimise (activați doar la nevoie)</string>
<string name="title_interval">Interval sincronizare (minute)</string>
<string name="title_interval">Keep-alive interval (minutes)</string>
<string name="title_synchronize_account">Sincronizare (primire mesaje)</string>
<string name="title_synchronize_identity">Sincronizare (trimitere mesaje)</string>
<string name="title_primary_account">Primară (identitatea implicită)</string>
@ -127,7 +127,7 @@
<string name="title_move">Mută</string>
<string name="title_archive">Arhivă</string>
<string name="title_reply">Răspunde</string>
<string name="title_moving">Moving message to %1$s</string>
<string name="title_moving">Mesajul se mută în %1$s</string>
<string name="title_no_viewer">Nici o aplicație nu poate deschide %1$s</string>
<string name="title_attachment_saved">Atașament salvat</string>
<string name="title_ask_delete">Ștergeți definitiv mesajul?</string>
@ -145,7 +145,7 @@
<string name="title_show_addresses">Arată CC/BCC</string>
<string name="title_add_attachment">Adaugă ataşament</string>
<string name="title_no_openpgp">OpenPGP nu este disponibil</string>
<string name="title_not_encrypted">Encrypted message not found</string>
<string name="title_not_encrypted">Mesajul criptat nu a fost găsit</string>
<string name="title_encrypt">Criptare</string>
<string name="title_decrypt">Decriptare</string>
<string name="title_from_missing">Expeditor lipsă</string>
@ -167,10 +167,10 @@
<string name="title_legend_disconnected">Deconectat</string>
<string name="title_legend_connecting">Conectare</string>
<string name="title_legend_connected">Conectat</string>
<string name="title_legend_synchronizing">Synchronizing</string>
<string name="title_legend_synchronizing">Sincronizare</string>
<string name="title_legend_closing">Închidere</string>
<string name="title_hint_swipe">Swipe left to trash and swipe right to archive (if available)</string>
<string name="title_understood">Understood</string>
<string name="title_hint_actions">Swipe left to trash; swipe right to archive (if available); long press to mark read/unread</string>
<string name="title_understood">Am înțeles</string>
<string name="title_pro_feature">Aceasta este o caracteristică Pro</string>
<string name="title_pro_list">Lista de caracteristici Pro</string>
<string name="title_pro_purchase">Cumpără</string>

@ -84,7 +84,7 @@
<string name="title_authorize">Select account</string>
<string name="title_instructions">Instructions</string>
<string name="title_store_sent">Store sent messages (enable if needed only)</string>
<string name="title_interval">Poll/keep-alive interval (minutes)</string>
<string name="title_interval">Keep-alive interval (minutes)</string>
<string name="title_synchronize_account">Synchronize (receive messages)</string>
<string name="title_synchronize_identity">Synchronize (send messages)</string>
<string name="title_primary_account">Primary (default account)</string>
@ -173,7 +173,7 @@
<string name="title_legend_connected">Connected</string>
<string name="title_legend_synchronizing">Synchronizing</string>
<string name="title_legend_closing">Closing</string>
<string name="title_hint_swipe">Swipe left to trash and swipe right to archive (if available)</string>
<string name="title_hint_actions">Swipe left to trash; swipe right to archive (if available); long press to mark read/unread</string>
<string name="title_understood">Understood</string>
<string name="title_pro_feature">This is a pro feature</string>
<string name="title_pro_list">List of pro features</string>

@ -80,7 +80,7 @@
<string name="title_authorize">Select account</string>
<string name="title_instructions">Instructions</string>
<string name="title_store_sent">Store sent messages (enable if needed only)</string>
<string name="title_interval">Poll/keep-alive interval (minutes)</string>
<string name="title_interval">Keep-alive interval (minutes)</string>
<string name="title_synchronize_account">Synchronize (receive messages)</string>
<string name="title_synchronize_identity">Synchronize (send messages)</string>
<string name="title_primary_account">Primary (default account)</string>
@ -169,7 +169,7 @@
<string name="title_legend_connected">Connected</string>
<string name="title_legend_synchronizing">Synchronizing</string>
<string name="title_legend_closing">Closing</string>
<string name="title_hint_swipe">Swipe left to trash and swipe right to archive (if available)</string>
<string name="title_hint_actions">Swipe left to trash; swipe right to archive (if available); long press to mark read/unread</string>
<string name="title_understood">Understood</string>
<string name="title_pro_feature">This is a pro feature</string>
<string name="title_pro_list">List of pro features</string>

@ -76,7 +76,7 @@
<string name="title_authorize">Select account</string>
<string name="title_instructions">Instructions</string>
<string name="title_store_sent">Store sent messages (enable if needed only)</string>
<string name="title_interval">Poll/keep-alive interval (minutes)</string>
<string name="title_interval">Keep-alive interval (minutes)</string>
<string name="title_synchronize_account">Synchronize (receive messages)</string>
<string name="title_synchronize_identity">Synchronize (send messages)</string>
<string name="title_primary_account">Primary (default account)</string>
@ -165,7 +165,7 @@
<string name="title_legend_connected">Connected</string>
<string name="title_legend_synchronizing">Synchronizing</string>
<string name="title_legend_closing">Closing</string>
<string name="title_hint_swipe">Swipe left to trash and swipe right to archive (if available)</string>
<string name="title_hint_actions">Swipe left to trash; swipe right to archive (if available); long press to mark read/unread</string>
<string name="title_understood">Understood</string>
<string name="title_pro_feature">This is a pro feature</string>
<string name="title_pro_list">List of pro features</string>

@ -76,7 +76,7 @@
<string name="title_authorize">Select account</string>
<string name="title_instructions">Instructions</string>
<string name="title_store_sent">Store sent messages (enable if needed only)</string>
<string name="title_interval">Poll/keep-alive interval (minutes)</string>
<string name="title_interval">Keep-alive interval (minutes)</string>
<string name="title_synchronize_account">Synchronize (receive messages)</string>
<string name="title_synchronize_identity">Synchronize (send messages)</string>
<string name="title_primary_account">Primary (default account)</string>
@ -165,7 +165,7 @@
<string name="title_legend_connected">Connected</string>
<string name="title_legend_synchronizing">Synchronizing</string>
<string name="title_legend_closing">Closing</string>
<string name="title_hint_swipe">Swipe left to trash and swipe right to archive (if available)</string>
<string name="title_hint_actions">Swipe left to trash; swipe right to archive (if available); long press to mark read/unread</string>
<string name="title_understood">Understood</string>
<string name="title_pro_feature">This is a pro feature</string>
<string name="title_pro_list">List of pro features</string>

@ -84,7 +84,7 @@
<string name="title_authorize">Select account</string>
<string name="title_instructions">Instructions</string>
<string name="title_store_sent">Store sent messages (enable if needed only)</string>
<string name="title_interval">Poll/keep-alive interval (minutes)</string>
<string name="title_interval">Keep-alive interval (minutes)</string>
<string name="title_synchronize_account">Synchronize (receive messages)</string>
<string name="title_synchronize_identity">Synchronize (send messages)</string>
<string name="title_primary_account">Primary (default account)</string>
@ -173,7 +173,7 @@
<string name="title_legend_connected">Connected</string>
<string name="title_legend_synchronizing">Synchronizing</string>
<string name="title_legend_closing">Closing</string>
<string name="title_hint_swipe">Swipe left to trash and swipe right to archive (if available)</string>
<string name="title_hint_actions">Swipe left to trash; swipe right to archive (if available); long press to mark read/unread</string>
<string name="title_understood">Understood</string>
<string name="title_pro_feature">This is a pro feature</string>
<string name="title_pro_list">List of pro features</string>

@ -72,7 +72,7 @@
<string name="title_authorize">Select account</string>
<string name="title_instructions">Instructions</string>
<string name="title_store_sent">Store sent messages (enable if needed only)</string>
<string name="title_interval">Poll/keep-alive interval (minutes)</string>
<string name="title_interval">Keep-alive interval (minutes)</string>
<string name="title_synchronize_account">Synchronize (receive messages)</string>
<string name="title_synchronize_identity">Synchronize (send messages)</string>
<string name="title_primary_account">Primary (default account)</string>
@ -161,7 +161,7 @@
<string name="title_legend_connected">Connected</string>
<string name="title_legend_synchronizing">Synchronizing</string>
<string name="title_legend_closing">Closing</string>
<string name="title_hint_swipe">Swipe left to trash and swipe right to archive (if available)</string>
<string name="title_hint_actions">Swipe left to trash; swipe right to archive (if available); long press to mark read/unread</string>
<string name="title_understood">Understood</string>
<string name="title_pro_feature">This is a pro feature</string>
<string name="title_pro_list">List of pro features</string>

@ -72,7 +72,7 @@
<string name="title_authorize">Select account</string>
<string name="title_instructions">Instructions</string>
<string name="title_store_sent">Store sent messages (enable if needed only)</string>
<string name="title_interval">Poll/keep-alive interval (minutes)</string>
<string name="title_interval">Keep-alive interval (minutes)</string>
<string name="title_synchronize_account">Synchronize (receive messages)</string>
<string name="title_synchronize_identity">Synchronize (send messages)</string>
<string name="title_primary_account">Primary (default account)</string>
@ -161,7 +161,7 @@
<string name="title_legend_connected">Connected</string>
<string name="title_legend_synchronizing">Synchronizing</string>
<string name="title_legend_closing">Closing</string>
<string name="title_hint_swipe">Swipe left to trash and swipe right to archive (if available)</string>
<string name="title_hint_actions">Swipe left to trash; swipe right to archive (if available); long press to mark read/unread</string>
<string name="title_understood">Understood</string>
<string name="title_pro_feature">This is a pro feature</string>
<string name="title_pro_list">List of pro features</string>

@ -72,7 +72,7 @@
<string name="title_authorize">Select account</string>
<string name="title_instructions">Instructions</string>
<string name="title_store_sent">Store sent messages (enable if needed only)</string>
<string name="title_interval">Poll/keep-alive interval (minutes)</string>
<string name="title_interval">Keep-alive interval (minutes)</string>
<string name="title_synchronize_account">Synchronize (receive messages)</string>
<string name="title_synchronize_identity">Synchronize (send messages)</string>
<string name="title_primary_account">Primary (default account)</string>
@ -161,7 +161,7 @@
<string name="title_legend_connected">Connected</string>
<string name="title_legend_synchronizing">Synchronizing</string>
<string name="title_legend_closing">Closing</string>
<string name="title_hint_swipe">Swipe left to trash and swipe right to archive (if available)</string>
<string name="title_hint_actions">Swipe left to trash; swipe right to archive (if available); long press to mark read/unread</string>
<string name="title_understood">Understood</string>
<string name="title_pro_feature">This is a pro feature</string>
<string name="title_pro_list">List of pro features</string>

@ -196,7 +196,7 @@
<string name="title_legend_synchronizing">Synchronizing</string>
<string name="title_legend_closing">Closing</string>
<string name="title_hint_swipe">Swipe left to trash and swipe right to archive (if available)</string>
<string name="title_hint_actions">Swipe left to trash; swipe right to archive (if available); long press to mark read/unread</string>
<string name="title_understood">Understood</string>
<string name="title_pro_feature">This is a pro feature</string>

Loading…
Cancel
Save