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