| OLD | NEW | 
| (Empty) |  | 
 |   1 <?xml version="1.0" encoding="utf-8"?> | 
 |   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 | 
 |   4    - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> | 
 |   5  | 
 |   6 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" | 
 |   7                   xmlns:gecko="http://schemas.android.com/apk/res-auto" | 
 |   8                   android:enabled="false"> | 
 |   9  | 
 |  10     <PreferenceCategory android:title="@string/abp_pref_category_blocking"> | 
 |  11         <PreferenceScreen android:title="@string/abp_pref_category_adblocking" | 
 |  12                           android:summary="@string/abp_pref_category_adblocking_
    summary" > | 
 |  13         </PreferenceScreen> | 
 |  14         <PreferenceScreen android:title="@string/abp_pref_category_further_block
    ing" | 
 |  15                           android:summary="@string/abp_pref_category_further_blo
    cking_summary" > | 
 |  16         </PreferenceScreen> | 
 |  17     </PreferenceCategory> | 
 |  18  | 
 |  19     <PreferenceCategory android:title="@string/abp_pref_category_exceptions"> | 
 |  20         <PreferenceScreen android:title="@string/abp_pref_category_acceptable_ad
    s" | 
 |  21                           android:summary="@string/abp_pref_category_acceptable_
    ads_summary" > | 
 |  22               <intent android:action="android.intent.action.VIEW" | 
 |  23                       android:targetPackage="@string/android_package_name" | 
 |  24                       android:targetClass="org.mozilla.gecko.preferences.GeckoPr
    eferences" > | 
 |  25                   <extra android:name="resource" | 
 |  26                          android:value="preferences_abp_acceptable_ads" /> | 
 |  27               </intent> | 
 |  28         </PreferenceScreen> | 
 |  29         <PreferenceScreen android:title="@string/abp_pref_category_whitelisted_s
    ites" | 
 |  30                           android:summary="@string/abp_pref_category_whitelisted
    _sites_summary" > | 
 |  31         </PreferenceScreen> | 
 |  32     </PreferenceCategory> | 
 |  33  | 
 |  34 </PreferenceScreen> | 
 |  35  | 
| OLD | NEW |