summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorLincoln Ramsay <a1291762@gmail.com>2021-02-28 09:23:11 +1000
committerLincoln Ramsay <a1291762@gmail.com>2021-03-01 07:13:33 +1000
commit8755a54e9945ec6b96009798e2f77e47aa6f0ee4 (patch)
tree99f392ce12a9e27de92047d8a0c95f487c876308 /core
parentfcbbaa40603a04ba809058327c8c9620f3798570 (diff)
downloadAntennaPod-8755a54e9945ec6b96009798e2f77e47aa6f0ee4.zip
Change the message that appears when downloads are finished
In the event that the notification hangs around, this is a more accurate description of what is happening.
Diffstat (limited to 'core')
-rw-r--r--core/src/main/java/de/danoeh/antennapod/core/service/download/DownloadServiceNotification.java2
-rw-r--r--core/src/main/res/values/strings.xml2
2 files changed, 2 insertions, 2 deletions
diff --git a/core/src/main/java/de/danoeh/antennapod/core/service/download/DownloadServiceNotification.java b/core/src/main/java/de/danoeh/antennapod/core/service/download/DownloadServiceNotification.java
index 64ed85cf3..7c8fe9452 100644
--- a/core/src/main/java/de/danoeh/antennapod/core/service/download/DownloadServiceNotification.java
+++ b/core/src/main/java/de/danoeh/antennapod/core/service/download/DownloadServiceNotification.java
@@ -53,7 +53,7 @@ public class DownloadServiceNotification {
String contentTitle = context.getString(R.string.download_notification_title);
String downloadsLeft = (numDownloads > 0)
? context.getResources().getQuantityString(R.plurals.downloads_left, numDownloads, numDownloads)
- : context.getString(R.string.downloads_processing);
+ : context.getString(R.string.service_shutting_down);
String bigText = compileNotificationString(downloads);
notificationCompatBuilder.setContentTitle(contentTitle);
diff --git a/core/src/main/res/values/strings.xml b/core/src/main/res/values/strings.xml
index eb4756296..16b1698d1 100644
--- a/core/src/main/res/values/strings.xml
+++ b/core/src/main/res/values/strings.xml
@@ -270,7 +270,7 @@
<item quantity="one">%d download left</item>
<item quantity="other">%d downloads left</item>
</plurals>
- <string name="downloads_processing">Processing downloads</string>
+ <string name="service_shutting_down">Service shutting down</string>
<string name="download_notification_title">Downloading podcast data</string>
<plurals name="download_report_content">
<item quantity="one">%d download succeeded, %d failed</item>