diff options
author | daniel oeh <daniel.oeh@gmail.com> | 2012-08-06 10:54:49 +0200 |
---|---|---|
committer | daniel oeh <daniel.oeh@gmail.com> | 2012-08-06 10:54:49 +0200 |
commit | 977c3f3674ea8cc7bcfcf0ffb0d6308ea9ab7d4d (patch) | |
tree | fd2c8d6639c2baa2f3a108a9607564b16c51be50 /res | |
parent | 854e2be3fd20846566bc90835a90a4d736deb74f (diff) | |
download | AntennaPod-977c3f3674ea8cc7bcfcf0ffb0d6308ea9ab7d4d.zip |
Added auto-queue preference
Diffstat (limited to 'res')
-rw-r--r-- | res/values/strings.xml | 2 | ||||
-rw-r--r-- | res/xml/preferences.xml | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/res/values/strings.xml b/res/values/strings.xml index b8c80f3c7..172ecbf64 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -169,6 +169,8 @@ <string name="add_feed_label">Add feed</string> <string name="miro_feed_added">Feed is being added</string> <string name="player_buffering_msg">Buffering</string> + <string name="pref_autoQueue_title">Auto-queue</string> + <string name="pref_autoQueue_sum">Add an episode to the queue after it has been downloaded.</string> </resources>
\ No newline at end of file diff --git a/res/xml/preferences.xml b/res/xml/preferences.xml index d6c9ff1aa..0a2c5e73b 100644 --- a/res/xml/preferences.xml +++ b/res/xml/preferences.xml @@ -30,6 +30,7 @@ android:key="prefMobileUpdate" android:summary="@string/pref_mobileUpdate_sum" android:title="@string/pref_mobileUpdate_title" /> + <CheckBoxPreference android:summary="@string/pref_autoQueue_sum" android:defaultValue="true" android:key="prefAutoQueue" android:title="@string/pref_autoQueue_title"/> </PreferenceCategory> <PreferenceCategory android:title="@string/flattr_settings_label" > <PreferenceScreen |