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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 | 108 |
109 </item> | 109 </item> |
110 | 110 |
111 <item android:id="@+id/char_encoding" | 111 <item android:id="@+id/char_encoding" |
112 android:visible="false" | 112 android:visible="false" |
113 android:title="@string/char_encoding"/> | 113 android:title="@string/char_encoding"/> |
114 | 114 |
115 <item android:id="@+id/settings" | 115 <item android:id="@+id/settings" |
116 android:title="@string/settings" /> | 116 android:title="@string/settings" /> |
117 | 117 |
| 118 <!-- Hiding help. See https://issues.adblockplus.org/ticket/6278 --> |
118 <item android:id="@+id/help" | 119 <item android:id="@+id/help" |
| 120 android:visible="false" |
119 android:title="@string/help_menu" /> | 121 android:title="@string/help_menu" /> |
120 | 122 |
121 </menu> | 123 </menu> |
OLD | NEW |