diff --git a/AndroidManifest.xml b/AndroidManifest.xml index ece446e3fe..14176223fb 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -180,7 +180,7 @@ diff --git a/res/values/strings.xml b/res/values/strings.xml index de2b278937..012aadd661 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -174,10 +174,10 @@ Deleting Deleting selected conversations... - Archived conversations + Conversations archived UNDO Moved conversation to inbox - Archived conversation + Conversation archived Moved conversations to inbox @@ -876,7 +876,7 @@ Message details Manage linked devices Invite friends - Conversations archive + Archived conversations Import / export diff --git a/src/org/thoughtcrime/securesms/ConversationListFragment.java b/src/org/thoughtcrime/securesms/ConversationListFragment.java index 3c12860e40..1bc1e5a017 100644 --- a/src/org/thoughtcrime/securesms/ConversationListFragment.java +++ b/src/org/thoughtcrime/securesms/ConversationListFragment.java @@ -201,7 +201,7 @@ public class ConversationListFragment extends Fragment String snackBarTitle; if (archive) snackBarTitle = getString(R.string.ConversationListFragment_moved_conversations_to_inbox); - else snackBarTitle = getString(R.string.ConversationListFragment_archived_conversations); + else snackBarTitle = getString(R.string.ConversationListFragment_conversations_archived); new SnackbarAsyncTask(getView(), snackBarTitle, getString(R.string.ConversationListFragment_undo), @@ -452,7 +452,7 @@ public class ConversationListFragment extends Fragment }.execute(threadId); } else { new SnackbarAsyncTask(getView(), - getString(R.string.ConversationListFragment_archived_conversation), + getString(R.string.ConversationListFragment_conversation_archived), getString(R.string.ConversationListFragment_undo), getResources().getColor(R.color.amber_500), Snackbar.LENGTH_LONG, false)