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 | 8 |
9 <org.adblockplus.browser.AbpCheckBoxPreference android:key="android.not_a_pr
eference.adblockbrowser.apiAdblockPlusEnabled" | 9 <org.adblockplus.browser.AbpCheckBoxPreference android:key="android.not_a_pr
eference.adblockbrowser.apiAdblockPlusEnabled" |
10 android:title="@string/abb_pref_category_abp" | 10 android:title="@string/abb_pref_category_abp" |
11 android:summary="@string/abb_pref_category_abp_summary" | 11 android:summary="@string/abb_pref_category_abp_summary" |
12 android:defaultValue="true" | 12 android:defaultValue="true" |
13 android:persistent="false" /> | 13 android:persistent="false" /> |
14 | 14 |
15 <PreferenceCategory android:title="@string/abb_pref_category_blocking" | 15 <PreferenceCategory android:title="@string/abb_pref_category_blocking" |
16 android:dependency="android.not_a_preference.adblockbrowser.apiAdblockPl
usEnabled" > | 16 android:dependency="android.not_a_preference.adblockbrowser.apiAdblockPl
usEnabled" > |
17 <PreferenceScreen android:title="@string/abb_pref_category_adblocking" | 17 <PreferenceScreen android:title="@string/abb_pref_category_filters" |
18 android:summary="@string/abb_pref_category_adblocking_
summary" > | 18 android:summary="@string/abb_pref_category_filters_sum
mary" > |
19 <intent android:action="android.intent.action.VIEW" | 19 <intent android:action="android.intent.action.VIEW" |
20 android:targetPackage="@string/android_package_name" | 20 android:targetPackage="@string/android_package_name" |
21 android:targetClass="org.mozilla.gecko.preferences.GeckoPr
eferences" > | 21 android:targetClass="org.mozilla.gecko.preferences.GeckoPr
eferences" > |
22 <extra android:name="resource" | 22 <extra android:name="resource" |
23 android:value="preferences_abb_adblocking" /> | 23 android:value="preferences_abb_adblocking" /> |
24 </intent> | 24 </intent> |
25 </PreferenceScreen> | 25 </PreferenceScreen> |
26 <PreferenceScreen android:title="@string/abb_pref_category_more_blocking
" | 26 <PreferenceScreen android:title="@string/abb_pref_category_more_blocking
" |
27 android:summary="@string/abb_pref_category_more_blocki
ng_summary" > | 27 android:summary="@string/abb_pref_category_more_blocki
ng_summary" > |
28 <intent android:action="android.intent.action.VIEW" | 28 <intent android:action="android.intent.action.VIEW" |
(...skipping 17 matching lines...) Expand all Loading... |
46 </PreferenceScreen> | 46 </PreferenceScreen> |
47 <!-- Commented out until implemented | 47 <!-- Commented out until implemented |
48 <PreferenceScreen android:title="@string/abb_pref_category_whitelisted_s
ites" | 48 <PreferenceScreen android:title="@string/abb_pref_category_whitelisted_s
ites" |
49 android:summary="@string/abb_pref_category_whitelisted
_sites_summary" > | 49 android:summary="@string/abb_pref_category_whitelisted
_sites_summary" > |
50 </PreferenceScreen> | 50 </PreferenceScreen> |
51 --> | 51 --> |
52 </PreferenceCategory> | 52 </PreferenceCategory> |
53 | 53 |
54 </PreferenceScreen> | 54 </PreferenceScreen> |
55 | 55 |
OLD | NEW |