summaryrefslogtreecommitdiff
path: root/core/src
diff options
context:
space:
mode:
authorByteHamster <ByteHamster@users.noreply.github.com>2022-05-03 22:10:39 +0200
committerGitHub <noreply@github.com>2022-05-03 22:10:39 +0200
commitdfcc342c57e263754bf145501cd237c7570debd2 (patch)
tree1861894339adfac5bceb40805d40de67933996ed /core/src
parent8eedb82f310dda9f7773b0af2fcf313244f65f1c (diff)
downloadAntennaPod-dfcc342c57e263754bf145501cd237c7570debd2.zip
Rename 'new' screen to inbox (#5460)
Diffstat (limited to 'core/src')
-rw-r--r--core/src/main/res/drawable/ic_inbox.xml10
-rw-r--r--core/src/main/res/values/arrays.xml7
-rw-r--r--core/src/main/res/values/styles.xml6
3 files changed, 15 insertions, 8 deletions
diff --git a/core/src/main/res/drawable/ic_inbox.xml b/core/src/main/res/drawable/ic_inbox.xml
new file mode 100644
index 000000000..5482a1d36
--- /dev/null
+++ b/core/src/main/res/drawable/ic_inbox.xml
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="utf-8"?>
+<vector xmlns:android="http://schemas.android.com/apk/res/android"
+ android:width="24dp"
+ android:height="24dp"
+ android:viewportWidth="24"
+ android:viewportHeight="24">
+ <path
+ android:fillColor="?attr/action_icon_color"
+ android:pathData="M19,3L4.99,3c-1.11,0 -1.98,0.89 -1.98,2L3,19c0,1.1 0.88,2 1.99,2L19,21c1.1,0 2,-0.9 2,-2L21,5c0,-1.11 -0.9,-2 -2,-2zM19,15h-4c0,1.66 -1.35,3 -3,3s-3,-1.34 -3,-3L4.99,15L4.99,5L19,5v10z"/>
+</vector>
diff --git a/core/src/main/res/values/arrays.xml b/core/src/main/res/values/arrays.xml
index f3cf4361d..e5b4a5e3b 100644
--- a/core/src/main/res/values/arrays.xml
+++ b/core/src/main/res/values/arrays.xml
@@ -151,6 +151,7 @@
<string-array name="nav_drawer_titles">
<item>@string/queue_label</item>
+ <item>@string/inbox_label</item>
<item>@string/episodes_label</item>
<item>@string/subscriptions_label</item>
<item>@string/downloads_label</item>
@@ -173,8 +174,8 @@
</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>
+ <item>@string/drawer_feed_counter_inbox_unplayed</item>
+ <item>@string/drawer_feed_counter_inbox</item>
<item>@string/drawer_feed_counter_unplayed</item>
<item>@string/drawer_feed_counter_downloaded</item>
<item>@string/drawer_feed_counter_none</item>
@@ -265,12 +266,14 @@
<string-array name="back_button_go_to_pages">
<item>@string/queue_label</item>
+ <item>@string/inbox_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>InboxFragment</item>
<item>EpisodesFragment</item>
<item>SubscriptionFragment</item>
</string-array>
diff --git a/core/src/main/res/values/styles.xml b/core/src/main/res/values/styles.xml
index e597f8222..72c4eef18 100644
--- a/core/src/main/res/values/styles.xml
+++ b/core/src/main/res/values/styles.xml
@@ -183,12 +183,6 @@
<item name="android:ellipsize">end</item>
</style>
- <style name="AntennaPod.TextView.UnreadIndicator" parent="@android:style/TextAppearance.Small">
- <item name="android:textSize">@dimen/text_size_micro</item>
- <item name="android:textColor">?attr/colorAccent</item>
- <item name="android:textAllCaps">true</item>
- </style>
-
<style name="BigBlurryBackground">
<item name="android:scaleType">centerCrop</item>
<!-- <item name="android:tint">@color/image_readability_tint</item> -->