changeset 10586:eb2e5f06452a

[gaim-migrate @ 11990] Maybe that's everything, if not the rest can wait till tomorrow. Thanks again Nathan Fredrickson. committer: Tailor Script <tailor@pidgin.im>
author Etan Reisner <pidgin@unreliablesource.net>
date Thu, 10 Feb 2005 07:50:54 +0000
parents a6b8a23b4d5f
children c7458b544b15
files plugins/gaimrc.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/gaimrc.c	Thu Feb 10 07:32:52 2005 +0000
+++ b/plugins/gaimrc.c	Thu Feb 10 07:50:54 2005 +0000
@@ -207,7 +207,7 @@
 	int subscript = GPOINTER_TO_INT(data);
 
 	g_snprintf(title, sizeof(title), _("Select Color for %s"),
-	           color_names[GPOINTER_TO_INT(data)]);
+	           _(color_names[GPOINTER_TO_INT(data)]));
 	color_dialog = gtk_color_selection_dialog_new(_("Select Color"));
 	g_signal_connect(G_OBJECT(color_dialog), "response",
 	                 G_CALLBACK(gaimrc_color_response), data);
@@ -244,7 +244,7 @@
 	int subscript = GPOINTER_TO_INT(data);
 
 	g_snprintf(title, sizeof(title), _("Select Font for %s"),
-	           font_names[subscript]);
+	           _(font_names[subscript]));
 	font_dialog = gtk_font_selection_dialog_new(title);
 	g_signal_connect(G_OBJECT(font_dialog), "response",
 	                 G_CALLBACK(gaimrc_font_response), data);