diff options
author | ueen <ueli.sarnighausen@online.de> | 2021-07-12 00:03:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-12 00:03:32 +0200 |
commit | ca9ad0d2d33ce8c4299525e32664da33e28b9d91 (patch) | |
tree | 8938c065f47726b6bb29e5ef83cf13d95144fb18 /core/src/main/res/values | |
parent | c1efd51be976e289dab59cd46b79bab9c79fcce6 (diff) | |
download | AntennaPod-ca9ad0d2d33ce8c4299525e32664da33e28b9d91.zip |
Swipe actions (#5191)
Diffstat (limited to 'core/src/main/res/values')
-rw-r--r-- | core/src/main/res/values/attrs.xml | 5 | ||||
-rw-r--r-- | core/src/main/res/values/strings.xml | 10 | ||||
-rw-r--r-- | core/src/main/res/values/styles.xml | 10 |
3 files changed, 25 insertions, 0 deletions
diff --git a/core/src/main/res/values/attrs.xml b/core/src/main/res/values/attrs.xml index baab3be7a..596b1cca2 100644 --- a/core/src/main/res/values/attrs.xml +++ b/core/src/main/res/values/attrs.xml @@ -12,4 +12,9 @@ <attr name="filter_dialog_clear" format="color"/> <attr name="filter_dialog_button_background" format="reference"/> <attr name="seek_background" format="color" /> + <attr name="icon_red" format="color" /> + <attr name="icon_yellow" format="color" /> + <attr name="icon_green" format="color" /> + <attr name="icon_purple" format="color" /> + <attr name="icon_gray" format="color" /> </resources> diff --git a/core/src/main/res/values/strings.xml b/core/src/main/res/values/strings.xml index 442f95832..578af2900 100644 --- a/core/src/main/res/values/strings.xml +++ b/core/src/main/res/values/strings.xml @@ -35,6 +35,14 @@ <!-- Google Assistant --> <string name="app_action_not_found">\"%1$s\" not found</string> + <!-- SwipeActions --> + <string name="swipeactions_label">Swipe Actions</string> + <string name="swipeactions_summary">Choose what happens when swiping an episode in a list</string> + <string name="swipe_right">Swipe Right</string> + <string name="swipe_left">Swipe Left</string> + <string name="enable_swipeactions">Enable Swipe Actions for this Screen</string> + <string name="change_setting">Change</string> + <!-- Statistics fragment --> <string name="total_time_listened_to_podcasts">Total time of episodes played:</string> <string name="statistics_details_dialog">%1$d out of %2$d episodes started.\n\nPlayed %3$s out of %4$s.</string> @@ -195,6 +203,8 @@ <string name="remove_new_flag_label">Remove \"new\" flag</string> <string name="removed_new_flag_label">Removed \"new\" flag</string> <string name="mark_read_label">Mark as played</string> + <string name="marked_as_played_label">Marked as played</string> + <string name="marked_as_unplayed_label">Marked as unplayed</string> <string name="mark_read_no_media_label">Mark as read</string> <string name="play_this_to_seek_position">To jump to positions, you need to play the episode</string> <plurals name="marked_read_batch_label"> diff --git a/core/src/main/res/values/styles.xml b/core/src/main/res/values/styles.xml index 2f287155f..33ff270b8 100644 --- a/core/src/main/res/values/styles.xml +++ b/core/src/main/res/values/styles.xml @@ -27,6 +27,11 @@ <item name="scrollbar_thumb">@drawable/scrollbar_thumb_light</item> <item name="filter_dialog_clear">@color/filter_dialog_clear_light</item> <item name="filter_dialog_button_background">@drawable/filter_dialog_background_light</item> + <item name="icon_red">#CF1800</item> + <item name="icon_yellow">#F59F00</item> + <item name="icon_green">#008537</item> + <item name="icon_purple">#5F1984</item> + <item name="icon_gray">#25365A</item> </style> <style name="Theme.AntennaPod.Dark" parent="Theme.Base.AntennaPod.Dark"> @@ -56,6 +61,11 @@ <item name="scrollbar_thumb">@drawable/scrollbar_thumb_dark</item> <item name="filter_dialog_clear">@color/filter_dialog_clear_dark</item> <item name="filter_dialog_button_background">@drawable/filter_dialog_background_dark</item> + <item name="icon_red">#CF1800</item> + <item name="icon_yellow">#F59F00</item> + <item name="icon_green">#008537</item> + <item name="icon_purple">#AA55D8</item> + <item name="icon_gray">#CDD9E4</item> </style> <style name="Theme.AntennaPod.TrueBlack" parent="Theme.Base.AntennaPod.TrueBlack"> |