changeset 10585:a6b8a23b4d5f

[gaim-migrate @ 11989] N_() that's what I meant. Thanks Nathan Fredrickson. committer: Tailor Script <tailor@pidgin.im>
author Etan Reisner <pidgin@unreliablesource.net>
date Thu, 10 Feb 2005 07:32:52 +0000
parents 7de819b5ed68
children eb2e5f06452a
files plugins/gaimrc.c
diffstat 1 files changed, 10 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/gaimrc.c	Thu Feb 10 06:35:32 2005 +0000
+++ b/plugins/gaimrc.c	Thu Feb 10 07:32:52 2005 +0000
@@ -37,9 +37,9 @@
 	"/plugins/gtk/gaimrc/set/color/GtkIMHtml::hyperlink-color"
 };
 static const char *color_names[] = {
-	_("Cursor Color"),
-	_("Secondary Cursor Color"),
-	_("Hyperlink Color")
+	N_("Cursor Color"),
+	N_("Secondary Cursor Color"),
+	N_("Hyperlink Color")
 };
 static GtkWidget *color_widgets[G_N_ELEMENTS(color_prefs)];
 
@@ -50,7 +50,7 @@
 	"/plugins/gtk/gaimrc/set/size/GtkTreeView::expander_size"
 };
 static const char *widget_size_names[] = {
-	_("GtkTreeView Expander Size")
+	N_("GtkTreeView Expander Size")
 };
 static GtkWidget *widget_size_widgets[G_N_ELEMENTS(widget_size_prefs)];
 
@@ -69,11 +69,11 @@
 	"/plugins/gtk/gaimrc/set/font/*gaim_gtknotify_imhtml",
 };
 static const char *font_names[] = {
-	_("Conversation Entry"),
-	_("Conversation History"),
-	_("Log Viewer"),
-	_("Request Dialog"),
-	_("Notify Dialog")
+	N_("Conversation Entry"),
+	N_("Conversation History"),
+	N_("Log Viewer"),
+	N_("Request Dialog"),
+	N_("Notify Dialog")
 };
 static GtkWidget *font_widgets[G_N_ELEMENTS(font_prefs)];
 
@@ -397,7 +397,7 @@
 	}
 
 	frame = gaim_gtk_make_frame(ret, "Widget Sizes");
-	/* imhtml font stuff */
+	/* widget size stuff */
 	for (i = 0; i < G_N_ELEMENTS(widget_size_prefs); i++) {
 		hbox = gtk_hbox_new(FALSE, 18);
 		gtk_box_pack_start(GTK_BOX(frame), hbox, FALSE, FALSE, 0);