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:title="@string/pref_category_privacy_short" |
| 9 android:enabled="false"> |
| 10 |
| 11 <org.adblockplus.browser.AbpCheckBoxPreference android:key="android.not_a_pr
eference.abp.acceptable_ads_state" |
| 12 android:title="@string/abp_pref_acceptable_ads" |
| 13 android:defaultValue="true" |
| 14 android:persistent="false" |
| 15 android:enabled="false" /> |
| 16 |
| 17 <!-- keys prefixed with "android.not_a_preference." are not synced with Geck
o --> |
| 18 <PreferenceCategory android:title="@string/abp_pref_category_acceptable_ads"
> |
| 19 <Preference android:key="android.not_a_preference.abp.about_acceptable_a
ds" |
| 20 android:selectable="false" |
| 21 android:persistent="false" |
| 22 android:title="About Acceptable ads" |
| 23 android:summary="@string/abp_pref_category_acceptable_ads_ex
tra_summary" /> |
| 24 </PreferenceCategory> |
| 25 |
| 26 </PreferenceScreen> |
| 27 |
| 28 |
OLD | NEW |