summaryrefslogtreecommitdiff
path: root/InCallUI/src
diff options
context:
space:
mode:
authorYorke Lee <yorkelee@google.com>2015-04-18 14:12:17 -0700
committerYorke Lee <yorkelee@google.com>2015-04-18 14:12:17 -0700
commita2d3f022aefd3177d7d2e681f269c8b87e0ced68 (patch)
tree4eba0f38fb9a5f626244c85c9544899af3cb1864 /InCallUI/src
parent1cbcd2ffe78747a7092c727e87c7f26f077e7687 (diff)
Stop using internal plural resources
Change-Id: I6ddd0555c56cdd3c5269ba435b14d4c26e015e22
Diffstat (limited to 'InCallUI/src')
-rw-r--r--InCallUI/src/com/android/incallui/InCallDateUtils.java9
1 files changed, 3 insertions, 6 deletions
diff --git a/InCallUI/src/com/android/incallui/InCallDateUtils.java b/InCallUI/src/com/android/incallui/InCallDateUtils.java
index 88c5354c0..156eea06f 100644
--- a/InCallUI/src/com/android/incallui/InCallDateUtils.java
+++ b/InCallUI/src/com/android/incallui/InCallDateUtils.java
@@ -33,22 +33,19 @@ public class InCallDateUtils {
final Resources res = Resources.getSystem();
StringBuilder duration = new StringBuilder();
if (hours > 0) {
- duration.append(res.getQuantityString(
- com.android.internal.R.plurals.duration_hours, hours, hours));
+ duration.append(res.getQuantityString(R.plurals.duration_hours, hours, hours));
}
if (minutes > 0) {
if (hours > 0) {
duration.append(' ');
}
- duration.append(res.getQuantityString(
- com.android.internal.R.plurals.duration_minutes, minutes, minutes));
+ duration.append(res.getQuantityString(R.plurals.duration_minutes, minutes, minutes));
}
if (seconds > 0) {
if (hours > 0 || minutes > 0) {
duration.append(' ');
}
- duration.append(res.getQuantityString(
- com.android.internal.R.plurals.duration_seconds, seconds, seconds));
+ duration.append(res.getQuantityString(R.plurals.duration_seconds, seconds, seconds));
}
return duration.toString();
}