Wording ambiguity: Archived conversation -> Conversation archived

Closes #4802
// FREEBIE
This commit is contained in:
RiseT 2015-12-04 14:13:09 +01:00 committed by Moxie Marlinspike
parent 8a3762b337
commit 307578eb18
3 changed files with 6 additions and 6 deletions

View File

@ -180,7 +180,7 @@
</activity-alias>
<activity android:name=".ConversationListArchiveActivity"
android:label="@string/AndroidManifest_conversations_archive"
android:label="@string/AndroidManifest_archived_conversations"
android:launchMode="singleTask"
android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout|screenSize"
android:parentActivityName=".ConversationListActivity">

View File

@ -174,10 +174,10 @@
</plurals>
<string name="ConversationListFragment_deleting">Deleting</string>
<string name="ConversationListFragment_deleting_selected_conversations">Deleting selected conversations...</string>
<string name="ConversationListFragment_archived_conversations">Archived conversations</string>
<string name="ConversationListFragment_conversations_archived">Conversations archived</string>
<string name="ConversationListFragment_undo">UNDO</string>
<string name="ConversationListFragment_moved_conversation_to_inbox">Moved conversation to inbox</string>
<string name="ConversationListFragment_archived_conversation">Archived conversation</string>
<string name="ConversationListFragment_conversation_archived">Conversation archived</string>
<string name="ConversationListFragment_moved_conversations_to_inbox">Moved conversations to inbox</string>
<!-- ConversationListItem -->
@ -876,7 +876,7 @@
<string name="AndroidManifest__message_details">Message details</string>
<string name="AndroidManifest_manage_linked_devices">Manage linked devices</string>
<string name="AndroidManifest__invite_friends">Invite friends</string>
<string name="AndroidManifest_conversations_archive">Conversations archive</string>
<string name="AndroidManifest_archived_conversations">Archived conversations</string>
<!-- arrays.xml -->
<string name="arrays__import_export">Import / export</string>

View File

@ -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<Void>(getView(), snackBarTitle,
getString(R.string.ConversationListFragment_undo),
@ -452,7 +452,7 @@ public class ConversationListFragment extends Fragment
}.execute(threadId);
} else {
new SnackbarAsyncTask<Long>(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)