From c342f0d7e4d841c0781b8cad15bb3998a136d7e6 Mon Sep 17 00:00:00 2001 From: Sam Lanning Date: Sat, 24 Oct 2015 12:36:36 +0100 Subject: [PATCH] Change text of dialog box confirming blocking. Blocking users now also blocks incoming calls, so the block confirmation message has been updated. fixes #4217 Closes #4295 // FREEBIE --- res/values/strings.xml | 2 +- src/org/thoughtcrime/securesms/RecipientPreferenceActivity.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/res/values/strings.xml b/res/values/strings.xml index 3a39e7367f..4a49b6b33f 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -337,7 +337,7 @@ Block this contact? - You will no longer see messages sent from this user. + You will no longer receive calls or messages from this user. Block Unblock this contact? Are you sure you want to unblock this contact? diff --git a/src/org/thoughtcrime/securesms/RecipientPreferenceActivity.java b/src/org/thoughtcrime/securesms/RecipientPreferenceActivity.java index 2f039aa352..1a5c195ede 100644 --- a/src/org/thoughtcrime/securesms/RecipientPreferenceActivity.java +++ b/src/org/thoughtcrime/securesms/RecipientPreferenceActivity.java @@ -382,7 +382,7 @@ public class RecipientPreferenceActivity extends PassphraseRequiredActionBarActi private void handleBlock() { new AlertDialogWrapper.Builder(getActivity()) .setTitle(R.string.RecipientPreferenceActivity_block_this_contact_question) - .setMessage(R.string.RecipientPreferenceActivity_you_will_no_longer_see_messages_from_this_user) + .setMessage(R.string.RecipientPreferenceActivity_you_will_no_longer_receive_calls_or_messages_from_this_user) .setCancelable(true) .setNegativeButton(android.R.string.cancel, null) .setPositiveButton(R.string.RecipientPreferenceActivity_block, new DialogInterface.OnClickListener() {