Merge pull request #5301 from ByteHamster/shutting-down
Updated service shutting down text because it could be scary
This commit is contained in:
commit
0a86f5dcbf
|
@ -53,7 +53,7 @@ public class DownloadServiceNotification {
|
||||||
String contentTitle = context.getString(R.string.download_notification_title);
|
String contentTitle = context.getString(R.string.download_notification_title);
|
||||||
String downloadsLeft = (numDownloads > 0)
|
String downloadsLeft = (numDownloads > 0)
|
||||||
? context.getResources().getQuantityString(R.plurals.downloads_left, numDownloads, numDownloads)
|
? context.getResources().getQuantityString(R.plurals.downloads_left, numDownloads, numDownloads)
|
||||||
: context.getString(R.string.service_shutting_down);
|
: context.getString(R.string.completing);
|
||||||
String bigText = compileNotificationString(downloads);
|
String bigText = compileNotificationString(downloads);
|
||||||
|
|
||||||
notificationCompatBuilder.setContentTitle(contentTitle);
|
notificationCompatBuilder.setContentTitle(contentTitle);
|
||||||
|
|
|
@ -264,7 +264,7 @@
|
||||||
<item quantity="one">%d download left</item>
|
<item quantity="one">%d download left</item>
|
||||||
<item quantity="other">%d downloads left</item>
|
<item quantity="other">%d downloads left</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<string name="service_shutting_down">Service shutting down</string>
|
<string name="completing">Completing…</string>
|
||||||
<string name="download_notification_title">Downloading podcast data</string>
|
<string name="download_notification_title">Downloading podcast data</string>
|
||||||
<string name="download_log_title_unknown">Unknown Title</string>
|
<string name="download_log_title_unknown">Unknown Title</string>
|
||||||
<string name="download_type_feed">Feed</string>
|
<string name="download_type_feed">Feed</string>
|
||||||
|
|
Loading…
Reference in New Issue