diff options
Diffstat (limited to 'ui/echo/src/main/java/de/danoeh/antennapod')
-rw-r--r-- | ui/echo/src/main/java/de/danoeh/antennapod/ui/echo/EchoActivity.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/echo/src/main/java/de/danoeh/antennapod/ui/echo/EchoActivity.java b/ui/echo/src/main/java/de/danoeh/antennapod/ui/echo/EchoActivity.java index 69ce8373a..758eaeac7 100644 --- a/ui/echo/src/main/java/de/danoeh/antennapod/ui/echo/EchoActivity.java +++ b/ui/echo/src/main/java/de/danoeh/antennapod/ui/echo/EchoActivity.java @@ -221,7 +221,7 @@ public class EchoActivity extends AppCompatActivity { dec31.get(Calendar.DAY_OF_YEAR) - Calendar.getInstance().get(Calendar.DAY_OF_YEAR) + 1); long secondsPerDay = queueSecondsLeft / daysUntilNextYear; String timePerDay = Converter.getDurationStringLocalized( - getLocalizedResources(this, getEchoLanguage()), secondsPerDay * 1000); + getLocalizedResources(this, getEchoLanguage()), secondsPerDay * 1000, true); double hoursPerDay = (double) (secondsPerDay / 3600); int nextYear = RELEASE_YEAR + 1; if (hoursPerDay < 1.5) { @@ -249,7 +249,7 @@ public class EchoActivity extends AppCompatActivity { } viewBinding.smallLabel.setText(getString(R.string.echo_listened_after_time, Converter.getDurationStringLocalized( - getLocalizedResources(this, getEchoLanguage()), timeBetweenReleaseAndPlay))); + getLocalizedResources(this, getEchoLanguage()), timeBetweenReleaseAndPlay, true))); currentDrawable = new RotatingSquaresScreen(this); break; case 4: |