| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 | 42 |
| 43 <item android:id="@+id/bookmarks_list" | 43 <item android:id="@+id/bookmarks_list" |
| 44 android:title="@string/bookmarks_title"/> | 44 android:title="@string/bookmarks_title"/> |
| 45 | 45 |
| 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/abb_block_ads" |
| 53 android:title="@string/abb_block_ads" |
| 54 android:enabled="false" |
| 55 android:checkable="true" /> |
| 56 |
| 52 <item android:id="@+id/desktop_mode" | 57 <item android:id="@+id/desktop_mode" |
| 53 android:title="@string/desktop_mode" | 58 android:title="@string/desktop_mode" |
| 54 android:checkable="true" /> | 59 android:checkable="true" /> |
| 55 | 60 |
| 56 <item android:id="@+id/addons_top_level" | 61 <item android:id="@+id/addons_top_level" |
| 57 android:title="@string/addons" | 62 android:title="@string/addons" |
| 58 android:visible="false" /> | 63 android:visible="false" /> |
| 59 | 64 |
| 60 <item android:id="@+id/page" | 65 <item android:id="@+id/page" |
| 61 android:title="@string/page"> | 66 android:title="@string/page"> |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 android:visible="false" | 116 android:visible="false" |
| 112 android:title="@string/char_encoding"/> | 117 android:title="@string/char_encoding"/> |
| 113 | 118 |
| 114 <item android:id="@+id/settings" | 119 <item android:id="@+id/settings" |
| 115 android:title="@string/settings" /> | 120 android:title="@string/settings" /> |
| 116 | 121 |
| 117 <item android:id="@+id/help" | 122 <item android:id="@+id/help" |
| 118 android:title="@string/help_menu" /> | 123 android:title="@string/help_menu" /> |
| 119 | 124 |
| 120 </menu> | 125 </menu> |
| OLD | NEW |