Allow to properly translate the download ETA string

Change-Id: Ie6bbbddbbd9fd7adbc16472ad9c42c1d257413a1
This commit is contained in:
Gabriele M
2018-04-21 16:31:17 +02:00
parent cc1ad0e827
commit fd096a564a
4 changed files with 15 additions and 15 deletions

View File

@@ -393,7 +393,7 @@ public class UpdaterService extends Service {
setNotificationTitle(update);
String speed = Formatter.formatFileSize(this, update.getSpeed());
CharSequence eta = StringGenerator.formatDuration(this, update.getEta() * 1000);
CharSequence eta = StringGenerator.formatETA(this, update.getEta() * 1000);
mNotificationStyle.bigText(
getString(R.string.text_download_speed, eta, speed));