summaryrefslogtreecommitdiff
path: root/core/src/main/res/values
diff options
context:
space:
mode:
authordamoasda <46045854+damoasda@users.noreply.github.com>2019-07-09 08:55:46 +0200
committerdamoasda <46045854+damoasda@users.noreply.github.com>2019-07-09 08:55:46 +0200
commit9b7a61471d342a2db4a2a6fe0681e748f15ca903 (patch)
treec87cd23f6c33f8421326637955cd0c01cc3d9392 /core/src/main/res/values
parent63eb766dffe9684899f2d27e3dad540bc3c9f184 (diff)
downloadAntennaPod-9b7a61471d342a2db4a2a6fe0681e748f15ca903.zip
Queue: Keep sorted #1556
Diffstat (limited to 'core/src/main/res/values')
-rw-r--r--core/src/main/res/values/arrays.xml23
-rw-r--r--core/src/main/res/values/strings.xml7
2 files changed, 30 insertions, 0 deletions
diff --git a/core/src/main/res/values/arrays.xml b/core/src/main/res/values/arrays.xml
index 39d1c0a94..d5df4f646 100644
--- a/core/src/main/res/values/arrays.xml
+++ b/core/src/main/res/values/arrays.xml
@@ -187,6 +187,29 @@
<item>3</item>
</string-array>
+ <string-array name="nav_queue_sort_options">
+ <item>@string/sort_manually</item>
+ <item>@string/sort_date_new_old</item>
+ <item>@string/sort_date_old_new</item>
+ <item>@string/sort_duration_short_long</item>
+ <item>@string/sort_duration_long_short</item>
+ <item>@string/sort_episode_title_a_z</item>
+ <item>@string/sort_episode_title_z_a</item>
+ <item>@string/sort_feed_title_a_z</item>
+ <item>@string/sort_feed_title_z_a</item>
+ </string-array>
+ <string-array name="nav_queue_sort_values">
+ <item>MANUALLY</item>
+ <item>DATE_NEW_OLD</item>
+ <item>DATE_OLD_NEW</item>
+ <item>DURATION_SHORT_LONG</item>
+ <item>DURATION_LONG_SHORT</item>
+ <item>EPISODE_TITLE_A_Z</item>
+ <item>EPISODE_TITLE_Z_A</item>
+ <item>FEED_TITLE_A_Z</item>
+ <item>FEED_TITLE_Z_A</item>
+ </string-array>
+
<string-array name="nav_drawer_feed_counter_options">
<item>@string/drawer_feed_counter_new_unplayed</item>
<item>@string/drawer_feed_counter_new</item>
diff --git a/core/src/main/res/values/strings.xml b/core/src/main/res/values/strings.xml
index 2fbb65744..3d7cbfe10 100644
--- a/core/src/main/res/values/strings.xml
+++ b/core/src/main/res/values/strings.xml
@@ -438,6 +438,8 @@
<string name="pref_nav_drawer_feed_order_sum">Change the order of your subscriptions</string>
<string name="pref_nav_drawer_feed_counter_title">Set Subscription Counter</string>
<string name="pref_nav_drawer_feed_counter_sum">Change the information displayed by the subscription counter. Also affects the sorting of subscriptions if \'Subscription Order\' is set to \'Counter\'.</string>
+ <string name="pref_queue_sort_title">Set Queue Sort Order</string>
+ <string name="pref_queue_sort_sum">Change the sort order of the episodes in the queue.</string>
<string name="pref_set_theme_sum">Change the appearance of AntennaPod.</string>
<string name="pref_automatic_download_title">Automatic Download</string>
<string name="pref_automatic_download_sum">Configure the automatic download of episodes.</string>
@@ -735,6 +737,11 @@
<string name="sort_date_old_new">Date (Old \u2192 New)</string>
<string name="sort_duration_short_long">Duration (Short \u2192 Long)</string>
<string name="sort_duration_long_short">Duration (Long \u2192 Short)</string>
+ <string name="sort_episode_title_a_z">Episode title (A \u2192 Z)</string>
+ <string name="sort_episode_title_z_a">Episode title (Z \u2192 A)</string>
+ <string name="sort_feed_title_a_z">Podcast title (A \u2192 Z)</string>
+ <string name="sort_feed_title_z_a">Podcast title (Z \u2192 A)</string>
+ <string name="sort_manually">Manually</string>
<!-- Rating dialog -->
<string name="rating_title">Like AntennaPod?</string>