diff options
author | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-22 01:40:49 +0000 |
---|---|---|
committer | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-22 01:40:49 +0000 |
commit | 789b9dbafa3668508825afe2d47df2fbae3a347f (patch) | |
tree | 2d1925bc00c7e55ec36c2bc208ab555257e616cd | |
parent | 7cd1d802b4c6c929ffdce3892e745ec04030558b (diff) | |
download | chromium_src-789b9dbafa3668508825afe2d47df2fbae3a347f.zip chromium_src-789b9dbafa3668508825afe2d47df2fbae3a347f.tar.gz chromium_src-789b9dbafa3668508825afe2d47df2fbae3a347f.tar.bz2 |
DOMUI: Fix the casing the of the Autofill overlay titles.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/6376008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72252 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/app/generated_resources.grd | 40 |
1 files changed, 28 insertions, 12 deletions
diff --git a/chrome/app/generated_resources.grd b/chrome/app/generated_resources.grd index 927e3e7..2d266fc 100644 --- a/chrome/app/generated_resources.grd +++ b/chrome/app/generated_resources.grd @@ -6932,18 +6932,34 @@ Keep your key file in a safe place. You will need it to create new versions of y desc="Text of the edit button in the Autofill editor"> Edit... </message> - <message name="IDS_AUTOFILL_EDIT_ADDRESS_CAPTION" desc="The caption on the edit Autofill address dialog."> - Edit address - </message> - <message name="IDS_AUTOFILL_ADD_ADDRESS_CAPTION" desc="The caption on the edit Autofill address dialog for the new entry."> - Add an address - </message> - <message name="IDS_AUTOFILL_EDIT_CREDITCARD_CAPTION" desc="The caption on the edit Autofill credit card dialog."> - Edit credit card - </message> - <message name="IDS_AUTOFILL_ADD_CREDITCARD_CAPTION" desc="The caption on the edit Autofill credit card dialog the new entry."> - Add a credit card - </message> + <if expr="not pp_ifdef('use_titlecase')"> + <message name="IDS_AUTOFILL_EDIT_ADDRESS_CAPTION" desc="In sentence case: The caption on the edit Autofill address dialog."> + Edit address + </message> + <message name="IDS_AUTOFILL_ADD_ADDRESS_CAPTION" desc="In sentence case: The caption on the edit Autofill address dialog for the new entry."> + Add an address + </message> + <message name="IDS_AUTOFILL_EDIT_CREDITCARD_CAPTION" desc="In sentence case: The caption on the edit Autofill credit card dialog."> + Edit credit card + </message> + <message name="IDS_AUTOFILL_ADD_CREDITCARD_CAPTION" desc="In sentence case: The caption on the edit Autofill credit card dialog the new entry."> + Add a credit card + </message> + </if> + <if expr="pp_ifdef('use_titlecase')"> + <message name="IDS_AUTOFILL_EDIT_ADDRESS_CAPTION" desc="In Title Case: The caption on the edit Autofill address dialog."> + Edit Address + </message> + <message name="IDS_AUTOFILL_ADD_ADDRESS_CAPTION" desc="In Title Case: The caption on the edit Autofill address dialog for the new entry."> + Add an Address + </message> + <message name="IDS_AUTOFILL_EDIT_CREDITCARD_CAPTION" desc="In Title Case: The caption on the edit Autofill credit card dialog."> + Edit Credit Card + </message> + <message name="IDS_AUTOFILL_ADD_CREDITCARD_CAPTION" desc="In Title Case: The caption on the edit Autofill credit card dialog the new entry."> + Add a Credit Card + </message> + </if> <message name="IDS_AUTOFILL_LIST_HEADER_SUMMARY" desc="The text on the list view header over the summary."> Summary </message> |