OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <!-- This Source Code Form is subject to the terms of the Mozilla Public | 2 <!-- This Source Code Form is subject to the terms of the Mozilla Public |
3 - License, v. 2.0. If a copy of the MPL was not distributed with this | 3 - License, v. 2.0. If a copy of the MPL was not distributed with this |
4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> | 4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> |
5 | 5 |
6 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" | 6 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" |
7 xmlns:gecko="http://schemas.android.com/apk/res-auto" | 7 xmlns:gecko="http://schemas.android.com/apk/res-auto" |
8 android:title="@string/pref_category_advanced" | 8 android:title="@string/pref_category_advanced" |
9 android:enabled="false"> | 9 android:enabled="false"> |
10 | 10 |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 <CheckBoxPreference android:key="media.autoplay.enabled" | 47 <CheckBoxPreference android:key="media.autoplay.enabled" |
48 android:title="@string/pref_media_autoplay_enabled" | 48 android:title="@string/pref_media_autoplay_enabled" |
49 android:summary="@string/pref_media_autoplay_enabled_sum
mary" /> | 49 android:summary="@string/pref_media_autoplay_enabled_sum
mary" /> |
50 | 50 |
51 <ListPreference android:key="browser.menu.showCharacterEncoding" | 51 <ListPreference android:key="browser.menu.showCharacterEncoding" |
52 android:title="@string/pref_char_encoding" | 52 android:title="@string/pref_char_encoding" |
53 android:entries="@array/pref_char_encoding_entries" | 53 android:entries="@array/pref_char_encoding_entries" |
54 android:entryValues="@array/pref_char_encoding_values" | 54 android:entryValues="@array/pref_char_encoding_values" |
55 android:persistent="false" /> | 55 android:persistent="false" /> |
56 | 56 |
57 <CheckBoxPreference android:key="devtools.remote.usb.enabled" | 57 <!-- Removed debugging preferences --> |
58 android:title="@string/pref_developer_remotedebugging_us
b" /> | 58 <!-- See https://issues.adblockplus.org/ticket/5434 --> |
59 | |
60 | |
61 <CheckBoxPreference android:key="devtools.remote.wifi.enabled" | |
62 android:title="@string/pref_developer_remotedebugging_wi
fi" /> | |
63 | |
64 <org.mozilla.gecko.preferences.AlignRightLinkPreference android:key="android
.not_a_preference.remote_debugging.link" | |
65 android:title="@stri
ng/pref_learn_more" | |
66 android:persistent="
false" | |
67 url="https://develop
er.mozilla.org/docs/Tools/Remote_Debugging/Debugging_Firefox_for_Android_with_We
bIDE" /> | |
68 | 59 |
69 </PreferenceScreen> | 60 </PreferenceScreen> |
OLD | NEW |