diff options
Diffstat (limited to 'data/preferences_vendor.xml')
-rw-r--r-- | data/preferences_vendor.xml | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/data/preferences_vendor.xml b/data/preferences_vendor.xml new file mode 100644 index 0000000..3c0da56 --- /dev/null +++ b/data/preferences_vendor.xml @@ -0,0 +1,69 @@ +<?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:title="@string/pref_category_vendor" + android:enabled="false"> + + <org.mozilla.gecko.preferences.LinkPreference android:title="@string/pref_about_icecat" + url="about:" /> + + <org.mozilla.gecko.preferences.LinkPreference android:title="@string/pref_vendor_faqs" + url="http://libreplanet.org/wiki/Group:IceCat/FAQ"/> + + <org.mozilla.gecko.preferences.LinkPreference android:title="@string/pref_vendor_feedback" + url="https://lists.gnu.org/mailman/listinfo/bug-gnuzilla" /> + + <CheckBoxPreference android:key="android.not_a_preference.javascript.enabled" + android:defaultValue="true" + android:persistent="true" + android:title="Enable JavaScript"/> + + <CheckBoxPreference android:key="android.not_a_preference.browser.display.use_document_fonts" + android:defaultValue="false" + android:persistent="true" + android:title="Use system fonts"/> + + + <!-- <CheckBoxPreference android:key="android.not_a_preference.privacy.announcements.enabled" + android:title="@string/pref_show_product_announcements" + android:defaultValue="false" + android:persistent="true" /> + + <PreferenceCategory android:key="android.not_a_preference.datareporting.preferences" + android:title="@string/pref_category_datareporting"> + + <CheckBoxPreference android:key="toolkit.telemetry.enabled" + android:defaultValue="false" + android:title="@string/datareporting_telemetry_title" + android:summary="@string/datareporting_telemetry_summary" /> + + <CheckBoxPreference android:key="datareporting.crashreporter.submitEnabled" + android:title="@string/datareporting_crashreporter_title_short" + android:summary="@string/datareporting_crashreporter_summary" + android:defaultValue="false" /> + + <CheckBoxPreference android:key="app.geo.reportdata" + android:title="@string/datareporting_wifi_title" + android:summary="@string/datareporting_wifi_geolocation_summary" /> + + <org.mozilla.gecko.preferences.AlignRightLinkPreference android:key="android.not_a_preference.geo.learn_more" + android:title="@string/pref_learn_more" + url="https://location.services.mozilla.com/" /> + + <CheckBoxPreference android:key="android.not_a_preference.healthreport.uploadEnabled" + android:title="@string/datareporting_fhr_title" + android:summary="@string/datareporting_fhr_summary2" + android:defaultValue="false" /> + + <org.mozilla.gecko.preferences.AlignRightLinkPreference android:key="android.not_a_preference.healthreport.link" + android:title="@string/datareporting_abouthr_title" + url="about:healthreport" /> + + </PreferenceCategory> +--> + +</PreferenceScreen> |