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 29 matching lines...) Expand all Loading... |
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/desktop_mode" | 45 <item android:id="@+id/desktop_mode" |
46 android:icon="@drawable/ic_menu_desktop_mode_off" | 46 android:icon="@drawable/ic_menu_desktop_mode_off" |
47 android:title="@string/desktop_mode" | 47 android:title="@string/desktop_mode" |
48 android:checkable="true" /> | 48 android:checkable="true" /> |
49 | 49 |
| 50 <item android:id="@+id/block_ads" |
| 51 android:title="@string/block_ads" |
| 52 android:enabled="false" |
| 53 android:checkable="true" /> |
50 | 54 |
51 <item android:id="@+id/page" | 55 <item android:id="@+id/page" |
52 android:title="@string/page" | 56 android:title="@string/page" |
53 android:icon="@drawable/ic_menu_tools"> | 57 android:icon="@drawable/ic_menu_tools"> |
54 | 58 |
55 <menu> | 59 <menu> |
56 | 60 |
57 <item android:id="@+id/subscribe" | 61 <item android:id="@+id/subscribe" |
58 android:title="@string/contextmenu_subscribe"/> | 62 android:title="@string/contextmenu_subscribe"/> |
59 | 63 |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 android:title="@string/settings" /> | 114 android:title="@string/settings" /> |
111 | 115 |
112 <item android:id="@+id/help" | 116 <item android:id="@+id/help" |
113 android:title="@string/help_menu" /> | 117 android:title="@string/help_menu" /> |
114 | 118 |
115 <item android:id="@+id/exit_guest_session" | 119 <item android:id="@+id/exit_guest_session" |
116 android:icon="@drawable/ic_menu_guest" | 120 android:icon="@drawable/ic_menu_guest" |
117 android:visible="false" | 121 android:visible="false" |
118 android:title="@string/exit_guest_session"/> | 122 android:title="@string/exit_guest_session"/> |
119 </menu> | 123 </menu> |
OLD | NEW |