aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-folder-utils.c
diff options
context:
space:
mode:
authorPaul Bolle <pebolle@tiscali.nl>2009-09-24 02:09:41 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-09-24 02:09:41 +0800
commit60f483c4edfc89025e8319fad839a21d024b0083 (patch)
tree6b41f9c11d043c34c26673423053db2f3f33e566 /mail/em-folder-utils.c
parentff497b958ab53dee29d956c8ed89ecf6bab71673 (diff)
downloadgsoc2013-evolution-60f483c4edfc89025e8319fad839a21d024b0083.tar
gsoc2013-evolution-60f483c4edfc89025e8319fad839a21d024b0083.tar.gz
gsoc2013-evolution-60f483c4edfc89025e8319fad839a21d024b0083.tar.bz2
gsoc2013-evolution-60f483c4edfc89025e8319fad839a21d024b0083.tar.lz
gsoc2013-evolution-60f483c4edfc89025e8319fad839a21d024b0083.tar.xz
gsoc2013-evolution-60f483c4edfc89025e8319fad839a21d024b0083.tar.zst
gsoc2013-evolution-60f483c4edfc89025e8319fad839a21d024b0083.zip
Bug 594864 - "Select Folder" is a too generic title
Also for "Copy Folder To..." and "Move Folder To..." commands.
Diffstat (limited to 'mail/em-folder-utils.c')
-rw-r--r--mail/em-folder-utils.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/mail/em-folder-utils.c b/mail/em-folder-utils.c
index ac808adb23..29272a415a 100644
--- a/mail/em-folder-utils.c
+++ b/mail/em-folder-utils.c
@@ -370,6 +370,7 @@ em_folder_utils_copy_folder (GtkWindow *parent,
GtkWidget *dialog;
EMFolderTree *emft;
const gchar *label;
+ const gchar *title;
struct _copy_folder_data *cfd;
g_return_if_fail (folderinfo != NULL);
@@ -385,11 +386,12 @@ em_folder_utils_copy_folder (GtkWindow *parent,
emft, emfu_copy_folder_exclude, cfd);
label = delete ? _("_Move") : _("C_opy");
+ title = delete ? _("Move Folder To") : _("Copy Folder To");
dialog = em_folder_selector_new (
parent, emft,
EM_FOLDER_SELECTOR_CAN_CREATE,
- _("Select Folder"), NULL, label);
+ title, NULL, label);
if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_OK) {
const gchar *uri;