Add new searchSettingsDescription attribute for Browser's searchable.
This will be shown under the individual searchable item in system search settings.
diff --git a/res/values/strings.xml b/res/values/strings.xml
index 7872f73..69c17cb 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -478,6 +478,8 @@
     <!-- This string is for the browser "Go To" UI. -->
     <!-- This is the button label in the "Go To" UI. -->
     <string name="search_button_text">Go</string>
+    <!-- The string used to describe the browser as a searchable item within system search settings. -->
+    <string name="search_settings_description">Bookmarks and web history</string>
 
     <!-- Pop-up window dialog -->
     <!-- Title for a dialog informing the user that the site is attempting to
diff --git a/res/xml/searchable.xml b/res/xml/searchable.xml
index bb578c6..a3b2d90 100644
--- a/res/xml/searchable.xml
+++ b/res/xml/searchable.xml
@@ -27,6 +27,7 @@
     android:inputType="textUri"
     android:imeOptions="actionGo"
     
+    android:searchSettingsDescription="@string/search_settings_description"
     android:searchSuggestAuthority="browser"
     android:searchSuggestSelection="url LIKE ?"
     android:searchSuggestIntentAction="android.intent.action.VIEW"