# HG changeset patch # User John Bailey # Date 1257968939 0 # Node ID 3f1d39bac4cd321080d7df81a2c7331d6d745a08 # Parent aae013ae7e1ec26e8df7758e97671ef8a3f24827 Make the default themes' names consistent with the default smiley theme. diff -r aae013ae7e1e -r 3f1d39bac4cd pidgin/gtkprefs.c --- a/pidgin/gtkprefs.c Wed Nov 11 19:24:51 2009 +0000 +++ b/pidgin/gtkprefs.c Wed Nov 11 19:48:59 2009 +0000 @@ -492,7 +492,7 @@ if (!name || *name == '\0') { g_free(name); - name = g_strdup(_("(Default)")); + name = g_strdup(_("Default")); author = _("Penguin Pimps"); description = _("The default Pidgin sound theme"); } else { @@ -613,7 +613,7 @@ /* blist themes */ gtk_list_store_clear(prefs_blist_themes); gtk_list_store_append(prefs_blist_themes, &iter); - tmp = get_theme_markup(_("(Default)"), FALSE, _("Penguin Pimps"), + tmp = get_theme_markup(_("Default"), FALSE, _("Penguin Pimps"), _("The default Pidgin buddy list theme")); gtk_list_store_set(prefs_blist_themes, &iter, 0, pixbuf, 1, tmp, 2, "", -1); g_free(tmp); @@ -621,7 +621,7 @@ /* status icon themes */ gtk_list_store_clear(prefs_status_icon_themes); gtk_list_store_append(prefs_status_icon_themes, &iter); - tmp = get_theme_markup(_("(Default)"), FALSE, _("Penguin Pimps"), + tmp = get_theme_markup(_("Default"), FALSE, _("Penguin Pimps"), _("The default Pidgin status icon theme")); gtk_list_store_set(prefs_status_icon_themes, &iter, 0, pixbuf, 1, tmp, 2, "", -1); g_free(tmp); @@ -1169,7 +1169,6 @@ GtkWidget *themesel_hbox; GtkSizeGroup *label_sg = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); GtkSizeGroup *combo_sg = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); - GtkSizeGroup *smiley_sg = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); ret = gtk_vbox_new(FALSE, PIDGIN_HIG_CAT_SPACE); gtk_container_set_border_width (GTK_CONTAINER (ret), PIDGIN_HIG_BORDER);