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

Commit 993bf188 authored by John Shao's avatar John Shao Committed by android-build-merger
Browse files

Intents should say "Contacts"

am: 365bd5df

Change-Id: I04459ec49ba4f320bda1b0e6434bc637431e32a2
parents 75dfb887 365bd5df
Loading
Loading
Loading
Loading
+8 −25
Original line number Diff line number Diff line
@@ -67,7 +67,6 @@

        <!-- The main Contacts activity with the contact list, favorites, and groups. -->
        <activity android:name=".activities.PeopleActivity"
            android:label="@string/launcherActivityLabel"
            android:theme="@style/PeopleActivityTheme"
            android:alwaysRetainTaskState="true"
            android:launchMode="singleTop"
@@ -104,19 +103,19 @@
                <category android:name="android.intent.category.TAB" />
            </intent-filter>

            <intent-filter android:label="@string/starredList">
            <intent-filter>
                <action android:name="com.android.contacts.action.LIST_STARRED" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.TAB" />
            </intent-filter>

            <intent-filter android:label="@string/frequentList">
            <intent-filter>
                <action android:name="com.android.contacts.action.LIST_FREQUENT" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.TAB" />
            </intent-filter>

            <intent-filter android:label="@string/strequentList">
            <intent-filter>
                <action android:name="com.android.contacts.action.LIST_STREQUENT" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.TAB" />
@@ -157,7 +156,6 @@
        </activity>

        <activity android:name=".activities.ContactSelectionActivity"
            android:label="@string/launcherActivityLabel"
            android:theme="@style/ContactPickerTheme"
            android:launchMode="singleTop"
            android:clearTaskOnLaunch="true"
@@ -245,25 +243,21 @@

        <activity
            android:name=".common.activity.RequestPermissionsActivity"
            android:label="@string/launcherActivityLabel"
            android:theme="@style/PeopleTheme"
            android:exported="false"/>

        <activity
            android:name=".common.activity.RequestDesiredPermissionsActivity"
            android:label="@string/launcherActivityLabel"
            android:theme="@style/PeopleTheme"
            android:exported="false"/>

        <activity
            android:name=".common.activity.RequestImportVCardPermissionsActivity"
            android:label="@string/launcherActivityLabel"
            android:theme="@style/PeopleTheme"
            android:exported="false"/>

        <activity
            android:name=".activities.ShowOrCreateActivity"
            android:label="@string/launcherActivityLabel"
            android:theme="@android:style/Theme.Material.Light.Dialog.NoActionBar">

            <intent-filter>
@@ -293,7 +287,6 @@

        <activity
            android:name=".quickcontact.QuickContactActivity"
            android:label="@string/quickContactActivityLabel"
            android:theme="@style/Theme.QuickContact"
            android:launchMode="singleTop"
            android:excludeFromRecents="true"
@@ -368,18 +361,17 @@
        <!-- Edit or create a contact with only the most important fields displayed initially. -->
        <activity
            android:name=".activities.CompactContactEditorActivity"
            android:label="@string/editContactActivityLabel"
            android:theme="@style/EditorActivityTheme"
            android:windowSoftInputMode="stateHidden|adjustResize">

            <intent-filter android:label="@string/editContactDescription">
            <intent-filter>
                <action android:name="android.intent.action.EDIT" />
                <category android:name="android.intent.category.DEFAULT" />
                <data android:mimeType="vnd.android.cursor.item/person" />
                <data android:mimeType="vnd.android.cursor.item/contact" />
                <data android:mimeType="vnd.android.cursor.item/raw_contact" />
            </intent-filter>
            <intent-filter android:label="@string/insertContactDescription">
            <intent-filter>
                <action android:name="android.intent.action.INSERT" />
                <category android:name="android.intent.category.DEFAULT" />
                <data android:mimeType="vnd.android.cursor.dir/person" />
