diff --git a/res/values/strings.xml b/res/values/strings.xml index cd05c2ab0e..f7b6d88c28 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -142,8 +142,8 @@ MMS not supported This message cannot be sent since your carrier doesn\'t support MMS. Please choose a contact - Unblock? - Are you sure you want to unblock this contact? + Unblock this contact? + You will once again be able to receive messages and calls from this contact. Unblock Attachment exceeds size limits for the type of message you\'re sending. Camera unavailable @@ -437,10 +437,10 @@ Block this contact? - You will no longer receive messages or calls from this user. + You will no longer receive messages and calls from this contact. Block Unblock this contact? - Are you sure you want to unblock this contact? + You will once again be able to receive messages and calls from this contact. Unblock Enabled Disabled diff --git a/src/org/thoughtcrime/securesms/ConversationActivity.java b/src/org/thoughtcrime/securesms/ConversationActivity.java index d3d2ae4b40..62fe0cca88 100644 --- a/src/org/thoughtcrime/securesms/ConversationActivity.java +++ b/src/org/thoughtcrime/securesms/ConversationActivity.java @@ -554,8 +554,8 @@ public class ConversationActivity extends PassphraseRequiredActionBarActivity private void handleUnblock() { new AlertDialog.Builder(this) - .setTitle(R.string.ConversationActivity_unblock_question) - .setMessage(R.string.ConversationActivity_are_you_sure_you_want_to_unblock_this_contact) + .setTitle(R.string.ConversationActivity_unblock_this_contact_question) + .setMessage(R.string.ConversationActivity_you_will_once_again_be_able_to_receive_messages_and_calls_from_this_contact) .setNegativeButton(android.R.string.cancel, null) .setPositiveButton(R.string.ConversationActivity_unblock, new DialogInterface.OnClickListener() { @Override diff --git a/src/org/thoughtcrime/securesms/RecipientPreferenceActivity.java b/src/org/thoughtcrime/securesms/RecipientPreferenceActivity.java index ce1d7491da..a48f9061ba 100644 --- a/src/org/thoughtcrime/securesms/RecipientPreferenceActivity.java +++ b/src/org/thoughtcrime/securesms/RecipientPreferenceActivity.java @@ -468,7 +468,7 @@ public class RecipientPreferenceActivity extends PassphraseRequiredActionBarActi private void handleBlock() { new AlertDialog.Builder(getActivity()) .setTitle(R.string.RecipientPreferenceActivity_block_this_contact_question) - .setMessage(R.string.RecipientPreferenceActivity_you_will_no_longer_receive_messages_or_calls_from_this_user) + .setMessage(R.string.RecipientPreferenceActivity_you_will_no_longer_receive_messages_and_calls_from_this_contact) .setCancelable(true) .setNegativeButton(android.R.string.cancel, null) .setPositiveButton(R.string.RecipientPreferenceActivity_block, new DialogInterface.OnClickListener() { @@ -482,7 +482,7 @@ public class RecipientPreferenceActivity extends PassphraseRequiredActionBarActi private void handleUnblock() { new AlertDialog.Builder(getActivity()) .setTitle(R.string.RecipientPreferenceActivity_unblock_this_contact_question) - .setMessage(R.string.RecipientPreferenceActivity_are_you_sure_you_want_to_unblock_this_contact) + .setMessage(R.string.RecipientPreferenceActivity_you_will_once_again_be_able_to_receive_messages_and_calls_from_this_contact) .setCancelable(true) .setNegativeButton(android.R.string.cancel, null) .setPositiveButton(R.string.RecipientPreferenceActivity_unblock, new DialogInterface.OnClickListener() {