summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlaforge@chromium.org <laforge@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-18 02:31:11 +0000
committerlaforge@chromium.org <laforge@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-18 02:31:11 +0000
commit638f573f7d85758bd8f83a0158e015bb474f1ffc (patch)
tree4f71bdcd446fd624eb8d4d1bc54d26516f51d11d
parentc658bee22ed16dccbebc2ee44197a78c044af83c (diff)
downloadchromium_src-638f573f7d85758bd8f83a0158e015bb474f1ffc.zip
chromium_src-638f573f7d85758bd8f83a0158e015bb474f1ffc.tar.gz
chromium_src-638f573f7d85758bd8f83a0158e015bb474f1ffc.tar.bz2
Merge 32073 - Update "Bookmark Sync" string in options dialog.
This should be sentencecase rather than titlecase for nonLinux, and it shouldn't have a trailing colon on Linux. BUG=27766 Review URL: http://codereview.chromium.org/395019 TBR=derat@chromium.org Review URL: http://codereview.chromium.org/399056 git-svn-id: svn://svn.chromium.org/chrome/branches/249/src@32261 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/app/generated_resources.grd13
1 files changed, 10 insertions, 3 deletions
diff --git a/chrome/app/generated_resources.grd b/chrome/app/generated_resources.grd
index c7e6bdc..ec5c38a 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>