diff options
author | John Reck <jreck@google.com> | 2011-03-08 09:57:52 -0800 |
---|---|---|
committer | John Reck <jreck@google.com> | 2011-03-08 09:57:52 -0800 |
commit | 7dc6b272e0b2048308999d44b7308c575107d862 (patch) | |
tree | 8dc33fa552ea78ed9a36c94d2f8da16d4392cd97 /res | |
parent | 85e0de11091234d728bce9eff2c132388cf8adf5 (diff) | |
download | packages_apps_Browser-7dc6b272e0b2048308999d44b7308c575107d862.zip packages_apps_Browser-7dc6b272e0b2048308999d44b7308c575107d862.tar.gz packages_apps_Browser-7dc6b272e0b2048308999d44b7308c575107d862.tar.bz2 |
Fix bookmark long press "open in new window"
Bug: 4018046
Change-Id: I636193ab743788ba7f0b1808d29c2acd7315845e
Diffstat (limited to 'res')
-rw-r--r-- | res/menu/bookmarkscontext.xml | 2 | ||||
-rw-r--r-- | res/values/strings.xml | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/res/menu/bookmarkscontext.xml b/res/menu/bookmarkscontext.xml index 3a13b9a..df6f9af 100644 --- a/res/menu/bookmarkscontext.xml +++ b/res/menu/bookmarkscontext.xml @@ -20,7 +20,7 @@ <item android:id="@+id/open_context_menu_id" android:title="@string/open_bookmark"/> <item android:id="@+id/new_window_context_menu_id" - android:title="@string/open_in_new_window"/> + android:title="@string/contextmenu_openlink_newwindow"/> <item android:id="@+id/edit_context_menu_id" android:title="@string/edit_bookmark"/> <item android:id="@+id/shortcut_context_menu_id" diff --git a/res/values/strings.xml b/res/values/strings.xml index 6eb13e3..8081504 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -207,8 +207,6 @@ <!-- Confirmation dialog message confirming that the user wishes to delete the bookmark they selected for deletion --> <string name="delete_bookmark_warning">Bookmark \"<xliff:g id="bookmark">%s</xliff:g>\" will be deleted.</string> - <!-- Context Menu item to open the selected link in a new window --> - <string name="open_in_new_window">Open in new window</string> <!-- Context menu item to open every bookmark in a folder in new windows [CHAR LIMIT=50] --> <string name="open_all_in_new_window">Open all in new windows</string> <!-- Menu item to open a dialog which allows the user to enter a url or do search--> |