diff options
author | mattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-05 21:24:01 +0000 |
---|---|---|
committer | mattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-05 21:24:01 +0000 |
commit | de1d9b4230d475e981f7cd0db8a94875dbf5e31c (patch) | |
tree | fd1a0823bd8401322e1bee4943464dd618ef9c58 /chrome/app | |
parent | 190ac7ee06858e5e20b398da1103d3fd753a276b (diff) | |
download | chromium_src-de1d9b4230d475e981f7cd0db8a94875dbf5e31c.zip chromium_src-de1d9b4230d475e981f7cd0db8a94875dbf5e31c.tar.gz chromium_src-de1d9b4230d475e981f7cd0db8a94875dbf5e31c.tar.bz2 |
Page Info dialog button HIG fixes.
All: Remove ellipses from IDS_PAGEINFO_CERT_INFO_BUTTON, as it does not require further action to display the info.
Add use_titlecase version.
Linux: Place button in the primary area instead of secondary to match HIG (I guess).
BUG=34425
TEST=read Gnome HIG (and MSDN "Command Buttons" guidelines), open Page Info for some page, compare
Review URL: http://codereview.chromium.org/561079
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@38251 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app')
-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 670e05b..0c83225 100644 --- a/chrome/app/generated_resources.grd +++ b/chrome/app/generated_resources.grd @@ -4332,9 +4332,16 @@ Keep your key file in a safe place. You will need it to create new versions of y <message name="IDS_PAGEINFO_WINDOW_TITLE" desc="Title of the page info window."> Security Information </message> - <message name="IDS_PAGEINFO_CERT_INFO_BUTTON" desc="Text of button in the page info that shows the SSL certificate."> - Certificate information... - </message> + <if expr="not pp_ifdef('use_titlecase')"> + <message name="IDS_PAGEINFO_CERT_INFO_BUTTON" desc="Text of button in the page info that shows the SSL certificate."> + Certificate information + </message> + </if> + <if expr="pp_ifdef('use_titlecase')"> + <message name="IDS_PAGEINFO_CERT_INFO_BUTTON" desc="In Title Case: Text of button in the page info that shows the SSL certificate."> + Certificate Information + </message> + </if> <message name="IDS_PAGEINFO_CLOSE_BUTTON" desc="Text of button in the page info that closes the window."> Close </message> |