diff options
author | ByteHamster <info@bytehamster.com> | 2024-02-18 19:05:13 +0100 |
---|---|---|
committer | ByteHamster <info@bytehamster.com> | 2024-02-18 19:05:13 +0100 |
commit | 0d29e44de5ac97f2285aca241e4f4290c26ea0f9 (patch) | |
tree | be56da0e2381b7a2abc43b2401fb7bfca1d03503 /ui/echo/src/main/java/de/danoeh/antennapod | |
parent | 556597a17315a6966a940e24e53088f8a31ef018 (diff) | |
parent | bf6721842220d7e89a0c3a451f5965e57feb9ca0 (diff) | |
download | AntennaPod-0d29e44de5ac97f2285aca241e4f4290c26ea0f9.zip |
Merge branch 'master' into develop
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: |