| 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 <!-- |
| 3 - License, v. 2.0. If a copy of the MPL was not distributed with this | 3 - This file is part of the Adblock Plus <https://adblockplus.org/>, |
| 4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> | 4 - Copyright (C) 2006-present eyeo GmbH |
| 5 - |
| 6 - Adblock Plus is free software: you can redistribute it and/or modify |
| 7 - it under the terms of the GNU General Public License version 3 as |
| 8 - published by the Free Software Foundation. |
| 9 - |
| 10 - Adblock Plus is distributed in the hope that it will be useful, |
| 11 - but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 - GNU General Public License for more details. |
| 14 - |
| 15 - You should have received a copy of the GNU General Public License |
| 16 - along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
| 17 --> |
| 5 | 18 |
| 6 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" | 19 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" |
| 7 xmlns:gecko="http://schemas.android.com/apk/res-auto" > | 20 xmlns:gecko="http://schemas.android.com/apk/res-auto" > |
| 8 | 21 |
| 9 <org.adblockplus.browser.AbpCheckBoxPreference android:key="android.not_a_pr
eference.adblockbrowser.apiAdblockPlusEnabled" | 22 <org.adblockplus.browser.AbpCheckBoxPreference android:key="android.not_a_pr
eference.adblockbrowser.apiAdblockPlusEnabled" |
| 10 android:title="@string/abb_pref_category_abp" | 23 android:title="@string/abb_pref_category_abp" |
| 11 android:summary="@string/abb_pref_category_abp_summary" | 24 android:summary="@string/abb_pref_category_abp_summary" |
| 12 android:defaultValue="true" | 25 android:defaultValue="true" |
| 13 android:persistent="false" /> | 26 android:persistent="false" /> |
| 14 | 27 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 38 </PreferenceScreen> | 51 </PreferenceScreen> |
| 39 <!-- Commented out until implemented | 52 <!-- Commented out until implemented |
| 40 <PreferenceScreen android:title="@string/abb_pref_category_whitelisted_s
ites" | 53 <PreferenceScreen android:title="@string/abb_pref_category_whitelisted_s
ites" |
| 41 android:summary="@string/abb_pref_category_whitelisted
_sites_summary" > | 54 android:summary="@string/abb_pref_category_whitelisted
_sites_summary" > |
| 42 </PreferenceScreen> | 55 </PreferenceScreen> |
| 43 --> | 56 --> |
| 44 </PreferenceCategory> | 57 </PreferenceCategory> |
| 45 | 58 |
| 46 </PreferenceScreen> | 59 </PreferenceScreen> |
| 47 | 60 |
| OLD | NEW |