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 <!-- Changes should be mirrored to preferences_customize_tablet.xml. -->
8 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
9 xmlns:gecko="http://schemas.android.com/apk/res-auto"
10 android:enabled="false">
12 <PreferenceScreen android:title="@string/pref_category_home"
13 android:summary="@string/pref_category_home_summary"
14 android:fragment="org.mozilla.gecko.preferences.GeckoPreferenceFragment" >
15 <extra android:name="resource"
16 android:value="preferences_home" />
17 </PreferenceScreen>
19 <PreferenceScreen android:title="@string/pref_category_search"
20 android:summary="@string/pref_category_search_summary"
21 android:fragment="org.mozilla.gecko.preferences.GeckoPreferenceFragment" >
22 <extra android:name="resource"
23 android:value="preferences_search"/>
24 </PreferenceScreen>
26 <ListPreference android:key="android.not_a_preference.restoreSession3"
27 android:title="@string/pref_restore"
28 android:defaultValue="quit"
29 android:entries="@array/pref_restore_entries"
30 android:entryValues="@array/pref_restore_values"
31 android:persistent="true" />
33 <org.mozilla.gecko.preferences.AndroidImportPreference
34 android:key="android.not_a_preference.import_android"
35 gecko:entries="@array/pref_import_android_entries"
36 gecko:entryKeys="@array/pref_import_android_keys"
37 gecko:initialValues="@array/pref_import_android_values"
38 android:title="@string/pref_import_android"
39 android:positiveButtonText="@string/bookmarkhistory_button_import"
40 android:negativeButtonText="@string/button_cancel"
41 android:persistent="false" />
43 <ListPreference android:key="app.update.autodownload"
44 android:title="@string/pref_update_autodownload"
45 android:entries="@array/pref_update_autodownload_entries"
46 android:entryValues="@array/pref_update_autodownload_values"
47 android:persistent="false" />
49 </PreferenceScreen>