From 45657d026e5d9867ff165f7a6a5b37263086723c Mon Sep 17 00:00:00 2001 From: M66B Date: Sun, 11 Nov 2018 13:31:43 +0000 Subject: [PATCH] Added compose account spinner --- .../eu/faircode/email/FragmentCompose.java | 214 +++++++++++++----- app/src/main/res/layout/fragment_compose.xml | 17 +- app/src/main/res/layout/spinner_item1.xml | 17 ++ app/src/main/res/layout/spinner_item2.xml | 4 +- app/src/main/res/values-af/strings.xml | 5 +- app/src/main/res/values-ar-rBH/strings.xml | 5 +- app/src/main/res/values-ar-rEG/strings.xml | 5 +- app/src/main/res/values-ar-rSA/strings.xml | 5 +- app/src/main/res/values-ar-rYE/strings.xml | 5 +- app/src/main/res/values-ar/strings.xml | 5 +- app/src/main/res/values-az/strings.xml | 5 +- app/src/main/res/values-ca/strings.xml | 5 +- app/src/main/res/values-cs/strings.xml | 5 +- app/src/main/res/values-da/strings.xml | 5 +- app/src/main/res/values-de/strings.xml | 3 +- app/src/main/res/values-el/strings.xml | 5 +- app/src/main/res/values-en/strings.xml | 5 +- app/src/main/res/values-es-rES/strings.xml | 5 +- app/src/main/res/values-fa/strings.xml | 5 +- app/src/main/res/values-fi/strings.xml | 5 +- app/src/main/res/values-fr/strings.xml | 3 +- app/src/main/res/values-he/strings.xml | 5 +- app/src/main/res/values-hu/strings.xml | 5 +- app/src/main/res/values-it/strings.xml | 5 +- app/src/main/res/values-iw/strings.xml | 5 +- app/src/main/res/values-ja/strings.xml | 5 +- app/src/main/res/values-ko/strings.xml | 5 +- app/src/main/res/values-nb/strings.xml | 5 +- app/src/main/res/values-nl/strings.xml | 3 +- app/src/main/res/values-no/strings.xml | 5 +- app/src/main/res/values-pl/strings.xml | 5 +- app/src/main/res/values-pt-rBR/strings.xml | 5 +- app/src/main/res/values-pt-rPT/strings.xml | 5 +- app/src/main/res/values-ro/strings.xml | 5 +- app/src/main/res/values-ru/strings.xml | 5 +- app/src/main/res/values-sr/strings.xml | 5 +- app/src/main/res/values-sv-rSE/strings.xml | 5 +- app/src/main/res/values-tr/strings.xml | 5 +- app/src/main/res/values-uk/strings.xml | 5 +- app/src/main/res/values-vi/strings.xml | 5 +- app/src/main/res/values-zh-rCN/strings.xml | 5 +- app/src/main/res/values-zh-rTW/strings.xml | 5 +- app/src/main/res/values/strings.xml | 2 +- 43 files changed, 302 insertions(+), 136 deletions(-) create mode 100644 app/src/main/res/layout/spinner_item1.xml diff --git a/app/src/main/java/eu/faircode/email/FragmentCompose.java b/app/src/main/java/eu/faircode/email/FragmentCompose.java index 9c82680a78..bca5b622d5 100644 --- a/app/src/main/java/eu/faircode/email/FragmentCompose.java +++ b/app/src/main/java/eu/faircode/email/FragmentCompose.java @@ -110,7 +110,8 @@ import static android.app.Activity.RESULT_OK; public class FragmentCompose extends FragmentEx { private ViewGroup view; - private Spinner spFrom; + private Spinner spAccount; + private Spinner spIdentity; private ImageView ivIdentityAdd; private TextView tvExtraPrefix; private EditText etExtra; @@ -145,7 +146,8 @@ public class FragmentCompose extends FragmentEx { view = (ViewGroup) inflater.inflate(R.layout.fragment_compose, container, false); // Get controls - spFrom = view.findViewById(R.id.spFrom); + spAccount = view.findViewById(R.id.spAccount); + spIdentity = view.findViewById(R.id.spIdentity); ivIdentityAdd = view.findViewById(R.id.ivIdentityAdd); tvExtraPrefix = view.findViewById(R.id.tvExtraPrefix); etExtra = view.findViewById(R.id.etExtra); @@ -168,7 +170,7 @@ public class FragmentCompose extends FragmentEx { grpAttachments = view.findViewById(R.id.grpAttachments); // Wire controls - spFrom.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() { + spIdentity.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() { @Override public void onItemSelected(AdapterView parent, View view, int position, long id) { EntityIdentity identity = (EntityIdentity) parent.getAdapter().getItem(position); @@ -272,6 +274,7 @@ public class FragmentCompose extends FragmentEx { setHasOptionsMenu(true); // Initialize + setSubtitle(R.string.title_compose); tvExtraPrefix.setText(null); tvExtraSuffix.setText(null); @@ -285,7 +288,6 @@ public class FragmentCompose extends FragmentEx { pbWait.setVisibility(View.VISIBLE); getActivity().invalidateOptionsMenu(); - spFrom.setEnabled(false); Helper.setViewsEnabled(view, false); if (ContextCompat.checkSelfPermission(getContext(), Manifest.permission.READ_CONTACTS) @@ -881,11 +883,12 @@ public class FragmentCompose extends FragmentEx { Helper.setViewsEnabled(view, false); getActivity().invalidateOptionsMenu(); - EntityIdentity identity = (EntityIdentity) spFrom.getSelectedItem(); + EntityIdentity identity = (EntityIdentity) spIdentity.getSelectedItem(); Bundle args = new Bundle(); args.putLong("id", working); args.putInt("action", action); + args.putLong("account", identity == null ? -1 : identity.account); args.putLong("identity", identity == null ? -1 : identity.id); args.putString("extra", etExtra.getText().toString()); args.putString("to", etTo.getText().toString()); @@ -998,7 +1001,6 @@ public class FragmentCompose extends FragmentEx { } private SimpleTask draftLoader = new SimpleTask() { - @Override protected DraftAccount onLoad(Context context, Bundle args) throws IOException { String action = args.getString("action"); @@ -1249,8 +1251,6 @@ public class FragmentCompose extends FragmentEx { final String action = getArguments().getString("action"); Log.i(Helper.TAG, "Loaded draft id=" + result.draft.id + " action=" + action); - setSubtitle(getString(R.string.title_compose, result.account.name)); - etExtra.setText(result.draft.extra); etTo.setText(MessageHelper.getFormattedAddresses(result.draft.to, true)); etCc.setText(MessageHelper.getFormattedAddresses(result.draft.cc, true)); @@ -1297,64 +1297,107 @@ public class FragmentCompose extends FragmentEx { edit_bar.setVisibility(View.VISIBLE); bottom_navigation.setVisibility(View.VISIBLE); - DB db = DB.getInstance(getContext()); + final DB db = DB.getInstance(getContext()); - db.identity().liveIdentities(result.draft.account, true).removeObservers(getViewLifecycleOwner()); - db.identity().liveIdentities(result.draft.account, true).observe(getViewLifecycleOwner(), new Observer>() { + db.account().liveAccounts(true).removeObservers(getViewLifecycleOwner()); + db.account().liveAccounts(true).observe(getViewLifecycleOwner(), new Observer>() { @Override - public void onChanged(@Nullable List identities) { - if (identities == null) - identities = new ArrayList<>(); + public void onChanged(List accounts) { + if (accounts == null) + accounts = new ArrayList<>(); - Log.i(Helper.TAG, "Set identities=" + identities.size()); + Log.i(Helper.TAG, "Set accounts=" + accounts.size()); - // Sort identities - Collections.sort(identities, new Comparator() { + // Sort accounts + Collections.sort(accounts, new Comparator() { @Override - public int compare(EntityIdentity i1, EntityIdentity i2) { - return i1.name.compareTo(i2.name); + public int compare(EntityAccount a1, EntityAccount a2) { + return a1.name.compareTo(a2.name); } }); - // Show identities - IdentityAdapter adapter = new IdentityAdapter(getContext(), identities); + // Show accounts + AccountAdapter adapter = new AccountAdapter(getContext(), accounts); adapter.setDropDownViewResource(R.layout.spinner_dropdown_item); - spFrom.setAdapter(adapter); + spAccount.setAdapter(adapter); - boolean found = false; - - // Select earlier selected identity - if (result.draft.identity != null) - for (int pos = 0; pos < identities.size(); pos++) { - if (identities.get(pos).id.equals(result.draft.identity)) { - spFrom.setSelection(pos); - found = true; - break; - } + spAccount.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() { + @Override + public void onItemSelected(AdapterView parent, View view, int position, long id) { + EntityAccount account = (EntityAccount) parent.getAdapter().getItem(position); + + db.identity().liveIdentities(account.id, true).removeObservers(getViewLifecycleOwner()); + db.identity().liveIdentities(account.id, true).observe(getViewLifecycleOwner(), new Observer>() { + @Override + public void onChanged(@Nullable List identities) { + if (identities == null) + identities = new ArrayList<>(); + + Log.i(Helper.TAG, "Set identities=" + identities.size()); + + // Sort identities + Collections.sort(identities, new Comparator() { + @Override + public int compare(EntityIdentity i1, EntityIdentity i2) { + return i1.name.compareTo(i2.name); + } + }); + + // Show identities + IdentityAdapter adapter = new IdentityAdapter(getContext(), identities); + adapter.setDropDownViewResource(R.layout.spinner_dropdown_item); + spIdentity.setAdapter(adapter); + + boolean found = false; + + // Select earlier selected identity + if (result.draft.identity != null) + for (int pos = 0; pos < identities.size(); pos++) { + if (identities.get(pos).id.equals(result.draft.identity)) { + spIdentity.setSelection(pos); + found = true; + break; + } + } + + // Select identity matching from address + if (!found && result.draft.from != null && result.draft.from.length > 0) { + String from = Helper.canonicalAddress(((InternetAddress) result.draft.from[0]).getAddress()); + for (int pos = 0; pos < identities.size(); pos++) { + String email = Helper.canonicalAddress(identities.get(pos).email); + if (email.equals(from)) { + spIdentity.setSelection(pos); + found = true; + break; + } + } + } + + // Select primary identity + if (!found) + for (int pos = 0; pos < identities.size(); pos++) + if (identities.get(pos).primary) { + spIdentity.setSelection(pos); + break; + } + } + }); } - // Select identity matching from address - if (!found && result.draft.from != null && result.draft.from.length > 0) { - String from = Helper.canonicalAddress(((InternetAddress) result.draft.from[0]).getAddress()); - for (int pos = 0; pos < identities.size(); pos++) { - String email = Helper.canonicalAddress(identities.get(pos).email); - if (email.equals(from)) { - spFrom.setSelection(pos); - found = true; - break; - } + @Override + public void onNothingSelected(AdapterView parent) { + IdentityAdapter adapter = new IdentityAdapter(getContext(), new ArrayList()); + adapter.setDropDownViewResource(R.layout.spinner_dropdown_item); + spIdentity.setAdapter(adapter); } - } - - // Select primary identity - if (!found) - for (int pos = 0; pos < identities.size(); pos++) - if (identities.get(pos).primary) { - spFrom.setSelection(pos); - break; - } + }); - spFrom.setEnabled(true); + // Select account + for (int pos = 0; pos < accounts.size(); pos++) + if (accounts.get(pos).id == result.draft.account) { + spAccount.setSelection(pos); + break; + } } }); @@ -1394,6 +1437,7 @@ public class FragmentCompose extends FragmentEx { // Get data long id = args.getLong("id"); int action = args.getInt("action"); + long aid = args.getLong("account"); long iid = args.getLong("identity"); String extra = args.getString("extra"); String to = args.getString("to"); @@ -1418,6 +1462,31 @@ public class FragmentCompose extends FragmentEx { Log.i(Helper.TAG, "Load action id=" + draft.id + " action=" + action); + // Move draft to new account + if (draft.account != aid) { + long uid = draft.uid; + String msgid = draft.msgid; + + draft.uid = null; + draft.msgid = null; + db.message().updateMessage(draft); + + draft.id = null; + draft.uid = uid; + draft.msgid = msgid; + draft.content = false; + draft.ui_hide = true; + draft.id = db.message().insertMessage(draft); + EntityOperation.queue(db, draft, EntityOperation.DELETE); + + draft.id = id; + draft.account = aid; + draft.folder = db.folder().getFolderByType(aid, EntityFolder.DRAFTS).id; + draft.content = true; + draft.ui_hide = false; + EntityOperation.queue(db, draft, EntityOperation.ADD); + } + // Convert data InternetAddress afrom[] = (identity == null ? null : new InternetAddress[]{new InternetAddress(identity.email, identity.name)}); InternetAddress ato[] = (TextUtils.isEmpty(to) ? null : InternetAddress.parse(to)); @@ -1593,6 +1662,39 @@ public class FragmentCompose extends FragmentEx { EntityAccount account; } + public class AccountAdapter extends ArrayAdapter { + private Context context; + private List accounts; + + AccountAdapter(@NonNull Context context, List accounts) { + super(context, 0, accounts); + this.context = context; + this.accounts = accounts; + } + + @NonNull + @Override + public View getView(int position, @Nullable View convertView, @NonNull ViewGroup parent) { + return getLayout(position, convertView, parent); + } + + @Override + public View getDropDownView(int position, View convertView, ViewGroup parent) { + return getLayout(position, convertView, parent); + } + + View getLayout(int position, View convertView, ViewGroup parent) { + View view = LayoutInflater.from(context).inflate(R.layout.spinner_item1, parent, false); + + EntityAccount account = accounts.get(position); + + TextView text1 = view.findViewById(android.R.id.text1); + text1.setText(account.name); + + return view; + } + } + public class IdentityAdapter extends ArrayAdapter { private Context context; private List identities; @@ -1619,11 +1721,11 @@ public class FragmentCompose extends FragmentEx { EntityIdentity identity = identities.get(position); - TextView name = view.findViewById(android.R.id.text1); - name.setText(identity.name); + TextView text1 = view.findViewById(android.R.id.text1); + text1.setText(identity.name); - TextView email = view.findViewById(android.R.id.text2); - email.setText(identity.email); + TextView text2 = view.findViewById(android.R.id.text2); + text2.setText(identity.email); return view; } diff --git a/app/src/main/res/layout/fragment_compose.xml b/app/src/main/res/layout/fragment_compose.xml index 83eaeaa664..eb0047da69 100644 --- a/app/src/main/res/layout/fragment_compose.xml +++ b/app/src/main/res/layout/fragment_compose.xml @@ -16,7 +16,7 @@ android:layout_height="wrap_content"> + + + app:layout_constraintTop_toTopOf="@id/spIdentity" /> + app:layout_constraintTop_toBottomOf="@id/spIdentity" /> + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/spinner_item2.xml b/app/src/main/res/layout/spinner_item2.xml index a8c64cdbda..ec5062ecaa 100644 --- a/app/src/main/res/layout/spinner_item2.xml +++ b/app/src/main/res/layout/spinner_item2.xml @@ -3,8 +3,8 @@ xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="?android:attr/listPreferredItemHeightSmall" - android:paddingEnd="?android:attr/listPreferredItemPaddingEnd" - android:paddingStart="?android:attr/listPreferredItemPaddingStart"> + android:paddingStart="?android:attr/listPreferredItemPaddingStart" + android:paddingEnd="?android:attr/listPreferredItemPaddingEnd"> Delete reply template permanently? Discard draft? Report message as spam? + Showing the original message can leak privacy sensitive information Fix - Compose %1$s + Compose From: To: Reply to: @@ -266,7 +267,7 @@ If you have a question or a problem, please use the support menu to get help Swipe left to trash; swipe right to archive (if available) Long press a message to start selecting multiple messages - Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might be responding slower. + Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might respond slower. Open link There is an update to version %1$s available Do you have a question or problem? diff --git a/app/src/main/res/values-ar-rBH/strings.xml b/app/src/main/res/values-ar-rBH/strings.xml index 4cd5772c4f..6142996eb9 100644 --- a/app/src/main/res/values-ar-rBH/strings.xml +++ b/app/src/main/res/values-ar-rBH/strings.xml @@ -214,8 +214,9 @@ Delete reply template permanently? Discard draft? رسالة التقرير كالبريد المزعج؟ + Showing the original message can leak privacy sensitive information Fix - Compose %1$s + Compose من: إلى: الرد على: @@ -286,7 +287,7 @@ If you have a question or a problem, please use the support menu to get help Swipe left to trash; swipe right to archive (if available) Long press a message to start selecting multiple messages - Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might be responding slower. + Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might respond slower. Open link There is an update to version %1$s available Do you have a question or problem? diff --git a/app/src/main/res/values-ar-rEG/strings.xml b/app/src/main/res/values-ar-rEG/strings.xml index 4cd5772c4f..6142996eb9 100644 --- a/app/src/main/res/values-ar-rEG/strings.xml +++ b/app/src/main/res/values-ar-rEG/strings.xml @@ -214,8 +214,9 @@ Delete reply template permanently? Discard draft? رسالة التقرير كالبريد المزعج؟ + Showing the original message can leak privacy sensitive information Fix - Compose %1$s + Compose من: إلى: الرد على: @@ -286,7 +287,7 @@ If you have a question or a problem, please use the support menu to get help Swipe left to trash; swipe right to archive (if available) Long press a message to start selecting multiple messages - Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might be responding slower. + Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might respond slower. Open link There is an update to version %1$s available Do you have a question or problem? diff --git a/app/src/main/res/values-ar-rSA/strings.xml b/app/src/main/res/values-ar-rSA/strings.xml index 4cd5772c4f..6142996eb9 100644 --- a/app/src/main/res/values-ar-rSA/strings.xml +++ b/app/src/main/res/values-ar-rSA/strings.xml @@ -214,8 +214,9 @@ Delete reply template permanently? Discard draft? رسالة التقرير كالبريد المزعج؟ + Showing the original message can leak privacy sensitive information Fix - Compose %1$s + Compose من: إلى: الرد على: @@ -286,7 +287,7 @@ If you have a question or a problem, please use the support menu to get help Swipe left to trash; swipe right to archive (if available) Long press a message to start selecting multiple messages - Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might be responding slower. + Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might respond slower. Open link There is an update to version %1$s available Do you have a question or problem? diff --git a/app/src/main/res/values-ar-rYE/strings.xml b/app/src/main/res/values-ar-rYE/strings.xml index 4cd5772c4f..6142996eb9 100644 --- a/app/src/main/res/values-ar-rYE/strings.xml +++ b/app/src/main/res/values-ar-rYE/strings.xml @@ -214,8 +214,9 @@ Delete reply template permanently? Discard draft? رسالة التقرير كالبريد المزعج؟ + Showing the original message can leak privacy sensitive information Fix - Compose %1$s + Compose من: إلى: الرد على: @@ -286,7 +287,7 @@ If you have a question or a problem, please use the support menu to get help Swipe left to trash; swipe right to archive (if available) Long press a message to start selecting multiple messages - Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might be responding slower. + Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might respond slower. Open link There is an update to version %1$s available Do you have a question or problem? diff --git a/app/src/main/res/values-ar/strings.xml b/app/src/main/res/values-ar/strings.xml index 4cd5772c4f..6142996eb9 100644 --- a/app/src/main/res/values-ar/strings.xml +++ b/app/src/main/res/values-ar/strings.xml @@ -214,8 +214,9 @@ Delete reply template permanently? Discard draft? رسالة التقرير كالبريد المزعج؟ + Showing the original message can leak privacy sensitive information Fix - Compose %1$s + Compose من: إلى: الرد على: @@ -286,7 +287,7 @@ If you have a question or a problem, please use the support menu to get help Swipe left to trash; swipe right to archive (if available) Long press a message to start selecting multiple messages - Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might be responding slower. + Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might respond slower. Open link There is an update to version %1$s available Do you have a question or problem? diff --git a/app/src/main/res/values-az/strings.xml b/app/src/main/res/values-az/strings.xml index 2227331aa6..af14362643 100644 --- a/app/src/main/res/values-az/strings.xml +++ b/app/src/main/res/values-az/strings.xml @@ -194,8 +194,9 @@ Delete reply template permanently? Qaralama silinsin? Mesajı spam kimi bildirilsin? + Showing the original message can leak privacy sensitive information Düzəlt - Yaz %1$s + Compose Göndərən: Alıcı: Cavabla: @@ -266,7 +267,7 @@ Sualınız və ya probleminiz varsa, zəhmət olmasa kömək almaq üçün dəstək menyusundan faydalanın Tullantı üçün sola; arxiv üçün sağa sürüşdür (əgər varsa) Bir neçə mesajı seçməyə başlamaq üçün bir mesaja uzun basın - Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might be responding slower. + Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might respond slower. Bağlantını aç %1$s versiyası üçün yeniləmə mövcuddur Sualınız və ya probleminiz var? diff --git a/app/src/main/res/values-ca/strings.xml b/app/src/main/res/values-ca/strings.xml index a29ec77b14..1beea2e264 100644 --- a/app/src/main/res/values-ca/strings.xml +++ b/app/src/main/res/values-ca/strings.xml @@ -194,8 +194,9 @@ Delete reply template permanently? Voleu rebutjar l\'esborrany? Qualificar el missatge com correu brossa? + Showing the original message can leak privacy sensitive information Fix - Compose %1$s + Compose De: A: Respondre a: @@ -266,7 +267,7 @@ Si tens algun problema o pregunta, per favor utilitza el menú d\'ajuda per obtenir assistència Llisca cap a l\'esquerra per enviar a la paperera; o bé cap a la dreta per arxivar (si és possible) Long press a message to start selecting multiple messages - Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might be responding slower. + Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might respond slower. Obrir l\'enllaç Hi ha disponible una actualització a la versió %1$s Tens alguna pregunta o problema? diff --git a/app/src/main/res/values-cs/strings.xml b/app/src/main/res/values-cs/strings.xml index 5ce3b7470f..afe10ee397 100644 --- a/app/src/main/res/values-cs/strings.xml +++ b/app/src/main/res/values-cs/strings.xml @@ -204,8 +204,9 @@ Delete reply template permanently? Discard draft? Report message as spam? + Showing the original message can leak privacy sensitive information Fix - Compose %1$s + Compose From: To: Reply to: @@ -276,7 +277,7 @@ If you have a question or a problem, please use the support menu to get help Swipe left to trash; swipe right to archive (if available) Long press a message to start selecting multiple messages - Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might be responding slower. + Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might respond slower. Open link There is an update to version %1$s available Do you have a question or problem? diff --git a/app/src/main/res/values-da/strings.xml b/app/src/main/res/values-da/strings.xml index f688fffb40..f7faaa629f 100644 --- a/app/src/main/res/values-da/strings.xml +++ b/app/src/main/res/values-da/strings.xml @@ -194,8 +194,9 @@ Delete reply template permanently? Discard draft? Rapportér meddelelse som spam? + Showing the original message can leak privacy sensitive information Fix - Compose %1$s + Compose Fra: Til: Svar til: @@ -266,7 +267,7 @@ If you have a question or a problem, please use the support menu to get help Swipe left to trash; swipe right to archive (if available) Long press a message to start selecting multiple messages - Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might be responding slower. + Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might respond slower. Open link There is an update to version %1$s available Do you have a question or problem? diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml index 501dc25b20..e13a7ab3a8 100644 --- a/app/src/main/res/values-de/strings.xml +++ b/app/src/main/res/values-de/strings.xml @@ -194,8 +194,9 @@ Antwortvorlage unwiderruflich löschen? Entwurf verwerfen? Nachricht als Spam melden? + Showing the original message can leak privacy sensitive information Problem beheben - Erstelle %1$s + Compose Von: An: Antworten an: diff --git a/app/src/main/res/values-el/strings.xml b/app/src/main/res/values-el/strings.xml index 36c36a93e1..cf57b07f70 100644 --- a/app/src/main/res/values-el/strings.xml +++ b/app/src/main/res/values-el/strings.xml @@ -194,8 +194,9 @@ Delete reply template permanently? Discard draft? Report message as spam? + Showing the original message can leak privacy sensitive information Fix - Compose %1$s + Compose From: To: Reply to: @@ -266,7 +267,7 @@ If you have a question or a problem, please use the support menu to get help Swipe left to trash; swipe right to archive (if available) Long press a message to start selecting multiple messages - Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might be responding slower. + Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might respond slower. Open link There is an update to version %1$s available Do you have a question or problem? diff --git a/app/src/main/res/values-en/strings.xml b/app/src/main/res/values-en/strings.xml index 36c36a93e1..cf57b07f70 100644 --- a/app/src/main/res/values-en/strings.xml +++ b/app/src/main/res/values-en/strings.xml @@ -194,8 +194,9 @@ Delete reply template permanently? Discard draft? Report message as spam? + Showing the original message can leak privacy sensitive information Fix - Compose %1$s + Compose From: To: Reply to: @@ -266,7 +267,7 @@ If you have a question or a problem, please use the support menu to get help Swipe left to trash; swipe right to archive (if available) Long press a message to start selecting multiple messages - Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might be responding slower. + Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might respond slower. Open link There is an update to version %1$s available Do you have a question or problem? diff --git a/app/src/main/res/values-es-rES/strings.xml b/app/src/main/res/values-es-rES/strings.xml index 2b42fd9be0..556662d755 100644 --- a/app/src/main/res/values-es-rES/strings.xml +++ b/app/src/main/res/values-es-rES/strings.xml @@ -194,8 +194,9 @@ ¿Eliminar plantilla de respuesta permanentemente? ¿Descartar el borrador? ¿Reportar mensaje como spam? + Showing the original message can leak privacy sensitive information Reparar - Redactar %1$s + Compose De: A: Responder a: @@ -266,7 +267,7 @@ Si tiene una pregunta o problema, por favor use el menú de Preguntas Frecuentes para obtener ayuda Deslice a la izquierda para eliminar; deslice a la derecha para archivar (si está disponible) Mantenga presionado un mensaje para empezar a seleccionar múltiples mensajes - Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might be responding slower. + Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might respond slower. Abrir enlace Hay una actualización a la version %1$s disponible ¿Tiene una pregunta o problema? diff --git a/app/src/main/res/values-fa/strings.xml b/app/src/main/res/values-fa/strings.xml index 8266eea86f..8aa22ded15 100644 --- a/app/src/main/res/values-fa/strings.xml +++ b/app/src/main/res/values-fa/strings.xml @@ -194,8 +194,9 @@ Delete reply template permanently? Discard draft? Report message as spam? + Showing the original message can leak privacy sensitive information Fix - Compose %1$s + Compose From: To: Reply to: @@ -266,7 +267,7 @@ If you have a question or a problem, please use the support menu to get help Swipe left to trash; swipe right to archive (if available) Long press a message to start selecting multiple messages - Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might be responding slower. + Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might respond slower. Open link There is an update to version %1$s available Do you have a question or problem? diff --git a/app/src/main/res/values-fi/strings.xml b/app/src/main/res/values-fi/strings.xml index 36c36a93e1..cf57b07f70 100644 --- a/app/src/main/res/values-fi/strings.xml +++ b/app/src/main/res/values-fi/strings.xml @@ -194,8 +194,9 @@ Delete reply template permanently? Discard draft? Report message as spam? + Showing the original message can leak privacy sensitive information Fix - Compose %1$s + Compose From: To: Reply to: @@ -266,7 +267,7 @@ If you have a question or a problem, please use the support menu to get help Swipe left to trash; swipe right to archive (if available) Long press a message to start selecting multiple messages - Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might be responding slower. + Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might respond slower. Open link There is an update to version %1$s available Do you have a question or problem? diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml index 9f9951446c..cdfc977a0d 100644 --- a/app/src/main/res/values-fr/strings.xml +++ b/app/src/main/res/values-fr/strings.xml @@ -194,8 +194,9 @@ Supprimer définitivement le modèle de réponse ? Supprimer le brouillon ? Signaler le message comme spam ? + Showing the original message can leak privacy sensitive information Corriger - Composer %1$s + Compose De : À : Répondre à : diff --git a/app/src/main/res/values-he/strings.xml b/app/src/main/res/values-he/strings.xml index 694af5a3c9..abbed358bb 100644 --- a/app/src/main/res/values-he/strings.xml +++ b/app/src/main/res/values-he/strings.xml @@ -204,8 +204,9 @@ Delete reply template permanently? Discard draft? Report message as spam? + Showing the original message can leak privacy sensitive information Fix - Compose %1$s + Compose From: To: Reply to: @@ -276,7 +277,7 @@ If you have a question or a problem, please use the support menu to get help Swipe left to trash; swipe right to archive (if available) Long press a message to start selecting multiple messages - Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might be responding slower. + Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might respond slower. Open link There is an update to version %1$s available Do you have a question or problem? diff --git a/app/src/main/res/values-hu/strings.xml b/app/src/main/res/values-hu/strings.xml index b445ede8f7..6c5158d39f 100644 --- a/app/src/main/res/values-hu/strings.xml +++ b/app/src/main/res/values-hu/strings.xml @@ -194,8 +194,9 @@ Delete reply template permanently? Discard draft? Report message as spam? + Showing the original message can leak privacy sensitive information Fix - Compose %1$s + Compose From: To: Reply to: @@ -266,7 +267,7 @@ If you have a question or a problem, please use the support menu to get help Swipe left to trash; swipe right to archive (if available) Long press a message to start selecting multiple messages - Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might be responding slower. + Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might respond slower. Open link There is an update to version %1$s available Do you have a question or problem? diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml index c42679d594..5df1e3c920 100644 --- a/app/src/main/res/values-it/strings.xml +++ b/app/src/main/res/values-it/strings.xml @@ -194,8 +194,9 @@ Delete reply template permanently? Eliminare la bozza? Segnalare il messaggio come posta indesiderata? + Showing the original message can leak privacy sensitive information Correggi - Componi %1$s + Compose Da: A: Rispondi a: @@ -266,7 +267,7 @@ Se hai una domanda o un problema, usa il menu di supporto per ottenere aiuto Scorri a sinistra per cestinare; scorri a destra per archiviare (se disponibile) Premi a lungo un messaggio per iniziare a selezionare più messaggi - Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might be responding slower. + Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might respond slower. Apri collegamento È disponibile un aggiornamento alla versione %1$s Hai una domanda o un problema? diff --git a/app/src/main/res/values-iw/strings.xml b/app/src/main/res/values-iw/strings.xml index 694af5a3c9..abbed358bb 100644 --- a/app/src/main/res/values-iw/strings.xml +++ b/app/src/main/res/values-iw/strings.xml @@ -204,8 +204,9 @@ Delete reply template permanently? Discard draft? Report message as spam? + Showing the original message can leak privacy sensitive information Fix - Compose %1$s + Compose From: To: Reply to: @@ -276,7 +277,7 @@ If you have a question or a problem, please use the support menu to get help Swipe left to trash; swipe right to archive (if available) Long press a message to start selecting multiple messages - Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might be responding slower. + Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might respond slower. Open link There is an update to version %1$s available Do you have a question or problem? diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml index 20970734a7..09789ca5a7 100644 --- a/app/src/main/res/values-ja/strings.xml +++ b/app/src/main/res/values-ja/strings.xml @@ -189,8 +189,9 @@ Delete reply template permanently? Discard draft? Report message as spam? + Showing the original message can leak privacy sensitive information Fix - Compose %1$s + Compose From: To: Reply to: @@ -261,7 +262,7 @@ If you have a question or a problem, please use the support menu to get help Swipe left to trash; swipe right to archive (if available) Long press a message to start selecting multiple messages - Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might be responding slower. + Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might respond slower. Open link There is an update to version %1$s available Do you have a question or problem? diff --git a/app/src/main/res/values-ko/strings.xml b/app/src/main/res/values-ko/strings.xml index 20970734a7..09789ca5a7 100644 --- a/app/src/main/res/values-ko/strings.xml +++ b/app/src/main/res/values-ko/strings.xml @@ -189,8 +189,9 @@ Delete reply template permanently? Discard draft? Report message as spam? + Showing the original message can leak privacy sensitive information Fix - Compose %1$s + Compose From: To: Reply to: @@ -261,7 +262,7 @@ If you have a question or a problem, please use the support menu to get help Swipe left to trash; swipe right to archive (if available) Long press a message to start selecting multiple messages - Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might be responding slower. + Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might respond slower. Open link There is an update to version %1$s available Do you have a question or problem? diff --git a/app/src/main/res/values-nb/strings.xml b/app/src/main/res/values-nb/strings.xml index 36c36a93e1..cf57b07f70 100644 --- a/app/src/main/res/values-nb/strings.xml +++ b/app/src/main/res/values-nb/strings.xml @@ -194,8 +194,9 @@ Delete reply template permanently? Discard draft? Report message as spam? + Showing the original message can leak privacy sensitive information Fix - Compose %1$s + Compose From: To: Reply to: @@ -266,7 +267,7 @@ If you have a question or a problem, please use the support menu to get help Swipe left to trash; swipe right to archive (if available) Long press a message to start selecting multiple messages - Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might be responding slower. + Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might respond slower. Open link There is an update to version %1$s available Do you have a question or problem? diff --git a/app/src/main/res/values-nl/strings.xml b/app/src/main/res/values-nl/strings.xml index 486fe3560c..d1840974aa 100644 --- a/app/src/main/res/values-nl/strings.xml +++ b/app/src/main/res/values-nl/strings.xml @@ -194,8 +194,9 @@ Verwijder antwoordsjabloon permanent? Concept weggooien? Rapporteren als spam? + Het originele bericht tonen kan privacy gevoelige informatie lekken Oplossen - Opstellen %1$s + Compose Van: Aan: Antwoord op: diff --git a/app/src/main/res/values-no/strings.xml b/app/src/main/res/values-no/strings.xml index 36c36a93e1..cf57b07f70 100644 --- a/app/src/main/res/values-no/strings.xml +++ b/app/src/main/res/values-no/strings.xml @@ -194,8 +194,9 @@ Delete reply template permanently? Discard draft? Report message as spam? + Showing the original message can leak privacy sensitive information Fix - Compose %1$s + Compose From: To: Reply to: @@ -266,7 +267,7 @@ If you have a question or a problem, please use the support menu to get help Swipe left to trash; swipe right to archive (if available) Long press a message to start selecting multiple messages - Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might be responding slower. + Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might respond slower. Open link There is an update to version %1$s available Do you have a question or problem? diff --git a/app/src/main/res/values-pl/strings.xml b/app/src/main/res/values-pl/strings.xml index 71c2960b5a..5f0efa4ead 100644 --- a/app/src/main/res/values-pl/strings.xml +++ b/app/src/main/res/values-pl/strings.xml @@ -204,8 +204,9 @@ Delete reply template permanently? Odrzucić szkic? Zgłosić wiadomość jako spam? + Showing the original message can leak privacy sensitive information Popraw - Napisz %1$s + Compose Od: Do: Odpisz do: @@ -276,7 +277,7 @@ Jeśli masz pytanie lub problem, użyj menu Pomoc, aby uzyskać pomoc Przesuń w lewo do kosza; przesuń w prawo do archiwum (jeśli dostępne) Przytrzymaj wiadomość, aby zacząć zaznaczanie wielu wiadomości - Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might be responding slower. + Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might respond slower. Otwórz link Jest dostępna aktualizacja do wersji %1$s Masz pytanie lub problem? diff --git a/app/src/main/res/values-pt-rBR/strings.xml b/app/src/main/res/values-pt-rBR/strings.xml index ded1b33fb5..2b768b5972 100644 --- a/app/src/main/res/values-pt-rBR/strings.xml +++ b/app/src/main/res/values-pt-rBR/strings.xml @@ -194,8 +194,9 @@ Delete reply template permanently? Discard draft? Reportar mensagem com spam? + Showing the original message can leak privacy sensitive information Fix - Compose %1$s + Compose De: Para: Reply to: @@ -266,7 +267,7 @@ If you have a question or a problem, please use the support menu to get help Swipe left to trash; swipe right to archive (if available) Long press a message to start selecting multiple messages - Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might be responding slower. + Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might respond slower. Open link There is an update to version %1$s available Do you have a question or problem? diff --git a/app/src/main/res/values-pt-rPT/strings.xml b/app/src/main/res/values-pt-rPT/strings.xml index 36c36a93e1..cf57b07f70 100644 --- a/app/src/main/res/values-pt-rPT/strings.xml +++ b/app/src/main/res/values-pt-rPT/strings.xml @@ -194,8 +194,9 @@ Delete reply template permanently? Discard draft? Report message as spam? + Showing the original message can leak privacy sensitive information Fix - Compose %1$s + Compose From: To: Reply to: @@ -266,7 +267,7 @@ If you have a question or a problem, please use the support menu to get help Swipe left to trash; swipe right to archive (if available) Long press a message to start selecting multiple messages - Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might be responding slower. + Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might respond slower. Open link There is an update to version %1$s available Do you have a question or problem? diff --git a/app/src/main/res/values-ro/strings.xml b/app/src/main/res/values-ro/strings.xml index 0839064861..b53e1bbef8 100644 --- a/app/src/main/res/values-ro/strings.xml +++ b/app/src/main/res/values-ro/strings.xml @@ -188,7 +188,7 @@ Arhivă Răspunde Mesajul se mută în %1$s - Open with + Deschide cu Nici un șablon de răspuns definit Nici o aplicație nu poate deschide %1$s Nu se poate accesa stocarea locală @@ -199,8 +199,9 @@ Se șterge permanent șablonul de răspuns? Renunțați la ciornă? Raportați mesajul drept spam? + Showing the original message can leak privacy sensitive information Remediere - Compune %1$s + Compose De la: Către: Răspunde la: diff --git a/app/src/main/res/values-ru/strings.xml b/app/src/main/res/values-ru/strings.xml index 5ce3b7470f..afe10ee397 100644 --- a/app/src/main/res/values-ru/strings.xml +++ b/app/src/main/res/values-ru/strings.xml @@ -204,8 +204,9 @@ Delete reply template permanently? Discard draft? Report message as spam? + Showing the original message can leak privacy sensitive information Fix - Compose %1$s + Compose From: To: Reply to: @@ -276,7 +277,7 @@ If you have a question or a problem, please use the support menu to get help Swipe left to trash; swipe right to archive (if available) Long press a message to start selecting multiple messages - Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might be responding slower. + Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might respond slower. Open link There is an update to version %1$s available Do you have a question or problem? diff --git a/app/src/main/res/values-sr/strings.xml b/app/src/main/res/values-sr/strings.xml index c5051dff14..3dccee8113 100644 --- a/app/src/main/res/values-sr/strings.xml +++ b/app/src/main/res/values-sr/strings.xml @@ -199,8 +199,9 @@ Delete reply template permanently? Discard draft? Report message as spam? + Showing the original message can leak privacy sensitive information Fix - Compose %1$s + Compose From: To: Reply to: @@ -271,7 +272,7 @@ If you have a question or a problem, please use the support menu to get help Swipe left to trash; swipe right to archive (if available) Long press a message to start selecting multiple messages - Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might be responding slower. + Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might respond slower. Open link There is an update to version %1$s available Do you have a question or problem? diff --git a/app/src/main/res/values-sv-rSE/strings.xml b/app/src/main/res/values-sv-rSE/strings.xml index 9eeacea4e5..8754d0e2a7 100644 --- a/app/src/main/res/values-sv-rSE/strings.xml +++ b/app/src/main/res/values-sv-rSE/strings.xml @@ -194,8 +194,9 @@ Delete reply template permanently? Släng utkastet? Rapportera meddelandet som skräppost? + Showing the original message can leak privacy sensitive information Fix - Compose %1$s + Compose Från: Till: Svara till: @@ -266,7 +267,7 @@ Om du har en fråga eller ett problem, vänligen använd supportmenyn för att få hjälp Svep åt vänster för att slänga; svep åt höger för att arkivera (om tillgängligt) Tryck länge på ett meddelande för att börja välja flera meddelanden - Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might be responding slower. + Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might respond slower. Öppna länken Det finns en uppdatering till version %1$s tillgänglig Har du en fråga eller problem? diff --git a/app/src/main/res/values-tr/strings.xml b/app/src/main/res/values-tr/strings.xml index 97ed5c6735..6efba75998 100644 --- a/app/src/main/res/values-tr/strings.xml +++ b/app/src/main/res/values-tr/strings.xml @@ -194,8 +194,9 @@ Delete reply template permanently? Taslağı sil? İletiyi spam olarak raporla? + Showing the original message can leak privacy sensitive information Düzelt - Yaz %1$s + Compose Gönderen: Alıcı: Yanıt adresi: @@ -266,7 +267,7 @@ Bir soru ya da bir probleminiz varsa, lütfen yardım almak için destek menüsünü kullanın Çöp kutusu için sola kaydırın; arşivlemek için sağa kaydırın (eğer varsa) Birden çok mesaj seçmeye başlamak için bir mesaja uzun basın - Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might be responding slower. + Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might respond slower. Bağlantıyı aç Sürüm %1$s için bir güncelleştirme mevcut Bir sorunuz ya da probleminiz mi var? diff --git a/app/src/main/res/values-uk/strings.xml b/app/src/main/res/values-uk/strings.xml index 5ce3b7470f..afe10ee397 100644 --- a/app/src/main/res/values-uk/strings.xml +++ b/app/src/main/res/values-uk/strings.xml @@ -204,8 +204,9 @@ Delete reply template permanently? Discard draft? Report message as spam? + Showing the original message can leak privacy sensitive information Fix - Compose %1$s + Compose From: To: Reply to: @@ -276,7 +277,7 @@ If you have a question or a problem, please use the support menu to get help Swipe left to trash; swipe right to archive (if available) Long press a message to start selecting multiple messages - Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might be responding slower. + Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might respond slower. Open link There is an update to version %1$s available Do you have a question or problem? diff --git a/app/src/main/res/values-vi/strings.xml b/app/src/main/res/values-vi/strings.xml index 20970734a7..09789ca5a7 100644 --- a/app/src/main/res/values-vi/strings.xml +++ b/app/src/main/res/values-vi/strings.xml @@ -189,8 +189,9 @@ Delete reply template permanently? Discard draft? Report message as spam? + Showing the original message can leak privacy sensitive information Fix - Compose %1$s + Compose From: To: Reply to: @@ -261,7 +262,7 @@ If you have a question or a problem, please use the support menu to get help Swipe left to trash; swipe right to archive (if available) Long press a message to start selecting multiple messages - Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might be responding slower. + Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might respond slower. Open link There is an update to version %1$s available Do you have a question or problem? diff --git a/app/src/main/res/values-zh-rCN/strings.xml b/app/src/main/res/values-zh-rCN/strings.xml index b66552418e..42042a351c 100644 --- a/app/src/main/res/values-zh-rCN/strings.xml +++ b/app/src/main/res/values-zh-rCN/strings.xml @@ -189,8 +189,9 @@ Delete reply template permanently? 丢弃草稿? 确定将邮件标为垃圾邮件吗? + Showing the original message can leak privacy sensitive information 修复 - 撰写 %1$s + Compose 发件人: 收件人: 回复: @@ -261,7 +262,7 @@ 如果您要提问或有问题,请使用支持选项获取帮助 向左滑至垃圾箱;向右滑归档(如果可用) 长按一则邮件以开始选择多则邮件 - Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might be responding slower. + Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might respond slower. 打开链接 有新的版本%1$s可用 您要提问或有问题吗? diff --git a/app/src/main/res/values-zh-rTW/strings.xml b/app/src/main/res/values-zh-rTW/strings.xml index 20970734a7..09789ca5a7 100644 --- a/app/src/main/res/values-zh-rTW/strings.xml +++ b/app/src/main/res/values-zh-rTW/strings.xml @@ -189,8 +189,9 @@ Delete reply template permanently? Discard draft? Report message as spam? + Showing the original message can leak privacy sensitive information Fix - Compose %1$s + Compose From: To: Reply to: @@ -261,7 +262,7 @@ If you have a question or a problem, please use the support menu to get help Swipe left to trash; swipe right to archive (if available) Long press a message to start selecting multiple messages - Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might be responding slower. + Downloading messages can take some time, depending on the speed of the provider, internet connection and device and on the number of messages. While downloading messages the app might respond slower. Open link There is an update to version %1$s available Do you have a question or problem? diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index a16bedd254..8e0818fd7d 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -226,7 +226,7 @@ Showing the original message can leak privacy sensitive information Fix - Compose %1$s + Compose From: To: Reply to: