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 <!-- Phone v11+ only: Sync is a top-level menu item. | 6 <!-- Phone v11+ only: Sync is a top-level menu item. |
7 See xml-v11/preference_headers.xml for tablet layout. | 7 See xml-v11/preference_headers.xml for tablet layout. |
8 Preference changes here should be mirrored to xml/preferences.xml.in. --> | 8 Preference changes here should be mirrored to xml/preferences.xml.in. --> |
9 | 9 |
10 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" | 10 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" |
(...skipping 16 matching lines...) Expand all Loading... |
27 android:value="preferences_display" /> | 27 android:value="preferences_display" /> |
28 </PreferenceScreen> | 28 </PreferenceScreen> |
29 | 29 |
30 | 30 |
31 <PreferenceScreen android:title="@string/pref_category_privacy_short" | 31 <PreferenceScreen android:title="@string/pref_category_privacy_short" |
32 android:fragment="org.mozilla.gecko.preferences.GeckoPrefe
renceFragment" > | 32 android:fragment="org.mozilla.gecko.preferences.GeckoPrefe
renceFragment" > |
33 <extra android:name="resource" | 33 <extra android:name="resource" |
34 android:value="preferences_privacy" /> | 34 android:value="preferences_privacy" /> |
35 </PreferenceScreen> | 35 </PreferenceScreen> |
36 | 36 |
| 37 <!-- Adblocking preferences --> |
| 38 <PreferenceScreen android:title="@string/adblockbrowser_pref_category_adbloc
king" |
| 39 android:fragment="org.mozilla.gecko.preferences.GeckoPrefe
renceFragment" > |
| 40 <extra android:name="resource" |
| 41 android:value="preferences_adblockbrowser" /> |
| 42 </PreferenceScreen> |
| 43 |
37 <PreferenceScreen android:title="@string/pref_category_language" | 44 <PreferenceScreen android:title="@string/pref_category_language" |
38 android:fragment="org.mozilla.gecko.preferences.GeckoPrefe
renceFragment" > | 45 android:fragment="org.mozilla.gecko.preferences.GeckoPrefe
renceFragment" > |
39 <extra android:name="resource" | 46 <extra android:name="resource" |
40 android:value="preferences_locale" /> | 47 android:value="preferences_locale" /> |
41 </PreferenceScreen> | 48 </PreferenceScreen> |
42 | 49 |
43 <PreferenceScreen android:title="@string/pref_category_vendor" | 50 <PreferenceScreen android:title="@string/pref_category_vendor" |
44 android:fragment="org.mozilla.gecko.preferences.GeckoPrefe
renceFragment" > | 51 android:fragment="org.mozilla.gecko.preferences.GeckoPrefe
renceFragment" > |
45 <extra android:name="resource" | 52 <extra android:name="resource" |
46 android:value="preferences_vendor"/> | 53 android:value="preferences_vendor"/> |
47 </PreferenceScreen> | 54 </PreferenceScreen> |
48 | 55 |
49 <PreferenceScreen android:title="@string/pref_category_devtools" | 56 <PreferenceScreen android:title="@string/pref_category_devtools" |
50 android:fragment="org.mozilla.gecko.preferences.GeckoPrefe
renceFragment" > | 57 android:fragment="org.mozilla.gecko.preferences.GeckoPrefe
renceFragment" > |
51 <extra android:name="resource" | 58 <extra android:name="resource" |
52 android:value="preferences_devtools"/> | 59 android:value="preferences_devtools"/> |
53 </PreferenceScreen> | 60 </PreferenceScreen> |
54 | 61 |
55 </PreferenceScreen> | 62 </PreferenceScreen> |
OLD | NEW |