summaryrefslogtreecommitdiff
path: root/InCallUI/src/com
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:13:46 -0700
commit51a1a58aff377124b5d9722469b43213f011e383 (patch)
treeb719dfcd793dc42953221e4421f26f44a4b5af14 /InCallUI/src/com
parentb07d70491ac6fd2fa962ed42c775d8ba1cf0cd69 (diff)
DO NOT MERGE Stop using internal plural resources
Change-Id: I6ddd0555c56cdd3c5269ba435b14d4c26e015e22
Diffstat (limited to 'InCallUI/src/com')
-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();
}