From 54e250b8ce6ddb4ec9a52a557f04a700d7b0a0ff Mon Sep 17 00:00:00 2001 From: Anna Marie Dirks Date: Tue, 22 Apr 2003 19:49:22 +0000 Subject: Set the border width of the message dialog to 6. Also corrected the 2003-04-22 Anna Marie Dirks * 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 --- shell/ChangeLog | 13 +++++++++++++ shell/e-shortcuts-view.c | 13 ++++++++++--- 2 files changed, 23 insertions(+), 3 deletions(-) diff --git a/shell/ChangeLog b/shell/ChangeLog index 1b83ddeecd..5219b91da4 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,16 @@ +2003-04-22 Anna Marie Dirks + + * 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. + + + 2003-04-21 Chris Toshok * e-folder-list.c (e_folder_list_parse_xml): this should never 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); -- cgit v1.2.3