@@ -391,19 +383,18 @@
        <!-- Edit or create a contact with all fields displayed. -->
        <activity
            android:name=".activities.ContactEditorActivity"
            android:label="@string/editContactActivityLabel"
            android:theme="@style/EditorActivityTheme"
            android:windowSoftInputMode="stateHidden|adjustResize"
            android:exported="false">

            <intent-filter android:label="@string/editContactDescription">
            <intent-filter>
                <action android:name="com.android.contacts.action.FULL_EDIT" />
                <category android:name="android.intent.category.DEFAULT" />
                <data android:mimeType="vnd.android.cursor.item/person" />
                <data android:mimeType="vnd.android.cursor.item/contact" />
                <data android:mimeType="vnd.android.cursor.item/raw_contact" />
            </intent-filter>
            <intent-filter android:label="@string/insertContactDescription">
            <intent-filter>
                <action android:name="com.android.contacts.action.FULL_INSERT" />
                <category android:name="android.intent.category.DEFAULT" />
                <data android:mimeType="vnd.android.cursor.dir/person" />
@@ -442,7 +433,6 @@

        <!-- vCard related -->
        <activity android:name=".common.vcard.ImportVCardActivity"
            android:label="@string/launcherActivityLabel"
            android:configChanges="orientation|screenSize|keyboardHidden"
            android:theme="@style/BackgroundOnlyTheme">
            <intent-filter>
@@ -455,7 +445,6 @@
        </activity>

        <activity android:name=".common.vcard.NfcImportVCardActivity"
            android:label="@string/launcherActivityLabel"
            android:configChanges="orientation|screenSize|keyboardHidden"
            android:theme="@style/BackgroundOnlyTheme">
            <intent-filter>
@@ -467,19 +456,15 @@
        </activity>

        <activity android:name=".common.vcard.CancelActivity"
            android:label="@string/launcherActivityLabel"
            android:theme="@style/BackgroundOnlyTheme" />

        <activity android:name=".common.vcard.SelectAccountActivity"
            android:label="@string/launcherActivityLabel"
            android:theme="@style/BackgroundOnlyTheme" />

        <activity android:name=".common.vcard.ExportVCardActivity"
            android:label="@string/launcherActivityLabel"
            android:theme="@style/BackgroundOnlyTheme" />

        <activity android:name=".common.vcard.ShareVCardActivity"
                  android:label="@string/launcherActivityLabel"
                  android:theme="@style/BackgroundOnlyTheme" />

        <service
@@ -494,9 +479,7 @@
             are set lower, so that the user does not see a disambig dialog -->
        <activity
            android:name="com.android.contacts.NonPhoneActivity"
            android:theme="@style/NonPhoneActivityTheme"
            android:label="@string/launcherActivityLabel"
            >
            android:theme="@style/NonPhoneActivityTheme">
            <intent-filter android:priority="-1">
                <action android:name="android.intent.action.MAIN"/>
                <category android:name="android.intent.category.DEFAULT"/>
+0 −28
Original line number Diff line number Diff line
@@ -19,16 +19,6 @@
         that don't specify a label. -->
    <string name="applicationLabel">Contacts</string>

    <!-- Title for the activity that launches Contacts.  This is the name
         used in the Launcher icon. -->
    <string name="launcherActivityLabel">Contacts</string>

    <!-- Title for Quick Contact activity. -->
    <string name="quickContactActivityLabel">View Contact</string>

    <!-- Title for Edit Contact activity. -->
    <string name="editContactActivityLabel">Edit Contact</string>

    <!-- Directory partition name -->
    <string name="contactsList">Contacts</string>

@@ -65,27 +55,9 @@
    <!-- Entry that prompts user to select a newly created contact.  [CHAR LIMIT=30] -->
    <string name="header_entry_contact_list_adapter_header_title">Create new contact</string>

    <!-- Title for the activity that shows only starred contacts -->
    <string name="starredList">Starred</string>

    <!-- Title for the activity that shows only frequently contacted contacts -->
    <string name="frequentList">Frequent</string>

    <!-- Title for the activity that shows a mix of starred contacts and frequently contacted
         contacts. -->
    <string name="strequentList">Favorites</string>

    <!-- The title bar when viewing the contact details activity -->
    <string name="viewContactTitle">Contact details</string>

    <!-- The description presented to the user in the Intent choose when there are multiple activities that allow
         editing a contact. This string represents the built in way to edit the contact. -->
    <string name="editContactDescription">Edit contact</string>

    <!-- The description presented to the user in the Intent choose when there are multiple activities that allow
         creating a new contact. This string represents the built in way to create the contact. -->
    <string name="insertContactDescription">Create contact</string>

    <!-- The tab label for the contact detail activity that displays information about the contact [CHAR LIMIT=15] -->
    <string name="contactDetailAbout">About</string>