blob: 3c0da56770c67aa97852f97ab29aa566c5486683 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
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>
|