diff options
author | Daniel Lehmann <lehmannd@google.com> | 2010-11-01 20:50:03 -0700 |
---|---|---|
committer | Daniel Lehmann <lehmannd@google.com> | 2010-11-01 20:50:03 -0700 |
commit | 392ccec3b56e8074a5a028af28106134b39f64bc (patch) | |
tree | 506cfd7ad8b51d63d997b6bb82c9110f6160d523 /res/values | |
parent | 1015d629f848de9d331a47c819f55854549d661d (diff) | |
download | packages_apps_Contacts-392ccec3b56e8074a5a028af28106134b39f64bc.tar.gz packages_apps_Contacts-392ccec3b56e8074a5a028af28106134b39f64bc.tar.bz2 packages_apps_Contacts-392ccec3b56e8074a5a028af28106134b39f64bc.zip |
Provide support for events (birthdays)
Bug:3134950
Change-Id: I9194dca403496a6f3a72bb45f69b16d8f530b15d
Diffstat (limited to 'res/values')
-rw-r--r-- | res/values/ids.xml | 3 | ||||
-rw-r--r-- | res/values/strings.xml | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/res/values/ids.xml b/res/values/ids.xml index 1b381ab17..6cb53ed3b 100644 --- a/res/values/ids.xml +++ b/res/values/ids.xml @@ -60,4 +60,7 @@ <!-- Loader ID for contact filters --> <item type="id" name="contact_list_filter_loader" /> + + <!-- Dialog ID for the date picker in event (birthday) editors --> + <item type="id" name="dialog_event_date_picker" /> </resources> diff --git a/res/values/strings.xml b/res/values/strings.xml index 84f1db10d..5ae2cf167 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -1397,7 +1397,10 @@ <!-- Button to close without add a phone number to contacts [CHAR LIMIT=25] --> <string name="non_phone_close">Close</string> - + <!-- Format string that combines the name and the phonetic name for the widget. if the phonetic name is empty, only the display name is used instead [CHAR LIMIT=25] --> <string name="widget_name_and_phonetic"><xliff:g id="display_name" example="John Huber">%1$s</xliff:g> (<xliff:g id="phonetic_name">%2$s</xliff:g>)</string> + + <!-- Checkbox whether to provide a year for a birthday [CHAR LIMIT=30] --> + <string name="date_year_toggle">Provide a year</string> </resources> |