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/reload" | 8 <item android:id="@+id/reload" |
9 android:icon="@drawable/ic_menu_reload" | 9 android:icon="@drawable/ic_menu_reload" |
10 android:title="@string/reload"/> | 10 android:title="@string/reload"/> |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 android:title="@string/apps"/> | 53 android:title="@string/apps"/> |
54 | 54 |
55 <item android:id="@+id/char_encoding" | 55 <item android:id="@+id/char_encoding" |
56 android:visible="false" | 56 android:visible="false" |
57 android:title="@string/char_encoding"/> | 57 android:title="@string/char_encoding"/> |
58 | 58 |
59 <item android:id="@+id/settings" | 59 <item android:id="@+id/settings" |
60 android:title="@string/settings" /> | 60 android:title="@string/settings" /> |
61 | 61 |
62 <item android:id="@+id/help" | 62 <item android:id="@+id/help" |
| 63 android:visible="false" |
63 android:title="@string/help_menu" /> | 64 android:title="@string/help_menu" /> |
64 | 65 |
65 <item android:id="@+id/new_guest_session" | 66 <item android:id="@+id/new_guest_session" |
66 android:icon="@drawable/ic_menu_guest" | 67 android:icon="@drawable/ic_menu_guest" |
67 android:visible="false" | 68 android:visible="false" |
68 android:title="@string/new_guest_session"/> | 69 android:title="@string/new_guest_session"/> |
69 | 70 |
70 <item android:id="@+id/exit_guest_session" | 71 <item android:id="@+id/exit_guest_session" |
71 android:icon="@drawable/ic_menu_guest" | 72 android:icon="@drawable/ic_menu_guest" |
72 android:visible="false" | 73 android:visible="false" |
73 android:title="@string/exit_guest_session"/> | 74 android:title="@string/exit_guest_session"/> |
74 </menu> | 75 </menu> |
OLD | NEW |