diff options
author | dewittj@chromium.org <dewittj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-22 00:46:17 +0000 |
---|---|---|
committer | dewittj@chromium.org <dewittj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-22 00:46:17 +0000 |
commit | ea43383aa118bad3f513d8509d62ede8023c7023 (patch) | |
tree | d9346bae54ac9921486a858925705fd5be5b8523 | |
parent | 9fb6847e23a42bc4060b3a3e495a6918be1f7506 (diff) | |
download | chromium_src-ea43383aa118bad3f513d8509d62ede8023c7023.zip chromium_src-ea43383aa118bad3f513d8509d62ede8023c7023.tar.gz chromium_src-ea43383aa118bad3f513d8509d62ede8023c7023.tar.bz2 |
Adjust do not disturb hovertext on Mac.
From "Do not disturb" to "Do Not Disturb".
BUG=252840
Review URL: https://chromiumcodereview.appspot.com/17068015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@207981 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | ui/base/strings/ui_strings.grd | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/ui/base/strings/ui_strings.grd b/ui/base/strings/ui_strings.grd index 0cec6ed..57b19a1 100644 --- a/ui/base/strings/ui_strings.grd +++ b/ui/base/strings/ui_strings.grd @@ -461,9 +461,16 @@ need to be translated for each locale.--> <message name="IDS_MESSAGE_CENTER_CLEAR_ALL" desc="The button for clearing all notifications."> Clear All </message> - <message name="IDS_MESSAGE_CENTER_QUIET_MODE_BUTTON_TOOLTIP" desc="The tooltip text for the quiet mode button."> - Do not disturb - </message> + <if expr="not pp_ifdef('use_titlecase')"> + <message name="IDS_MESSAGE_CENTER_QUIET_MODE_BUTTON_TOOLTIP" desc="The tooltip text for the quiet mode button."> + Do not disturb + </message> + </if> + <if expr="pp_ifdef('use_titlecase')"> + <message name="IDS_MESSAGE_CENTER_QUIET_MODE_BUTTON_TOOLTIP" desc="In Title Case: The tooltip text for the quiet mode button."> + Do Not Disturb + </message> + </if> <message name="IDS_MESSAGE_CENTER_NO_MESSAGES" desc="The message displayed in the message center when there are no notifications."> Nothing to see here, move along. </message> |