summaryrefslogtreecommitdiff
path: root/core/src/main/java/de
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/main/java/de')
-rw-r--r--core/src/main/java/de/danoeh/antennapod/core/util/Converter.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/main/java/de/danoeh/antennapod/core/util/Converter.java b/core/src/main/java/de/danoeh/antennapod/core/util/Converter.java
index 2bf88b3f3..1b929b214 100644
--- a/core/src/main/java/de/danoeh/antennapod/core/util/Converter.java
+++ b/core/src/main/java/de/danoeh/antennapod/core/util/Converter.java
@@ -111,10 +111,10 @@ public final class Converter {
String result = "";
if(h > 0) {
- String hours = context.getResources().getQuantityString(R.plurals.time_unit_hours, h, h);
+ String hours = context.getResources().getQuantityString(R.plurals.time_hours_quantified, h, h);
result += hours + " ";
}
- String minutes = context.getResources().getQuantityString(R.plurals.time_unit_minutes, m, m);
+ String minutes = context.getResources().getQuantityString(R.plurals.time_minutes_quantified, m, m);
result += minutes;
return result;
}