| 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 | 92 |
| 93 <item android:id="@+id/tools" | 93 <item android:id="@+id/tools" |
| 94 android:title="@string/tools"> | 94 android:title="@string/tools"> |
| 95 | 95 |
| 96 <menu> | 96 <menu> |
| 97 | 97 |
| 98 <item android:id="@+id/downloads" | 98 <item android:id="@+id/downloads" |
| 99 android:title="@string/downloads"/> | 99 android:title="@string/downloads"/> |
| 100 | 100 |
| 101 <item android:id="@+id/addons" | 101 <item android:id="@+id/addons" |
| 102 android:visible="false" | |
| 103 android:title="@string/addons"/> | 102 android:title="@string/addons"/> |
| 104 | 103 |
| 105 <item android:id="@+id/logins" | 104 <item android:id="@+id/logins" |
| 106 android:title="@string/logins"/> | 105 android:title="@string/logins"/> |
| 107 | 106 |
| 108 <item android:id="@+id/new_guest_session" | 107 <item android:id="@+id/new_guest_session" |
| 109 android:visible="false" | 108 android:visible="false" |
| 110 android:title="@string/new_guest_session"/> | 109 android:title="@string/new_guest_session"/> |
| 111 | 110 |
| 112 <item android:id="@+id/exit_guest_session" | 111 <item android:id="@+id/exit_guest_session" |
| 113 android:visible="false" | 112 android:visible="false" |
| 114 android:title="@string/exit_guest_session"/> | 113 android:title="@string/exit_guest_session"/> |
| 115 | 114 |
| 116 </menu> | 115 </menu> |
| 117 | 116 |
| 118 </item> | 117 </item> |
| 119 | 118 |
| 120 <item android:id="@+id/char_encoding" | 119 <item android:id="@+id/char_encoding" |
| 121 android:visible="false" | 120 android:visible="false" |
| 122 android:title="@string/char_encoding"/> | 121 android:title="@string/char_encoding"/> |
| 123 | 122 |
| 124 <item android:id="@+id/settings" | 123 <item android:id="@+id/settings" |
| 125 android:title="@string/settings" /> | 124 android:title="@string/settings" /> |
| 126 | 125 |
| 127 <item android:id="@+id/help" | 126 <item android:id="@+id/help" |
| 128 android:visible="false" | 127 android:visible="false" |
| 129 android:title="@string/help_menu" /> | 128 android:title="@string/help_menu" /> |
| 130 | 129 |
| 131 </menu> | 130 </menu> |
| OLD | NEW |