Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 711c3440 authored by Brian Attwell's avatar Brian Attwell
Browse files

Better INSERT_OR_EDIT contact-picker title

The title is now "Add to contact" instead of "Choose a contact".

Bug: 17390969
Change-Id: I6955561823709de0264de6b2e2a55e6994f28ab5
parent d3956f95
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -47,6 +47,9 @@
    <!-- Activity title when the user is selecting a contact for a direct message shortcut. -->
    <string name="messageShortcutActivityTitle">Choose a number to message</string>

    <!-- Activity title when the user is inserting into an existing contact, or creating a new one.  [CHAR LIMIT=128] -->
    <string name="contactInsertOrEditActivityTitle">Add to contact</string>

    <!-- Activity title when the user is selecting a contact.  [CHAR LIMIT=128] -->
    <string name="contactPickerActivityTitle">Choose a contact</string>

+1 −1
Original line number Diff line number Diff line
@@ -223,7 +223,7 @@ public class ContactSelectionActivity extends ContactsActivity
        int actionCode = mRequest.getActionCode();
        switch (actionCode) {
            case ContactsRequest.ACTION_INSERT_OR_EDIT_CONTACT: {
                setTitle(R.string.contactPickerActivityTitle);
                setTitle(R.string.contactInsertOrEditActivityTitle);
                break;
            }