mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
77 lines
3.8 KiB
XML
77 lines
3.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
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" />
|
|
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory android:title="@string/pref_category_content">
|
|
|
|
<ListPreference android:key="browser.menu.showCharacterEncoding"
|
|
android:title="@string/pref_char_encoding"
|
|
android:entries="@array/pref_char_encoding_entries"
|
|
android:entryValues="@array/pref_char_encoding_values"
|
|
android:persistent="false" />
|
|
|
|
<ListPreference android:key="plugin.enable"
|
|
android:title="@string/pref_plugins"
|
|
android:entries="@array/pref_plugins_entries"
|
|
android:entryValues="@array/pref_plugins_values"
|
|
android:persistent="false" />
|
|
|
|
<ListPreference android:key="font.size.inflation.minTwips"
|
|
android:title="@string/pref_text_size"
|
|
android:entries="@array/pref_font_size_entries"
|
|
android:entryValues="@array/pref_font_size_values"
|
|
android:persistent="false" />
|
|
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory android:title="@string/pref_category_privacy">
|
|
|
|
<org.mozilla.gecko.ConfirmPreference android:title="@string/pref_clear_history"
|
|
android:dialogMessage="@string/pref_clear_history_confirm"
|
|
android:positiveButtonText="@android:string/yes"
|
|
android:negativeButtonText="@android:string/no"
|
|
action="clear_history" />
|
|
|
|
<org.mozilla.gecko.ConfirmPreference android:title="@string/pref_clear_private_data"
|
|
android:dialogMessage="@string/pref_clear_private_data_confirm"
|
|
android:positiveButtonText="@android:string/yes"
|
|
android:negativeButtonText="@android:string/no"
|
|
action="clear_private_data" />
|
|
|
|
<CheckBoxPreference android:key="privacy.donottrackheader.enabled"
|
|
android:title="@string/pref_do_not_track"
|
|
android:defaultValue="false"
|
|
android:persistent="false" />
|
|
|
|
<CheckBoxPreference android:key="signon.rememberSignons"
|
|
android:title="@string/pref_remember_signons"
|
|
android:defaultValue="true"
|
|
android:persistent="false" />
|
|
|
|
<CheckBoxPreference android:key="network.cookie.cookieBehavior"
|
|
android:title="@string/pref_cookies"
|
|
android:persistent="false" />
|
|
|
|
<CheckBoxPreference android:key="toolkit.telemetry.enabled"
|
|
android:title="@string/pref_telemetry"
|
|
android:persistent="false" />
|
|
|
|
<CheckBoxPreference android:key="privacy.masterpassword.enabled"
|
|
android:title="@string/pref_use_master_password"
|
|
android:defaultValue="false"
|
|
android:persistent="false" />
|
|
|
|
</PreferenceCategory>
|
|
|
|
</PreferenceScreen>
|