diff options
author | derat@chromium.org <derat@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-16 19:31:04 +0000 |
---|---|---|
committer | derat@chromium.org <derat@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-16 19:31:04 +0000 |
commit | 37048f235367c282f1dba8c26364050dfc083d90 (patch) | |
tree | 4d13d26a7e2577001a0209f722f895441e18a937 /chrome | |
parent | ebc5a8a893f65d36c46996f926425ed30f8f2c48 (diff) | |
download | chromium_src-37048f235367c282f1dba8c26364050dfc083d90.zip chromium_src-37048f235367c282f1dba8c26364050dfc083d90.tar.gz chromium_src-37048f235367c282f1dba8c26364050dfc083d90.tar.bz2 |
Update "Bookmark Sync" string in options dialog.
This should be sentence-case rather than title-case for non-Linux,
and it shouldn't have a trailing colon on Linux.
BUG=27766
Review URL: http://codereview.chromium.org/395019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32073 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/app/generated_resources.grd | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/chrome/app/generated_resources.grd b/chrome/app/generated_resources.grd index f8d1679..f41512f 100644 --- a/chrome/app/generated_resources.grd +++ b/chrome/app/generated_resources.grd @@ -5493,9 +5493,16 @@ Keep your key file in a safe place. You will need it to create new versions of y <!-- Sync strings --> <!-- Sync options dialog strings --> - <message name="IDS_SYNC_OPTIONS_GROUP_NAME" desc="The name of the sync group in the options dialog."> - Bookmark Sync: - </message> + <if expr="not pp_ifdef('use_titlecase') or os != 'linux2'"> + <message name="IDS_SYNC_OPTIONS_GROUP_NAME" desc="The name of the sync group in the options dialog."> + Bookmark sync: + </message> + </if> + <if expr="pp_ifdef('use_titlecase') and os == 'linux2'"> + <message name="IDS_SYNC_OPTIONS_GROUP_NAME" desc="In Title Case and without trailing colon: The name of the sync group in the options dialog."> + Bookmark Sync + </message> + </if> <message name="IDS_SYNC_NOT_SET_UP_INFO" desc="The message that appears in the options dialog when sync has not been set up by the user."> You are not set up to sync your bookmarks with your other computers. </message> |