evolution r36525 - branches/gnome-2-24/plugins/groupwise-features



Author: kelemeng
Date: Wed Oct  1 10:03:31 2008
New Revision: 36525
URL: http://svn.gnome.org/viewvc/evolution?rev=36525&view=rev

Log:
2008-10-01  Gabor Kelemen  <kelemeng gnome hu>

	*  send-options.c: Mark two forgotten strings for translation. Fixes bug #553070

Modified:
   branches/gnome-2-24/plugins/groupwise-features/ChangeLog
   branches/gnome-2-24/plugins/groupwise-features/send-options.c

Modified: branches/gnome-2-24/plugins/groupwise-features/send-options.c
==============================================================================
--- branches/gnome-2-24/plugins/groupwise-features/send-options.c	(original)
+++ branches/gnome-2-24/plugins/groupwise-features/send-options.c	Wed Oct  1 10:03:31 2008
@@ -202,15 +202,19 @@
 	target_account = (EMConfigTargetAccount *)data->config->target;
 	account = target_account->account;
 
+	gchar *markup;
+
 	if(!g_strrstr (account->source->url, "groupwise://"))
 		return NULL;
 
 	vbox = gtk_vbox_new (FALSE, 0);
 	frame = gtk_frame_new ("");
 	label = gtk_frame_get_label_widget (GTK_FRAME (frame));
-	gtk_label_set_markup (GTK_LABEL (label), "<b>Send Options</b>");
-	button = gtk_button_new_with_label ("Advanced send options");
+	markup = g_strdup_printf("<b>%s</b>", _("Send Options"));
+	gtk_label_set_markup (GTK_LABEL (label), markup);
+	button = gtk_button_new_with_label (_("Advanced send options"));
 	gtk_widget_show (button);
+	g_free (markup);
 
 	g_signal_connect(button, "clicked",
 			    G_CALLBACK (e_sendoptions_clicked_cb), account);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]