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

Commit 94d1a98e authored by Hugo Hudson's avatar Hugo Hudson
Browse files

Give share and trash names.

- In the unlikely (hopefully) event that share and trash get moved to
  the overflow menu, they need to be given text.

Bug: 5114951
Change-Id: I4e650423471879051f4e3ae51c0649d4054228d8
parent 3dd23fdb
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -18,12 +18,14 @@
        android:id="@+id/menu_share_voicemail"
        android:icon="@drawable/ic_share_holo_dark"
        android:showAsAction="ifRoom"
        android:title="@string/recentCalls_shareVoicemail"
        android:onClick="onMenuShareVoicemail"
    />
    <item
        android:id="@+id/menu_trash"
        android:icon="@drawable/ic_trash_holo_dark"
        android:showAsAction="ifRoom"
        android:title="@string/recentCalls_trashVoicemail"
        android:onClick="onMenuTrashVoicemail"
    />
    <item
+6 −0
Original line number Diff line number Diff line
@@ -426,6 +426,12 @@
    <!-- Menu item used to remove all calls from the call log -->
    <string name="recentCalls_deleteAll">Clear call log</string>

    <!-- Menu item used to delete a voicemail. [CHAR LIMIT=30] -->
    <string name="recentCalls_trashVoicemail">Delete voicemail</string>

    <!-- Menu item used to share a voicemail. [CHAR LIMIT=30] -->
    <string name="recentCalls_shareVoicemail">Share voicemail</string>

    <!-- Text displayed when the call log is empty -->
    <string name="recentCalls_empty">Call log is empty.</string>