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 <!-- Tablet only: The contents under the "General" header for tablets, | 6 <!-- Tablet only: The contents under the "General" header for tablets, |
7 See xml-v11/preferences.xml for single-pane v11+ phone layout. | 7 See xml-v11/preferences.xml for single-pane v11+ phone layout. |
8 Changes to preferences should be mirrored to preferences_general.xml. --> | 8 Changes to preferences should be mirrored to preferences_general.xml. --> |
9 | 9 |
10 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" | 10 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" |
11 android:title="@string/pref_category_general" | 11 android:title="@string/pref_category_general" |
12 android:enabled="false"> | 12 android:enabled="false"> |
13 | 13 |
14 <org.mozilla.gecko.preferences.SyncPreference android:key="android.not_a_pre
ference.sync" | 14 <!-- Removed Sync Preference. See https://issues.adblockplus.org/ticket/6574
--> |
15 android:title="@string/pref_sy
nc" | |
16 android:persistent="false" /> | |
17 | 15 |
18 <PreferenceScreen android:key="android.not_a_preference.general_home" | 16 <PreferenceScreen android:key="android.not_a_preference.general_home" |
19 android:title="@string/pref_category_home" | 17 android:title="@string/pref_category_home" |
20 android:summary="@string/pref_category_home_summary" | 18 android:summary="@string/pref_category_home_summary" |
21 android:fragment="org.mozilla.gecko.preferences.GeckoPrefe
renceFragment" > | 19 android:fragment="org.mozilla.gecko.preferences.GeckoPrefe
renceFragment" > |
22 <extra android:name="resource" | 20 <extra android:name="resource" |
23 android:value="preferences_home" /> | 21 android:value="preferences_home" /> |
24 </PreferenceScreen> | 22 </PreferenceScreen> |
25 | 23 |
26 <PreferenceScreen android:title="@string/pref_category_language" | 24 <PreferenceScreen android:title="@string/pref_category_language" |
27 android:summary="@string/pref_category_language_summary" | 25 android:summary="@string/pref_category_language_summary" |
28 android:fragment="org.mozilla.gecko.preferences.GeckoPrefe
renceFragment" > | 26 android:fragment="org.mozilla.gecko.preferences.GeckoPrefe
renceFragment" > |
29 <extra android:name="resource" | 27 <extra android:name="resource" |
30 android:value="preferences_locale" /> | 28 android:value="preferences_locale" /> |
31 </PreferenceScreen> | 29 </PreferenceScreen> |
32 | 30 |
33 <SwitchPreference android:key="browser.chrome.dynamictoolbar" | 31 <SwitchPreference android:key="browser.chrome.dynamictoolbar" |
34 android:title="@string/pref_scroll_title_bar2" | 32 android:title="@string/pref_scroll_title_bar2" |
35 android:summary="@string/pref_scroll_title_bar_summary" /> | 33 android:summary="@string/pref_scroll_title_bar_summary" /> |
36 | 34 |
37 <SwitchPreference android:key="android.not_a_preference.tab_queue" | 35 <SwitchPreference android:key="android.not_a_preference.tab_queue" |
38 android:title="@string/pref_tab_queue_title" | 36 android:title="@string/pref_tab_queue_title" |
39 android:summary="@string/pref_tab_queue_summary" | 37 android:summary="@string/pref_tab_queue_summary" |
40 android:defaultValue="false" /> | 38 android:defaultValue="false" /> |
41 | 39 |
42 </PreferenceScreen> | 40 </PreferenceScreen> |
43 | 41 |
OLD | NEW |