diff options
-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(); |