diff options
author | Sarmad Hashmi <mhashmi@google.com> | 2016-01-22 13:07:32 -0800 |
---|---|---|
committer | Sarmad Hashmi <mhashmi@google.com> | 2016-02-09 15:26:54 -0800 |
commit | 3f70c27d80b2e3176159f561248f95612d66afe2 (patch) | |
tree | 37c1b3c8b402db159bdbf91f4604875fa8a3c81c /res | |
parent | feedc755ee8388663d67d545ca08121ee8d3b12d (diff) |
Collapsed and expanded voicemail cards show duration.
The duration of the voicemail is appended to the date in a MM:SS format.
BUG=25728257
Change-Id: I9c3e392336877c2ca69707e14c6ab2eed6f2e7c6
Diffstat (limited to 'res')
-rw-r--r-- | res/values/strings.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/res/values/strings.xml b/res/values/strings.xml index 7e87b2fb0..3c319af5b 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -453,6 +453,12 @@ The date will be replaced by 'Today' for voicemails created on the current day. For example: Today at 2:49 PM --> <string name="voicemailCallLogDateTimeFormat"><xliff:g id="date" example="Jul 25, 2014">%1$s</xliff:g> at <xliff:g id="time" example="2:49 PM">%2$s</xliff:g></string> + <!-- Format for duration of voicemails which are displayed when viewing voicemail logs. For example "01:22" --> + <string name="voicemailDurationFormat"><xliff:g id="minutes" example="10">%1$02d</xliff:g>:<xliff:g id="seconds" example="20">%2$02d</xliff:g></string> + + <!-- A format string used for displaying the date, time and duration for a voicemail call log. For example: Jul 25, 2014 at 2:49 PM • 00:34 --> + <string name="voicemailCallLogDateTimeFormatWithDuration"><xliff:g id="dateAndTime" example="Jul 25, 2014 at 2:49PM">%1$s</xliff:g> \u2022 <xliff:g id="duration" example="01:22">%2$s</xliff:g></string> + <!-- Dialog message which is shown when the user tries to make a phone call to prohibited phone numbers [CHAR LIMIT=NONE] --> <string name="dialog_phone_call_prohibited_message" msgid="4313552620858880999">Can\'t call this number</string> |