aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorGabor Kelemen <kelemeng@gnome.hu>2008-10-01 18:02:42 +0800
committerGabor Keleman <kelemeng@src.gnome.org>2008-10-01 18:02:42 +0800
commit92255f70f3d1a757e9bfa1eed18bcad150a23719 (patch)
tree60816e4cff73c69cf05b1b44bf219f0433584b8f /plugins
parent09eddb5ec7dcf6f6af21efc6f98e784dc681ef0b (diff)
downloadgsoc2013-evolution-92255f70f3d1a757e9bfa1eed18bcad150a23719.tar
gsoc2013-evolution-92255f70f3d1a757e9bfa1eed18bcad150a23719.tar.gz
gsoc2013-evolution-92255f70f3d1a757e9bfa1eed18bcad150a23719.tar.bz2
gsoc2013-evolution-92255f70f3d1a757e9bfa1eed18bcad150a23719.tar.lz
gsoc2013-evolution-92255f70f3d1a757e9bfa1eed18bcad150a23719.tar.xz
gsoc2013-evolution-92255f70f3d1a757e9bfa1eed18bcad150a23719.tar.zst
gsoc2013-evolution-92255f70f3d1a757e9bfa1eed18bcad150a23719.zip
Mark two forgotten strings for translation. Fixes bug #553070
2008-10-01 Gabor Kelemen <kelemeng@gnome.hu> * send-options.c: Mark two forgotten strings for translation. Fixes bug #553070 svn path=/trunk/; revision=36524
Diffstat (limited to 'plugins')
-rw-r--r--plugins/groupwise-features/ChangeLog4
-rw-r--r--plugins/groupwise-features/send-options.c8
2 files changed, 10 insertions, 2 deletions
diff --git a/plugins/groupwise-features/ChangeLog b/plugins/groupwise-features/ChangeLog
index 11ab46e089..202ce94ffa 100644
--- a/plugins/groupwise-features/ChangeLog
+++ b/plugins/groupwise-features/ChangeLog
@@ -1,5 +1,9 @@
2008-10-01 Gabor Kelemen <kelemeng@gnome.hu>
+ * send-options.c: Mark two forgotten strings for translation. Fixes bug #553070
+
+2008-10-01 Gabor Kelemen <kelemeng@gnome.hu>
+
* org-gnome-proxy-errors.xml:
* org-gnome-proxy-login-errors.xml:
* proxy.c:
diff --git a/plugins/groupwise-features/send-options.c b/plugins/groupwise-features/send-options.c
index 939093bb36..124fffe8f3 100644
--- a/plugins/groupwise-features/send-options.c
+++ b/plugins/groupwise-features/send-options.c
@@ -202,15 +202,19 @@ org_gnome_send_options (EPlugin *epl, EConfigHookItemFactoryData *data)
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);