aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-folder-commands.c
diff options
context:
space:
mode:
authorAnna Marie Dirks <anna@ximian.com>2003-04-22 03:54:53 +0800
committerAnna Dirks <anna@src.gnome.org>2003-04-22 03:54:53 +0800
commitad576399ac6f38b4b53c59f2db88e231b3a1e9c8 (patch)
tree51577b51ea1841cd6a58d6c9345a2a71de1aee81 /shell/e-shell-folder-commands.c
parentfa118783407dcbd061b72f97b71d5be68866df07 (diff)
downloadgsoc2013-evolution-ad576399ac6f38b4b53c59f2db88e231b3a1e9c8.tar
gsoc2013-evolution-ad576399ac6f38b4b53c59f2db88e231b3a1e9c8.tar.gz
gsoc2013-evolution-ad576399ac6f38b4b53c59f2db88e231b3a1e9c8.tar.bz2
gsoc2013-evolution-ad576399ac6f38b4b53c59f2db88e231b3a1e9c8.tar.lz
gsoc2013-evolution-ad576399ac6f38b4b53c59f2db88e231b3a1e9c8.tar.xz
gsoc2013-evolution-ad576399ac6f38b4b53c59f2db88e231b3a1e9c8.tar.zst
gsoc2013-evolution-ad576399ac6f38b4b53c59f2db88e231b3a1e9c8.zip
Corrected border with for Delete Folder dialog. Fixes 41036.
2003-04-21 Anna Marie Dirks <anna@ximian.com> * e-shell-folder-commands.c (delete_dialog): Corrected border with for Delete Folder dialog. Fixes 41036. (e_shell_command_copy_folder): Corrected capitalization of the "Copy Folder" window title. Partial fix for 41025. (e_shell_command_move_folder): Corrected the capitalization of the "Move Folder" dialog. Fixes 41024. svn path=/trunk/; revision=20910
Diffstat (limited to 'shell/e-shell-folder-commands.c')
-rw-r--r--shell/e-shell-folder-commands.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/shell/e-shell-folder-commands.c b/shell/e-shell-folder-commands.c
index b391ba28f1..a0e8dd3c31 100644
--- a/shell/e-shell-folder-commands.c
+++ b/shell/e-shell-folder-commands.c
@@ -320,7 +320,7 @@ e_shell_command_copy_folder (EShell *shell,
get_folder_name (shell, folder_path));
uri = g_strconcat (E_SHELL_URI_PREFIX, folder_path, NULL);
- folder_selection_dialog = e_shell_folder_selection_dialog_new (shell, _("Copy folder"),
+ folder_selection_dialog = e_shell_folder_selection_dialog_new (shell, _("Copy Folder"),
caption, uri, NULL, TRUE);
g_free (caption);
@@ -364,7 +364,7 @@ e_shell_command_move_folder (EShell *shell,
get_folder_name (shell, folder_path));
uri = g_strconcat (E_SHELL_URI_PREFIX, folder_path, NULL);
- folder_selection_dialog = e_shell_folder_selection_dialog_new (shell, _("Move folder"),
+ folder_selection_dialog = e_shell_folder_selection_dialog_new (shell, _("Move Folder"),
caption, uri, NULL, TRUE);
g_free (caption);
@@ -408,6 +408,10 @@ delete_dialog (EShellView *shell_view, const char *folder_name)
gtk_dialog_add_button (GTK_DIALOG (dialog), GTK_STOCK_DELETE, GTK_RESPONSE_OK);
gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_OK);
+
+ gtk_container_set_border_width (GTK_CONTAINER (dialog), 6);
+
+ gtk_box_set_spacing (GTK_BOX (GTK_DIALOG (dialog)->vbox), 6);
title = g_strdup_printf (_("Delete \"%s\""), folder_name);
gtk_window_set_title (GTK_WINDOW (dialog), title);
@@ -537,7 +541,7 @@ e_shell_command_rename_folder (EShell *shell,
const char *reason;
new_name = e_request_string (shell_view != NULL ? GTK_WINDOW (shell_view) : NULL,
- _("Rename folder"), prompt, old_name);
+ _("Rename Folder"), prompt, old_name);
if (new_name == NULL)
return;