# HG changeset patch # User Etan Reisner # Date 1108020772 0 # Node ID a6b8a23b4d5fe564fbced8a058aa3d878bd1af85 # Parent 7de819b5ed686f51330520911bf9abe83681ace5 [gaim-migrate @ 11989] N_() that's what I meant. Thanks Nathan Fredrickson. committer: Tailor Script diff -r 7de819b5ed68 -r a6b8a23b4d5f plugins/gaimrc.c --- 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);