OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <!-- This Source Code Form is subject to the terms of the Mozilla Public | 2 <!-- This Source Code Form is subject to the terms of the Mozilla Public |
3 - License, v. 2.0. If a copy of the MPL was not distributed with this | 3 - License, v. 2.0. If a copy of the MPL was not distributed with this |
4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> | 4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> |
5 | 5 |
6 <menu xmlns:android="http://schemas.android.com/apk/res/android"> | 6 <menu xmlns:android="http://schemas.android.com/apk/res/android"> |
7 | 7 |
8 <item android:id="@+id/reload" | 8 <item android:id="@+id/reload" |
9 android:icon="@drawable/ic_menu_reload" | 9 android:icon="@drawable/ic_menu_reload" |
10 android:title="@string/reload" | 10 android:title="@string/reload" |
(...skipping 24 matching lines...) Expand all Loading... |
35 android:title="@string/new_tab"/> | 35 android:title="@string/new_tab"/> |
36 | 36 |
37 <item android:id="@+id/new_private_tab" | 37 <item android:id="@+id/new_private_tab" |
38 android:icon="@drawable/ic_menu_new_private_tab" | 38 android:icon="@drawable/ic_menu_new_private_tab" |
39 android:title="@string/new_private_tab"/> | 39 android:title="@string/new_private_tab"/> |
40 | 40 |
41 <item android:id="@+id/find_in_page" | 41 <item android:id="@+id/find_in_page" |
42 android:icon="@drawable/ic_menu_find_in_page" | 42 android:icon="@drawable/ic_menu_find_in_page" |
43 android:title="@string/find_in_page" /> | 43 android:title="@string/find_in_page" /> |
44 | 44 |
| 45 <item android:id="@+id/block_ads" |
| 46 android:title="@string/block_ads" |
| 47 android:enabled="false" |
| 48 android:checkable="true" /> |
| 49 |
45 <item android:id="@+id/desktop_mode" | 50 <item android:id="@+id/desktop_mode" |
46 android:icon="@drawable/ic_menu_desktop_mode_off" | 51 android:icon="@drawable/ic_menu_desktop_mode_off" |
47 android:title="@string/desktop_mode" | 52 android:title="@string/desktop_mode" |
48 android:checkable="true" /> | 53 android:checkable="true" /> |
49 | 54 |
50 | 55 |
51 <item android:id="@+id/page" | 56 <item android:id="@+id/page" |
52 android:title="@string/page" | 57 android:title="@string/page" |
53 android:icon="@drawable/ic_menu_tools"> | 58 android:icon="@drawable/ic_menu_tools"> |
54 | 59 |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 | 118 |
114 <item android:id="@+id/help" | 119 <item android:id="@+id/help" |
115 android:visible="false" | 120 android:visible="false" |
116 android:title="@string/help_menu" /> | 121 android:title="@string/help_menu" /> |
117 | 122 |
118 <item android:id="@+id/exit_guest_session" | 123 <item android:id="@+id/exit_guest_session" |
119 android:icon="@drawable/ic_menu_guest" | 124 android:icon="@drawable/ic_menu_guest" |
120 android:visible="false" | 125 android:visible="false" |
121 android:title="@string/exit_guest_session"/> | 126 android:title="@string/exit_guest_session"/> |
122 </menu> | 127 </menu> |
OLD | NEW |