diff options
author | atwilson@chromium.org <atwilson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-18 22:07:59 +0000 |
---|---|---|
committer | atwilson@chromium.org <atwilson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-18 22:07:59 +0000 |
commit | 6b15434bf59bad3c5fe1f632adcc49746b23aaed (patch) | |
tree | a4bead8668717fedea7f37073cd1778266068702 | |
parent | f2c864e307cbb6b968977bb3c4bc88bf31ca9dd4 (diff) | |
download | chromium_src-6b15434bf59bad3c5fe1f632adcc49746b23aaed.zip chromium_src-6b15434bf59bad3c5fe1f632adcc49746b23aaed.tar.gz chromium_src-6b15434bf59bad3c5fe1f632adcc49746b23aaed.tar.bz2 |
Made new non-title-case strings for status icon context menu items.
BUG=none
TEST=Install background app, bring up context menu by clicking on status icon, see that "Let Chromium run in the background" is appropriately title-cased based on the platform (no on Windows, yes on Linux)
Review URL: http://codereview.chromium.org/7043012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@85823 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/app/chromium_strings.grd | 13 | ||||
-rw-r--r-- | chrome/app/google_chrome_strings.grd | 13 |
2 files changed, 20 insertions, 6 deletions
diff --git a/chrome/app/chromium_strings.grd b/chrome/app/chromium_strings.grd index 52e427a..5d4d0b2 100644 --- a/chrome/app/chromium_strings.grd +++ b/chrome/app/chromium_strings.grd @@ -336,9 +336,16 @@ be available for now. --> Please sign out of Chromium OS and sign in again for this change to take effect. </message> </if> - <message name="IDS_STATUS_TRAY_KEEP_CHROME_RUNNING_IN_BACKGROUND" desc="The checkbox in the status tray context menu that controls whether chrome keeps running in the background after the last window is closed"> - Let Chromium Run In The Background - </message> + <if expr="pp_ifdef('use_titlecase')"> + <message name="IDS_STATUS_TRAY_KEEP_CHROME_RUNNING_IN_BACKGROUND" desc="In Title Case: The checkbox in the status tray context menu that controls whether chrome keeps running in the background after the last window is closed"> + Let Chromium Run In The Background + </message> + </if> + <if expr="not pp_ifdef('use_titlecase')"> + <message name="IDS_STATUS_TRAY_KEEP_CHROME_RUNNING_IN_BACKGROUND" desc="The checkbox in the status tray context menu that controls whether chrome keeps running in the background after the last window is closed"> + Let Chromium run in the background + </message> + </if> <message name="IDS_OPTIONS_BACKGROUND_ENABLE_BACKGROUND_MODE" desc="The label of the check-box that enables background mode"> Continue running background apps when Chromium is closed </message> diff --git a/chrome/app/google_chrome_strings.grd b/chrome/app/google_chrome_strings.grd index e4491ea..ac90825c 100644 --- a/chrome/app/google_chrome_strings.grd +++ b/chrome/app/google_chrome_strings.grd @@ -342,9 +342,16 @@ Chrome supports. --> Please sign out of Chrome OS and sign in again for this change to take effect. </message> </if> - <message name="IDS_STATUS_TRAY_KEEP_CHROME_RUNNING_IN_BACKGROUND" desc="The checkbox in the status tray context menu that controls whether chrome keeps running in the background after the last window is closed"> - Let Google Chrome Run In The Background - </message> + <if expr="pp_ifdef('use_titlecase')"> + <message name="IDS_STATUS_TRAY_KEEP_CHROME_RUNNING_IN_BACKGROUND" desc="In Title Case: The checkbox in the status tray context menu that controls whether chrome keeps running in the background after the last window is closed"> + Let Google Chrome Run In The Background + </message> + </if> + <if expr="not pp_ifdef('use_titlecase')"> + <message name="IDS_STATUS_TRAY_KEEP_CHROME_RUNNING_IN_BACKGROUND" desc="The checkbox in the status tray context menu that controls whether chrome keeps running in the background after the last window is closed"> + Let Google Chrome run in the background + </message> + </if> <message name="IDS_OPTIONS_BACKGROUND_ENABLE_BACKGROUND_MODE" desc="The label of the check-box that enables background mode"> Continue running background apps when Google Chrome is closed </message> |