diff options
author | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-29 12:23:10 +0000 |
---|---|---|
committer | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-29 12:23:10 +0000 |
commit | c4412f58dcb203ec17929761579fb39d0d15963e (patch) | |
tree | 77bf171ea4530b1c9677e2e80ed105106fe54137 /chrome | |
parent | 986f428facdea695fb3ee4eb43c51074fce726ef (diff) | |
download | chromium_src-c4412f58dcb203ec17929761579fb39d0d15963e.zip chromium_src-c4412f58dcb203ec17929761579fb39d0d15963e.tar.gz chromium_src-c4412f58dcb203ec17929761579fb39d0d15963e.tar.bz2 |
[Linux] Follow GNOME's HIG in application shortcuts dialogs.
TEST=none
BUG=38300
Review URL: http://codereview.chromium.org/1289004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42941 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/app/generated_resources.grd | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/chrome/app/generated_resources.grd b/chrome/app/generated_resources.grd index dad12f4..af5d09c 100644 --- a/chrome/app/generated_resources.grd +++ b/chrome/app/generated_resources.grd @@ -2260,9 +2260,16 @@ each locale. --> </if> <!-- "Create application shortcuts" dialog (non-Gears) --> - <message name="IDS_CREATE_SHORTCUTS_TITLE" desc="Title of the dialog to create application shortcuts for current page."> - Create application shortcuts - </message> + <if expr="not pp_ifdef('use_titlecase') or os != 'linux2'"> + <message name="IDS_CREATE_SHORTCUTS_TITLE" desc="Title of the dialog to create application shortcuts for current page."> + Create application shortcuts + </message> + </if> + <if expr="pp_ifdef('use_titlecase') and os == 'linux2'"> + <message name="IDS_CREATE_SHORTCUTS_TITLE" desc="In Title Case: title of the dialog to create application shortcuts for current page."> + Create Application Shortcuts + </message> + </if> <message name="IDS_CREATE_SHORTCUTS_LABEL" desc="Contents of the main label in the create application shortcuts dialog explaining the dialog."> Create application shortcuts in the following places: </message> @@ -2280,7 +2287,7 @@ each locale. --> </message> <if expr="os == 'linux2' or os == 'openbsd4' or os=='freebsd6'"> <message name="IDS_CREATE_SHORTCUTS_ERROR_TITLE" desc="Title of the error dialog box when creating an application shortcut failed."> - Failed to create application shortcut + Failed to Create Application Shortcut </message> <message name="IDS_CREATE_SHORTCUTS_ERROR_LABEL" desc="Contents of the main label in the error dialog box when creating an application shortcut failed."> <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex> cannot create an application shortcut because it cannot determine the current desktop environment.</ph> |