From ce4f6466619b3e1679cdeed64d234acb60d41ac6 Mon Sep 17 00:00:00 2001 From: Sven Neumann Date: Wed, 15 Mar 2006 11:46:19 +0000 Subject: [PATCH] app/actions/channels-actions.c app/actions/edit-actions.c 2006-03-15 Sven Neumann * app/actions/channels-actions.c * app/actions/edit-actions.c * app/actions/file-actions.c * app/actions/image-actions.c * app/actions/layers-actions.c * app/actions/view-actions.c: added more action blurbs. --- ChangeLog | 9 ++++++++ app/actions/channels-actions.c | 26 +++++++++++------------ app/actions/edit-actions.c | 39 ++++++++++++++++++++++------------ app/actions/file-actions.c | 12 +++++++---- app/actions/image-actions.c | 2 +- app/actions/layers-actions.c | 13 +++++++----- app/actions/view-actions.c | 20 +++++++++++------ 7 files changed, 77 insertions(+), 44 deletions(-) diff --git a/ChangeLog b/ChangeLog index 76f3e4a3c0..39fcb1b801 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2006-03-15 Sven Neumann + + * app/actions/channels-actions.c + * app/actions/edit-actions.c + * app/actions/file-actions.c + * app/actions/image-actions.c + * app/actions/layers-actions.c + * app/actions/view-actions.c: added more action blurbs. + 2006-03-15 Sven Neumann * app/widgets/gimpaction.c (gimp_action_set_proxy): enabled diff --git a/app/actions/channels-actions.c b/app/actions/channels-actions.c index c487a7826a..4bb31b0256 100644 --- a/app/actions/channels-actions.c +++ b/app/actions/channels-actions.c @@ -46,55 +46,55 @@ static GimpActionEntry channels_actions[] = { "channels-edit-attributes", GTK_STOCK_EDIT, N_("_Edit Channel Attributes..."), NULL, - N_("Edit channel attributes"), + N_("Edit the channel's name, color and opacity"), G_CALLBACK (channels_edit_attributes_cmd_callback), GIMP_HELP_CHANNEL_EDIT }, { "channels-new", GTK_STOCK_NEW, N_("_New Channel..."), "", - N_("New channel..."), + N_("Create a new channel"), G_CALLBACK (channels_new_cmd_callback), GIMP_HELP_CHANNEL_NEW }, { "channels-new-last-values", GTK_STOCK_NEW, N_("_New Channel"), "", - N_("New channel with last values"), + N_("Create a new channel with last used values"), G_CALLBACK (channels_new_last_vals_cmd_callback), GIMP_HELP_CHANNEL_NEW }, { "channels-duplicate", GIMP_STOCK_DUPLICATE, N_("D_uplicate Channel"), NULL, - N_("Duplicate channel"), + N_("Create a duplicate of this channel and add it to the image"), G_CALLBACK (channels_duplicate_cmd_callback), GIMP_HELP_CHANNEL_DUPLICATE }, { "channels-delete", GTK_STOCK_DELETE, N_("_Delete Channel"), "", - N_("Delete channel"), + N_("Delete this channel"), G_CALLBACK (channels_delete_cmd_callback), GIMP_HELP_CHANNEL_DELETE }, { "channels-raise", GTK_STOCK_GO_UP, N_("_Raise Channel"), "", - N_("Raise channel"), + N_("Raise this channel one step in the channel stack"), G_CALLBACK (channels_raise_cmd_callback), GIMP_HELP_CHANNEL_RAISE }, { "channels-raise-to-top", GTK_STOCK_GOTO_TOP, N_("Raise Channel to _Top"), "", - N_("Raise channel to top"), + N_("Raise this channel to the top of the channel stack"), G_CALLBACK (channels_raise_to_top_cmd_callback), GIMP_HELP_CHANNEL_RAISE_TO_TOP }, { "channels-lower", GTK_STOCK_GO_DOWN, N_("_Lower Channel"), "", - N_("Lower channel"), + N_("Lower this channel one step in the channel stack"), G_CALLBACK (channels_lower_cmd_callback), GIMP_HELP_CHANNEL_LOWER }, { "channels-lower-to-bottom", GTK_STOCK_GOTO_BOTTOM, N_("Lower Channel to _Bottom"), "", - N_("Lower channel to bottom"), + N_("Lower this channel to the bottom of the channel stack"), G_CALLBACK (channels_lower_to_bottom_cmd_callback), GIMP_HELP_CHANNEL_LOWER_TO_BOTTOM } }; @@ -103,25 +103,25 @@ static GimpEnumActionEntry channels_to_selection_actions[] = { { "channels-selection-replace", GIMP_STOCK_SELECTION_REPLACE, N_("Channel to Sele_ction"), NULL, - N_("Channel to selection"), + N_("Replace the selection with this channel"), GIMP_CHANNEL_OP_REPLACE, FALSE, GIMP_HELP_CHANNEL_SELECTION_REPLACE }, { "channels-selection-add", GIMP_STOCK_SELECTION_ADD, N_("_Add to Selection"), NULL, - N_("Add"), + N_("Add this channel to the current selection"), GIMP_CHANNEL_OP_ADD, FALSE, GIMP_HELP_CHANNEL_SELECTION_ADD }, { "channels-selection-subtract", GIMP_STOCK_SELECTION_SUBTRACT, N_("_Subtract from Selection"), NULL, - N_("Subtract"), + N_("Subtract this channel from the current selection"), GIMP_CHANNEL_OP_SUBTRACT, FALSE, GIMP_HELP_CHANNEL_SELECTION_SUBTRACT }, { "channels-selection-intersect", GIMP_STOCK_SELECTION_INTERSECT, N_("_Intersect with Selection"), NULL, - N_("Intersect"), + N_("Intersect this channel with the current selection"), GIMP_CHANNEL_OP_INTERSECT, FALSE, GIMP_HELP_CHANNEL_SELECTION_INTERSECT } }; diff --git a/app/actions/edit-actions.c b/app/actions/edit-actions.c index b0c3d2938b..601c5e4470 100644 --- a/app/actions/edit-actions.c +++ b/app/actions/edit-actions.c @@ -68,54 +68,61 @@ static GimpActionEntry edit_actions[] = { "edit-undo", GTK_STOCK_UNDO, N_("_Undo"), "Z", - N_("Undo"), + N_("Undo the last operation"), G_CALLBACK (edit_undo_cmd_callback), GIMP_HELP_EDIT_UNDO }, { "edit-redo", GTK_STOCK_REDO, N_("_Redo"), "Y", - N_("Redo"), + N_("Redo the last operation that was undone"), G_CALLBACK (edit_redo_cmd_callback), GIMP_HELP_EDIT_REDO }, { "edit-undo-clear", GTK_STOCK_CLEAR, N_("_Clear Undo History"), "", - N_("Clear undo history"), + N_("Remove all operations from the undo history"), G_CALLBACK (edit_undo_clear_cmd_callback), GIMP_HELP_EDIT_UNDO_CLEAR }, { "edit-cut", GTK_STOCK_CUT, - N_("Cu_t"), "X", NULL, + N_("Cu_t"), "X", + N_("Move the selected pixels to the clipboard"), G_CALLBACK (edit_cut_cmd_callback), GIMP_HELP_EDIT_CUT }, { "edit-copy", GTK_STOCK_COPY, - N_("_Copy"), "C", NULL, + N_("_Copy"), "C", + N_("Copy the selected pixels to the clipboard"), G_CALLBACK (edit_copy_cmd_callback), GIMP_HELP_EDIT_COPY }, { "edit-copy-visible", NULL, /* GIMP_STOCK_COPY_VISIBLE, */ - N_("Copy _Visible"), "", NULL, + N_("Copy _Visible"), "", + N_("Copy the selected region to the clipboard"), G_CALLBACK (edit_copy_visible_cmd_callback), GIMP_HELP_EDIT_COPY_VISIBLE }, { "edit-paste", GTK_STOCK_PASTE, - N_("_Paste"), "V", NULL, + N_("_Paste"), "V", + N_("Paste the content of the clipboard"), G_CALLBACK (edit_paste_cmd_callback), GIMP_HELP_EDIT_PASTE }, { "edit-paste-into", GIMP_STOCK_PASTE_INTO, - N_("Paste _Into"), NULL, NULL, + N_("Paste _Into"), NULL, + N_("Paste the content of the clipboard into the current selection"), G_CALLBACK (edit_paste_into_cmd_callback), GIMP_HELP_EDIT_PASTE_INTO }, { "edit-paste-as-new", GIMP_STOCK_PASTE_AS_NEW, - N_("Paste as New"), NULL, NULL, + N_("Paste as New"), NULL, + N_("Create a new image from the content of the clipboard"), G_CALLBACK (edit_paste_as_new_cmd_callback), GIMP_HELP_EDIT_PASTE_AS_NEW }, { "edit-paste-as-new-short", GIMP_STOCK_PASTE_AS_NEW, - N_("_New Image"), NULL, NULL, + N_("_New Image"), NULL, + N_("Create a new image from the content of the clipboard"), G_CALLBACK (edit_paste_as_new_cmd_callback), GIMP_HELP_EDIT_PASTE_AS_NEW }, @@ -140,7 +147,8 @@ static GimpActionEntry edit_actions[] = GIMP_HELP_BUFFER_PASTE }, { "edit-clear", GTK_STOCK_CLEAR, - N_("Cl_ear"), "Delete", NULL, + N_("Cl_ear"), "Delete", + N_("Clear the selected pixels"), G_CALLBACK (edit_clear_cmd_callback), GIMP_HELP_EDIT_CLEAR } }; @@ -148,17 +156,20 @@ static GimpActionEntry edit_actions[] = static GimpEnumActionEntry edit_fill_actions[] = { { "edit-fill-fg", GIMP_STOCK_TOOL_BUCKET_FILL, - N_("Fill with _FG Color"), "comma", NULL, + N_("Fill with _FG Color"), "comma", + N_("Fill the selection using the foreground color"), GIMP_FOREGROUND_FILL, FALSE, GIMP_HELP_EDIT_FILL_FG }, { "edit-fill-bg", GIMP_STOCK_TOOL_BUCKET_FILL, - N_("Fill with B_G Color"), "period", NULL, + N_("Fill with B_G Color"), "period", + N_("Fill the selection using the background color"), GIMP_BACKGROUND_FILL, FALSE, GIMP_HELP_EDIT_FILL_BG }, { "edit-fill-pattern", GIMP_STOCK_TOOL_BUCKET_FILL, - N_("Fill with P_attern"), "semicolon", NULL, + N_("Fill with P_attern"), "semicolon", + N_("Fill the selection using the active pattern"), GIMP_PATTERN_FILL, FALSE, GIMP_HELP_EDIT_FILL_PATTERN } }; diff --git a/app/actions/file-actions.c b/app/actions/file-actions.c index 777f5e18cb..5c2466f63f 100644 --- a/app/actions/file-actions.c +++ b/app/actions/file-actions.c @@ -101,22 +101,26 @@ static GimpActionEntry file_actions[] = GIMP_HELP_FILE_SAVE_A_COPY }, { "file-save-as-template", NULL, - N_("Save as _Template..."), NULL, NULL, + N_("Save as _Template..."), NULL, + N_("Create a new template from this image"), G_CALLBACK (file_save_template_cmd_callback), GIMP_HELP_FILE_SAVE_AS_TEMPLATE }, { "file-revert", GTK_STOCK_REVERT_TO_SAVED, - N_("Re_vert"), NULL, NULL, + N_("Re_vert"), NULL, + N_("Reload the image file from disk"), G_CALLBACK (file_revert_cmd_callback), GIMP_HELP_FILE_REVERT }, { "file-close-all", GTK_STOCK_CLOSE, - N_("Close all"), "W", NULL, + N_("Close all"), "W", + N_("Close all opened images"), G_CALLBACK (file_close_all_cmd_callback), GIMP_HELP_FILE_CLOSE_ALL }, { "file-quit", GTK_STOCK_QUIT, - N_("_Quit"), "Q", NULL, + N_("_Quit"), "Q", + N_("Quit the GNU Image Manipulation Program"), G_CALLBACK (file_quit_cmd_callback), GIMP_HELP_FILE_QUIT } }; diff --git a/app/actions/image-actions.c b/app/actions/image-actions.c index 5fe99c9545..43b742af1a 100644 --- a/app/actions/image-actions.c +++ b/app/actions/image-actions.c @@ -100,7 +100,7 @@ static GimpActionEntry image_actions[] = { "image-scale", GIMP_STOCK_SCALE, N_("_Scale Image..."), NULL, - N_("Change the number of pixels in the image"), + N_("Change the size of the image content"), G_CALLBACK (image_scale_cmd_callback), GIMP_HELP_IMAGE_SCALE }, diff --git a/app/actions/layers-actions.c b/app/actions/layers-actions.c index bfe3046f2b..277483a533 100644 --- a/app/actions/layers-actions.c +++ b/app/actions/layers-actions.c @@ -71,7 +71,7 @@ static GimpActionEntry layers_actions[] = { "layers-new", GTK_STOCK_NEW, N_("_New Layer..."), "N", - N_("Create a new layer"), + N_("Create a new layer and add it to the image"), G_CALLBACK (layers_new_cmd_callback), GIMP_HELP_LAYER_NEW }, @@ -142,23 +142,26 @@ static GimpActionEntry layers_actions[] = GIMP_HELP_IMAGE_FLATTEN }, { "layers-text-discard", GIMP_STOCK_TOOL_TEXT, - N_("_Discard Text Information"), NULL, NULL, + N_("_Discard Text Information"), NULL, + N_("Turn this text layer into a normal layer"), G_CALLBACK (layers_text_discard_cmd_callback), GIMP_HELP_LAYER_TEXT_DISCARD }, { "layers-resize", GIMP_STOCK_RESIZE, - N_("Layer B_oundary Size..."), NULL, NULL, + N_("Layer B_oundary Size..."), NULL, + N_("Adjust the layer dimensions"), G_CALLBACK (layers_resize_cmd_callback), GIMP_HELP_LAYER_RESIZE }, { "layers-resize-to-image", GIMP_STOCK_LAYER_TO_IMAGESIZE, - N_("Layer to _Image Size"), NULL, NULL, + N_("Layer to _Image Size"), NULL, + N_("Resize the layer to the size of the image"), G_CALLBACK (layers_resize_to_image_cmd_callback), GIMP_HELP_LAYER_RESIZE_TO_IMAGE }, { "layers-scale", GIMP_STOCK_SCALE, N_("_Scale Layer..."), NULL, - N_("Scale the layer's pixels"), + N_("Change the size of the layer content"), G_CALLBACK (layers_scale_cmd_callback), GIMP_HELP_LAYER_SCALE }, diff --git a/app/actions/view-actions.c b/app/actions/view-actions.c index 29615c8e8e..9d3238b94d 100644 --- a/app/actions/view-actions.c +++ b/app/actions/view-actions.c @@ -75,7 +75,8 @@ static GimpActionEntry view_actions[] = GIMP_HELP_VIEW_NEW }, { "view-close", GTK_STOCK_CLOSE, - N_( "_Close"), "W", NULL, + N_( "_Close"), "W", + N_("Close this image window"), G_CALLBACK (window_close_cmd_callback), GIMP_HELP_FILE_CLOSE }, @@ -103,12 +104,13 @@ static GimpActionEntry view_actions[] = { "view-shrink-wrap", GTK_STOCK_ZOOM_FIT, N_("Shrink _Wrap"), "E", - N_("Shrink wrap"), + N_("Reduce the image window to the size of the image display"), G_CALLBACK (view_shrink_wrap_cmd_callback), GIMP_HELP_VIEW_SHRINK_WRAP }, { "view-open-display", NULL, - N_("_Open Display..."), NULL, NULL, + N_("_Open Display..."), NULL, + N_("Connect to another display"), G_CALLBACK (window_open_display_cmd_callback), NULL } }; @@ -116,19 +118,22 @@ static GimpActionEntry view_actions[] = static GimpToggleActionEntry view_toggle_actions[] = { { "view-dot-for-dot", NULL, - N_("_Dot for Dot"), NULL, NULL, + N_("_Dot for Dot"), NULL, + N_("A Pixel on the screen represents an image pixel"), G_CALLBACK (view_dot_for_dot_cmd_callback), TRUE, GIMP_HELP_VIEW_DOT_FOR_DOT }, { "view-show-selection", NULL, - N_("Show _Selection"), "T", NULL, + N_("Show _Selection"), "T", + N_("Display the selection outline"), G_CALLBACK (view_toggle_selection_cmd_callback), TRUE, GIMP_HELP_VIEW_SHOW_SELECTION }, { "view-show-layer-boundary", NULL, - N_("Show _Layer Boundary"), NULL, NULL, + N_("Show _Layer Boundary"), NULL, + N_("Draw a border around the active layer"), G_CALLBACK (view_toggle_layer_boundary_cmd_callback), TRUE, GIMP_HELP_VIEW_SHOW_LAYER_BOUNDARY }, @@ -200,7 +205,8 @@ static GimpToggleActionEntry view_toggle_actions[] = GIMP_HELP_VIEW_SHOW_STATUSBAR }, { "view-fullscreen", GTK_STOCK_FULLSCREEN, - N_("Fullscr_een"), "F11", NULL, + N_("Fullscr_een"), "F11", + N_("Toggle fullscreen view"), G_CALLBACK (view_fullscreen_cmd_callback), FALSE, GIMP_HELP_VIEW_FULLSCREEN }