aboutsummaryrefslogtreecommitdiffstats
path: root/mail/folder-browser.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2000-08-13 13:20:54 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2000-08-13 13:20:54 +0800
commit53337e992fde35e34fc9b8211ca717cc0c465705 (patch)
tree3113d63ff45c9895ee5b0242e613536ce62d00ee /mail/folder-browser.c
parent9f128d951a3ab24341afbb677a2f1dd665b56548 (diff)
downloadgsoc2013-evolution-53337e992fde35e34fc9b8211ca717cc0c465705.tar
gsoc2013-evolution-53337e992fde35e34fc9b8211ca717cc0c465705.tar.gz
gsoc2013-evolution-53337e992fde35e34fc9b8211ca717cc0c465705.tar.bz2
gsoc2013-evolution-53337e992fde35e34fc9b8211ca717cc0c465705.tar.lz
gsoc2013-evolution-53337e992fde35e34fc9b8211ca717cc0c465705.tar.xz
gsoc2013-evolution-53337e992fde35e34fc9b8211ca717cc0c465705.tar.zst
gsoc2013-evolution-53337e992fde35e34fc9b8211ca717cc0c465705.zip
Get the mail component to use the new Evolution::ShellView interface.
This implementation is so ugly and evil and needs to be replaced. Don't look at it. Go away. svn path=/trunk/; revision=4797
Diffstat (limited to 'mail/folder-browser.c')
-rw-r--r--mail/folder-browser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/folder-browser.c b/mail/folder-browser.c
index 60feba556f..522a6b1804 100644
--- a/mail/folder-browser.c
+++ b/mail/folder-browser.c
@@ -346,10 +346,10 @@ folder_browser_gui_init (FolderBrowser *fb)
gtk_widget_show(fb->search_entry);
gtk_signal_connect(GTK_OBJECT (fb->search_entry), "activate", search_activate, fb);
/* gtk_signal_connect(fb->search_entry, "changed", search_activate, fb); */
- label = gtk_label_new("Search");
+ label = gtk_label_new(_("Search"));
gtk_widget_show(label);
fb->search_menu = create_option_menu(search_options, 0, fb);
- button = (GtkButton *)gtk_button_new_with_label("Save");
+ button = (GtkButton *)gtk_button_new_with_label(_("Save"));
gtk_widget_show((GtkWidget *)button);
gtk_signal_connect((GtkObject *)button, "clicked", search_save, fb);
gtk_box_pack_end((GtkBox *)hbox, (GtkWidget *)button, FALSE, FALSE, 3);