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

Commit fd2d50e8 authored by Leon Scroggins's avatar Leon Scroggins
Browse files

Provide strings for text selection options in WebView.

Bug:3125023

This is consistent with TextView.

Change-Id: Ia9216939f2fe0c73f9dd670c3884518e730f43ed
parent 2754b4bd
Loading
Loading
Loading
Loading
+8 −5
Original line number Diff line number Diff line
@@ -17,19 +17,22 @@
<menu xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:id="@+id/copy"
        android:icon="?android:attr/actionModeCopyDrawable"
        android:showAsAction="always"
        android:title="@string/copy"
        android:showAsAction="always|withText"
        />
    <item android:id="@+id/share"
        android:icon="@drawable/ic_menu_share"
        android:showAsAction="always"
        android:title="@string/share"
        android:showAsAction="always|withText"
        />
    <item android:id="@+id/select_all"
        android:icon="@drawable/ic_menu_select_all"
        android:showAsAction="always"
        android:title="@string/selectAll"
        android:showAsAction="always|withText"
        />
    <item android:id="@+id/find"
        android:icon="@drawable/ic_menu_find"
        android:showAsAction="always"
        android:title="@string/find"
        android:showAsAction="always|withText"
        />
</menu>
+6 −0
Original line number Diff line number Diff line
@@ -2415,4 +2415,10 @@
    <!-- Text for message for an unknown external media state [CHAR LIMIT=NONE] -->
    <string name="media_unknown_state">External media in unknown state.</string>

    <!-- Text for WebView's text selection Action Mode -->
    <!-- ActionBar action to share the current selection [CHAR LIMIT=10] -->
    <string name="share">Share</string>
    <!-- ActionBar action to use the current selection to open the Find on page functionality [CHAR LIMIT=10]-->
    <string name="find">Find</string>

</resources>