aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shortcuts-view.c
diff options
context:
space:
mode:
authorAnna Marie Dirks <anna@ximian.com>2003-04-23 03:49:22 +0800
committerAnna Dirks <anna@src.gnome.org>2003-04-23 03:49:22 +0800
commit54e250b8ce6ddb4ec9a52a557f04a700d7b0a0ff (patch)
tree56ec3971113b3ff0a37190815e2d3332685ff790 /shell/e-shortcuts-view.c
parent1f8aee1ac65ffd2d4ac09c58072a74ed7718ee1b (diff)
downloadgsoc2013-evolution-54e250b8ce6ddb4ec9a52a557f04a700d7b0a0ff.tar
gsoc2013-evolution-54e250b8ce6ddb4ec9a52a557f04a700d7b0a0ff.tar.gz
gsoc2013-evolution-54e250b8ce6ddb4ec9a52a557f04a700d7b0a0ff.tar.bz2
gsoc2013-evolution-54e250b8ce6ddb4ec9a52a557f04a700d7b0a0ff.tar.lz
gsoc2013-evolution-54e250b8ce6ddb4ec9a52a557f04a700d7b0a0ff.tar.xz
gsoc2013-evolution-54e250b8ce6ddb4ec9a52a557f04a700d7b0a0ff.tar.zst
gsoc2013-evolution-54e250b8ce6ddb4ec9a52a557f04a700d7b0a0ff.zip
Set the border width of the message dialog to 6. Also corrected the
2003-04-22 Anna Marie Dirks <anna@ximian.com> * e-shortcuts-view.c (destroy_group_cb): Set the border width of the message dialog to 6. Also corrected the capitalization for "Remove Shortcut Dialog". Fixes 41569 (show_new_group_dialog): Fixed the title of "Create New Shortcut Group" . Partially fixes 41038. (rename_shortcut_cb): Corrected the label capitalization for Rename dialog. Fixes 41567. svn path=/trunk/; revision=20925
Diffstat (limited to 'shell/e-shortcuts-view.c')
-rw-r--r--shell/e-shortcuts-view.c13
1 files changed, 10 insertions, 3 deletions
diff --git a/shell/e-shortcuts-view.c b/shell/e-shortcuts-view.c
index ce1a976936..1837e67eab 100644
--- a/shell/e-shortcuts-view.c
+++ b/shell/e-shortcuts-view.c
@@ -77,7 +77,7 @@ show_new_group_dialog (EShortcutsView *view)
char *group_name;
group_name = e_request_string (GTK_WINDOW (gtk_widget_get_toplevel (GTK_WIDGET (view))),
- _("Create new shortcut group"),
+ _("Create New Shortcut Group"),
_("Group name:"),
NULL);
@@ -184,6 +184,13 @@ destroy_group_cb (GtkWidget *widget,
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
GTK_STOCK_DELETE, GTK_RESPONSE_OK,
NULL);
+
+ gtk_window_set_title (GTK_WINDOW (message_dialog), "Remove Shortcut Group");
+
+ gtk_container_set_border_width (GTK_CONTAINER (message_dialog), 6);
+
+ gtk_box_set_spacing (GTK_BOX (GTK_DIALOG (message_dialog)->vbox), 6);
+
gtk_dialog_set_default_response (GTK_DIALOG (message_dialog), GTK_RESPONSE_OK);
response = gtk_dialog_run (GTK_DIALOG (message_dialog));
@@ -260,7 +267,7 @@ static GnomeUIInfo right_click_menu_uiinfo[] = {
GNOMEUIINFO_SEPARATOR,
- { GNOME_APP_UI_ITEM, N_("_New Group..."),
+ { GNOME_APP_UI_ITEM, N_("_Add Group..."),
N_("Create a new shortcut group"), create_new_group_cb, NULL,
NULL, 0, 0, 0, 0 },
{ GNOME_APP_UI_ITEM, N_("_Remove this Group..."),
@@ -398,7 +405,7 @@ rename_shortcut_cb (GtkWidget *widget,
shortcut_item = e_shortcuts_get_shortcut (shortcuts, menu_data->group_num, menu_data->item_num);
new_name = e_request_string (GTK_WINDOW (gtk_widget_get_toplevel (GTK_WIDGET (shortcuts_view))),
- _("Rename shortcut"),
+ _("Rename Shortcut"),
_("Rename selected shortcut to:"),
shortcut_item->name);