summaryrefslogtreecommitdiff
path: root/core/src/main/res/values
diff options
context:
space:
mode:
authorFalko <git@habales.de>2019-01-05 13:05:17 +0100
committerGitHub <noreply@github.com>2019-01-05 13:05:17 +0100
commit73ce903a49d7afe8ef41985bc98d94359823eb9e (patch)
treea4c4d6e9d54581e451c0acb9d90de6877a3ad546 /core/src/main/res/values
parent90cc07c9bb7335e5b8a2e4035f11f111d0af76cc (diff)
parent8252f6a41d76e5ed9899d5a1d6ac926d77a4bc9b (diff)
downloadAntennaPod-73ce903a49d7afe8ef41985bc98d94359823eb9e.zip
Merge pull request #1 from AntennaPod/develop
upstream
Diffstat (limited to 'core/src/main/res/values')
-rw-r--r--core/src/main/res/values/arrays.xml81
-rw-r--r--core/src/main/res/values/attrs.xml15
-rw-r--r--core/src/main/res/values/colors.xml11
-rw-r--r--core/src/main/res/values/dimens.xml7
-rw-r--r--core/src/main/res/values/ic_launcher_background.xml4
-rw-r--r--core/src/main/res/values/strings.xml115
-rw-r--r--core/src/main/res/values/styles.xml545
7 files changed, 539 insertions, 239 deletions
diff --git a/core/src/main/res/values/arrays.xml b/core/src/main/res/values/arrays.xml
index 45650495c..12961504c 100644
--- a/core/src/main/res/values/arrays.xml
+++ b/core/src/main/res/values/arrays.xml
@@ -137,10 +137,12 @@
<string-array name="theme_options">
<item>@string/pref_theme_title_light</item>
<item>@string/pref_theme_title_dark</item>
+ <item>@string/pref_theme_title_trueblack</item>
</string-array>
<string-array name="theme_values">
<item>0</item>
<item>1</item>
+ <item>2</item>
</string-array>
<string-array name="nav_drawer_titles">
@@ -181,6 +183,28 @@
<item>3</item>
</string-array>
+ <string-array name="media_player_options">
+ <item>@string/media_player_builtin</item>
+ <item>@string/media_player_sonic</item>
+ <item>@string/media_player_exoplayer</item>
+ </string-array>
+
+ <string-array name="media_player_values">
+ <item>builtin</item>
+ <item>sonic</item>
+ <item>exoplayer</item>
+ </string-array>
+
+ <string-array name="media_player_options_no_sonic">
+ <item>@string/media_player_builtin</item>
+ <item>@string/media_player_exoplayer</item>
+ </string-array>
+
+ <string-array name="media_player_values_no_sonic">
+ <item>builtin</item>
+ <item>exoplayer</item>
+ </string-array>
+
<string-array name="episode_filter_options">
<item>@string/hide_unplayed_episodes_label</item>
<item>@string/hide_paused_episodes_label</item>
@@ -190,6 +214,7 @@
<item>@string/hide_downloaded_episodes_label</item>
<item>@string/hide_not_downloaded_episodes_label</item>
<item>@string/hide_has_media_label</item>
+ <item>@string/hide_is_favorite_label</item>
</string-array>
<string-array name="episode_filter_values">
@@ -201,6 +226,7 @@
<item>downloaded</item>
<item>not_downloaded</item>
<item>has_media</item>
+ <item>is_favorite</item>
</string-array>
<string-array name="image_cache_size_options">
@@ -224,4 +250,59 @@
<item>@string/fast_forward_label</item>
<item>@string/skip_episode_label</item>
</string-array>
+
+ <string-array name="video_background_behavior_options">
+ <item>@string/stop_playback</item>
+ <item>@string/player_go_to_picture_in_picture</item>
+ <item>@string/continue_playback</item>
+ </string-array>
+
+ <string-array name="video_background_behavior_values">
+ <item>stop</item>
+ <item>pip</item>
+ <item>continue</item>
+ </string-array>
+
+ <string-array name="video_background_behavior_options_without_pip">
+ <item>@string/stop_playback</item>
+ <item>@string/continue_playback</item>
+ </string-array>
+
+ <string-array name="video_background_behavior_values_without_pip">
+ <item>stop</item>
+ <item>continue</item>
+ </string-array>
+
+ <string-array name="batch_long_press_options">
+ <item>@string/select_all_above</item>
+ <item>@string/select_all_below</item>
+ </string-array>
+
+ <string-array name="back_button_behavior_options">
+ <item>@string/back_button_default</item>
+ <item>@string/back_button_go_to_page</item>
+ <item>@string/back_button_open_drawer</item>
+ <item>@string/back_button_double_tap</item>
+ <item>@string/back_button_show_prompt</item>
+ </string-array>
+
+ <string-array name="back_button_behavior_values">
+ <item>default</item>
+ <item>page</item>
+ <item>drawer</item>
+ <item>doubletap</item>
+ <item>prompt</item>
+ </string-array>
+
+ <string-array name="back_button_go_to_pages">
+ <item>@string/queue_label</item>
+ <item>@string/episodes_label</item>
+ <item>@string/subscriptions_label</item>
+ </string-array>
+
+ <string-array name="back_button_go_to_pages_tags">
+ <item>QueueFragment</item>
+ <item>EpisodesFragment</item>
+ <item>SubscriptionFragment</item>
+ </string-array>
</resources>
diff --git a/core/src/main/res/values/attrs.xml b/core/src/main/res/values/attrs.xml
index 04ad7ea64..16a6d9185 100644
--- a/core/src/main/res/values/attrs.xml
+++ b/core/src/main/res/values/attrs.xml
@@ -12,6 +12,8 @@
<attr name="av_rewind" format="reference"/>
<attr name="content_discard" format="reference"/>
<attr name="content_new" format="reference"/>
+ <attr name="storage" format="reference"/>
+ <attr name="statistics" format="reference"/>
<attr name="feed" format="reference"/>
<attr name="location_web_site" format="reference"/>
<attr name="navigation_accept" format="reference"/>
@@ -44,6 +46,7 @@
<attr name="ic_unfav" format="reference"/>
<attr name="ic_sleep" format="reference"/>
<attr name="ic_sleep_off" format="reference"/>
+ <attr name="checkbox_multiple" format="reference"/>
<attr name="ic_check_box" format="reference"/>
<attr name="ic_check_box_outline" format="reference"/>
<attr name="ic_indeterminate_check_box" format="reference"/>
@@ -51,10 +54,22 @@
<attr name="ic_sd_storage" format="reference"/>
<attr name="ic_create_new_folder" format="reference"/>
<attr name="ic_cast_disconnect" format="reference"/>
+ <attr name="ic_swap" format="reference"/>
+ <attr name="ic_cellphone_text" format="reference"/>
+ <attr name="ic_question_answer" format="reference" />
+ <attr name="ic_bug" format="reference" />
+ <attr name="ic_known_issues" format="reference" />
+ <attr name="master_switch_background" format="color"/>
+ <attr name="currently_playing_background" format="color"/>
<!-- Used in itemdescription -->
<attr name="non_transparent_background" format="reference"/>
<attr name="overlay_background" format="color"/>
<attr name="nav_drawer_background" format="color"/>
+
+ <attr name="about_screen_background" format="color"/>
+ <attr name="about_screen_card_background" format="color"/>
+ <attr name="about_screen_card_border" format="color"/>
+ <attr name="about_screen_font_color" format="color"/>
</resources>
diff --git a/core/src/main/res/values/colors.xml b/core/src/main/res/values/colors.xml
index a570a3fcb..f172b0f6d 100644
--- a/core/src/main/res/values/colors.xml
+++ b/core/src/main/res/values/colors.xml
@@ -20,17 +20,22 @@
<color name="swipe_refresh_secondary_color_dark">#060708</color>
<color name="new_indicator_green">#669900</color>
<color name="image_readability_tint">#80000000</color>
+ <color name="feed_image_bg">#50000000</color>
- <!-- Use Gingerbread-orange -->
- <color name="selection_background_color_dark">#FEBB20</color>
- <color name="selection_background_color_light">#FEBB20</color>
+ <color name="selection_background_color_trueblack">#286E8A</color>
+ <color name="selection_background_color_dark">#286E8A</color>
+ <color name="selection_background_color_light">#81CFEA</color>
<!-- Theme colors -->
<color name="primary_light">#FFFFFF</color>
<color name="highlight_light">#DDDDDD</color>
<color name="highlight_dark">#414141</color>
+ <color name="highlight_trueblack">#414141</color>
<color name="antennapod_blue">#147BAF</color>
+ <color name="master_switch_background_light">#DDDDDD</color>
+ <color name="master_switch_background_dark">#191919</color>
+
</resources>
diff --git a/core/src/main/res/values/dimens.xml b/core/src/main/res/values/dimens.xml
index 01dce6a1c..46da1d68e 100644
--- a/core/src/main/res/values/dimens.xml
+++ b/core/src/main/res/values/dimens.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
- <dimen name="widget_margin">8dp</dimen>
+ <dimen name="widget_margin">0dp</dimen>
<dimen name="thumbnail_length">70dp</dimen>
<dimen name="external_player_height">56dp</dimen>
<dimen name="enc_icons_size">20dp</dimen>
@@ -20,11 +20,10 @@
<dimen name="listview_secondary_button_width">48dp</dimen>
<dimen name="drawer_width">280dp</dimen>
<dimen name="listitem_iconwithtext_height">48dp</dimen>
- <dimen name="listitem_iconwithtext_textleftpadding">14dp</dimen>
+ <dimen name="listitem_iconwithtext_textleftpadding">16dp</dimen>
<dimen name="listitem_iconwithtext_textverticalpadding">16dp</dimen>
- <dimen name="listitem_threeline_height">96dp</dimen>
- <dimen name="listitem_threeline_textleftpadding">14dp</dimen>
+ <dimen name="listitem_threeline_textleftpadding">16dp</dimen>
<dimen name="listitem_threeline_textrightpadding">8dp</dimen>
<dimen name="listitem_threeline_verticalpadding">16dp</dimen>
<dimen name="listitem_threeline_horizontalpadding">16dp</dimen>
diff --git a/core/src/main/res/values/ic_launcher_background.xml b/core/src/main/res/values/ic_launcher_background.xml
new file mode 100644
index 000000000..3df03b8f4
--- /dev/null
+++ b/core/src/main/res/values/ic_launcher_background.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+ <color name="ic_launcher_background">#008AB8</color>
+</resources> \ No newline at end of file
diff --git a/core/src/main/res/values/strings.xml b/core/src/main/res/values/strings.xml
index a940c031b..9dd928311 100644
--- a/core/src/main/res/values/strings.xml
+++ b/core/src/main/res/values/strings.xml
@@ -6,11 +6,13 @@
<!-- Activitiy and fragment titles -->
<string name="app_name" translate="false">AntennaPod</string>
<string name="provider_authority" translate="false">de.danoeh.antennapod.provider</string>
+ <string name="feed_update_receiver_name">Update Subscriptions</string>
<string name="feeds_label">Feeds</string>
<string name="statistics_label">Statistics</string>
<string name="add_feed_label">Add Podcast</string>
<string name="episodes_label">Episodes</string>
<string name="all_episodes_short_label">All</string>
+ <string name="new_episodes_label">New</string>
<string name="favorite_episodes_label">Favorites</string>
<string name="new_label">New</string>
<string name="settings_label">Settings</string>
@@ -23,10 +25,12 @@
<string name="cancel_download_label">Cancel\nDownload</string>
<string name="playback_history_label">Playback History</string>
<string name="gpodnet_main_label">gpodder.net</string>
+ <string name="gpodnet_summary">Synchronize with other devices</string>
<string name="gpodnet_auth_label">gpodder.net Login</string>
<string name="free_space_label">%1$s free</string>
<string name="episode_cache_full_title">Episode cache full</string>
<string name="episode_cache_full_message">The episode cache limit has been reached. You can increase the cache size in the Settings.</string>
+ <string name="synchronizing">Synchronizing…</string>
<!-- Statistics fragment -->
<string name="total_time_listened_to_podcasts">Total time of podcasts played:</string>
@@ -66,13 +70,14 @@
<string name="yes">Yes</string>
<string name="no">No</string>
<string name="reset">Reset</string>
- <string name="author_label">Author</string>
+ <string name="author_label">Author(s)</string>
<string name="language_label">Language</string>
<string name="url_label">URL</string>
<string name="podcast_settings_label">Settings</string>
<string name="cover_label">Picture</string>
<string name="error_label">Error</string>
<string name="error_msg_prefix">An error occurred:</string>
+ <string name="needs_storage_permission">Storage permission is needed for this operation</string>
<string name="refresh_label">Refresh</string>
<string name="external_storage_error_msg">No external storage is available. Please make sure that external storage is mounted so that the app can work properly.</string>
<string name="chapters_label">Chapters</string>
@@ -117,25 +122,30 @@
<string name="mark_all_read_label">Mark all as played</string>
<string name="mark_all_read_msg">Marked all Episodes as played</string>
<string name="mark_all_read_confirmation_msg">Please confirm that you want to mark all episodes as being played.</string>
- <string name="mark_all_read_feed_confirmation_msg">Please confirm that you want to mark all episodes in this feed as being played.</string>
+ <string name="mark_all_read_feed_confirmation_msg">Please confirm that you want to mark all episodes in this podcast as being played.</string>
<string name="mark_all_seen_label">Mark all as seen</string>
- <string name="mark_all_seen_msg">Marked all Episodes as seen</string>
+ <string name="mark_all_seen_msg">Marked all episodes as seen</string>
<string name="mark_all_seen_confirmation_msg">Please confirm that you want to mark all episodes as seen.</string>
<string name="show_info_label">Show information</string>
- <string name="rename_feed_label">Rename Podcast</string>
- <string name="remove_feed_label">Remove Podcast</string>
+ <string name="show_feed_settings_label">Show podcast settings</string>
+ <string name="feed_info_label">Podcast info</string>
+ <string name="feed_settings_label">Podcast settings</string>
+ <string name="rename_feed_label">Rename podcast</string>
+ <string name="remove_feed_label">Remove podcast</string>
<string name="share_label">Share&#8230;</string>
- <string name="share_link_label">Share Link</string>
+ <string name="share_link_label">Share Episode URL</string>
+ <string name="share_link_with_position_label">Share Episode URL with Position</string>
<string name="share_file_label">Share File</string>
- <string name="share_link_with_position_label">Share Link with Position</string>
<string name="share_feed_url_label">Share Feed URL</string>
- <string name="share_item_url_label">Share Episode File URL</string>
- <string name="share_item_url_with_position_label">Share Episode File URL with Position</string>
- <string name="feed_delete_confirmation_msg">Please confirm that you want to delete the feed \"%1$s\" and ALL episodes of this feed that you have downloaded.</string>
- <string name="feed_remover_msg">Removing Feed</string>
- <string name="load_complete_feed">Refresh complete Feed</string>
+ <string name="share_item_url_label">Share Media File URL</string>
+ <string name="share_item_url_with_position_label">Share Media File URL with Position</string>
+ <string name="feed_delete_confirmation_msg">Please confirm that you want to delete the podcast \"%1$s\" and ALL its episodes (including downloaded episodes).</string>
+ <string name="feed_remover_msg">Removing podcast</string>
+ <string name="load_complete_feed">Refresh complete podcast</string>
<string name="hide_episodes_title">Hide Episodes</string>
- <string name="episode_actions">Apply actions</string>
+ <string name="batch_edit">Batch edit</string>
+ <string name="select_all_above">Select all above</string>
+ <string name="select_all_below">Select all below</string>
<string name="hide_unplayed_episodes_label">Unplayed</string>
<string name="hide_paused_episodes_label">Paused</string>
<string name="hide_played_episodes_label">Played</string>
@@ -144,6 +154,7 @@
<string name="hide_downloaded_episodes_label">Downloaded</string>
<string name="hide_not_downloaded_episodes_label">Not downloaded</string>
<string name="hide_has_media_label">Has media</string>
+ <string name="hide_is_favorite_label">Is favorite</string>
<string name="filtered_label">Filtered</string>
<string name="refresh_failed_msg">{fa-exclamation-circle} Last Refresh failed</string>
<string name="open_podcast">Open Podcast</string>
@@ -158,6 +169,7 @@
<string name="delete_label">Delete</string>
<string name="delete_failed">Unable to delete file. Rebooting the device could help.</string>
<string name="remove_episode_lable">Remove Episode</string>
+ <string name="mark_as_seen_label">Mark as seen</string>
<string name="marked_as_seen_label">Marked as seen</string>
<string name="mark_read_label">Mark as played</string>
<string name="marked_as_read_label">Marked as played</string>
@@ -182,6 +194,8 @@
<string name="download_failed">failed</string>
<string name="download_pending">Download pending</string>
<string name="download_running">Download running</string>
+ <string name="download_error_details">Details</string>
+ <string name="download_error_details_message">%1$s \n\nFile URL:\n%2$s</string>
<string name="download_error_device_not_found">Storage Device not found</string>
<string name="download_error_insufficient_space">Insufficient Space</string>
<string name="download_error_file_error">File Error</string>
@@ -234,6 +248,7 @@
<string name="no_media_playing_label">No media playing</string>
<string name="position_default_label" translate="false">00:00:00</string>
<string name="player_buffering_msg">Buffering</string>
+ <string name="player_go_to_picture_in_picture">Picture-in-picture mode</string>
<string name="playbackservice_notification_title">Playing podcast</string>
<string name="unknown_media_key">AntennaPod - Unknown media key: %1$d</string>
@@ -251,7 +266,9 @@
<string name="date">Date</string>
<string name="duration">Duration</string>
<string name="episode_title">Episode title</string>
- <string name="feed_title">Feed title</string>
+ <string name="feed_title">Podcast title</string>
+ <string name="random">Random</string>
+ <string name="smart_shuffle">Smart Shuffle</string>
<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>
@@ -293,7 +310,7 @@
<!-- Empty list labels -->
<string name="no_items_label">There are no items in this list.</string>
- <string name="no_feeds_label">You haven\'t subscribed to any feeds yet.</string>
+ <string name="no_feeds_label">You haven\'t subscribed to any podcasts yet.</string>
<string name="no_chapters_label">This episode has no chapters.</string>
<string name="no_shownotes_label">This episode has no shownotes.</string>
@@ -303,15 +320,24 @@
<string name="other_pref">Other</string>
<string name="about_pref">About</string>
<string name="queue_label">Queue</string>
- <string name="services_label">Services</string>
+ <string name="integrations_label">Integrations</string>
<string name="flattr_label">Flattr</string>
+ <string name="flattr_summary">Micropayment service</string>
+ <string name="automation">Automation</string>
+ <string name="download_pref_details">Details</string>
+ <string name="import_export_pref">Import/Export</string>
+ <string name="appearance">Appearance</string>
+ <string name="external_elements">External elements</string>
+ <string name="interruptions">Interruptions</string>
+ <string name="buttons">Playback control buttons</string>
+ <string name="media_player">Media player</string>
<string name="pref_episode_cleanup_title">Episode Cleanup</string>
<string name="pref_episode_cleanup_summary">Episodes that aren\'t in the queue and aren\'t favorites should be eligible for removal if Auto Download needs space for new episodes</string>
<string name="pref_pauseOnDisconnect_sum">Pause playback when headphones or bluetooth are disconnected</string>
<string name="pref_unpauseOnHeadsetReconnect_sum">Resume playback when the headphones are reconnected</string>
<string name="pref_unpauseOnBluetoothReconnect_sum">Resume playback when bluetooth reconnects</string>
<string name="pref_hardwareForwardButtonSkips_title">Forward Button Skips</string>
- <string name="pref_hardwareForwardButtonSkips_sum">When pressing a hardware forward button skip to the next episode instead of fast-forwarding</string>
+ <string name="pref_hardwareForwardButtonSkips_sum">When pressing a forward button on a bluetooth-connected device skip to the next episode instead of fast-forwarding</string>
<string name="pref_hardwarePreviousButtonRestarts_title">Previous button restarts</string>
<string name="pref_hardwarePreviousButtonRestarts_sum">When pressing a hardware previous button restart playing the current episode instead of rewinding</string>
<string name="pref_followQueue_sum">Jump to next queue item when playback completes</string>
@@ -360,7 +386,7 @@
<string name="pref_nav_drawer_feed_order_title">Set Subscription Order</string>
<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</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_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>
@@ -374,6 +400,7 @@
<string name="pref_episode_cache_title">Episode Cache</string>
<string name="pref_theme_title_light">Light</string>
<string name="pref_theme_title_dark">Dark</string>
+ <string name="pref_theme_title_trueblack">Black (AMOLED ready)</string>
<string name="pref_episode_cache_unlimited">Unlimited</string>
<string name="pref_update_interval_hours_plural">hours</string>
<string name="pref_update_interval_hours_singular">hour</string>
@@ -402,8 +429,8 @@
<string name="pref_rewind_sum">Customize the number of seconds to jump backwards when the rewind button is clicked</string>
<string name="pref_gpodnet_sethostname_title">Set hostname</string>
<string name="pref_gpodnet_sethostname_use_default_host">Use default host</string>
- <string name="pref_expandNotify_title">Expand Notification</string>
- <string name="pref_expandNotify_sum">Always expand the notification to show playback buttons.</string>
+ <string name="pref_expandNotify_title">High Notification priority</string>
+ <string name="pref_expandNotify_sum">This usually expands the notification to show playback buttons.</string>
<string name="pref_persistNotify_title">Persistent Playback Controls</string>
<string name="pref_persistNotify_sum">Keep notification and lockscreen controls when playback is paused.</string>
<string name="pref_compact_notification_buttons_title">Set Lockscreen Buttons</string>
@@ -424,8 +451,7 @@
<string name="crash_report_sum">Send the latest crash report via e-mail</string>
<string name="send_email">Send e-mail</string>
<string name="experimental_pref">Experimental</string>
- <string name="pref_sonic_title">Sonic Media Player</string>
- <string name="pref_sonic_message">Use built-in sonic media player as a replacement for Android\'s native mediaplayer and Prestissimo</string>
+ <string name="pref_media_player_message">Select which media player to use to play files</string>
<string name="pref_current_value">Current value: %1$s</string>
<string name="pref_proxy_title">Proxy</string>
<string name="pref_proxy_sum">Set a network proxy</string>
@@ -437,6 +463,24 @@
<string name="pref_cast_message_free_flavor">Chromecast requires third party proprietary libraries that are disabled in this version of AntennaPod</string>
<string name="pref_enqueue_downloaded_title">Enqueue Downloaded</string>
<string name="pref_enqueue_downloaded_summary">Add downloaded episodes to the queue</string>
+ <string name="media_player_builtin">Built-in Android player</string>
+ <string name="media_player_sonic" translatable="false">Sonic Media Player</string>
+ <string name="media_player_exoplayer" translatable="false">ExoPlayer</string>
+ <string name="pref_videoBehavior_title">Upon exiting video</string>
+ <string name="pref_videoBehavior_sum">Behavior when leaving video playback</string>
+ <string name="stop_playback">Stop playback</string>
+ <string name="continue_playback">Continue audio playback</string>
+ <string name="behavior">Behavior</string>
+ <string name="pref_back_button_behavior_title">Back Button Behavior</string>
+ <string name="pref_back_button_behavior_sum">Change behavior of the back button.</string>
+ <string name="back_button_default">Default</string>
+ <string name="back_button_open_drawer">Open navigation drawer</string>
+ <string name="back_button_double_tap">Double tap to exit</string>
+ <string name="back_button_show_prompt">Confirm to exit</string>
+ <string name="close_prompt">Are you sure you want to close AntennaPod?</string>
+ <string name="double_tap_toast">Tap back button again to exit</string>
+ <string name="back_button_go_to_page">Go to page…</string>
+ <string name="back_button_go_to_page_title">Select page</string>
<!-- Auto-Flattr dialog -->
<string name="auto_flattr_enable">Enable automatic flattring</string>
@@ -448,8 +492,8 @@
<string name="search_hint">Search for episodes</string>
<string name="found_in_shownotes_label">Found in show notes</string>
<string name="found_in_chapters_label">Found in chapters</string>
- <string name="found_in_authors_label">Found in authors</string>
- <string name="found_in_feeds_label">Found in feeds</string>
+ <string name="found_in_authors_label">Found in author(s)</string>
+ <string name="found_in_feeds_label">Found in podcast</string>
<string name="search_status_no_results">No results were found</string>
<string name="search_label">Search</string>
<string name="found_in_title_label">Found in title</string>
@@ -475,8 +519,8 @@
<string name="html_export_label">HTML export</string>
<string name="exporting_label">Exporting&#8230;</string>
<string name="export_error_label">Export error</string>
- <string name="opml_export_success_title">OPML Export successful.</string>
- <string name="opml_export_success_sum">The .opml file was written to:\u0020</string>
+ <string name="export_success_title">Export successful</string>
+ <string name="export_success_sum">The exported file was written to:\n\n%1$s</string>
<string name="opml_import_ask_read_permission">Access to external storage is required to read the OPML file</string>
<!-- Sleep timer -->
@@ -661,6 +705,15 @@
<string name="proxy_host_invalid_error">Host is not a valid IP address or domain</string>
<string name="proxy_port_invalid_error">Port not valid</string>
+ <!-- Database import/export -->
+ <string name="import_export">Database import/export</string>
+ <string name="import_export_warning">This experimental function can be used to transfer your subscriptions and played episodes to another device.\n\nExported databases can only be imported when using the same version of AntennaPod. Otherwise, this function will lead to unexpected behavior.\n\nAfter importing, episodes might be displayed as downloaded even though they are not. Just press the play button of the episodes to make AntennaPod detect this.</string>
+ <string name="label_import">Import</string>
+ <string name="label_export">Export</string>
+ <string name="import_select_file">Select file to import</string>
+ <string name="export_ok">Export successful.</string>
+ <string name="import_ok">Import successful.\n\nPlease press OK to restart AntennaPod</string>
+
<!-- Casting -->
<string name="cast_media_route_menu_title">Play on&#8230;</string>
<string name="cast_disconnect_label">Disconnect the cast session</string>
@@ -677,4 +730,14 @@
<string name="cast_failed_seek">Failed to seek to the new position on the cast device</string>
<string name="cast_failed_receiver_player_error">Receiver player has encountered a severe error</string>
<string name="cast_failed_media_error_skipping">Error playing media. Skipping&#8230;</string>
+
+ <!-- Notification channels -->
+ <string name="notification_channel_user_action">Action required</string>
+ <string name="notification_channel_user_action_description">Shown if your action is required, for example if you need to enter a password.</string>
+ <string name="notification_channel_downloading">Downloading</string>
+ <string name="notification_channel_downloading_description">Shown while currently downloading.</string>
+ <string name="notification_channel_playing">Currently playing</string>
+ <string name="notification_channel_playing_description">Allows to control playback. This is the main notification you see while playing a podcast.</string>
+ <string name="notification_channel_error">Errors</string>
+ <string name="notification_channel_error_description">Shown if something went wrong, for example if download or gpodder sync fails.</string>
</resources>
diff --git a/core/src/main/res/values/styles.xml b/core/src/main/res/values/styles.xml
index 4f228f8f1..60296c64f 100644
--- a/core/src/main/res/values/styles.xml
+++ b/core/src/main/res/values/styles.xml
@@ -1,125 +1,193 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:android="http://schemas.android.com/apk/res/android">
- <style name="Theme.AntennaPod.Light" parent="Theme.AppCompat.Light">
+ <style name="Theme.AntennaPod.Light" parent="Theme.Base.AntennaPod.Light">
+ <!-- Room for API dependent attributes -->
+ </style>
+
+ <style name="Theme.Base.AntennaPod.Light" parent="Theme.AppCompat.Light">
<item name="colorPrimary">@color/primary_light</item>
<item name="colorAccent">@color/holo_blue_light</item>
<item name="progressBarTheme">@style/ProgressBarLight</item>
<item name="buttonStyle">@style/Widget.AntennaPod.Button</item>
<item name="alertDialogTheme">@style/AntennaPod.Dialog.Light</item>
- <item name="attr/action_bar_icon_color">@color/grey600</item>
- <item name="attr/action_about">@drawable/ic_info_grey600_24dp</item>
- <item name="attr/action_search">@drawable/ic_search_grey600_24dp</item>
- <item name="attr/action_stream">@drawable/ic_settings_input_antenna_grey600_24dp</item>
- <item name="attr/av_download">@drawable/ic_file_download_grey600_24dp</item>
- <item name="attr/av_fast_forward">@drawable/ic_fast_forward_grey600_24dp</item>
- <item name="attr/av_pause">@drawable/ic_pause_grey600_24dp</item>
- <item name="attr/av_play">@drawable/ic_play_arrow_grey600_24dp</item>
- <item name="attr/av_rewind">@drawable/ic_fast_rewind_grey600_24dp</item>
- <item name="attr/content_discard">@drawable/ic_delete_grey600_24dp</item>
- <item name="attr/content_new">@drawable/ic_add_grey600_24dp</item>
- <item name="attr/feed">@drawable/ic_feed_grey600_24dp</item>
- <item name="attr/location_web_site">@drawable/ic_web_grey600_24dp</item>
- <item name="attr/navigation_accept">@drawable/ic_done_grey600_24dp</item>
- <item name="attr/navigation_cancel">@drawable/ic_cancel_grey600_24dp</item>
- <item name="attr/navigation_expand">@drawable/ic_expand_more_grey600_36dp</item>
- <item name="attr/navigation_refresh">@drawable/ic_refresh_grey600_24dp</item>
- <item name="attr/navigation_up">@drawable/navigation_up</item>
- <item name="attr/social_share">@drawable/ic_share_grey600_24dp</item>
- <item name="attr/stat_playlist">@drawable/ic_list_grey600_24dp</item>
- <item name="attr/type_audio">@drawable/ic_hearing_grey600_18dp</item>
- <item name="attr/type_video">@drawable/ic_remove_red_eye_grey600_18dp</item>
- <item name="attr/non_transparent_background">@color/white</item>
- <item name="attr/overlay_background">@color/overlay_light</item>
- <item name="attr/overlay_drawable">@drawable/overlay_drawable</item>
- <item name="attr/dragview_background">@drawable/ic_drag_vertical_grey600_48dp</item>
- <item name="attr/dragview_float_background">@color/white</item>
- <item name="attr/nav_drawer_background">@color/white</item>
- <item name="attr/ic_new">@drawable/ic_new_releases_grey600_24dp</item>
- <item name="attr/ic_history">@drawable/ic_history_grey600_24dp</item>
- <item name="attr/ic_folder">@drawable/ic_folder_grey600_24dp</item>
- <item name="attr/av_play_big">@drawable/ic_play_arrow_grey600_36dp</item>
- <item name="attr/av_pause_big">@drawable/ic_pause_grey600_36dp</item>
- <item name="attr/av_ff_big">@drawable/ic_fast_forward_grey600_36dp</item>
- <item name="attr/av_rew_big">@drawable/ic_fast_rewind_grey600_36dp</item>
- <item name="attr/av_skip_big">@drawable/ic_skip_grey600_36dp</item>
- <item name="attr/ic_fav">@drawable/ic_star_border_grey600_24dp</item>
- <item name="attr/ic_unfav">@drawable/ic_star_grey600_24dp</item>
- <item name="attr/ic_settings">@drawable/ic_settings_grey600_24dp</item>
- <item name="attr/ic_lock_open">@drawable/ic_lock_open_grey600_24dp</item>
- <item name="attr/ic_lock_closed">@drawable/ic_lock_closed_grey600_24dp</item>
- <item name="attr/ic_filter">@drawable/ic_filter_grey600_24dp</item>
- <item name="attr/ic_sleep">@drawable/ic_sleep_grey600_24dp</item>
- <item name="attr/ic_sleep_off">@drawable/ic_sleep_off_grey600_24dp</item>
- <item name="attr/ic_check_box">@drawable/ic_check_box_grey600_24dp</item>
- <item name="attr/ic_check_box_outline">@drawable/ic_check_box_outline_blank_grey600_24dp</item>
- <item name="attr/ic_indeterminate_check_box">@drawable/ic_indeterminate_check_box_grey600_24dp</item>
- <item name="attr/ic_sort">@drawable/ic_sort_grey600_24dp</item>
- <item name="attr/ic_sd_storage">@drawable/ic_sd_storage_grey600_36dp</item>
- <item name="attr/ic_create_new_folder">@drawable/ic_create_new_folder_grey600_24dp</item>
- <item name="attr/ic_cast_disconnect">@drawable/ic_cast_disconnect_grey600_36dp</item>
+ <item type="attr" name="action_bar_icon_color">@color/grey600</item>
+ <item type="attr" name="storage">@drawable/ic_sd_grey600_24dp</item>
+ <item type="attr" name="ic_swap">@drawable/ic_swap_vertical_grey600_24dp</item>
+ <item type="attr" name="statistics">@drawable/ic_poll_box_grey600_24dp</item>
+ <item type="attr" name="action_about">@drawable/ic_info_grey600_24dp</item>
+ <item type="attr" name="checkbox_multiple">@drawable/ic_checkbox_multiple_marked_outline_grey600_24dp</item>
+ <item type="attr" name="action_search">@drawable/ic_search_grey600_24dp</item>
+ <item type="attr" name="action_stream">@drawable/ic_settings_input_antenna_grey600_24dp</item>
+ <item type="attr" name="av_download">@drawable/ic_file_download_grey600_24dp</item>
+ <item type="attr" name="av_fast_forward">@drawable/ic_fast_forward_grey600_24dp</item>
+ <item type="attr" name="av_pause">@drawable/ic_pause_grey600_24dp</item>
+ <item type="attr" name="av_play">@drawable/ic_play_arrow_grey600_24dp</item>
+ <item type="attr" name="av_rewind">@drawable/ic_fast_rewind_grey600_24dp</item>
+ <item type="attr" name="content_discard">@drawable/ic_delete_grey600_24dp</item>
+ <item type="attr" name="content_new">@drawable/ic_add_grey600_24dp</item>
+ <item type="attr" name="feed">@drawable/ic_feed_grey600_24dp</item>
+ <item type="attr" name="location_web_site">@drawable/ic_web_grey600_24dp</item>
+ <item type="attr" name="navigation_accept">@drawable/ic_done_grey600_24dp</item>
+ <item type="attr" name="navigation_cancel">@drawable/ic_cancel_grey600_24dp</item>
+ <item type="attr" name="navigation_expand">@drawable/ic_expand_more_grey600_36dp</item>
+ <item type="attr" name="navigation_refresh">@drawable/ic_refresh_grey600_24dp</item>
+ <item type="attr" name="navigation_up">@drawable/navigation_up</item>
+ <item type="attr" name="social_share">@drawable/ic_share_grey600_24dp</item>
+ <item type="attr" name="stat_playlist">@drawable/ic_list_grey600_24dp</item>
+ <item type="attr" name="type_audio">@drawable/ic_hearing_grey600_18dp</item>
+ <item type="attr" name="type_video">@drawable/ic_remove_red_eye_grey600_18dp</item>
+ <item type="attr" name="non_transparent_background">@color/white</item>
+ <item type="attr" name="overlay_background">@color/overlay_light</item>
+ <item type="attr" name="overlay_drawable">@drawable/overlay_drawable</item>
+ <item type="attr" name="dragview_background">@drawable/ic_drag_vertical_grey600_48dp</item>
+ <item type="attr" name="dragview_float_background">@color/white</item>
+ <item type="attr" name="nav_drawer_background">@color/white</item>
+ <item type="attr" name="ic_new">@drawable/ic_new_releases_grey600_24dp</item>
+ <item type="attr" name="ic_history">@drawable/ic_history_grey600_24dp</item>
+ <item type="attr" name="ic_folder">@drawable/ic_folder_grey600_24dp</item>
+ <item type="attr" name="av_play_big">@drawable/ic_play_arrow_grey600_36dp</item>
+ <item type="attr" name="av_pause_big">@drawable/ic_pause_grey600_36dp</item>
+ <item type="attr" name="av_ff_big">@drawable/ic_fast_forward_grey600_36dp</item>
+ <item type="attr" name="av_rew_big">@drawable/ic_fast_rewind_grey600_36dp</item>
+ <item type="attr" name="av_skip_big">@drawable/ic_skip_grey600_36dp</item>
+ <item type="attr" name="ic_fav">@drawable/ic_star_border_grey600_24dp</item>
+ <item type="attr" name="ic_unfav">@drawable/ic_star_grey600_24dp</item>
+ <item type="attr" name="ic_settings">@drawable/ic_settings_grey600_24dp</item>
+ <item type="attr" name="ic_lock_open">@drawable/ic_lock_open_grey600_24dp</item>
+ <item type="attr" name="ic_lock_closed">@drawable/ic_lock_closed_grey600_24dp</item>
+ <item type="attr" name="ic_filter">@drawable/ic_filter_grey600_24dp</item>
+ <item type="attr" name="ic_sleep">@drawable/ic_sleep_grey600_24dp</item>
+ <item type="attr" name="ic_sleep_off">@drawable/ic_sleep_off_grey600_24dp</item>
+ <item type="attr" name="ic_check_box">@drawable/ic_check_box_grey600_24dp</item>
+ <item type="attr" name="ic_check_box_outline">@drawable/ic_check_box_outline_blank_grey600_24dp</item>
+ <item type="attr" name="ic_indeterminate_check_box">@drawable/ic_indeterminate_check_box_grey600_24dp</item>
+ <item type="attr" name="ic_sort">@drawable/ic_sort_grey600_24dp</item>
+ <item type="attr" name="ic_sd_storage">@drawable/ic_sd_storage_grey600_36dp</item>
+ <item type="attr" name="ic_create_new_folder">@drawable/ic_create_new_folder_grey600_24dp</item>
+ <item type="attr" name="ic_cast_disconnect">@drawable/ic_cast_disconnect_grey600_36dp</item>
+ <item type="attr" name="ic_cellphone_text">@drawable/ic_cellphone_text_grey600_24dp</item>
+ <item type="attr" name="ic_question_answer">@drawable/ic_forum_grey600_24dp</item>
+ <item type="attr" name="ic_bug">@drawable/ic_bug_grey600_24dp</item>
+ <item type="attr" name="ic_known_issues">@drawable/ic_format_list_bulleted_grey600_24dp</item>
+
+ <item type="attr" name="master_switch_background">@color/master_switch_background_light</item>
+ <item type="attr" name="currently_playing_background">@color/highlight_light</item>
+
+ <item name="preferenceTheme">@style/PreferenceThemeOverlay.v14.Material</item>
+
+ <item type="attr" name="about_screen_background">#e5e5e5</item>
+ <item type="attr" name="about_screen_card_background">#ffffff</item>
+ <item type="attr" name="about_screen_card_border">#d2d2d2</item>
+ <item type="attr" name="about_screen_font_color">#000000</item>
+ </style>
+
+ <style name="Theme.AntennaPod.Dark" parent="Theme.Base.AntennaPod.Dark">
+ <!-- Room for API dependent attributes -->
</style>
- <style name="Theme.AntennaPod.Dark" parent="Theme.AppCompat">
+ <style name="Theme.Base.AntennaPod.Dark" parent="Theme.AppCompat">
<item name="colorAccent">@color/holo_blue_dark</item>
<item name="colorControlNormal">@color/white</item>
<item name="buttonStyle">@style/Widget.AntennaPod.Button</item>
<item name="progressBarTheme">@style/ProgressBarDark</item>
<item name="alertDialogTheme">@style/AntennaPod.Dialog.Dark</item>
- <item name="attr/action_bar_icon_color">@color/white</item>
- <item name="attr/action_about">@drawable/ic_info_white_24dp</item>g
- <item name="attr/action_search">@drawable/ic_search_white_24dp</item>
- <item name="attr/action_stream">@drawable/ic_settings_input_antenna_white_24dp</item>
- <item name="attr/av_download">@drawable/ic_file_download_white_24dp</item>
- <item name="attr/av_fast_forward">@drawable/ic_fast_forward_white_24dp</item>
- <item name="attr/av_pause">@drawable/ic_pause_white_24dp</item>
- <item name="attr/av_play">@drawable/ic_play_arrow_white_24dp</item>
- <item name="attr/av_rewind">@drawable/ic_fast_rewind_white_24dp</item>
- <item name="attr/content_discard">@drawable/ic_delete_white_24dp</item>
- <item name="attr/content_new">@drawable/ic_add_white_24dp</item>
- <item name="attr/feed">@drawable/ic_feed_white_24dp</item>
- <item name="attr/location_web_site">@drawable/ic_web_white_24dp</item>
- <item name="attr/navigation_accept">@drawable/ic_done_white_24dp</item>
- <item name="attr/navigation_cancel">@drawable/ic_cancel_white_24dp</item>
- <item name="attr/navigation_expand">@drawable/ic_expand_more_white_36dp</item>
- <item name="attr/navigation_refresh">@drawable/ic_refresh_white_24dp</item>
- <item name="attr/navigation_up">@drawable/navigation_up_dark</item>
- <item name="attr/social_share">@drawable/ic_share_white_24dp</item>
- <item name="attr/stat_playlist">@drawable/ic_list_white_24dp</item>
- <item name="attr/type_audio">@drawable/ic_hearing_white_18dp</item>
- <item name="attr/type_video">@drawable/ic_remove_red_eye_white_18dp</item>
- <item name="attr/non_transparent_background">@color/black</item>
- <item name="attr/overlay_background">@color/overlay_dark</item>
- <item name="attr/overlay_drawable">@drawable/overlay_drawable_dark</item>
- <item name="attr/dragview_background">@drawable/ic_drag_vertical_white_48dp</item>
- <item name="attr/dragview_float_background">@color/black</item>
- <item name="attr/nav_drawer_background">#3B3B3B</item>
- <item name="attr/ic_new">@drawable/ic_new_releases_white_24dp</item>
- <item name="attr/ic_history">@drawable/ic_history_white_24dp</item>
- <item name="attr/ic_folder">@drawable/ic_folder_white_24dp</item>
- <item name="attr/av_play_big">@drawable/ic_play_arrow_white_36dp</item>
- <item name="attr/av_pause_big">@drawable/ic_pause_white_36dp</item>
- <item name="attr/av_ff_big">@drawable/ic_fast_forward_white_36dp</item>
- <item name="attr/av_rew_big">@drawable/ic_fast_rewind_white_36dp</item>
- <item name="attr/av_skip_big">@drawable/ic_skip_white_36dp</item>
- <item name="attr/ic_fav">@drawable/ic_star_border_white_24dp</item>
- <item name="attr/ic_unfav">@drawable/ic_star_white_24dp</item>
- <item name="attr/ic_settings">@drawable/ic_settings_white_24dp</item>
- <item name="attr/ic_lock_open">@drawable/ic_lock_open_white_24dp</item>
- <item name="attr/ic_lock_closed">@drawable/ic_lock_closed_white_24dp</item>
- <item name="attr/ic_filter">@drawable/ic_filter_white_24dp</item>
- <item name="attr/ic_sleep">@drawable/ic_sleep_white_24dp</item>
- <item name="attr/ic_sleep_off">@drawable/ic_sleep_off_white_24dp</item>
- <item name="attr/ic_check_box">@drawable/ic_check_box_white_24dp</item>
- <item name="attr/ic_check_box_outline">@drawable/ic_check_box_outline_blank_white_24dp</item>
- <item name="attr/ic_indeterminate_check_box">@drawable/ic_indeterminate_check_box_white_24dp</item>
- <item name="attr/ic_sort">@drawable/ic_sort_white_24dp</item>
- <item name="attr/ic_sd_storage">@drawable/ic_sd_storage_white_36dp</item>
- <item name="attr/ic_create_new_folder">@drawable/ic_create_new_folder_white_24dp</item>
- <item name="attr/ic_cast_disconnect">@drawable/ic_cast_disconnect_white_36dp</item>
+ <item type="attr" name="action_bar_icon_color">@color/white</item>
+ <item type="attr" name="storage">@drawable/ic_sd_white_24dp</item>
+ <item type="attr" name="ic_swap">@drawable/ic_swap_vertical_white_24dp</item>
+ <item type="attr" name="statistics">@drawable/ic_poll_box_white_24dp</item>
+ <item type="attr" name="action_about">@drawable/ic_info_white_24dp</item>
+ <item type="attr" name="checkbox_multiple">@drawable/ic_checkbox_multiple_marked_outline_white_24dp</item>
+ <item type="attr" name="action_search">@drawable/ic_search_white_24dp</item>
+ <item type="attr" name="action_stream">@drawable/ic_settings_input_antenna_white_24dp</item>
+ <item type="attr" name="av_download">@drawable/ic_file_download_white_24dp</item>
+ <item type="attr" name="av_fast_forward">@drawable/ic_fast_forward_white_24dp</item>
+ <item type="attr" name="av_pause">@drawable/ic_pause_white_24dp</item>
+ <item type="attr" name="av_play">@drawable/ic_play_arrow_white_24dp</item>
+ <item type="attr" name="av_rewind">@drawable/ic_fast_rewind_white_24dp</item>
+ <item type="attr" name="content_discard">@drawable/ic_delete_white_24dp</item>
+ <item type="attr" name="content_new">@drawable/ic_add_white_24dp</item>
+ <item type="attr" name="feed">@drawable/ic_feed_white_24dp</item>
+ <item type="attr" name="location_web_site">@drawable/ic_web_white_24dp</item>
+ <item type="attr" name="navigation_accept">@drawable/ic_done_white_24dp</item>
+ <item type="attr" name="navigation_cancel">@drawable/ic_cancel_white_24dp</item>
+ <item type="attr" name="navigation_expand">@drawable/ic_expand_more_white_36dp</item>
+ <item type="attr" name="navigation_refresh">@drawable/ic_refresh_white_24dp</item>
+ <item type="attr" name="navigation_up">@drawable/navigation_up_dark</item>
+ <item type="attr" name="social_share">@drawable/ic_share_white_24dp</item>
+ <item type="attr" name="stat_playlist">@drawable/ic_list_white_24dp</item>
+ <item type="attr" name="type_audio">@drawable/ic_hearing_white_18dp</item>
+ <item type="attr" name="type_video">@drawable/ic_remove_red_eye_white_18dp</item>
+ <item type="attr" name="non_transparent_background">@color/black</item>
+ <item type="attr" name="overlay_background">@color/overlay_dark</item>
+ <item type="attr" name="overlay_drawable">@drawable/overlay_drawable_dark</item>
+ <item type="attr" name="dragview_background">@drawable/ic_drag_vertical_white_48dp</item>
+ <item type="attr" name="dragview_float_background">@color/black</item>
+ <item type="attr" name="nav_drawer_background">#3B3B3B</item>
+ <item type="attr" name="ic_new">@drawable/ic_new_releases_white_24dp</item>
+ <item type="attr" name="ic_history">@drawable/ic_history_white_24dp</item>
+ <item type="attr" name="ic_folder">@drawable/ic_folder_white_24dp</item>
+ <item type="attr" name="av_play_big">@drawable/ic_play_arrow_white_36dp</item>
+ <item type="attr" name="av_pause_big">@drawable/ic_pause_white_36dp</item>
+ <item type="attr" name="av_ff_big">@drawable/ic_fast_forward_white_36dp</item>
+ <item type="attr" name="av_rew_big">@drawable/ic_fast_rewind_white_36dp</item>
+ <item type="attr" name="av_skip_big">@drawable/ic_skip_white_36dp</item>
+ <item type="attr" name="ic_fav">@drawable/ic_star_border_white_24dp</item>
+ <item type="attr" name="ic_unfav">@drawable/ic_star_white_24dp</item>
+ <item type="attr" name="ic_settings">@drawable/ic_settings_white_24dp</item>
+ <item type="attr" name="ic_lock_open">@drawable/ic_lock_open_white_24dp</item>
+ <item type="attr" name="ic_lock_closed">@drawable/ic_lock_closed_white_24dp</item>
+ <item type="attr" name="ic_filter">@drawable/ic_filter_white_24dp</item>
+ <item type="attr" name="ic_sleep">@drawable/ic_sleep_white_24dp</item>
+ <item type="attr" name="ic_sleep_off">@drawable/ic_sleep_off_white_24dp</item>
+ <item type="attr" name="ic_check_box">@drawable/ic_check_box_white_24dp</item>
+ <item type="attr" name="ic_check_box_outline">@drawable/ic_check_box_outline_blank_white_24dp</item>
+ <item type="attr" name="ic_indeterminate_check_box">@drawable/ic_indeterminate_check_box_white_24dp</item>
+ <item type="attr" name="ic_sort">@drawable/ic_sort_white_24dp</item>
+ <item type="attr" name="ic_sd_storage">@drawable/ic_sd_storage_white_36dp</item>
+ <item type="attr" name="ic_create_new_folder">@drawable/ic_create_new_folder_white_24dp</item>
+ <item type="attr" name="ic_cast_disconnect">@drawable/ic_cast_disconnect_white_36dp</item>
+ <item type="attr" name="ic_cellphone_text">@drawable/ic_cellphone_text_white_24dp</item>
+ <item type="attr" name="ic_question_answer">@drawable/ic_baseline_question_answer_white_24dp</item>
+ <item type="attr" name="ic_bug">@drawable/ic_bug_white_24dp</item>
+ <item type="attr" name="ic_known_issues">@drawable/ic_format_list_bulleted_white_24dp</item>
+ <item type="attr" name="master_switch_background">@color/master_switch_background_dark</item>
+ <item type="attr" name="currently_playing_background">@color/highlight_dark</item>
+ <item name="preferenceTheme">@style/PreferenceThemeOverlay.v14.Material</item>
+
+ <item type="attr" name="about_screen_background">#303030</item>
+ <item type="attr" name="about_screen_card_background">#424242</item>
+ <item type="attr" name="about_screen_card_border">#262626</item>
+ <item type="attr" name="about_screen_font_color">#ffffff</item>
+ </style>
+
+ <style name="Theme.AntennaPod.TrueBlack" parent="Theme.Base.AntennaPod.TrueBlack">
+ <!-- Room for API dependent attributes -->
</style>
- <style name="Theme.AntennaPod.Light.NoTitle" parent="Theme.AppCompat.Light.NoActionBar">
+ <style name="Theme.Base.AntennaPod.TrueBlack" parent="Theme.Base.AntennaPod.Dark">
+ <item name="progressBarTheme">@style/ProgressBarTrueBlack</item>
+ <item type="attr" name="non_transparent_background">@color/black</item>
+ <item type="attr" name="overlay_background">@color/black</item>
+ <item type="attr" name="overlay_drawable">@drawable/overlay_drawable_dark_trueblack</item>
+ <item type="attr" name="dragview_background">@drawable/ic_drag_vertical_white_48dp</item>
+ <item type="attr" name="dragview_float_background">@color/black</item>
+ <item type="attr" name="nav_drawer_background">@color/black</item>
+ <item name="android:textColorPrimary">@color/white</item>
+ <item name="android:color">@color/white</item>
+ <item name="android:colorBackground">@color/black</item>
+ <item name="android:windowBackground">@color/black</item>
+ <item name="android:actionBarStyle">@color/black</item>
+ <item name="colorPrimary">@color/black</item>
+ <item name="colorPrimaryDark">@color/black</item>
+ </style>
+
+
+ <style name="Theme.AntennaPod.Light.NoTitle" parent="Theme.Base.AntennaPod.Light.NoTitle">
+ <!-- Room for API dependent attributes -->
+ </style>
+
+ <style name="Theme.Base.AntennaPod.Light.NoTitle" parent="Theme.AppCompat.Light.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowActionModeOverlay">true</item>
<item name="progressBarTheme">@style/ProgressBarLight</item>
@@ -127,59 +195,79 @@
<item name="colorAccent">@color/holo_blue_light</item>
<item name="buttonStyle">@style/Widget.AntennaPod.Button</item>
<item name="alertDialogTheme">@style/AntennaPod.Dialog.Light</item>
- <item name="attr/action_about">@drawable/ic_info_grey600_24dp</item>
- <item name="attr/action_search">@drawable/ic_search_grey600_24dp</item>
- <item name="attr/action_stream">@drawable/ic_settings_input_antenna_grey600_24dp</item>
- <item name="attr/av_download">@drawable/ic_file_download_grey600_24dp</item>
- <item name="attr/av_fast_forward">@drawable/ic_fast_forward_grey600_24dp</item>
- <item name="attr/av_pause">@drawable/ic_pause_grey600_24dp</item>
- <item name="attr/av_play">@drawable/ic_play_arrow_grey600_24dp</item>
- <item name="attr/av_rewind">@drawable/ic_fast_rewind_grey600_24dp</item>
- <item name="attr/content_discard">@drawable/ic_delete_grey600_24dp</item>
- <item name="attr/content_new">@drawable/ic_add_grey600_24dp</item>
- <item name="attr/feed">@drawable/ic_feed_grey600_24dp</item>
- <item name="attr/location_web_site">@drawable/ic_web_grey600_24dp</item>
- <item name="attr/navigation_accept">@drawable/ic_done_grey600_24dp</item>
- <item name="attr/navigation_cancel">@drawable/ic_cancel_grey600_24dp</item>
- <item name="attr/navigation_expand">@drawable/ic_expand_more_grey600_36dp</item>
- <item name="attr/navigation_refresh">@drawable/ic_refresh_grey600_24dp</item>
- <item name="attr/navigation_up">@drawable/navigation_up</item>
- <item name="attr/social_share">@drawable/ic_share_grey600_24dp</item>
- <item name="attr/stat_playlist">@drawable/ic_list_grey600_24dp</item>
- <item name="attr/type_audio">@drawable/ic_hearing_grey600_18dp</item>
- <item name="attr/type_video">@drawable/ic_remove_red_eye_grey600_18dp</item>
- <item name="attr/non_transparent_background">@color/white</item>
- <item name="attr/overlay_background">@color/overlay_light</item>
- <item name="attr/overlay_drawable">@drawable/overlay_drawable</item>
- <item name="attr/dragview_background">@drawable/ic_drag_vertical_grey600_48dp</item>
- <item name="attr/dragview_float_background">@color/white</item>
- <item name="attr/nav_drawer_background">@color/white</item>
- <item name="attr/ic_new">@drawable/ic_new_releases_grey600_24dp</item>
- <item name="attr/ic_history">@drawable/ic_history_grey600_24dp</item>
- <item name="attr/ic_folder">@drawable/ic_folder_grey600_24dp</item>
- <item name="attr/av_play_big">@drawable/ic_play_arrow_grey600_36dp</item>
- <item name="attr/av_pause_big">@drawable/ic_pause_grey600_36dp</item>
- <item name="attr/av_ff_big">@drawable/ic_fast_forward_grey600_36dp</item>
- <item name="attr/av_rew_big">@drawable/ic_fast_rewind_grey600_36dp</item>
- <item name="attr/av_skip_big">@drawable/ic_skip_grey600_36dp</item>
- <item name="attr/ic_fav">@drawable/ic_star_border_grey600_24dp</item>
- <item name="attr/ic_unfav">@drawable/ic_star_grey600_24dp</item>
- <item name="attr/ic_settings">@drawable/ic_settings_grey600_24dp</item>
- <item name="attr/ic_lock_open">@drawable/ic_lock_open_grey600_24dp</item>
- <item name="attr/ic_lock_closed">@drawable/ic_lock_closed_grey600_24dp</item>
- <item name="attr/ic_filter">@drawable/ic_filter_grey600_24dp</item>
- <item name="attr/ic_sleep">@drawable/ic_sleep_grey600_24dp</item>
- <item name="attr/ic_sleep_off">@drawable/ic_sleep_off_grey600_24dp</item>
- <item name="attr/ic_check_box">@drawable/ic_check_box_grey600_24dp</item>
- <item name="attr/ic_check_box_outline">@drawable/ic_check_box_outline_blank_grey600_24dp</item>
- <item name="attr/ic_indeterminate_check_box">@drawable/ic_indeterminate_check_box_grey600_24dp</item>
- <item name="attr/ic_sort">@drawable/ic_sort_grey600_24dp</item>
- <item name="attr/ic_sd_storage">@drawable/ic_sd_storage_grey600_36dp</item>
- <item name="attr/ic_create_new_folder">@drawable/ic_create_new_folder_grey600_24dp</item>
- <item name="attr/ic_cast_disconnect">@drawable/ic_cast_disconnect_grey600_36dp</item>
+ <item type="attr" name="storage">@drawable/ic_sd_grey600_24dp</item>
+ <item type="attr" name="ic_swap">@drawable/ic_swap_vertical_grey600_24dp</item>
+ <item type="attr" name="statistics">@drawable/ic_poll_box_grey600_24dp</item>
+ <item type="attr" name="action_about">@drawable/ic_info_grey600_24dp</item>
+ <item type="attr" name="checkbox_multiple">@drawable/ic_checkbox_multiple_marked_outline_grey600_24dp</item>
+ <item type="attr" name="action_search">@drawable/ic_search_grey600_24dp</item>
+ <item type="attr" name="action_stream">@drawable/ic_settings_input_antenna_grey600_24dp</item>
+ <item type="attr" name="av_download">@drawable/ic_file_download_grey600_24dp</item>
+ <item type="attr" name="av_fast_forward">@drawable/ic_fast_forward_grey600_24dp</item>
+ <item type="attr" name="av_pause">@drawable/ic_pause_grey600_24dp</item>
+ <item type="attr" name="av_play">@drawable/ic_play_arrow_grey600_24dp</item>
+ <item type="attr" name="av_rewind">@drawable/ic_fast_rewind_grey600_24dp</item>
+ <item type="attr" name="content_discard">@drawable/ic_delete_grey600_24dp</item>
+ <item type="attr" name="content_new">@drawable/ic_add_grey600_24dp</item>
+ <item type="attr" name="feed">@drawable/ic_feed_grey600_24dp</item>
+ <item type="attr" name="location_web_site">@drawable/ic_web_grey600_24dp</item>
+ <item type="attr" name="navigation_accept">@drawable/ic_done_grey600_24dp</item>
+ <item type="attr" name="navigation_cancel">@drawable/ic_cancel_grey600_24dp</item>
+ <item type="attr" name="navigation_expand">@drawable/ic_expand_more_grey600_36dp</item>
+ <item type="attr" name="navigation_refresh">@drawable/ic_refresh_grey600_24dp</item>
+ <item type="attr" name="navigation_up">@drawable/navigation_up</item>
+ <item type="attr" name="social_share">@drawable/ic_share_grey600_24dp</item>
+ <item type="attr" name="stat_playlist">@drawable/ic_list_grey600_24dp</item>
+ <item type="attr" name="type_audio">@drawable/ic_hearing_grey600_18dp</item>
+ <item type="attr" name="type_video">@drawable/ic_remove_red_eye_grey600_18dp</item>
+ <item type="attr" name="non_transparent_background">@color/white</item>
+ <item type="attr" name="overlay_background">@color/overlay_light</item>
+ <item type="attr" name="overlay_drawable">@drawable/overlay_drawable</item>
+ <item type="attr" name="dragview_background">@drawable/ic_drag_vertical_grey600_48dp</item>
+ <item type="attr" name="dragview_float_background">@color/white</item>
+ <item type="attr" name="nav_drawer_background">@color/white</item>
+ <item type="attr" name="ic_new">@drawable/ic_new_releases_grey600_24dp</item>
+ <item type="attr" name="ic_history">@drawable/ic_history_grey600_24dp</item>
+ <item type="attr" name="ic_folder">@drawable/ic_folder_grey600_24dp</item>
+ <item type="attr" name="av_play_big">@drawable/ic_play_arrow_grey600_36dp</item>
+ <item type="attr" name="av_pause_big">@drawable/ic_pause_grey600_36dp</item>
+ <item type="attr" name="av_ff_big">@drawable/ic_fast_forward_grey600_36dp</item>
+ <item type="attr" name="av_rew_big">@drawable/ic_fast_rewind_grey600_36dp</item>
+ <item type="attr" name="av_skip_big">@drawable/ic_skip_grey600_36dp</item>
+ <item type="attr" name="ic_fav">@drawable/ic_star_border_grey600_24dp</item>
+ <item type="attr" name="ic_unfav">@drawable/ic_star_grey600_24dp</item>
+ <item type="attr" name="ic_settings">@drawable/ic_settings_grey600_24dp</item>
+ <item type="attr" name="ic_lock_open">@drawable/ic_lock_open_grey600_24dp</item>
+ <item type="attr" name="ic_lock_closed">@drawable/ic_lock_closed_grey600_24dp</item>
+ <item type="attr" name="ic_filter">@drawable/ic_filter_grey600_24dp</item>
+ <item type="attr" name="ic_sleep">@drawable/ic_sleep_grey600_24dp</item>
+ <item type="attr" name="ic_sleep_off">@drawable/ic_sleep_off_grey600_24dp</item>
+ <item type="attr" name="ic_check_box">@drawable/ic_check_box_grey600_24dp</item>
+ <item type="attr" name="ic_check_box_outline">@drawable/ic_check_box_outline_blank_grey600_24dp</item>
+ <item type="attr" name="ic_indeterminate_check_box">@drawable/ic_indeterminate_check_box_grey600_24dp</item>
+ <item type="attr" name="ic_sort">@drawable/ic_sort_grey600_24dp</item>
+ <item type="attr" name="ic_sd_storage">@drawable/ic_sd_storage_grey600_36dp</item>
+ <item type="attr" name="ic_create_new_folder">@drawable/ic_create_new_folder_grey600_24dp</item>
+ <item type="attr" name="ic_cast_disconnect">@drawable/ic_cast_disconnect_grey600_36dp</item>
+ <item type="attr" name="ic_cellphone_text">@drawable/ic_cellphone_text_grey600_24dp</item>
+ <item type="attr" name="ic_question_answer">@drawable/ic_forum_grey600_24dp</item>
+ <item type="attr" name="ic_bug">@drawable/ic_bug_grey600_24dp</item>
+ <item type="attr" name="ic_known_issues">@drawable/ic_format_list_bulleted_grey600_24dp</item>
+ <item type="attr" name="master_switch_background">@color/master_switch_background_light</item>
+ <item type="attr" name="currently_playing_background">@color/highlight_light</item>
+ <item name="preferenceTheme">@style/PreferenceThemeOverlay.v14.Material</item>
+
+ <item type="attr" name="about_screen_background">#e5e5e5</item>
+ <item type="attr" name="about_screen_card_background">#ffffff</item>
+ <item type="attr" name="about_screen_card_border">#d2d2d2</item>
+ <item type="attr" name="about_screen_font_color">#000000</item>
+ </style>
+
+ <style name="Theme.AntennaPod.Dark.NoTitle" parent="Theme.Base.AntennaPod.Dark.NoTitle">
+ <!-- Room for API dependent attributes -->
</style>
- <style name="Theme.AntennaPod.Dark.NoTitle" parent="Theme.AppCompat.NoActionBar">
+ <style name="Theme.Base.AntennaPod.Dark.NoTitle" parent="Theme.AppCompat.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowActionModeOverlay">true</item>
<item name="progressBarTheme">@style/ProgressBarDark</item>
@@ -187,58 +275,97 @@
<item name="colorControlNormal">@color/white</item>
<item name="buttonStyle">@style/Widget.AntennaPod.Button</item>
<item name="alertDialogTheme">@style/AntennaPod.Dialog.Dark</item>
- <item name="attr/action_about">@drawable/ic_info_white_24dp</item>
- <item name="attr/action_search">@drawable/ic_search_white_24dp</item>
- <item name="attr/action_stream">@drawable/ic_settings_input_antenna_white_24dp</item>
- <item name="attr/av_download">@drawable/ic_file_download_white_24dp</item>
- <item name="attr/av_fast_forward">@drawable/ic_fast_forward_white_24dp</item>
- <item name="attr/av_pause">@drawable/ic_pause_white_24dp</item>
- <item name="attr/av_play">@drawable/ic_play_arrow_white_24dp</item>
- <item name="attr/av_rewind">@drawable/ic_fast_rewind_white_24dp</item>
- <item name="attr/content_discard">@drawable/ic_delete_white_24dp</item>
- <item name="attr/content_new">@drawable/ic_add_white_24dp</item>
- <item name="attr/feed">@drawable/ic_feed_white_24dp</item>
- <item name="attr/location_web_site">@drawable/ic_web_white_24dp</item>
- <item name="attr/navigation_accept">@drawable/ic_done_white_24dp</item>
- <item name="attr/navigation_cancel">@drawable/ic_cancel_white_24dp</item>
- <item name="attr/navigation_expand">@drawable/ic_expand_more_white_36dp</item>
- <item name="attr/navigation_refresh">@drawable/ic_refresh_white_24dp</item>
- <item name="attr/navigation_up">@drawable/navigation_up_dark</item>
- <item name="attr/social_share">@drawable/ic_share_white_24dp</item>
- <item name="attr/stat_playlist">@drawable/ic_list_white_24dp</item>
- <item name="attr/type_audio">@drawable/ic_hearing_white_18dp</item>
- <item name="attr/type_video">@drawable/ic_remove_red_eye_white_18dp</item>
- <item name="attr/non_transparent_background">@color/black</item>
- <item name="attr/overlay_background">@color/overlay_dark</item>
- <item name="attr/overlay_drawable">@drawable/overlay_drawable_dark</item>
- <item name="attr/dragview_background">@drawable/ic_drag_vertical_white_48dp</item>
- <item name="attr/dragview_float_background">@color/black</item>
- <item name="attr/nav_drawer_background">#3B3B3B</item>
- <item name="attr/ic_new">@drawable/ic_new_releases_white_24dp</item>
- <item name="attr/ic_history">@drawable/ic_history_white_24dp</item>
- <item name="attr/ic_folder">@drawable/ic_folder_white_24dp</item>
- <item name="attr/av_play_big">@drawable/ic_play_arrow_white_36dp</item>
- <item name="attr/av_pause_big">@drawable/ic_pause_white_36dp</item>
- <item name="attr/av_ff_big">@drawable/ic_fast_forward_white_36dp</item>
- <item name="attr/av_rew_big">@drawable/ic_fast_rewind_white_36dp</item>
- <item name="attr/av_skip_big">@drawable/ic_skip_white_36dp</item>
- <item name="attr/ic_fav">@drawable/ic_star_border_white_24dp</item>
- <item name="attr/ic_unfav">@drawable/ic_star_white_24dp</item>
- <item name="attr/ic_settings">@drawable/ic_settings_white_24dp</item>
- <item name="attr/ic_lock_open">@drawable/ic_lock_open_white_24dp</item>
- <item name="attr/ic_lock_closed">@drawable/ic_lock_closed_white_24dp</item>
- <item name="attr/ic_filter">@drawable/ic_filter_white_24dp</item>
- <item name="attr/ic_sleep">@drawable/ic_sleep_white_24dp</item>
- <item name="attr/ic_sleep_off">@drawable/ic_sleep_off_white_24dp</item>
- <item name="attr/ic_check_box">@drawable/ic_check_box_white_24dp</item>
- <item name="attr/ic_check_box_outline">@drawable/ic_check_box_outline_blank_white_24dp</item>
- <item name="attr/ic_indeterminate_check_box">@drawable/ic_indeterminate_check_box_white_24dp</item>
- <item name="attr/ic_sort">@drawable/ic_sort_white_24dp</item>
- <item name="attr/ic_sd_storage">@drawable/ic_sd_storage_white_36dp</item>
- <item name="attr/ic_create_new_folder">@drawable/ic_create_new_folder_white_24dp</item>
- <item name="attr/ic_cast_disconnect">@drawable/ic_cast_disconnect_white_36dp</item>
+ <item type="attr" name="storage">@drawable/ic_sd_white_24dp</item>
+ <item type="attr" name="ic_swap">@drawable/ic_swap_vertical_white_24dp</item>
+ <item type="attr" name="statistics">@drawable/ic_poll_box_white_24dp</item>
+ <item type="attr" name="action_about">@drawable/ic_info_white_24dp</item>
+ <item type="attr" name="checkbox_multiple">@drawable/ic_checkbox_multiple_marked_outline_white_24dp</item>
+ <item type="attr" name="action_search">@drawable/ic_search_white_24dp</item>
+ <item type="attr" name="action_stream">@drawable/ic_settings_input_antenna_white_24dp</item>
+ <item type="attr" name="av_download">@drawable/ic_file_download_white_24dp</item>
+ <item type="attr" name="av_fast_forward">@drawable/ic_fast_forward_white_24dp</item>
+ <item type="attr" name="av_pause">@drawable/ic_pause_white_24dp</item>
+ <item type="attr" name="av_play">@drawable/ic_play_arrow_white_24dp</item>
+ <item type="attr" name="av_rewind">@drawable/ic_fast_rewind_white_24dp</item>
+ <item type="attr" name="content_discard">@drawable/ic_delete_white_24dp</item>
+ <item type="attr" name="content_new">@drawable/ic_add_white_24dp</item>
+ <item type="attr" name="feed">@drawable/ic_feed_white_24dp</item>
+ <item type="attr" name="location_web_site">@drawable/ic_web_white_24dp</item>
+ <item type="attr" name="navigation_accept">@drawable/ic_done_white_24dp</item>
+ <item type="attr" name="navigation_cancel">@drawable/ic_cancel_white_24dp</item>
+ <item type="attr" name="navigation_expand">@drawable/ic_expand_more_white_36dp</item>
+ <item type="attr" name="navigation_refresh">@drawable/ic_refresh_white_24dp</item>
+ <item type="attr" name="navigation_up">@drawable/navigation_up_dark</item>
+ <item type="attr" name="social_share">@drawable/ic_share_white_24dp</item>
+ <item type="attr" name="stat_playlist">@drawable/ic_list_white_24dp</item>
+ <item type="attr" name="type_audio">@drawable/ic_hearing_white_18dp</item>
+ <item type="attr" name="type_video">@drawable/ic_remove_red_eye_white_18dp</item>
+ <item type="attr" name="non_transparent_background">@color/black</item>
+ <item type="attr" name="overlay_background">@color/overlay_dark</item>
+ <item type="attr" name="overlay_drawable">@drawable/overlay_drawable_dark</item>
+ <item type="attr" name="dragview_background">@drawable/ic_drag_vertical_white_48dp</item>
+ <item type="attr" name="dragview_float_background">@color/black</item>
+ <item type="attr" name="nav_drawer_background">#3B3B3B</item>
+ <item type="attr" name="ic_new">@drawable/ic_new_releases_white_24dp</item>
+ <item type="attr" name="ic_history">@drawable/ic_history_white_24dp</item>
+ <item type="attr" name="ic_folder">@drawable/ic_folder_white_24dp</item>
+ <item type="attr" name="av_play_big">@drawable/ic_play_arrow_white_36dp</item>
+ <item type="attr" name="av_pause_big">@drawable/ic_pause_white_36dp</item>
+ <item type="attr" name="av_ff_big">@drawable/ic_fast_forward_white_36dp</item>
+ <item type="attr" name="av_rew_big">@drawable/ic_fast_rewind_white_36dp</item>
+ <item type="attr" name="av_skip_big">@drawable/ic_skip_white_36dp</item>
+ <item type="attr" name="ic_fav">@drawable/ic_star_border_white_24dp</item>
+ <item type="attr" name="ic_unfav">@drawable/ic_star_white_24dp</item>
+ <item type="attr" name="ic_settings">@drawable/ic_settings_white_24dp</item>
+ <item type="attr" name="ic_lock_open">@drawable/ic_lock_open_white_24dp</item>
+ <item type="attr" name="ic_lock_closed">@drawable/ic_lock_closed_white_24dp</item>
+ <item type="attr" name="ic_filter">@drawable/ic_filter_white_24dp</item>
+ <item type="attr" name="ic_sleep">@drawable/ic_sleep_white_24dp</item>
+ <item type="attr" name="ic_sleep_off">@drawable/ic_sleep_off_white_24dp</item>
+ <item type="attr" name="ic_check_box">@drawable/ic_check_box_white_24dp</item>
+ <item type="attr" name="ic_check_box_outline">@drawable/ic_check_box_outline_blank_white_24dp</item>
+ <item type="attr" name="ic_indeterminate_check_box">@drawable/ic_indeterminate_check_box_white_24dp</item>
+ <item type="attr" name="ic_sort">@drawable/ic_sort_white_24dp</item>
+ <item type="attr" name="ic_sd_storage">@drawable/ic_sd_storage_white_36dp</item>
+ <item type="attr" name="ic_create_new_folder">@drawable/ic_create_new_folder_white_24dp</item>
+ <item type="attr" name="ic_cast_disconnect">@drawable/ic_cast_disconnect_white_36dp</item>
+ <item type="attr" name="ic_cellphone_text">@drawable/ic_cellphone_text_white_24dp</item>
+ <item type="attr" name="ic_question_answer">@drawable/ic_baseline_question_answer_white_24dp</item>
+ <item type="attr" name="ic_bug">@drawable/ic_bug_white_24dp</item>
+ <item type="attr" name="ic_known_issues">@drawable/ic_format_list_bulleted_white_24dp</item>
+ <item type="attr" name="master_switch_background">@color/master_switch_background_dark</item>
+ <item type="attr" name="currently_playing_background">@color/highlight_dark</item>
+ <item name="preferenceTheme">@style/PreferenceThemeOverlay.v14.Material</item>
+
+ <item type="attr" name="about_screen_background">#303030</item>
+ <item type="attr" name="about_screen_card_background">#424242</item>
+ <item type="attr" name="about_screen_card_border">#262626</item>
+ <item type="attr" name="about_screen_font_color">#ffffff</item>
+ </style>
+
+ <style name="Theme.AntennaPod.TrueBlack.NoTitle" parent="Theme.Base.AntennaPod.TrueBlack.NoTitle">
+ <!-- Room for API dependent attributes -->
</style>
+ <style name="Theme.Base.AntennaPod.TrueBlack.NoTitle" parent="Theme.Base.AntennaPod.Dark.NoTitle">
+ <item name="progressBarTheme">@style/ProgressBarTrueBlack</item>
+ <item type="attr" name="non_transparent_background">@color/black</item>
+ <item type="attr" name="overlay_background">@color/black</item>
+ <item type="attr" name="overlay_drawable">@drawable/overlay_drawable_dark_trueblack</item>
+ <item type="attr" name="dragview_background">@drawable/ic_drag_vertical_white_48dp</item>
+ <item type="attr" name="dragview_float_background">@color/black</item>
+ <item type="attr" name="nav_drawer_background">@color/black</item>
+ <item type="attr" name="currently_playing_background">@color/highlight_trueblack</item>
+ <item name="android:textColorPrimary">@color/white</item>
+ <item name="android:color">@color/white</item>
+ <item name="android:colorBackground">@color/black</item>
+ <item name="android:windowBackground">@color/black</item>
+ <item name="android:actionBarStyle">@color/black</item>
+ <item name="colorPrimary">@color/black</item>
+ <item name="colorPrimaryDark">@color/black</item>
+ </style>
+
+
<style name="Theme.AntennaPod.Dark.Splash" parent="Theme.AppCompat.NoActionBar">
<item name="android:windowBackground">@drawable/bg_splash</item>
</style>
@@ -283,6 +410,7 @@
<item name="android:textSize">@dimen/text_size_micro</item>
<item name="android:textColor">@color/new_indicator_green</item>
<item name="android:text">@string/new_label</item>
+ <item name="android:textAllCaps">true</item>
</style>
<style name="Widget.AntennaPod.Button" parent="Widget.AppCompat.Button">
@@ -325,4 +453,9 @@
<item name="android:progressDrawable">@drawable/progress_bar_horizontal_dark</item>
</style>
+ <style name="ProgressBarTrueBlack">
+ <item name="android:indeterminateOnly">false</item>
+ <item name="android:progressDrawable">@drawable/progress_bar_horizontal_trueblack</item>
+ </style>
+
</resources>