diff options
author | Chyla Zbigniew <chyla@src.gnome.org> | 2001-09-11 07:17:25 +0800 |
---|---|---|
committer | Chyla Zbigniew <chyla@src.gnome.org> | 2001-09-11 07:17:25 +0800 |
commit | 9e1498b952cca989661f5ed072b842b5289f7a5b (patch) | |
tree | 5d22fabb24200762b34c11683ed84835d5548a75 /mail/mail-send-recv.c | |
parent | 0f464193fe82b5dea993048d7d91881baa828780 (diff) | |
download | gsoc2013-evolution-9e1498b952cca989661f5ed072b842b5289f7a5b.tar.gz gsoc2013-evolution-9e1498b952cca989661f5ed072b842b5289f7a5b.tar.zst gsoc2013-evolution-9e1498b952cca989661f5ed072b842b5289f7a5b.zip |
Marked string for translation. (new_source_created): Ditto.
* mail-config.c
(add_shortcut_entry): Marked string for translation.
(new_source_created): Ditto.
* mail-send-recv.c
(format_url): Marked strings for translation.
(build_dialogue): Ditto.
svn path=/trunk/; revision=12752
Diffstat (limited to 'mail/mail-send-recv.c')
-rw-r--r-- | mail/mail-send-recv.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mail/mail-send-recv.c b/mail/mail-send-recv.c index cdbb49b160..3cc91a6b2c 100644 --- a/mail/mail-send-recv.c +++ b/mail/mail-send-recv.c @@ -238,11 +238,11 @@ format_url(const char *internal_url) url = camel_url_new(internal_url, NULL); if (url->host) - pretty_url = g_strdup_printf("Server: %s, Type: %s", url->host, url->protocol); + pretty_url = g_strdup_printf(_("Server: %s, Type: %s"), url->host, url->protocol); else if (url->path) - pretty_url = g_strdup_printf("Path: %s, Type: %s", url->path, url->protocol); + pretty_url = g_strdup_printf(_("Path: %s, Type: %s"), url->path, url->protocol); else - pretty_url = g_strdup_printf("Type: %s", url->protocol); + pretty_url = g_strdup_printf(_("Type: %s"), url->protocol); camel_url_free(url); @@ -268,7 +268,7 @@ build_dialogue (GSList *sources, CamelFolder *outbox, const char *destination) data = setup_send_data (); gd = (GnomeDialog *)gnome_dialog_new (_("Send & Receive Mail"), NULL); - gnome_dialog_append_button_with_pixmap (gd, "Cancel All", GNOME_STOCK_BUTTON_CANCEL); + gnome_dialog_append_button_with_pixmap (gd, _("Cancel All"), GNOME_STOCK_BUTTON_CANCEL); gtk_window_set_policy (GTK_WINDOW (gd), FALSE, FALSE, FALSE); gnome_window_icon_set_from_file (GTK_WINDOW (gd), EVOLUTION_ICONSDIR "/send-receive.xpm"); |