diff options
author | keishi@chromium.org <keishi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-25 05:01:28 +0000 |
---|---|---|
committer | keishi@chromium.org <keishi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-25 05:01:28 +0000 |
commit | f7ea67c00e86f09e1a7dd1eafc80fae5c7be7c11 (patch) | |
tree | 0efb5709fff5043ad5175355fa28a53c93f1202d | |
parent | e1cbb1b95b4441b3f365de03cd892fee6486c214 (diff) | |
download | chromium_src-f7ea67c00e86f09e1a7dd1eafc80fae5c7be7c11.zip chromium_src-f7ea67c00e86f09e1a7dd1eafc80fae5c7be7c11.tar.gz chromium_src-f7ea67c00e86f09e1a7dd1eafc80fae5c7be7c11.tar.bz2 |
Added OtherDateLabel localized string.
It will be used in WebKit for the date suggestion picker popup.
BUG=151480
Review URL: https://chromiumcodereview.appspot.com/10957032
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@158528 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | webkit/glue/webkit_strings.grd | 3 | ||||
-rw-r--r-- | webkit/glue/webkitplatformsupport_impl.cc | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/webkit/glue/webkit_strings.grd b/webkit/glue/webkit_strings.grd index 9933ed3..890e7c0 100644 --- a/webkit/glue/webkit_strings.grd +++ b/webkit/glue/webkit_strings.grd @@ -261,6 +261,9 @@ below: <message name="IDS_FORM_OTHER_COLOR_LABEL" desc="Label for button that opens a full color chooser so the user can choose colors other than the ones in the list."> Other... </message> + <message name="IDS_FORM_OTHER_DATE_LABEL" desc="Label for button that opens a full calendar picker so the user can choose dates other than the ones in the list." meaning="for date label"> + Other... + </message> <message name="IDS_RECENT_SEARCHES_NONE" desc="Label for only item in menu that appears when clicking on the search field image, when no searches have been performed"> No recent searches diff --git a/webkit/glue/webkitplatformsupport_impl.cc b/webkit/glue/webkitplatformsupport_impl.cc index 79b57c3..9212af8 100644 --- a/webkit/glue/webkitplatformsupport_impl.cc +++ b/webkit/glue/webkitplatformsupport_impl.cc @@ -199,6 +199,8 @@ static int ToMessageID(WebLocalizedString::Name name) { return IDS_FORM_FILE_MULTIPLE_UPLOAD; case WebLocalizedString::OtherColorLabel: return IDS_FORM_OTHER_COLOR_LABEL; + case WebLocalizedString::OtherDateLabel: + return IDS_FORM_OTHER_DATE_LABEL; case WebLocalizedString::ResetButtonDefaultLabel: return IDS_FORM_RESET_LABEL; case WebLocalizedString::SearchableIndexIntroduction: |