| 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 android:layout_width="fill_parent" | 3 android:layout_width="fill_parent" |
| 4 android:layout_height="fill_parent" > | 4 android:layout_height="fill_parent" > |
| 5 | 5 |
| 6 <PreferenceScreen | 6 <PreferenceScreen |
| 7 android:summary="@string/manage_subscriptions_summary" | 7 android:summary="@string/manage_subscriptions_summary" |
| 8 android:title="@string/manage_subscriptions" > | 8 android:title="@string/manage_subscriptions" > |
| 9 | 9 |
| 10 <org.adblockplus.sbrowser.contentblocker.ListedSubscriptionsPreferenceCa
tegory | 10 <org.adblockplus.sbrowser.contentblocker.ListedSubscriptionsPreferenceCa
tegory |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 <PreferenceScreen | 31 <PreferenceScreen |
| 32 android:summary="@string/whitelisted_websites_summary" | 32 android:summary="@string/whitelisted_websites_summary" |
| 33 android:title="@string/whitelisted_websites"> | 33 android:title="@string/whitelisted_websites"> |
| 34 | 34 |
| 35 <org.adblockplus.sbrowser.contentblocker.WhitelistedWebsitesPreferenceCa
tegory/> | 35 <org.adblockplus.sbrowser.contentblocker.WhitelistedWebsitesPreferenceCa
tegory/> |
| 36 </PreferenceScreen> | 36 </PreferenceScreen> |
| 37 | 37 |
| 38 <ListPreference | 38 <ListPreference |
| 39 android:layout_width="fill_parent" | 39 android:layout_width="fill_parent" |
| 40 android:layout_height="wrap_content" | 40 android:layout_height="wrap_content" |
| 41 android:defaultValue="1" | 41 android:defaultValue="@string/download_settings_value_wifi" |
| 42 android:entries="@array/download_settings" | 42 android:entries="@array/download_settings" |
| 43 android:entryValues="@array/download_settings_values" | 43 android:entryValues="@array/download_settings_values" |
| 44 android:key="@string/key_automatic_updates" | 44 android:key="@string/key_automatic_updates" |
| 45 android:title="@string/automatic_updates" /> | 45 android:title="@string/automatic_updates" /> |
| 46 | 46 |
| 47 <PreferenceCategory | 47 <PreferenceCategory |
| 48 android:layout_width="fill_parent" | 48 android:layout_width="fill_parent" |
| 49 android:layout_height="wrap_content" | 49 android:layout_height="wrap_content" |
| 50 android:title="@string/acceptable_ads_category" > | 50 android:title="@string/acceptable_ads_category" > |
| 51 | 51 |
| 52 <CheckBoxPreference | 52 <CheckBoxPreference |
| 53 android:layout_width="fill_parent" | 53 android:layout_width="fill_parent" |
| 54 android:layout_height="wrap_content" | 54 android:layout_height="wrap_content" |
| 55 android:defaultValue="true" | 55 android:defaultValue="true" |
| 56 android:key="@string/key_acceptable_ads" | 56 android:key="@string/key_acceptable_ads" |
| 57 android:singleLine="false" | 57 android:singleLine="false" |
| 58 android:title="@string/enable_acceptable_ads" /> | 58 android:title="@string/enable_acceptable_ads" /> |
| 59 </PreferenceCategory> | 59 </PreferenceCategory> |
| 60 | 60 |
| 61 </PreferenceScreen> | 61 </PreferenceScreen> |
| OLD | NEW |