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
michael@0 | 1 | <?xml version="1.0" encoding="utf-8"?> |
michael@0 | 2 | <!-- This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | - License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> |
michael@0 | 5 | |
michael@0 | 6 | <!-- Changes should be mirrored to preferences_customize_tablet.xml. --> |
michael@0 | 7 | |
michael@0 | 8 | <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" |
michael@0 | 9 | xmlns:gecko="http://schemas.android.com/apk/res-auto" |
michael@0 | 10 | android:enabled="false"> |
michael@0 | 11 | |
michael@0 | 12 | <PreferenceScreen android:title="@string/pref_category_home" |
michael@0 | 13 | android:summary="@string/pref_category_home_summary" |
michael@0 | 14 | android:fragment="org.mozilla.gecko.preferences.GeckoPreferenceFragment" > |
michael@0 | 15 | <extra android:name="resource" |
michael@0 | 16 | android:value="preferences_home" /> |
michael@0 | 17 | </PreferenceScreen> |
michael@0 | 18 | |
michael@0 | 19 | <PreferenceScreen android:title="@string/pref_category_search" |
michael@0 | 20 | android:summary="@string/pref_category_search_summary" |
michael@0 | 21 | android:fragment="org.mozilla.gecko.preferences.GeckoPreferenceFragment" > |
michael@0 | 22 | <extra android:name="resource" |
michael@0 | 23 | android:value="preferences_search"/> |
michael@0 | 24 | </PreferenceScreen> |
michael@0 | 25 | |
michael@0 | 26 | <ListPreference android:key="android.not_a_preference.restoreSession3" |
michael@0 | 27 | android:title="@string/pref_restore" |
michael@0 | 28 | android:defaultValue="quit" |
michael@0 | 29 | android:entries="@array/pref_restore_entries" |
michael@0 | 30 | android:entryValues="@array/pref_restore_values" |
michael@0 | 31 | android:persistent="true" /> |
michael@0 | 32 | |
michael@0 | 33 | <org.mozilla.gecko.preferences.AndroidImportPreference |
michael@0 | 34 | android:key="android.not_a_preference.import_android" |
michael@0 | 35 | gecko:entries="@array/pref_import_android_entries" |
michael@0 | 36 | gecko:entryKeys="@array/pref_import_android_keys" |
michael@0 | 37 | gecko:initialValues="@array/pref_import_android_values" |
michael@0 | 38 | android:title="@string/pref_import_android" |
michael@0 | 39 | android:positiveButtonText="@string/bookmarkhistory_button_import" |
michael@0 | 40 | android:negativeButtonText="@string/button_cancel" |
michael@0 | 41 | android:persistent="false" /> |
michael@0 | 42 | |
michael@0 | 43 | <ListPreference android:key="app.update.autodownload" |
michael@0 | 44 | android:title="@string/pref_update_autodownload" |
michael@0 | 45 | android:entries="@array/pref_update_autodownload_entries" |
michael@0 | 46 | android:entryValues="@array/pref_update_autodownload_values" |
michael@0 | 47 | android:persistent="false" /> |
michael@0 | 48 | |
michael@0 | 49 | </PreferenceScreen> |
michael@0 | 50 |