mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
38 lines
1.7 KiB
XML
38 lines
1.7 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/. -->
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:gecko="http://schemas.android.com/apk/res-auto"
|
|
android:enabled="false">
|
|
|
|
<PreferenceCategory android:title="@string/pref_category_general">
|
|
|
|
<org.mozilla.gecko.LinkPreference android:title="@string/pref_about_firefox"
|
|
url="about:" />
|
|
|
|
<org.mozilla.gecko.SyncPreference android:title="@string/pref_sync"
|
|
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" />
|
|
|
|
<org.mozilla.gecko.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" />
|
|
|
|
</PreferenceCategory>
|
|
|
|
</PreferenceScreen>
|
|
|