diff options
author | Scott Jackson <daneren2005@gmail.com> | 2013-10-27 13:41:34 -0700 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2013-10-27 13:41:34 -0700 |
commit | fc6b17b5c3be344ce4ceda1e186f759e440c9c22 (patch) | |
tree | a0f7c398f8b8969af7de665511a08749a8b200c2 /res | |
parent | c507a6780f34111a4a0298799fa4f2298a9d953e (diff) | |
download | dsub-fc6b17b5c3be344ce4ceda1e186f759e440c9c22.tar.gz dsub-fc6b17b5c3be344ce4ceda1e186f759e440c9c22.tar.bz2 dsub-fc6b17b5c3be344ce4ceda1e186f759e440c9c22.zip |
Add option to hide podcast tab
Diffstat (limited to 'res')
-rw-r--r-- | res/values/strings.xml | 4 | ||||
-rw-r--r-- | res/xml/settings.xml | 10 |
2 files changed, 13 insertions, 1 deletions
diff --git a/res/values/strings.xml b/res/values/strings.xml index 579acf3a..1dffdd1c 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -322,7 +322,7 @@ <string name="settings.gapless_playback_summary">The Galaxy S3 seems to be experiencing freezes/other weird issue since the introduction of gapless playback. Turn this off to fix the issue.</string>
<string name="settings.chat_refresh">Chat Refresh Rate (Secs)</string>
<string name="settings.chat_enabled">Chat Enabled</string>
- <string name="settings.chat_enabled_summary">Whether or not to display the chat tab. Restart app after changing.</string>
+ <string name="settings.chat_enabled_summary">Whether or not to display the chat listing. Restart app after changing.</string>
<string name="settings.video_title">Video</string>
<string name="settings.video_player">Video Player</string>
<string name="settings.video_raw">Raw (Requires Subsonic 4.8+)</string>
@@ -333,6 +333,8 @@ <string name="settings.playback_title">Playback</string>
<string name="settings.hide_widget_title">Hide Widget</string>
<string name="settings.hide_widget_summary">Hide widget after exiting app</string>
+ <string name="settings.podcasts_enabled">Podcasts Enabled</string>
+ <string name="settings.podcasts_enabled_summary">Whether or not to display the podcasts listing. Restart app after changing.</string>
<string name="shuffle.title">Shuffle By</string>
<string name="shuffle.startYear">Start Year:</string>
diff --git a/res/xml/settings.xml b/res/xml/settings.xml index 8f6759c0..a53b1ee4 100644 --- a/res/xml/settings.xml +++ b/res/xml/settings.xml @@ -60,6 +60,16 @@ android:defaultValue="30" android:digits="0123456789"/> </PreferenceCategory> + + <PreferenceCategory + android:title="@string/settings.other_title"> + + <CheckBoxPreference + android:title="@string/settings.podcasts_enabled" + android:summary="@string/settings.podcasts_enabled_summary" + android:key="podcastsEnabled" + android:defaultValue="true"/> + </PreferenceCategory> </PreferenceScreen> <PreferenceScreen |