changeset 28926:45100d41c9ff

The theme authors for default/nonexistant themes should be consistent. Since smiley themes have been around forever, I elected to borrow the author for the "None" theme. If this should be someone else instead, change it.
author John Bailey <rekkanoryo@rekkanoryo.org>
date Wed, 11 Nov 2009 15:51:45 +0000
parents a8e0ad5a7ada
children edfe601c3c24
files pidgin/gtkprefs.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/pidgin/gtkprefs.c	Wed Nov 11 15:19:10 2009 +0000
+++ b/pidgin/gtkprefs.c	Wed Nov 11 15:51:45 2009 +0000
@@ -493,7 +493,7 @@
 			if (!name || *name == '\0') {
 				g_free(name);
 				name = g_strdup(_("(Default)"));
-				author = _("None");
+				author = _("Penguin Pimps");
 				description = _("The default Pidgin sound theme");
 			} else {
 				theme = PURPLE_SOUND_THEME(purple_theme_manager_find_theme(name, "sound"));
@@ -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, _("None"),
+	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, _("None"),
+	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);