From 40bbfd6aa746fb77d130dba33efb1787e5ce7ed0 Mon Sep 17 00:00:00 2001 From: bjoern Date: Sun, 12 Dec 2021 16:54:34 +0100 Subject: [PATCH] improve wording of one-to-one-chat hint (#2165) * improve wording of one-to-one-chat hint at #2134 we shortend the hint shown for an empty group massively, removing greylisting hints and the hint that the recipient can user other mua. the result of that shortening is that the creation of a one-to-one chat is now way too long :) i suggest shorten the hint in a similar way, not much would be left then, however, that is maybe not bad :) * re-add the aspect that the recipient does not need Delta Chat --- res/values/strings.xml | 2 ++ src/org/thoughtcrime/securesms/ConversationFragment.java | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/res/values/strings.xml b/res/values/strings.xml index 00fdf50f3..1c7f9325c 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -358,6 +358,8 @@ %d new messages Send message to %1$s:\n\n• It is okay if %2$s does not use Delta Chat.\n\n• Delivering the first message may take a while and may be unencrypted. + + Send a message. It is okay if %1$s does not use Delta Chat. In a broadcast list, others will receive messages in their private chats with you.\n\nThe recipients will not be aware of each other. Others will only see this group after you sent a first message. Slide to cancel diff --git a/src/org/thoughtcrime/securesms/ConversationFragment.java b/src/org/thoughtcrime/securesms/ConversationFragment.java index 28d2159a8..9da8769e3 100644 --- a/src/org/thoughtcrime/securesms/ConversationFragment.java +++ b/src/org/thoughtcrime/securesms/ConversationFragment.java @@ -191,7 +191,7 @@ public class ConversationFragment extends MessageSelectorFragment noMessageTextView.setText(R.string.device_talk_explain); } else { - String message = getString(R.string.chat_no_messages_hint, dcChat.getName(), dcChat.getName()); + String message = getString(R.string.chat_new_one_to_one_hint, dcChat.getName()); noMessageTextView.setText(message); } }