OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" | 2 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" |
3 xmlns:gecko="http://schemas.android.com/apk/res-auto" | |
4 android:title="@string/pref_category_privacy_short" > | 3 android:title="@string/pref_category_privacy_short" > |
5 | 4 |
6 <!-- keys prefixed with "android.not_a_preference." are not synced with Geck
o --> | 5 <!-- keys prefixed with "android.not_a_preference." are not synced with Geck
o --> |
7 <org.adblockplus.browser.AbpCheckBoxPreference android:key="android.not_a_pr
eference.adblockbrowser.apiAcceptableAdsEnabled" | 6 <org.adblockplus.browser.AbpCheckBoxPreference android:key="android.not_a_pr
eference.adblockbrowser.apiAcceptableAdsEnabled" |
8 android:title="@string/abb_pref_acceptable_ads" | 7 android:title="@string/abb_pref_acceptable_ads" |
9 android:defaultValue="true" | 8 android:defaultValue="true" |
10 android:persistent="false" | 9 android:persistent="false" |
11 android:enabled="false" /> | 10 android:enabled="false" /> |
12 | 11 |
13 <PreferenceCategory android:title="@string/abb_pref_about_acceptable_ads"> | 12 <PreferenceCategory android:title="@string/abb_pref_about_acceptable_ads"> |
14 <Preference android:key="android.not_a_preference.abb.aboutAcceptableAds
" | 13 <Preference android:key="android.not_a_preference.abb.aboutAcceptableAds
" |
15 android:selectable="false" | 14 android:selectable="false" |
16 android:persistent="false" | 15 android:persistent="false" |
17 android:summary="@string/abb_pref_category_acceptable_ads_ex
tra_summary" /> | 16 android:summary="@string/abb_pref_category_acceptable_ads_ex
tra_summary" /> |
18 </PreferenceCategory> | 17 </PreferenceCategory> |
19 | 18 |
20 </PreferenceScreen> | 19 </PreferenceScreen> |
21 | 20 |
22 | 21 |
OLD | NEW |