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 <!-- We disable AlwaysShowAction because we interpret the menu | 6 <!-- We disable AlwaysShowAction because we interpret the menu |
7 attributes ourselves and thus the warning isn't relevant to us. --> | 7 attributes ourselves and thus the warning isn't relevant to us. --> |
8 <menu xmlns:android="http://schemas.android.com/apk/res/android" | 8 <menu xmlns:android="http://schemas.android.com/apk/res/android" |
9 xmlns:tools="http://schemas.android.com/tools" | 9 xmlns:tools="http://schemas.android.com/tools" |
10 tools:ignore="AlwaysShowAction"> | 10 tools:ignore="AlwaysShowAction"> |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 <item android:id="@+id/history_list" | 46 <item android:id="@+id/history_list" |
47 android:title="@string/history_title"/> | 47 android:title="@string/history_title"/> |
48 | 48 |
49 <item android:id="@+id/find_in_page" | 49 <item android:id="@+id/find_in_page" |
50 android:title="@string/find_in_page" /> | 50 android:title="@string/find_in_page" /> |
51 | 51 |
52 <item android:id="@+id/addons_top_level" | 52 <item android:id="@+id/addons_top_level" |
53 android:title="@string/addons" | 53 android:title="@string/addons" |
54 android:visible="false" /> | 54 android:visible="false" /> |
55 | 55 |
| 56 <item android:id="@+id/abb_block_ads" |
| 57 android:title="@string/abb_block_ads" |
| 58 android:enabled="false" |
| 59 android:checkable="true" /> |
| 60 |
56 <item android:id="@+id/desktop_mode" | 61 <item android:id="@+id/desktop_mode" |
57 android:title="@string/desktop_mode" | 62 android:title="@string/desktop_mode" |
58 android:checkable="true" /> | 63 android:checkable="true" /> |
59 | 64 |
60 | 65 |
61 <item android:id="@+id/page" | 66 <item android:id="@+id/page" |
62 android:title="@string/page"> | 67 android:title="@string/page"> |
63 | 68 |
64 <menu> | 69 <menu> |
65 | 70 |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 android:visible="false" | 117 android:visible="false" |
113 android:title="@string/char_encoding"/> | 118 android:title="@string/char_encoding"/> |
114 | 119 |
115 <item android:id="@+id/settings" | 120 <item android:id="@+id/settings" |
116 android:title="@string/settings" /> | 121 android:title="@string/settings" /> |
117 | 122 |
118 <item android:id="@+id/help" | 123 <item android:id="@+id/help" |
119 android:title="@string/help_menu" /> | 124 android:title="@string/help_menu" /> |
120 | 125 |
121 </menu> | 126 </menu> |
OLD | NEW |