Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 <?xml version="1.0" encoding="utf-8"?>
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
4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
6 <!-- Tablet only: The contents under the "Customize" header for tablets,
7 See xml-v11/preferences.xml for single-pane v11+ phone layout.
8 Changes to preferences shoudl be mirrored to preferences_customize.xml. -->
10 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
11 xmlns:gecko="http://schemas.android.com/apk/res-auto"
12 android:title="@string/pref_category_customize"
13 android:enabled="false">
15 <org.mozilla.gecko.preferences.SyncPreference android:key="android.not_a_preference.sync"
16 android:title="@string/pref_sync"
17 android:persistent="false" />
19 <PreferenceScreen android:title="@string/pref_category_home"
20 android:summary="@string/pref_category_home_summary"
21 android:fragment="org.mozilla.gecko.preferences.GeckoPreferenceFragment" >
22 <extra android:name="resource"
23 android:value="preferences_home" />
24 </PreferenceScreen>
26 <PreferenceScreen android:title="@string/pref_category_search"
27 android:summary="@string/pref_category_search_summary"
28 android:fragment="org.mozilla.gecko.preferences.GeckoPreferenceFragment" >
29 <extra android:name="resource"
30 android:value="preferences_search"/>
31 </PreferenceScreen>
33 <ListPreference android:key="android.not_a_preference.restoreSession3"
34 android:title="@string/pref_restore"
35 android:defaultValue="quit"
36 android:entries="@array/pref_restore_entries"
37 android:entryValues="@array/pref_restore_values"
38 android:persistent="true" />
40 <org.mozilla.gecko.preferences.AndroidImportPreference
41 android:key="android.not_a_preference.import_android"
42 gecko:entries="@array/pref_import_android_entries"
43 gecko:entryKeys="@array/pref_import_android_keys"
44 gecko:initialValues="@array/pref_import_android_values"
45 android:title="@string/pref_import_android"
46 android:positiveButtonText="@string/bookmarkhistory_button_import"
47 android:negativeButtonText="@string/button_cancel"
48 android:persistent="false" />
50 <ListPreference android:key="app.update.autodownload"
51 android:title="@string/pref_update_autodownload"
52 android:entries="@array/pref_update_autodownload_entries"
53 android:entryValues="@array/pref_update_autodownload_values"
54 android:persistent="false" />
56 </PreferenceScreen>