From 8755a54e9945ec6b96009798e2f77e47aa6f0ee4 Mon Sep 17 00:00:00 2001 From: Lincoln Ramsay Date: Sun, 28 Feb 2021 09:23:11 +1000 Subject: [PATCH] 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. --- .../core/service/download/DownloadServiceNotification.java | 2 +- core/src/main/res/values/strings.xml | 2 +- 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 @@ %d download left %d downloads left - Processing downloads + Service shutting down Downloading podcast data %d download succeeded, %d failed