mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
56 lines
2.8 KiB
XML
56 lines
2.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
|
|
|
<!-- Tablet only: The contents under the "Customize" header for tablets,
|
|
See xml-v11/preferences.xml for single-pane v11+ phone layout.
|
|
Changes to preferences shoudl be mirrored to preferences_customize.xml. -->
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:gecko="http://schemas.android.com/apk/res-auto"
|
|
android:title="@string/pref_category_customize"
|
|
android:enabled="false">
|
|
|
|
<org.mozilla.gecko.preferences.SyncPreference android:key="android.not_a_preference.sync"
|
|
android:title="@string/pref_sync"
|
|
android:persistent="false" />
|
|
|
|
<PreferenceScreen android:title="@string/pref_category_home"
|
|
android:fragment="org.mozilla.gecko.preferences.GeckoPreferenceFragment" >
|
|
<extra android:name="resource"
|
|
android:value="preferences_home" />
|
|
</PreferenceScreen>
|
|
|
|
<PreferenceScreen android:title="@string/pref_category_search"
|
|
android:fragment="org.mozilla.gecko.preferences.GeckoPreferenceFragment" >
|
|
<extra android:name="resource"
|
|
android:value="preferences_search"/>
|
|
</PreferenceScreen>
|
|
|
|
<ListPreference android:key="android.not_a_preference.restoreSession3"
|
|
android:title="@string/pref_restore"
|
|
android:defaultValue="quit"
|
|
android:entries="@array/pref_restore_entries"
|
|
android:entryValues="@array/pref_restore_values"
|
|
android:persistent="true" />
|
|
|
|
<org.mozilla.gecko.preferences.AndroidImportPreference
|
|
android:key="android.not_a_preference.import_android"
|
|
gecko:entries="@array/pref_import_android_entries"
|
|
gecko:entryKeys="@array/pref_import_android_keys"
|
|
gecko:initialValues="@array/pref_import_android_values"
|
|
android:title="@string/pref_import_android"
|
|
android:positiveButtonText="@string/bookmarkhistory_button_import"
|
|
android:negativeButtonText="@string/button_cancel"
|
|
android:persistent="false" />
|
|
|
|
<ListPreference android:key="app.update.autodownload"
|
|
android:title="@string/pref_update_autodownload"
|
|
android:entries="@array/pref_update_autodownload_entries"
|
|
android:entryValues="@array/pref_update_autodownload_values"
|
|
android:persistent="false" />
|
|
|
|
</PreferenceScreen>
|
|
|