diff options
author | ByteHamster <info@bytehamster.com> | 2019-05-27 21:09:55 +0200 |
---|---|---|
committer | ByteHamster <info@bytehamster.com> | 2019-05-27 21:09:55 +0200 |
commit | 81a3d756eb318dc2a6e01b294af61ce52d512312 (patch) | |
tree | 3f7e12c0d8bf48d744b19a96df907027d14150d3 | |
parent | 0f79fc4d9d97e3bdd6b000be8cfd69fea2cce9af (diff) | |
download | AntennaPod-81a3d756eb318dc2a6e01b294af61ce52d512312.zip |
Sort options: 'old to new' instead of 'ascending'
-rw-r--r-- | app/src/main/res/menu/queue.xml | 8 | ||||
-rw-r--r-- | core/src/main/res/values/strings.xml | 2 |
2 files changed, 6 insertions, 4 deletions
diff --git a/app/src/main/res/menu/queue.xml b/app/src/main/res/menu/queue.xml index 7b82cbef3..5844c9ff5 100644 --- a/app/src/main/res/menu/queue.xml +++ b/app/src/main/res/menu/queue.xml @@ -42,10 +42,10 @@ <menu> <item android:id="@+id/queue_sort_date_asc" - android:title="@string/ascending"/> + android:title="@string/sort_old_to_new"/> <item android:id="@+id/queue_sort_date_desc" - android:title="@string/descending"/> + android:title="@string/sort_new_to_old"/> </menu> </item> @@ -103,10 +103,10 @@ <menu> <item android:id="@+id/queue_sort_smart_shuffle_asc" - android:title="@string/ascending"/> + android:title="@string/sort_old_to_new"/> <item android:id="@+id/queue_sort_smart_shuffle_desc" - android:title="@string/descending"/> + android:title="@string/sort_new_to_old"/> </menu> </item> </menu> diff --git a/core/src/main/res/values/strings.xml b/core/src/main/res/values/strings.xml index 2fc311756..2b20681bf 100644 --- a/core/src/main/res/values/strings.xml +++ b/core/src/main/res/values/strings.xml @@ -302,6 +302,8 @@ <string name="ascending">Ascending</string> <string name="descending">Descending</string> <string name="clear_queue_confirmation_msg">Please confirm that you want to clear the queue of ALL of the episodes in it</string> + <string name="sort_old_to_new">Old to new</string> + <string name="sort_new_to_old">New to old</string> <!-- Flattr --> <string name="flattr_auth_label">Flattr sign-in</string> |