Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | <?xml version="1.0" encoding="utf-8"?> |
michael@0 | 2 | <!-- This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | - License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> |
michael@0 | 5 | |
michael@0 | 6 | <menu xmlns:android="http://schemas.android.com/apk/res/android"> |
michael@0 | 7 | |
michael@0 | 8 | <item android:id="@+id/back" |
michael@0 | 9 | android:icon="@drawable/ic_menu_back" |
michael@0 | 10 | android:title="@string/back" |
michael@0 | 11 | android:showAsAction="always"/> |
michael@0 | 12 | |
michael@0 | 13 | <item android:id="@+id/forward" |
michael@0 | 14 | android:icon="@drawable/ic_menu_forward" |
michael@0 | 15 | android:title="@string/forward" |
michael@0 | 16 | android:showAsAction="always"/> |
michael@0 | 17 | |
michael@0 | 18 | <item android:id="@+id/reload" |
michael@0 | 19 | android:icon="@drawable/ic_menu_reload" |
michael@0 | 20 | android:title="@string/reload" |
michael@0 | 21 | android:showAsAction="always"/> |
michael@0 | 22 | |
michael@0 | 23 | <item android:id="@+id/bookmark" |
michael@0 | 24 | android:icon="@drawable/ic_menu_bookmark_add" |
michael@0 | 25 | android:title="@string/bookmark" |
michael@0 | 26 | android:showAsAction="ifRoom"/> |
michael@0 | 27 | |
michael@0 | 28 | <item android:id="@+id/share" |
michael@0 | 29 | android:icon="@drawable/ic_menu_share" |
michael@0 | 30 | android:title="@string/share" |
michael@0 | 31 | android:showAsAction="ifRoom"/> |
michael@0 | 32 | |
michael@0 | 33 | <item android:id="@+id/new_tab" |
michael@0 | 34 | android:icon="@drawable/ic_menu_new_tab" |
michael@0 | 35 | android:title="@string/new_tab"/> |
michael@0 | 36 | |
michael@0 | 37 | <item android:id="@+id/new_private_tab" |
michael@0 | 38 | android:icon="@drawable/ic_menu_new_private_tab" |
michael@0 | 39 | android:title="@string/new_private_tab"/> |
michael@0 | 40 | |
michael@0 | 41 | <item android:id="@+id/find_in_page" |
michael@0 | 42 | android:icon="@drawable/ic_menu_find_in_page" |
michael@0 | 43 | android:title="@string/find_in_page" /> |
michael@0 | 44 | |
michael@0 | 45 | <item android:id="@+id/desktop_mode" |
michael@0 | 46 | android:icon="@drawable/ic_menu_desktop_mode_off" |
michael@0 | 47 | android:title="@string/desktop_mode" |
michael@0 | 48 | android:checkable="true" /> |
michael@0 | 49 | |
michael@0 | 50 | <item android:id="@+id/page" |
michael@0 | 51 | android:title="@string/page" |
michael@0 | 52 | android:icon="@drawable/ic_menu_tools"> |
michael@0 | 53 | |
michael@0 | 54 | <menu> |
michael@0 | 55 | |
michael@0 | 56 | <item android:id="@+id/subscribe" |
michael@0 | 57 | android:title="@string/contextmenu_subscribe"/> |
michael@0 | 58 | |
michael@0 | 59 | <item android:id="@+id/save_as_pdf" |
michael@0 | 60 | android:title="@string/save_as_pdf"/> |
michael@0 | 61 | |
michael@0 | 62 | <item android:id="@+id/add_search_engine" |
michael@0 | 63 | android:title="@string/contextmenu_add_search_engine"/> |
michael@0 | 64 | |
michael@0 | 65 | <item android:id="@+id/site_settings" |
michael@0 | 66 | android:title="@string/contextmenu_site_settings" /> |
michael@0 | 67 | |
michael@0 | 68 | <item android:id="@+id/add_to_launcher" |
michael@0 | 69 | android:title="@string/contextmenu_add_to_launcher"/> |
michael@0 | 70 | |
michael@0 | 71 | </menu> |
michael@0 | 72 | |
michael@0 | 73 | </item> |
michael@0 | 74 | |
michael@0 | 75 | <item android:id="@+id/tools" |
michael@0 | 76 | android:title="@string/tools" |
michael@0 | 77 | android:icon="@drawable/ic_menu_tools"> |
michael@0 | 78 | |
michael@0 | 79 | <menu> |
michael@0 | 80 | |
michael@0 | 81 | <item android:id="@+id/downloads" |
michael@0 | 82 | android:icon="@drawable/ic_menu_downloads" |
michael@0 | 83 | android:title="@string/downloads"/> |
michael@0 | 84 | |
michael@0 | 85 | <item android:id="@+id/addons" |
michael@0 | 86 | android:icon="@drawable/ic_menu_addons" |
michael@0 | 87 | android:title="@string/addons"/> |
michael@0 | 88 | |
michael@0 | 89 | <item android:id="@+id/apps" |
michael@0 | 90 | android:icon="@drawable/ic_menu_apps" |
michael@0 | 91 | android:title="@string/apps"/> |
michael@0 | 92 | |
michael@0 | 93 | <item android:id="@+id/new_guest_session" |
michael@0 | 94 | android:icon="@drawable/ic_menu_guest" |
michael@0 | 95 | android:visible="false" |
michael@0 | 96 | android:title="@string/new_guest_session"/> |
michael@0 | 97 | |
michael@0 | 98 | </menu> |
michael@0 | 99 | |
michael@0 | 100 | </item> |
michael@0 | 101 | |
michael@0 | 102 | <item android:id="@+id/char_encoding" |
michael@0 | 103 | android:icon="@drawable/ic_menu_character_encoding" |
michael@0 | 104 | android:visible="false" |
michael@0 | 105 | android:title="@string/char_encoding"/> |
michael@0 | 106 | |
michael@0 | 107 | <item android:id="@+id/settings" |
michael@0 | 108 | android:icon="@drawable/ic_menu_settings" |
michael@0 | 109 | android:title="@string/settings" /> |
michael@0 | 110 | |
michael@0 | 111 | <item android:id="@+id/exit_guest_session" |
michael@0 | 112 | android:icon="@drawable/ic_menu_guest" |
michael@0 | 113 | android:visible="false" |
michael@0 | 114 | android:title="@string/exit_guest_session"/> |
michael@0 | 115 | </menu> |