From 327ccff11122914b275e55b2c666a3ea2e66f10f Mon Sep 17 00:00:00 2001 From: hiro Date: Thu, 31 Jan 2013 02:44:03 +0000 Subject: remote mailbox: Changed 'Refresh' button/menu to 'Resume'. git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@3202 ee746299-78ed-0310-b773-934348b2243d --- src/rpop3.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/rpop3.c') diff --git a/src/rpop3.c b/src/rpop3.c index c2c236df..735a90ef 100644 --- a/src/rpop3.c +++ b/src/rpop3.c @@ -117,7 +117,7 @@ static const gchar *ui_def = " " " " " " - " " + " " " " " " " " @@ -225,7 +225,7 @@ static void rpop3_close (GtkButton *button, static void rpop3_recv_cb (void); static void rpop3_open_cb (void); static void rpop3_delete_cb (void); -static void rpop3_update_cb (void); +static void rpop3_resume_cb (void); static void rpop3_stop_cb (void); static void rpop3_close_cb (void); static void rpop3_about_cb (void); @@ -248,7 +248,7 @@ static GtkActionEntry action_entries[] = { {"ReceiveAction", NULL, N_("_Get"), "G", NULL, rpop3_recv_cb}, {"OpenAction", GTK_STOCK_OPEN, NULL, NULL, NULL, rpop3_open_cb}, {"DeleteAction", GTK_STOCK_DELETE, NULL, "Delete", NULL, rpop3_delete_cb}, - {"UpdateAction", GTK_STOCK_REFRESH, NULL, NULL, NULL, rpop3_update_cb}, + {"ResumeAction", GTK_STOCK_REFRESH, N_("_Resume"), NULL, NULL, rpop3_resume_cb}, {"StopAction", GTK_STOCK_STOP, NULL, NULL, NULL, rpop3_stop_cb}, {"CloseAction", GTK_STOCK_CLOSE, NULL, NULL, NULL, rpop3_close_cb}, {"HelpAction", NULL, N_("_Help"), NULL, NULL, NULL}, @@ -473,7 +473,7 @@ static void rpop3_window_create(PrefsAccount *account) g_object_set(action, "sensitive", FALSE, NULL); rpop3_window.delete_action = action; - action = gtk_ui_manager_get_action(ui, "/RPop3Menu/File/Update"); + action = gtk_ui_manager_get_action(ui, "/RPop3Menu/File/Resume"); g_object_set(action, "sensitive", FALSE, NULL); rpop3_window.update_action = action; @@ -1094,7 +1094,7 @@ static gint rpop3_session_recv_data_as_file_finished(Session *session, if (pop3_session->cur_msg == 1) gtk_widget_set_sensitive(rpop3_window.stop_btn, FALSE); else - gtk_button_set_label(GTK_BUTTON(rpop3_window.stop_btn), GTK_STOCK_REFRESH); + gtk_button_set_label(GTK_BUTTON(rpop3_window.stop_btn), _("_Resume")); g_object_set(rpop3_window.recv_action, "sensitive", TRUE, NULL); g_object_set(rpop3_window.open_action, @@ -1336,7 +1336,7 @@ static void rpop3_delete_cb(void) rpop3_delete(NULL, NULL); } -static void rpop3_update_cb(void) +static void rpop3_resume_cb(void) { rpop3_stop(NULL, NULL); } -- cgit v1.2.3