| 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" > | |
| 8 | 7 |
| 9 <org.adblockplus.browser.AbpCheckBoxPreference android:key="android.not_a_pr
eference.adblockbrowser.apiAdblockPlusEnabled" | 8 <org.adblockplus.browser.AbpCheckBoxPreference android:key="android.not_a_pr
eference.adblockbrowser.apiAdblockPlusEnabled" |
| 10 android:title="@string/abb_pref_category_abp" | 9 android:title="@string/abb_pref_category_abp" |
| 11 android:summary="@string/abb_pref_category_abp_summary" | 10 android:summary="@string/abb_pref_category_abp_summary" |
| 12 android:defaultValue="true" | 11 android:defaultValue="true" |
| 13 android:persistent="false" /> | 12 android:persistent="false" /> |
| 14 | 13 |
| 15 <PreferenceCategory android:title="@string/abb_pref_category_blocking" | 14 <PreferenceCategory android:title="@string/abb_pref_category_blocking" |
| 16 android:dependency="android.not_a_preference.adblockbrowser.apiAdblockPl
usEnabled" > | 15 android:dependency="android.not_a_preference.adblockbrowser.apiAdblockPl
usEnabled" > |
| 17 <PreferenceScreen android:title="@string/abb_pref_category_languages" | 16 <PreferenceScreen android:title="@string/abb_pref_category_languages" |
| (...skipping 20 matching lines...) Expand all Loading... |
| 38 </PreferenceScreen> | 37 </PreferenceScreen> |
| 39 <!-- Commented out until implemented | 38 <!-- Commented out until implemented |
| 40 <PreferenceScreen android:title="@string/abb_pref_category_whitelisted_s
ites" | 39 <PreferenceScreen android:title="@string/abb_pref_category_whitelisted_s
ites" |
| 41 android:summary="@string/abb_pref_category_whitelisted
_sites_summary" > | 40 android:summary="@string/abb_pref_category_whitelisted
_sites_summary" > |
| 42 </PreferenceScreen> | 41 </PreferenceScreen> |
| 43 --> | 42 --> |
| 44 </PreferenceCategory> | 43 </PreferenceCategory> |
| 45 | 44 |
| 46 </PreferenceScreen> | 45 </PreferenceScreen> |
| 47 | 46 |
| OLD | NEW |