mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2025-12-01 12:31:45 +00:00
Added preference to display only items which have an episode
This commit is contained in:
@ -171,6 +171,9 @@
|
||||
<string name="player_buffering_msg">Buffering</string>
|
||||
<string name="pref_autoQueue_title">Auto-enqueue</string>
|
||||
<string name="pref_autoQueue_sum">Add an episode to the queue after it has been downloaded.</string>
|
||||
<string name="pref_display_only_episodes_title">Display only episodes</string>
|
||||
<string name="pref_display_only_episodes_sum">Display only items which also have an episode.</string>
|
||||
<string name="user_interface_label">User Interface</string>
|
||||
|
||||
|
||||
</resources>
|
||||
@ -1,7 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||
|
||||
<PreferenceCategory android:title="@string/playback_pref" >
|
||||
<PreferenceCategory android:title="@string/user_interface_label">
|
||||
<CheckBoxPreference android:title="@string/pref_display_only_episodes_title" android:summary="@string/pref_display_only_episodes_sum" android:key="prefDisplayOnlyEpisodes"/>
|
||||
</PreferenceCategory><PreferenceCategory android:title="@string/playback_pref" >
|
||||
<CheckBoxPreference
|
||||
android:defaultValue="true"
|
||||
android:enabled="true"
|
||||
@ -14,6 +16,7 @@
|
||||
android:key="prefFollowQueue"
|
||||
android:summary="@string/pref_followQueue_sum"
|
||||
android:title="@string/pref_followQueue_title" />
|
||||
|
||||
</PreferenceCategory>
|
||||
<PreferenceCategory android:title="@string/network_pref" >
|
||||
<ListPreference
|
||||
|
||||
Reference in New Issue
Block a user