diff options
author | tony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-01 22:45:13 +0000 |
---|---|---|
committer | tony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-01 22:45:13 +0000 |
commit | 1c7e52ec81bdee4ccbe6d89f548e96f4eeb8e5f3 (patch) | |
tree | 7bd6d790b41a29a049e98c58b96136dfd0d20d36 /chrome | |
parent | 6e7a37818c0bffbd6cd2f500c37185f76d817337 (diff) | |
download | chromium_src-1c7e52ec81bdee4ccbe6d89f548e96f4eeb8e5f3.zip chromium_src-1c7e52ec81bdee4ccbe6d89f548e96f4eeb8e5f3.tar.gz chromium_src-1c7e52ec81bdee4ccbe6d89f548e96f4eeb8e5f3.tar.bz2 |
Update some strings in the options dialog w.r.t. themes.
Changed the heading from Themes: to Appearance: and switch
from 'Set to XXX theme' to 'Use XXX theme'.
BUG=21504
Review URL: http://codereview.chromium.org/243059
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27783 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/app/generated_resources.grd | 17 | ||||
-rw-r--r-- | chrome/browser/gtk/options/content_page_gtk.cc | 2 |
2 files changed, 12 insertions, 7 deletions
diff --git a/chrome/app/generated_resources.grd b/chrome/app/generated_resources.grd index 128bfb8..760e2eb 100644 --- a/chrome/app/generated_resources.grd +++ b/chrome/app/generated_resources.grd @@ -4083,12 +4083,17 @@ Keep your key file in a safe place. You will need it to create new versions of y <message name="IDS_THEMES_GROUP_NAME" desc="The title of the themes group"> Themes: </message> - <message name="IDS_THEMES_GTK_BUTTON" desc="The button to choose GTK colors and icons as the current theme."> - Set to GTK+ theme - </message> - <message name="IDS_THEMES_SET_CLASSIC" desc="The button to choose the classic windows theme in GTK"> - Set to Classic theme - </message> + <if expr="os == 'linux2'"> + <message name="IDS_APPEARANCE_GROUP_NAME" desc="The title of the themes group"> + Appearance: + </message> + <message name="IDS_THEMES_GTK_BUTTON" desc="The button to choose GTK colors and icons as the current theme."> + Use GTK+ theme + </message> + <message name="IDS_THEMES_SET_CLASSIC" desc="The button to choose the classic windows theme in GTK"> + Use Classic theme + </message> + </if> <message name="IDS_THEMES_RESET_BUTTON" desc="The button to reset your theme"> Reset to default theme </message> diff --git a/chrome/browser/gtk/options/content_page_gtk.cc b/chrome/browser/gtk/options/content_page_gtk.cc index 8098a1b..6c9b4d2 100644 --- a/chrome/browser/gtk/options/content_page_gtk.cc +++ b/chrome/browser/gtk/options/content_page_gtk.cc @@ -43,7 +43,7 @@ ContentPageGtk::ContentPageGtk(Profile* profile) l10n_util::GetStringUTF8(IDS_OPTIONS_BROWSING_DATA_GROUP_NAME), InitBrowsingDataGroup(), false); options_builder.AddOptionGroup( - l10n_util::GetStringUTF8(IDS_THEMES_GROUP_NAME), + l10n_util::GetStringUTF8(IDS_APPEARANCE_GROUP_NAME), InitThemesGroup(), false); page_ = options_builder.get_page_widget(); |