diff --git a/ChangeLog b/ChangeLog index fab635748f..4b5f87a89c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2003-07-01 Jakub Steiner + + * app/gui/image-menu.c + * app/gui/plug-in-menus.c + * app/gui/toolbox-menu.c + * app/tools/gimp*tool.c: Added mnemonics (bug #106991). + Plug-ins and Script-Fus next. + 2003-07-01 Sven Neumann * plug-ins/ifscompose/ifscompose.[ch] diff --git a/app/gui/image-menu.c b/app/gui/image-menu.c index 639d5646c2..bcac05affb 100644 --- a/app/gui/image-menu.c +++ b/app/gui/image-menu.c @@ -82,12 +82,12 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_BRANCH (N_("/_File")), - { { N_("/File/New..."), "N", + { { N_("/File/_New..."), "N", file_new_cmd_callback, 1, "", GTK_STOCK_NEW }, NULL, "file/dialogs/file_new.html", NULL }, - { { N_("/File/Open..."), "O", + { { N_("/File/_Open..."), "O", file_open_cmd_callback, 1, "", GTK_STOCK_OPEN }, NULL, @@ -95,14 +95,14 @@ GimpItemFactoryEntry image_menu_entries[] = /* /File/Open Recent */ - MENU_BRANCH (N_("/File/_Open Recent")), + MENU_BRANCH (N_("/File/Open _Recent")), { { N_("/File/Open Recent/(None)"), NULL, NULL, 0 }, NULL, NULL, NULL }, MENU_SEPARATOR ("/File/Open Recent/---"), - { { N_("/File/Open Recent/Document History..."), "foo", + { { N_("/File/Open Recent/Document _History..."), "foo", dialogs_create_dockable_cmd_callback, 0, "", GTK_STOCK_OPEN }, "gimp-document-list", @@ -110,25 +110,25 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_SEPARATOR ("/File/---"), - { { N_("/File/Save"), "S", + { { N_("/File/_Save"), "S", file_save_cmd_callback, 0, "", GTK_STOCK_SAVE }, NULL, "file/dialogs/file_save.html", NULL }, - { { N_("/File/Save as..."), "S", + { { N_("/File/Save _as..."), "S", file_save_as_cmd_callback, 0, "", GTK_STOCK_SAVE_AS }, NULL, "file/dialogs/file_save.html", NULL }, - { { N_("/File/Save a Copy..."), NULL, + { { N_("/File/Sa_ve a Copy..."), NULL, file_save_a_copy_cmd_callback, 0 }, NULL, "file/dialogs/file_save.html", NULL }, - { { N_("/File/Save as Template..."), NULL, + { { N_("/File/Save as _Template..."), NULL, file_save_template_cmd_callback, 0 }, NULL, "file/dialogs/file_save.html", NULL }, - { { N_("/File/Revert..."), NULL, + { { N_("/File/Re_vert..."), NULL, file_revert_cmd_callback, 0, "", GTK_STOCK_REVERT_TO_SAVED }, NULL, @@ -136,12 +136,12 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_SEPARATOR ("/File/---"), - { { N_( "/File/Close"), "W", + { { N_( "/File/_Close"), "W", file_close_cmd_callback, 0, "", GTK_STOCK_CLOSE }, NULL, "file/close.html", NULL }, - { { N_("/File/Quit"), "Q", + { { N_("/File/_Quit"), "Q", file_quit_cmd_callback, 0, "", GTK_STOCK_QUIT }, NULL, @@ -166,27 +166,27 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_SEPARATOR ("/Edit/---"), - { { N_("/Edit/Cut"), "X", + { { N_("/Edit/Cu_t"), "X", edit_cut_cmd_callback, 0, "", GTK_STOCK_CUT }, NULL, "edit/cut.html", NULL }, - { { N_("/Edit/Copy"), "C", + { { N_("/Edit/_Copy"), "C", edit_copy_cmd_callback, 0, "", GTK_STOCK_COPY }, NULL, "edit/copy.html", NULL }, - { { N_("/Edit/Paste"), "V", + { { N_("/Edit/_Paste"), "V", edit_paste_cmd_callback, 0, "", GTK_STOCK_PASTE }, NULL, "edit/paste.html", NULL }, - { { N_("/Edit/Paste Into"), NULL, + { { N_("/Edit/Paste _Into"), NULL, edit_paste_into_cmd_callback, 0, "", GIMP_STOCK_PASTE_INTO }, NULL, "edit/paste_into.html", NULL }, - { { N_("/Edit/Paste as New"), NULL, + { { N_("/Edit/Paste as _New"), NULL, edit_paste_as_new_cmd_callback, 0, "", GIMP_STOCK_PASTE_AS_NEW }, NULL, @@ -196,17 +196,17 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_BRANCH (N_("/Edit/_Buffer")), - { { N_("/Edit/Buffer/Cut Named..."), "X", + { { N_("/Edit/Buffer/Cu_t Named..."), "X", edit_named_cut_cmd_callback, 0, "", GTK_STOCK_CUT }, NULL, "edit/dialogs/cut_named.html", NULL }, - { { N_("/Edit/Buffer/Copy Named..."), "C", + { { N_("/Edit/Buffer/_Copy Named..."), "C", edit_named_copy_cmd_callback, 0, "", GTK_STOCK_COPY }, NULL, "edit/dialogs/copy_named.html", NULL }, - { { N_("/Edit/Buffer/Paste Named..."), "V", + { { N_("/Edit/Buffer/_Paste Named..."), "V", edit_named_paste_cmd_callback, 0, "", GTK_STOCK_PASTE }, NULL, @@ -214,22 +214,22 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_SEPARATOR ("/Edit/---"), - { { N_("/Edit/Clear"), "K", + { { N_("/Edit/Cl_ear"), "K", edit_clear_cmd_callback, 0, "", GTK_STOCK_CLEAR }, NULL, "edit/clear.html", NULL }, - { { N_("/Edit/Fill with FG Color"), "comma", + { { N_("/Edit/Fill with _FG Color"), "comma", edit_fill_cmd_callback, (guint) GIMP_FOREGROUND_FILL, "", GIMP_STOCK_TOOL_BUCKET_FILL }, NULL, "edit/fill.html", NULL }, - { { N_("/Edit/Fill with BG Color"), "period", + { { N_("/Edit/Fill with B_G Color"), "period", edit_fill_cmd_callback, (guint) GIMP_BACKGROUND_FILL, "", GIMP_STOCK_TOOL_BUCKET_FILL }, NULL, "edit/fill.html", NULL }, - { { N_("/Edit/Stroke"), NULL, + { { N_("/Edit/_Stroke"), NULL, edit_stroke_cmd_callback, 0, "", GIMP_STOCK_SELECTION_STROKE }, NULL, @@ -241,26 +241,26 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_BRANCH (N_("/_Select")), - { { N_("/Select/All"), "A", + { { N_("/Select/_All"), "A", select_all_cmd_callback, 0, "", GIMP_STOCK_SELECTION_ALL }, NULL, "select/all.html", NULL }, - { { N_("/Select/None"), "A", + { { N_("/Select/_None"), "A", select_none_cmd_callback, 0, "", GIMP_STOCK_SELECTION_NONE }, NULL, "select/none.html", NULL }, - { { N_("/Select/Invert"), "I", + { { N_("/Select/_Invert"), "I", select_invert_cmd_callback, 0, "", GIMP_STOCK_INVERT }, NULL, "select/invert.html", NULL }, - { { N_("/Select/Float"), "L", + { { N_("/Select/_Float"), "L", select_float_cmd_callback, 0 }, NULL, "select/float.html", NULL }, - { { N_("/Select/By Color"), "O", + { { N_("/Select/_By Color"), "O", tools_select_cmd_callback, 0, "", GIMP_STOCK_TOOL_BY_COLOR_SELECT }, "gimp-by-color-select-tool", @@ -268,37 +268,37 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_SEPARATOR ("/Select/---"), - { { N_("/Select/Feather..."), NULL, + { { N_("/Select/Fea_ther..."), NULL, select_feather_cmd_callback, 0 }, NULL, "select/dialogs/feather_selection.html", NULL }, - { { N_("/Select/Sharpen"), NULL, + { { N_("/Select/_Sharpen"), NULL, select_sharpen_cmd_callback, 0 }, NULL, "select/sharpen.html", NULL }, - { { N_("/Select/Shrink..."), NULL, + { { N_("/Select/S_hrink..."), NULL, select_shrink_cmd_callback, 0, "", GIMP_STOCK_SELECTION_SHRINK }, NULL, "select/dialogs/shrink_selection.html", NULL }, - { { N_("/Select/Grow..."), NULL, + { { N_("/Select/_Grow..."), NULL, select_grow_cmd_callback, 0, "", GIMP_STOCK_SELECTION_GROW }, NULL, "select/dialogs/grow_selection.html", NULL }, - { { N_("/Select/Border..."), NULL, + { { N_("/Select/Bo_rder..."), NULL, select_border_cmd_callback, 0 }, NULL, "select/dialogs/border_selection.html", NULL }, MENU_SEPARATOR ("/Select/---"), - { { N_("/Select/Toggle QuickMask"), "Q", + { { N_("/Select/Toggle _QuickMask"), "Q", select_toggle_quickmask_cmd_callback, 0, "", GIMP_STOCK_QMASK_ON }, NULL, "select/quickmask.html", NULL }, - { { N_("/Select/Save to Channel"), NULL, + { { N_("/Select/Save to _Channel"), NULL, select_save_cmd_callback, 0, "", GIMP_STOCK_SELECTION_TO_CHANNEL }, NULL, @@ -308,12 +308,12 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_BRANCH (N_("/_View")), - { { N_("/View/New View"), "", + { { N_("/View/_New View"), "", view_new_view_cmd_callback, 0, "", GTK_STOCK_NEW }, NULL, "view/new_view.html", NULL }, - { { N_("/View/Dot for Dot"), NULL, + { { N_("/View/_Dot for Dot"), NULL, view_dot_for_dot_cmd_callback, 0, "" }, NULL, "view/dot_for_dot.html", NULL }, @@ -322,17 +322,17 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_BRANCH (N_("/View/_Zoom")), - { { N_("/View/Zoom/Zoom Out"), "minus", + { { N_("/View/Zoom/Zoom _Out"), "minus", view_zoom_out_cmd_callback, 0, "", GTK_STOCK_ZOOM_OUT }, NULL, "view/zoom.html", NULL }, - { { N_("/View/Zoom/Zoom In"), "plus", + { { N_("/View/Zoom/Zoom _In"), "plus", view_zoom_in_cmd_callback, 0, "", GTK_STOCK_ZOOM_IN }, NULL, "view/zoom.html", NULL }, - { { N_("/View/Zoom/Zoom to Fit Window"), "E", + { { N_("/View/Zoom/Zoom to _Fit Window"), "E", view_zoom_fit_cmd_callback, 0, "", GTK_STOCK_ZOOM_FIT }, NULL, @@ -379,89 +379,89 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_SEPARATOR ("/View/Zoom/---"), - { { "/View/Zoom/Other...", NULL, + { { "/View/Zoom/O_ther...", NULL, view_zoom_other_cmd_callback, 0, "/View/Zoom/16:1" }, NULL, "view/zoom.html", NULL }, MENU_SEPARATOR ("/View/---"), - { { N_("/View/Info Window..."), "I", + { { N_("/View/_Info Window..."), "I", view_info_window_cmd_callback, 0, "", GIMP_STOCK_INFO }, NULL, "view/dialogs/info_window.html", NULL }, - { { N_("/View/Navigation Window..."), "N", + { { N_("/View/Na_vigation Window..."), "N", view_navigation_window_cmd_callback, 0, "", GIMP_STOCK_NAVIGATION }, NULL, "view/dialogs/navigation_window.html", NULL }, - { { N_("/View/Display Filters..."), NULL, + { { N_("/View/Display _Filters..."), NULL, view_display_filters_cmd_callback, 0 }, NULL, "dialogs/display_filters/display_filters.html", NULL }, MENU_SEPARATOR ("/View/---"), - { { N_("/View/Show Selection"), "T", + { { N_("/View/Show _Selection"), "T", view_toggle_selection_cmd_callback, 0, "" }, NULL, "view/toggle_selection.html", NULL }, - { { N_("/View/Show Layer Boundary"), NULL, + { { N_("/View/Show _Layer Boundary"), NULL, view_toggle_layer_boundary_cmd_callback, 0, "" }, NULL, "view/toggle_selection.html", NULL }, - { { N_("/View/Show Guides"), "T", + { { N_("/View/Show _Guides"), "T", view_toggle_guides_cmd_callback, 0, "" }, NULL, "view/toggle_guides.html", NULL }, - { { N_("/View/Snap to Guides"), NULL, + { { N_("/View/Sn_ap to Guides"), NULL, view_snap_to_guides_cmd_callback, 0, "" }, NULL, "view/snap_to_guides.html", NULL }, MENU_SEPARATOR ("/View/---"), - { { N_("/View/Configure Grid..."), NULL, + { { N_("/View/Configure G_rid..."), NULL, view_configure_grid_cmd_callback, 0, NULL }, NULL, "view/configure_grid.html", NULL }, - { { N_("/View/Show Grid"), NULL, + { { N_("/View/S_how Grid"), NULL, view_toggle_grid_cmd_callback, 0, "" }, NULL, "view/toggle_grid.html", NULL }, - { { N_("/View/Snap to Grid"), NULL, + { { N_("/View/Sna_p to Grid"), NULL, view_snap_to_grid_cmd_callback, 0, "" }, NULL, "view/snap_to_grid.html", NULL }, MENU_SEPARATOR ("/View/---"), - { { N_("/View/Show Menubar"), NULL, + { { N_("/View/Show _Menubar"), NULL, view_toggle_menubar_cmd_callback, 0, "" }, NULL, "view/toggle_menubar.html", NULL }, - { { N_("/View/Show Rulers"), "R", + { { N_("/View/Show R_ulers"), "R", view_toggle_rulers_cmd_callback, 0, "" }, NULL, "view/toggle_rulers.html", NULL }, - { { N_("/View/Show Scrollbars"), NULL, + { { N_("/View/Show Scroll_bars"), NULL, view_toggle_scrollbars_cmd_callback, 0, "" }, NULL, "view/toggle_rulers.html", NULL }, - { { N_("/View/Show Statusbar"), NULL, + { { N_("/View/Show S_tatusbar"), NULL, view_toggle_statusbar_cmd_callback, 0, "" }, NULL, "view/toggle_statusbar.html", NULL }, MENU_SEPARATOR ("/View/---"), - { { N_("/View/Shrink Wrap"), "E", + { { N_("/View/Shrink _Wrap"), "E", view_shrink_wrap_cmd_callback, 0 }, NULL, "view/shrink_wrap.html", NULL }, - { { N_("/View/Fullscreen"), "F11", + { { N_("/View/Fullscr_een"), "F11", view_fullscreen_cmd_callback, 0, "" }, NULL, "view/fullscreen.html", NULL }, @@ -474,17 +474,17 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_BRANCH (N_("/Image/_Mode")), - { { N_("/Image/Mode/RGB"), NULL, + { { N_("/Image/Mode/_RGB"), NULL, image_convert_rgb_cmd_callback, 0, "", GIMP_STOCK_CONVERT_RGB }, NULL, "image/mode/convert_to_rgb.html", NULL }, - { { N_("/Image/Mode/Grayscale"), NULL, + { { N_("/Image/Mode/_Grayscale"), NULL, image_convert_grayscale_cmd_callback, 0, "", GIMP_STOCK_CONVERT_GRAYSCALE }, NULL, "image/mode/convert_to_grayscale.html", NULL }, - { { N_("/Image/Mode/Indexed..."), NULL, + { { N_("/Image/Mode/_Indexed..."), NULL, image_convert_indexed_cmd_callback, 0, "", GIMP_STOCK_CONVERT_INDEXED }, NULL, @@ -494,12 +494,12 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_BRANCH (N_("/Image/_Transform")), - { { N_("/Image/Transform/Flip Horizontally"), NULL, + { { N_("/Image/Transform/Flip _Horizontally"), NULL, image_flip_cmd_callback, GIMP_ORIENTATION_HORIZONTAL, "", GIMP_STOCK_FLIP_HORIZONTAL }, NULL, "image/dialogs/flip_image.html", NULL }, - { { N_("/Image/Transform/Flip Vertically"), NULL, + { { N_("/Image/Transform/Flip _Vertically"), NULL, image_flip_cmd_callback, GIMP_ORIENTATION_VERTICAL, "", GIMP_STOCK_FLIP_VERTICAL }, NULL, @@ -508,17 +508,17 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_SEPARATOR ("/Image/Transform/---"), /* please use the degree symbol in the translation */ - { { N_("/Image/Transform/Rotate 90 degrees CW"), NULL, + { { N_("/Image/Transform/Rotate 90 degrees _CW"), NULL, image_rotate_cmd_callback, GIMP_ROTATE_90, "", GIMP_STOCK_ROTATE_90 }, NULL, "image/dialogs/rotate_image.html", NULL }, - { { N_("/Image/Transform/Rotate 90 degrees CCW"), NULL, + { { N_("/Image/Transform/Rotate 90 degrees CC_W"), NULL, image_rotate_cmd_callback, GIMP_ROTATE_270, "", GIMP_STOCK_ROTATE_270 }, NULL, "image/dialogs/rotate_image.html", NULL }, - { { N_("/Image/Transform/Rotate 180 degrees"), NULL, + { { N_("/Image/Transform/Rotate _180 degrees"), NULL, image_rotate_cmd_callback, GIMP_ROTATE_180, "", GIMP_STOCK_ROTATE_180 }, NULL, @@ -528,22 +528,22 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_SEPARATOR ("/Image/---"), - { { N_("/Image/Canvas Size..."), NULL, + { { N_("/Image/Can_vas Size..."), NULL, image_resize_cmd_callback, 0, "", GIMP_STOCK_RESIZE }, NULL, "image/dialogs/set_canvas_size.html", NULL }, - { { N_("/Image/Scale Image..."), NULL, + { { N_("/Image/_Scale Image..."), NULL, image_scale_cmd_callback, 0, "", GIMP_STOCK_SCALE }, NULL, "image/dialogs/scale_image.html", NULL }, - { { N_("/Image/Crop Image"), NULL, + { { N_("/Image/_Crop Image"), NULL, image_crop_cmd_callback, 0, "", GIMP_STOCK_TOOL_CROP }, NULL, "image/dialogs/crop_image.html", NULL }, - { { N_("/Image/Duplicate"), "D", + { { N_("/Image/_Duplicate"), "D", image_duplicate_cmd_callback, 0, "", GIMP_STOCK_DUPLICATE }, NULL, @@ -551,11 +551,11 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_SEPARATOR ("/Image/---"), - { { N_("/Image/Merge Visible Layers..."), "M", + { { N_("/Image/_Merge Visible Layers..."), "M", image_merge_layers_cmd_callback, 0 }, NULL, "layers/dialogs/merge_visible_layers.html", NULL }, - { { N_("/Image/Flatten Image"), NULL, + { { N_("/Image/_Flatten Image"), NULL, image_flatten_image_cmd_callback, 0 }, NULL, "layers/flatten_image.html", NULL }, @@ -564,27 +564,27 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_BRANCH (N_("/_Layer")), - { { N_("/Layer/New Layer..."), "", + { { N_("/Layer/_New Layer..."), "", layers_new_cmd_callback, 0, "", GTK_STOCK_NEW }, NULL, "layers/dialogs/new_layer.html", NULL }, - { { N_("/Layer/Duplicate Layer"), NULL, + { { N_("/Layer/Du_plicate Layer"), NULL, layers_duplicate_cmd_callback, 0, "", GIMP_STOCK_DUPLICATE }, NULL, "layers/duplicate_layer.html", NULL }, - { { N_("/Layer/Anchor Layer"), "H", + { { N_("/Layer/Anchor _Layer"), "H", layers_anchor_cmd_callback, 0, "", GIMP_STOCK_ANCHOR }, NULL, "layers/anchor_layer.html", NULL }, - { { N_("/Layer/Merge Down"), "M", + { { N_("/Layer/Me_rge Down"), "M", layers_merge_down_cmd_callback, 0, "", GIMP_STOCK_MERGE_DOWN }, NULL, "layers/merge_visible_layers.html", NULL }, - { { N_("/Layer/Delete Layer"), NULL, + { { N_("/Layer/_Delete Layer"), NULL, layers_delete_cmd_callback, 0, "", GTK_STOCK_DELETE }, NULL, @@ -594,43 +594,43 @@ GimpItemFactoryEntry image_menu_entries[] = /* /Layer/Stack */ - MENU_BRANCH (N_("/Layer/_Stack")), + MENU_BRANCH (N_("/Layer/Stac_k")), - { { N_("/Layer/Stack/Select Previous Layer"), "Prior", + { { N_("/Layer/Stack/Select _Previous Layer"), "Prior", layers_select_previous_cmd_callback, 0 }, NULL, "layers/stack/stack.html#previous_layer", NULL }, - { { N_("/Layer/Stack/Select Next Layer"), "Next", + { { N_("/Layer/Stack/Select _Next Layer"), "Next", layers_select_next_cmd_callback, 0 }, NULL, "layers/stack/stack.html#next_layer", NULL }, - { { N_("/Layer/Stack/Select Top Layer"), "Home", + { { N_("/Layer/Stack/Select _Top Layer"), "Home", layers_select_top_cmd_callback, 0 }, NULL, "layers/stack/stack.html#previous_layer", NULL }, - { { N_("/Layer/Stack/Select Bottom Layer"), "End", + { { N_("/Layer/Stack/Select _Bottom Layer"), "End", layers_select_bottom_cmd_callback, 0 }, NULL, "layers/stack/stack.html#next_layer", NULL }, MENU_SEPARATOR ("/Layer/Stack/---"), - { { N_("/Layer/Stack/Raise Layer"), "Prior", + { { N_("/Layer/Stack/_Raise Layer"), "Prior", layers_raise_cmd_callback, 0, "", GTK_STOCK_GO_UP }, NULL, "layers/stack/stack.html#raise_layer", NULL }, - { { N_("/Layer/Stack/Lower Layer"), "Next", + { { N_("/Layer/Stack/_Lower Layer"), "Next", layers_lower_cmd_callback, 0, "", GTK_STOCK_GO_DOWN }, NULL, "layers/stack/stack.html#lower_layer", NULL }, - { { N_("/Layer/Stack/Layer to Top"), "Home", + { { N_("/Layer/Stack/Layer to T_op"), "Home", layers_raise_to_top_cmd_callback, 0, "", GTK_STOCK_GOTO_TOP }, NULL, "layers/stack/stack.html#layer_to_top", NULL }, - { { N_("/Layer/Stack/Layer to Bottom"), "End", + { { N_("/Layer/Stack/Layer to Botto_m"), "End", layers_lower_to_bottom_cmd_callback, 0, "", GTK_STOCK_GOTO_BOTTOM }, NULL, @@ -640,42 +640,42 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_BRANCH (N_("/Layer/_Colors")), - { { N_("/Layer/Colors/Color Balance..."), NULL, + { { N_("/Layer/Colors/Color _Balance..."), NULL, tools_select_cmd_callback, 0, "", GIMP_STOCK_TOOL_COLOR_BALANCE }, "gimp-color-balance-tool", "tools/color_balance.html", NULL }, - { { N_("/Layer/Colors/Hue-Saturation..."), NULL, + { { N_("/Layer/Colors/Hue-_Saturation..."), NULL, tools_select_cmd_callback, 0, "", GIMP_STOCK_TOOL_HUE_SATURATION }, "gimp-hue-saturation-tool", "tools/hue_saturation.html", NULL }, - { { N_("/Layer/Colors/Colorize..."), NULL, + { { N_("/Layer/Colors/Colori_ze..."), NULL, tools_select_cmd_callback, 0, "", GIMP_STOCK_TOOL_COLORIZE }, "gimp-colorize-tool", "tools/colorize.html", NULL }, - { { N_("/Layer/Colors/Brightness-Contrast..."), NULL, + { { N_("/Layer/Colors/B_rightness-Contrast..."), NULL, tools_select_cmd_callback, 0, "", GIMP_STOCK_TOOL_BRIGHTNESS_CONTRAST }, "gimp-brightness-contrast-tool", "tools/brightness-contrast.html", NULL }, - { { N_("/Layer/Colors/Threshold..."), NULL, + { { N_("/Layer/Colors/_Threshold..."), NULL, tools_select_cmd_callback, 0, "", GIMP_STOCK_TOOL_THRESHOLD }, "gimp-threshold-tool", "tools/threshold.html", NULL }, - { { N_("/Layer/Colors/Levels..."), NULL, + { { N_("/Layer/Colors/_Levels..."), NULL, tools_select_cmd_callback, 0, "", GIMP_STOCK_TOOL_LEVELS }, "gimp-levels-tool", "tools/levels.html", NULL }, - { { N_("/Layer/Colors/Curves..."), NULL, + { { N_("/Layer/Colors/_Curves..."), NULL, tools_select_cmd_callback, 0, "", GIMP_STOCK_TOOL_CURVES }, "gimp-curves-tool", "tools/curves.html", NULL }, - { { N_("/Layer/Colors/Posterize..."), NULL, + { { N_("/Layer/Colors/_Posterize..."), NULL, tools_select_cmd_callback, 0, "", GIMP_STOCK_TOOL_POSTERIZE }, "gimp-posterize-tool", @@ -683,12 +683,12 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_SEPARATOR ("/Layer/Colors/---"), - { { N_("/Layer/Colors/Desaturate"), NULL, + { { N_("/Layer/Colors/_Desaturate"), NULL, drawable_desaturate_cmd_callback, 0, "", GIMP_STOCK_CONVERT_GRAYSCALE }, NULL, "layers/colors/desaturate.html", NULL }, - { { N_("/Layer/Colors/Invert"), NULL, + { { N_("/Layer/Colors/In_vert"), NULL, drawable_invert_cmd_callback, 0, "", GIMP_STOCK_INVERT }, NULL, @@ -698,14 +698,14 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_BRANCH (N_("/Layer/Colors/_Auto")), - { { N_("/Layer/Colors/Auto/Equalize"), NULL, + { { N_("/Layer/Colors/Auto/_Equalize"), NULL, drawable_equalize_cmd_callback, 0 }, NULL, "layers/colors/auto/equalize.html", NULL }, MENU_SEPARATOR ("/Layer/Colors/---"), - { { N_("/Layer/Colors/Histogram..."), NULL, + { { N_("/Layer/Colors/_Histogram..."), NULL, tools_select_cmd_callback, 0, "", GIMP_STOCK_TOOL_HISTOGRAM }, "gimp-histogram-tool", @@ -715,20 +715,20 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_BRANCH (N_("/Layer/_Mask")), - { { N_("/Layer/Mask/Add Layer Mask..."), NULL, + { { N_("/Layer/Mask/_Add Layer Mask..."), NULL, layers_add_layer_mask_cmd_callback, 0 }, NULL, "layers/dialogs/add_layer_mask.html", NULL }, - { { N_("/Layer/Mask/Apply Layer Mask"), NULL, + { { N_("/Layer/Mask/A_pply Layer Mask"), NULL, layers_apply_layer_mask_cmd_callback, 0 }, NULL, "layers/apply_mask.html", NULL }, - { { N_("/Layer/Mask/Delete Layer Mask"), NULL, + { { N_("/Layer/Mask/_Delete Layer Mask"), NULL, layers_delete_layer_mask_cmd_callback, 0, "", GTK_STOCK_DELETE }, NULL, "layers/delete_mask.html", NULL }, - { { N_("/Layer/Mask/Mask to Selection"), NULL, + { { N_("/Layer/Mask/_Mask to Selection"), NULL, layers_mask_select_cmd_callback, 0, "", GIMP_STOCK_SELECTION_REPLACE }, NULL, @@ -738,11 +738,11 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_BRANCH (N_("/Layer/Tr_ansparency")), - { { N_("/Layer/Transparency/Add Alpha Channel"), NULL, + { { N_("/Layer/Transparency/_Add Alpha Channel"), NULL, layers_add_alpha_channel_cmd_callback, 0 }, NULL, "layers/add_alpha_channel.html", NULL }, - { { N_("/Layer/Transparency/Alpha to Selection"), NULL, + { { N_("/Layer/Transparency/Al_pha to Selection"), NULL, layers_alpha_select_cmd_callback, 0, "", GIMP_STOCK_SELECTION_REPLACE }, NULL, @@ -754,12 +754,12 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_BRANCH (N_("/Layer/_Transform")), - { { N_("/Layer/Transform/Flip Horizontally"), NULL, + { { N_("/Layer/Transform/Flip _Horizontally"), NULL, drawable_flip_cmd_callback, GIMP_ORIENTATION_HORIZONTAL, "", GIMP_STOCK_FLIP_HORIZONTAL }, NULL, "layers/flip_layer.html", NULL }, - { { N_("/Layer/Transform/Flip Vertically"), NULL, + { { N_("/Layer/Transform/Flip _Vertically"), NULL, drawable_flip_cmd_callback, GIMP_ORIENTATION_VERTICAL, "", GIMP_STOCK_FLIP_VERTICAL }, NULL, @@ -767,22 +767,22 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_SEPARATOR ("/Layer/Transform/---"), - { { N_("/Layer/Transform/Rotate 90 degrees CW"), NULL, + { { N_("/Layer/Transform/Rotate 90 degrees _CW"), NULL, drawable_rotate_cmd_callback, GIMP_ROTATE_90, "", GIMP_STOCK_ROTATE_90 }, NULL, "layers/rotate_layer.html", NULL }, - { { N_("/Layer/Transform/Rotate 90 degrees CCW"), NULL, + { { N_("/Layer/Transform/Rotate 90 degrees CC_W"), NULL, drawable_rotate_cmd_callback, GIMP_ROTATE_270, "", GIMP_STOCK_ROTATE_270 }, NULL, "layers/rotate_layer.html", NULL }, - { { N_("/Layer/Transform/Rotate 180 degrees"), NULL, + { { N_("/Layer/Transform/Rotate _180 degrees"), NULL, drawable_rotate_cmd_callback, GIMP_ROTATE_180, "", GIMP_STOCK_ROTATE_180 }, NULL, "layers/rotate_layer.html", NULL }, - { { N_("/Layer/Transform/Arbitrary Rotation..."), NULL, + { { N_("/Layer/Transform/_Arbitrary Rotation..."), NULL, tools_select_cmd_callback, 0, "", GIMP_STOCK_TOOL_ROTATE }, "gimp-rotate-tool", @@ -790,29 +790,29 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_SEPARATOR ("/Layer/Transform/---"), - { { N_("/Layer/Transform/Offset..."), "O", + { { N_("/Layer/Transform/_Offset..."), "O", drawable_offset_cmd_callback, 0 }, NULL, "layers/dialogs/offset.html", NULL }, MENU_SEPARATOR ("/Layer/---"), - { { N_("/Layer/Layer Boundary Size..."), NULL, + { { N_("/Layer/Layer _Boundary Size..."), NULL, layers_resize_cmd_callback, 0, "", GIMP_STOCK_RESIZE }, NULL, "layers/dialogs/layer_boundary_size.html", NULL }, - { { N_("/Layer/Layer to Imagesize"), NULL, + { { N_("/Layer/Layer to _Imagesize"), NULL, layers_resize_to_image_cmd_callback, 0, "", GIMP_STOCK_LAYER_TO_IMAGESIZE }, NULL, "layers/layer_to_image_size.html", NULL }, - { { N_("/Layer/Scale Layer..."), NULL, + { { N_("/Layer/_Scale Layer..."), NULL, layers_scale_cmd_callback, 0, "", GIMP_STOCK_SCALE }, NULL, "layers/dialogs/scale_layer.html", NULL }, - { { N_("/Layer/Crop Layer"), NULL, + { { N_("/Layer/Cr_op Layer"), NULL, layers_crop_cmd_callback, 0, "", GIMP_STOCK_TOOL_CROP }, NULL, @@ -824,16 +824,16 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_BRANCH (N_("/_Tools")), - { { N_("/Tools/Toolbox"), NULL, + { { N_("/Tools/Tool_box"), NULL, dialogs_show_toolbox_cmd_callback, 0 }, NULL, "toolbox/toolbox.html", NULL }, - { { N_("/Tools/Default Colors"), "D", + { { N_("/Tools/_Default Colors"), "D", tools_default_colors_cmd_callback, 0, "", GIMP_STOCK_DEFAULT_COLORS }, NULL, "toolbox/toolbox.html#default_colors", NULL }, - { { N_("/Tools/Swap Colors"), "X", + { { N_("/Tools/S_wap Colors"), "X", tools_swap_colors_cmd_callback, 0, "", GIMP_STOCK_SWAP_COLORS }, NULL, @@ -850,27 +850,27 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_BRANCH (N_("/_Dialogs")), - MENU_BRANCH (N_("/Dialogs/_Create New Dock")), + MENU_BRANCH (N_("/Dialogs/Create New Doc_k")), - { { N_("/Dialogs/Create New Dock/Layers, Channels & Paths..."), NULL, + { { N_("/Dialogs/Create New Dock/_Layers, Channels & Paths..."), NULL, dialogs_create_lc_cmd_callback, 0 }, NULL, "dialogs/layers_and_channels.html", NULL }, - { { N_("/Dialogs/Create New Dock/Brushes, Patterns & Gradients..."), NULL, + { { N_("/Dialogs/Create New Dock/_Brushes, Patterns & Gradients..."), NULL, dialogs_create_data_cmd_callback, 0 }, NULL, NULL, NULL }, - { { N_("/Dialogs/Create New Dock/Misc. Stuff..."), NULL, + { { N_("/Dialogs/Create New Dock/_Misc. Stuff..."), NULL, dialogs_create_stuff_cmd_callback, 0 }, NULL, NULL, NULL }, - { { N_("/Dialogs/Tool Options..."), NULL, + { { N_("/Dialogs/Tool _Options..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_TOOL_OPTIONS }, "gimp-tool-options", "dialogs/tool_options.html", NULL }, - { { N_("/Dialogs/Device Status..."), NULL, + { { N_("/Dialogs/_Device Status..."), NULL, dialogs_create_toplevel_cmd_callback, 0, "", GIMP_STOCK_DEVICE_STATUS }, "gimp-device-status-dialog", @@ -878,37 +878,37 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_SEPARATOR ("/Dialogs/---"), - { { N_("/Dialogs/Layers..."), "L", + { { N_("/Dialogs/_Layers..."), "L", dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_LAYERS }, "gimp-layer-list", NULL, NULL }, - { { N_("/Dialogs/Channels..."), NULL, + { { N_("/Dialogs/_Channels..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_CHANNELS }, "gimp-channel-list", NULL, NULL }, - { { N_("/Dialogs/Paths..."), NULL, + { { N_("/Dialogs/_Paths..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_PATHS }, "gimp-vectors-list", NULL, NULL }, - { { N_("/Dialogs/Indexed Palette..."), NULL, + { { N_("/Dialogs/_Indexed Palette..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GTK_STOCK_SELECT_COLOR }, "gimp-indexed-palette", "file/dialogs/indexed_palette.html", NULL }, - { { N_("/Dialogs/Selection Editor..."), NULL, + { { N_("/Dialogs/_Selection Editor..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_TOOL_RECT_SELECT }, "gimp-selection-editor", NULL, NULL }, - { { N_("/Dialogs/Navigation..."), NULL, + { { N_("/Dialogs/Na_vigation..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_NAVIGATION }, "gimp-navigation-view", NULL, NULL }, - { { N_("/Dialogs/Undo History..."), NULL, + { { N_("/Dialogs/_Undo History..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GTK_STOCK_UNDO }, "gimp-undo-history", @@ -916,37 +916,37 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_SEPARATOR ("/Dialogs/---"), - { { N_("/Dialogs/Colors..."), NULL, + { { N_("/Dialogs/Colo_rs..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GTK_STOCK_SELECT_COLOR }, "gimp-color-editor", NULL, NULL }, - { { N_("/Dialogs/Brushes..."), "B", + { { N_("/Dialogs/Brus_hes..."), "B", dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_TOOL_PAINTBRUSH }, "gimp-brush-grid", "dialogs/brush_selection.html", NULL }, - { { N_("/Dialogs/Patterns..."), "P", + { { N_("/Dialogs/P_atterns..."), "P", dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_TOOL_BUCKET_FILL }, "gimp-pattern-grid", "dialogs/pattern_selection.html", NULL }, - { { N_("/Dialogs/Gradients..."), "G", + { { N_("/Dialogs/_Gradients..."), "G", dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_TOOL_BLEND }, "gimp-gradient-list", "dialogs/gradient_selection.html", NULL }, - { { N_("/Dialogs/Palettes..."), "P", + { { N_("/Dialogs/Pal_ettes..."), "P", dialogs_create_dockable_cmd_callback, 0, "", GTK_STOCK_SELECT_COLOR }, "gimp-palette-list", "dialogs/palette_selection.html", NULL }, - { { N_("/Dialogs/Fonts..."), NULL, + { { N_("/Dialogs/_Fonts..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GTK_STOCK_SELECT_FONT }, "gimp-font-list", "dialogs/font_selection.html", NULL }, - { { N_("/Dialogs/Buffers..."), "foo", + { { N_("/Dialogs/_Buffers..."), "foo", dialogs_create_dockable_cmd_callback, 0, "", GTK_STOCK_PASTE }, "gimp-buffer-list", @@ -954,22 +954,22 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_SEPARATOR ("/Dialogs/---"), - { { N_("/Dialogs/Images..."), NULL, + { { N_("/Dialogs/I_mages..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_IMAGES }, "gimp-image-list", NULL, NULL }, - { { N_("/Dialogs/Document History..."), "", + { { N_("/Dialogs/Document Histor_y..."), "", dialogs_create_dockable_cmd_callback, 0, "", GTK_STOCK_OPEN }, "gimp-document-list", "dialogs/document_index.html", NULL }, - { { N_("/Dialogs/Templates..."), NULL, + { { N_("/Dialogs/_Templates..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_TEMPLATE }, "gimp-template-list", "dialogs/templates.html", NULL }, - { { N_("/Dialogs/Error Console..."), NULL, + { { N_("/Dialogs/Error Co_nsole..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_WARNING }, "gimp-error-console", @@ -997,7 +997,7 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_BRANCH (N_("/Filters/_Blur")), MENU_BRANCH (N_("/Filters/_Colors")), MENU_BRANCH (N_("/Filters/_Noise")), - MENU_BRANCH (N_("/Filters/_Edge-Detect")), + MENU_BRANCH (N_("/Filters/Edge-De_tect")), MENU_BRANCH (N_("/Filters/En_hance")), MENU_BRANCH (N_("/Filters/_Generic")), @@ -1018,7 +1018,7 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_SEPARATOR ("/Filters/---"), - MENU_BRANCH (N_("/Filters/_Toys")) + MENU_BRANCH (N_("/Filters/To_ys")) }; gint n_image_menu_entries = G_N_ELEMENTS (image_menu_entries); @@ -1339,12 +1339,12 @@ image_menu_update (GtkItemFactory *item_factory, if (undo) undo_name = - g_strdup_printf (_("Undo %s"), + g_strdup_printf (_("_Undo %s"), gimp_object_get_name (GIMP_OBJECT (undo))); if (redo) redo_name = - g_strdup_printf (_("Redo %s"), + g_strdup_printf (_("_Redo %s"), gimp_object_get_name (GIMP_OBJECT (redo))); } diff --git a/app/gui/plug-in-menus.c b/app/gui/plug-in-menus.c index f733760c93..664f311663 100644 --- a/app/gui/plug-in-menus.c +++ b/app/gui/plug-in-menus.c @@ -353,8 +353,8 @@ plug_in_menus_update (GimpItemFactory *item_factory, if (ellipses && ellipses == (basename + strlen (basename) - 3)) *ellipses = '\0'; - repeat = g_strdup_printf (_("Repeat \"%s\""), basename); - reshow = g_strdup_printf (_("Re-show \"%s\""), basename); + repeat = g_strdup_printf (_("Re_peat \"%s\""), basename); + reshow = g_strdup_printf (_("R_e-show \"%s\""), basename); g_free (basename); diff --git a/app/gui/toolbox-menu.c b/app/gui/toolbox-menu.c index d126f12f8d..55afac0553 100644 --- a/app/gui/toolbox-menu.c +++ b/app/gui/toolbox-menu.c @@ -47,12 +47,12 @@ GimpItemFactoryEntry toolbox_menu_entries[] = MENU_BRANCH (N_("/_File")), - { { N_("/File/New..."), "N", + { { N_("/File/_New..."), "N", file_new_cmd_callback, 0, "", GTK_STOCK_NEW }, NULL, "file/dialogs/file_new.html", NULL }, - { { N_("/File/Open..."), "O", + { { N_("/File/_Open..."), "O", file_open_cmd_callback, 0, "", GTK_STOCK_OPEN }, NULL, @@ -60,14 +60,14 @@ GimpItemFactoryEntry toolbox_menu_entries[] = /* /File/Open Recent */ - MENU_BRANCH (N_("/File/_Open Recent")), + MENU_BRANCH (N_("/File/Open _Recent")), { { N_("/File/Open Recent/(None)"), NULL, NULL, 0 }, NULL, NULL, NULL }, MENU_SEPARATOR ("/File/Open Recent/---"), - { { N_("/File/Open Recent/Document History..."), "foo", + { { N_("/File/Open Recent/Document _History..."), "foo", dialogs_create_dockable_cmd_callback, 0, "", GTK_STOCK_OPEN }, "gimp-document-list", @@ -79,7 +79,7 @@ GimpItemFactoryEntry toolbox_menu_entries[] = MENU_SEPARATOR ("/File/---"), - { { N_("/File/Preferences..."), NULL, + { { N_("/File/_Preferences..."), NULL, dialogs_create_toplevel_cmd_callback, 0, "", GTK_STOCK_PREFERENCES }, "gimp-preferences-dialog", @@ -89,27 +89,27 @@ GimpItemFactoryEntry toolbox_menu_entries[] = MENU_BRANCH (N_("/File/_Dialogs")), - MENU_BRANCH (N_("/File/Dialogs/_Create New Dock")), + MENU_BRANCH (N_("/File/Dialogs/Create New Doc_k")), - { { N_("/File/Dialogs/Create New Dock/Layers, Channels & Paths..."), NULL, + { { N_("/File/Dialogs/Create New Dock/_Layers, Channels & Paths..."), NULL, dialogs_create_lc_cmd_callback, 0 }, NULL, "file/dialogs/layers_and_channels.html", NULL }, - { { N_("/File/Dialogs/Create New Dock/Brushes, Patterns & Gradients..."), NULL, + { { N_("/File/Dialogs/Create New Dock/_Brushes, Patterns & Gradients..."), NULL, dialogs_create_data_cmd_callback, 0 }, NULL, NULL, NULL }, - { { N_("/File/Dialogs/Create New Dock/Misc. Stuff..."), NULL, + { { N_("/File/Dialogs/Create New Dock/_Misc. Stuff..."), NULL, dialogs_create_stuff_cmd_callback, 0 }, NULL, NULL, NULL }, - { { N_("/File/Dialogs/Tool Options..."), "T", + { { N_("/File/Dialogs/Tool _Options..."), "T", dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_TOOL_OPTIONS }, "gimp-tool-options", "file/dialogs/tool_options.html", NULL }, - { { N_("/File/Dialogs/Device Status..."), NULL, + { { N_("/File/Dialogs/_Device Status..."), NULL, dialogs_create_toplevel_cmd_callback, 0, "", GIMP_STOCK_DEVICE_STATUS }, "gimp-device-status-dialog", @@ -117,37 +117,37 @@ GimpItemFactoryEntry toolbox_menu_entries[] = MENU_SEPARATOR ("/File/Dialogs/---"), - { { N_("/File/Dialogs/Layers..."), "L", + { { N_("/File/Dialogs/_Layers..."), "L", dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_LAYERS }, "gimp-layer-list", NULL, NULL }, - { { N_("/File/Dialogs/Channels..."), NULL, + { { N_("/File/Dialogs/_Channels..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_CHANNELS }, "gimp-channel-list", NULL, NULL }, - { { N_("/File/Dialogs/Paths..."), NULL, + { { N_("/File/Dialogs/_Paths..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_PATHS }, "gimp-vectors-list", NULL, NULL }, - { { N_("/File/Dialogs/Indexed Palette..."), NULL, + { { N_("/File/Dialogs/_Indexed Palette..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GTK_STOCK_SELECT_COLOR }, "gimp-indexed-palette", "file/dialogs/indexed_palette.html", NULL }, - { { N_("/File/Dialogs/Selection Editor..."), NULL, + { { N_("/File/Dialogs/_Selection Editor..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_TOOL_RECT_SELECT }, "gimp-selection-editor", NULL, NULL }, - { { N_("/File/Dialogs/Navigation..."), NULL, + { { N_("/File/Dialogs/Na_vigation..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_NAVIGATION }, "gimp-navigation-view", NULL, NULL }, - { { N_("/File/Dialogs/Undo History..."), NULL, + { { N_("/File/Dialogs/_Undo History..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GTK_STOCK_UNDO }, "gimp-undo-history", @@ -155,37 +155,37 @@ GimpItemFactoryEntry toolbox_menu_entries[] = MENU_SEPARATOR ("/File/Dialogs/---"), - { { N_("/File/Dialogs/Colors..."), NULL, + { { N_("/File/Dialogs/Colo_rs..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GTK_STOCK_SELECT_COLOR }, "gimp-color-editor", NULL, NULL }, - { { N_("/File/Dialogs/Brushes..."), "B", + { { N_("/File/Dialogs/Brus_hes..."), "B", dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_TOOL_PAINTBRUSH }, "gimp-brush-grid", "file/dialogs/brush_selection.html", NULL }, - { { N_("/File/Dialogs/Patterns..."), "P", + { { N_("/File/Dialogs/P_atterns..."), "P", dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_TOOL_BUCKET_FILL }, "gimp-pattern-grid", "file/dialogs/pattern_selection.html", NULL }, - { { N_("/File/Dialogs/Gradients..."), "G", + { { N_("/File/Dialogs/_Gradients..."), "G", dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_TOOL_BLEND }, "gimp-gradient-list", "file/dialogs/gradient_selection.html", NULL }, - { { N_("/File/Dialogs/Palettes..."), "P", + { { N_("/File/Dialogs/Pal_ettes..."), "P", dialogs_create_dockable_cmd_callback, 0, "", GTK_STOCK_SELECT_COLOR }, "gimp-palette-list", "file/dialogs/palette_selection.html", NULL }, - { { N_("/File/Dialogs/Fonts..."), NULL, + { { N_("/File/Dialogs/_Fonts..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GTK_STOCK_SELECT_FONT }, "gimp-font-list", "file/dialogs/font_selection.html", NULL }, - { { N_("/File/Dialogs/Buffers..."), "foo", + { { N_("/File/Dialogs/_Buffers..."), "foo", dialogs_create_dockable_cmd_callback, 0, "", GTK_STOCK_PASTE }, "gimp-buffer-list", @@ -193,39 +193,39 @@ GimpItemFactoryEntry toolbox_menu_entries[] = MENU_SEPARATOR ("/File/Dialogs/---"), - { { N_("/File/Dialogs/Images..."), NULL, + { { N_("/File/Dialogs/I_mages..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_IMAGES }, "gimp-image-list", NULL, NULL }, - { { N_("/File/Dialogs/Document History..."), "", + { { N_("/File/Dialogs/Document Histor_y..."), "", dialogs_create_dockable_cmd_callback, 0, "", GTK_STOCK_OPEN }, "gimp-document-list", "file/dialogs/document_index.html", NULL }, - { { N_("/File/Dialogs/Templates..."), "", + { { N_("/File/Dialogs/_Templates..."), "", dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_TEMPLATE }, "gimp-template-list", "file/dialogs/templates.html", NULL }, - { { N_("/File/Dialogs/Error Console..."), NULL, + { { N_("/File/Dialogs/Error Co_nsole..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_WARNING }, "gimp-error-console", "file/dialogs/error_console.html", NULL }, #ifdef ENABLE_DEBUG_ENTRIES - { { "/File/Debug/Mem Profile", NULL, + { { "/File/Debug/_Mem Profile", NULL, debug_mem_profile_cmd_callback, 0 }, NULL, NULL, NULL }, - { { "/File/Debug/Dump Items", NULL, + { { "/File/Debug/_Dump Items", NULL, debug_dump_menus_cmd_callback, 0 }, NULL, NULL, NULL }, #endif MENU_SEPARATOR ("/File/---"), - { { N_("/File/Quit"), "Q", + { { N_("/File/_Quit"), "Q", file_quit_cmd_callback, 0, "", GTK_STOCK_QUIT }, NULL, @@ -235,7 +235,7 @@ GimpItemFactoryEntry toolbox_menu_entries[] = MENU_BRANCH (N_("/_Xtns")), - { { N_("/Xtns/Module Manager..."), NULL, + { { N_("/Xtns/_Module Manager..."), NULL, dialogs_create_toplevel_cmd_callback, 0 }, "gimp-module-manager-dialog", "dialogs/module_manager.html", NULL }, @@ -246,22 +246,22 @@ GimpItemFactoryEntry toolbox_menu_entries[] = MENU_BRANCH (N_("/_Help")), - { { N_("/Help/Help..."), "F1", + { { N_("/Help/_Help..."), "F1", help_help_cmd_callback, 0, "", GTK_STOCK_HELP }, NULL, "help/dialogs/help.html", NULL }, - { { N_("/Help/Context Help..."), "F1", + { { N_("/Help/_Context Help..."), "F1", help_context_help_cmd_callback, 0, "", GTK_STOCK_HELP }, NULL, "help/context_help.html", NULL }, - { { N_("/Help/Tip of the Day..."), NULL, + { { N_("/Help/_Tip of the Day..."), NULL, dialogs_create_toplevel_cmd_callback, 0, "", GIMP_STOCK_INFO }, "gimp-tips-dialog", "help/dialogs/tip_of_the_day.html", NULL }, - { { N_("/Help/About..."), NULL, + { { N_("/Help/_About..."), NULL, dialogs_create_toplevel_cmd_callback, 0, "", GIMP_STOCK_WILBER }, "gimp-about-dialog", diff --git a/app/menus/image-menu.c b/app/menus/image-menu.c index 639d5646c2..bcac05affb 100644 --- a/app/menus/image-menu.c +++ b/app/menus/image-menu.c @@ -82,12 +82,12 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_BRANCH (N_("/_File")), - { { N_("/File/New..."), "N", + { { N_("/File/_New..."), "N", file_new_cmd_callback, 1, "", GTK_STOCK_NEW }, NULL, "file/dialogs/file_new.html", NULL }, - { { N_("/File/Open..."), "O", + { { N_("/File/_Open..."), "O", file_open_cmd_callback, 1, "", GTK_STOCK_OPEN }, NULL, @@ -95,14 +95,14 @@ GimpItemFactoryEntry image_menu_entries[] = /* /File/Open Recent */ - MENU_BRANCH (N_("/File/_Open Recent")), + MENU_BRANCH (N_("/File/Open _Recent")), { { N_("/File/Open Recent/(None)"), NULL, NULL, 0 }, NULL, NULL, NULL }, MENU_SEPARATOR ("/File/Open Recent/---"), - { { N_("/File/Open Recent/Document History..."), "foo", + { { N_("/File/Open Recent/Document _History..."), "foo", dialogs_create_dockable_cmd_callback, 0, "", GTK_STOCK_OPEN }, "gimp-document-list", @@ -110,25 +110,25 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_SEPARATOR ("/File/---"), - { { N_("/File/Save"), "S", + { { N_("/File/_Save"), "S", file_save_cmd_callback, 0, "", GTK_STOCK_SAVE }, NULL, "file/dialogs/file_save.html", NULL }, - { { N_("/File/Save as..."), "S", + { { N_("/File/Save _as..."), "S", file_save_as_cmd_callback, 0, "", GTK_STOCK_SAVE_AS }, NULL, "file/dialogs/file_save.html", NULL }, - { { N_("/File/Save a Copy..."), NULL, + { { N_("/File/Sa_ve a Copy..."), NULL, file_save_a_copy_cmd_callback, 0 }, NULL, "file/dialogs/file_save.html", NULL }, - { { N_("/File/Save as Template..."), NULL, + { { N_("/File/Save as _Template..."), NULL, file_save_template_cmd_callback, 0 }, NULL, "file/dialogs/file_save.html", NULL }, - { { N_("/File/Revert..."), NULL, + { { N_("/File/Re_vert..."), NULL, file_revert_cmd_callback, 0, "", GTK_STOCK_REVERT_TO_SAVED }, NULL, @@ -136,12 +136,12 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_SEPARATOR ("/File/---"), - { { N_( "/File/Close"), "W", + { { N_( "/File/_Close"), "W", file_close_cmd_callback, 0, "", GTK_STOCK_CLOSE }, NULL, "file/close.html", NULL }, - { { N_("/File/Quit"), "Q", + { { N_("/File/_Quit"), "Q", file_quit_cmd_callback, 0, "", GTK_STOCK_QUIT }, NULL, @@ -166,27 +166,27 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_SEPARATOR ("/Edit/---"), - { { N_("/Edit/Cut"), "X", + { { N_("/Edit/Cu_t"), "X", edit_cut_cmd_callback, 0, "", GTK_STOCK_CUT }, NULL, "edit/cut.html", NULL }, - { { N_("/Edit/Copy"), "C", + { { N_("/Edit/_Copy"), "C", edit_copy_cmd_callback, 0, "", GTK_STOCK_COPY }, NULL, "edit/copy.html", NULL }, - { { N_("/Edit/Paste"), "V", + { { N_("/Edit/_Paste"), "V", edit_paste_cmd_callback, 0, "", GTK_STOCK_PASTE }, NULL, "edit/paste.html", NULL }, - { { N_("/Edit/Paste Into"), NULL, + { { N_("/Edit/Paste _Into"), NULL, edit_paste_into_cmd_callback, 0, "", GIMP_STOCK_PASTE_INTO }, NULL, "edit/paste_into.html", NULL }, - { { N_("/Edit/Paste as New"), NULL, + { { N_("/Edit/Paste as _New"), NULL, edit_paste_as_new_cmd_callback, 0, "", GIMP_STOCK_PASTE_AS_NEW }, NULL, @@ -196,17 +196,17 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_BRANCH (N_("/Edit/_Buffer")), - { { N_("/Edit/Buffer/Cut Named..."), "X", + { { N_("/Edit/Buffer/Cu_t Named..."), "X", edit_named_cut_cmd_callback, 0, "", GTK_STOCK_CUT }, NULL, "edit/dialogs/cut_named.html", NULL }, - { { N_("/Edit/Buffer/Copy Named..."), "C", + { { N_("/Edit/Buffer/_Copy Named..."), "C", edit_named_copy_cmd_callback, 0, "", GTK_STOCK_COPY }, NULL, "edit/dialogs/copy_named.html", NULL }, - { { N_("/Edit/Buffer/Paste Named..."), "V", + { { N_("/Edit/Buffer/_Paste Named..."), "V", edit_named_paste_cmd_callback, 0, "", GTK_STOCK_PASTE }, NULL, @@ -214,22 +214,22 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_SEPARATOR ("/Edit/---"), - { { N_("/Edit/Clear"), "K", + { { N_("/Edit/Cl_ear"), "K", edit_clear_cmd_callback, 0, "", GTK_STOCK_CLEAR }, NULL, "edit/clear.html", NULL }, - { { N_("/Edit/Fill with FG Color"), "comma", + { { N_("/Edit/Fill with _FG Color"), "comma", edit_fill_cmd_callback, (guint) GIMP_FOREGROUND_FILL, "", GIMP_STOCK_TOOL_BUCKET_FILL }, NULL, "edit/fill.html", NULL }, - { { N_("/Edit/Fill with BG Color"), "period", + { { N_("/Edit/Fill with B_G Color"), "period", edit_fill_cmd_callback, (guint) GIMP_BACKGROUND_FILL, "", GIMP_STOCK_TOOL_BUCKET_FILL }, NULL, "edit/fill.html", NULL }, - { { N_("/Edit/Stroke"), NULL, + { { N_("/Edit/_Stroke"), NULL, edit_stroke_cmd_callback, 0, "", GIMP_STOCK_SELECTION_STROKE }, NULL, @@ -241,26 +241,26 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_BRANCH (N_("/_Select")), - { { N_("/Select/All"), "A", + { { N_("/Select/_All"), "A", select_all_cmd_callback, 0, "", GIMP_STOCK_SELECTION_ALL }, NULL, "select/all.html", NULL }, - { { N_("/Select/None"), "A", + { { N_("/Select/_None"), "A", select_none_cmd_callback, 0, "", GIMP_STOCK_SELECTION_NONE }, NULL, "select/none.html", NULL }, - { { N_("/Select/Invert"), "I", + { { N_("/Select/_Invert"), "I", select_invert_cmd_callback, 0, "", GIMP_STOCK_INVERT }, NULL, "select/invert.html", NULL }, - { { N_("/Select/Float"), "L", + { { N_("/Select/_Float"), "L", select_float_cmd_callback, 0 }, NULL, "select/float.html", NULL }, - { { N_("/Select/By Color"), "O", + { { N_("/Select/_By Color"), "O", tools_select_cmd_callback, 0, "", GIMP_STOCK_TOOL_BY_COLOR_SELECT }, "gimp-by-color-select-tool", @@ -268,37 +268,37 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_SEPARATOR ("/Select/---"), - { { N_("/Select/Feather..."), NULL, + { { N_("/Select/Fea_ther..."), NULL, select_feather_cmd_callback, 0 }, NULL, "select/dialogs/feather_selection.html", NULL }, - { { N_("/Select/Sharpen"), NULL, + { { N_("/Select/_Sharpen"), NULL, select_sharpen_cmd_callback, 0 }, NULL, "select/sharpen.html", NULL }, - { { N_("/Select/Shrink..."), NULL, + { { N_("/Select/S_hrink..."), NULL, select_shrink_cmd_callback, 0, "", GIMP_STOCK_SELECTION_SHRINK }, NULL, "select/dialogs/shrink_selection.html", NULL }, - { { N_("/Select/Grow..."), NULL, + { { N_("/Select/_Grow..."), NULL, select_grow_cmd_callback, 0, "", GIMP_STOCK_SELECTION_GROW }, NULL, "select/dialogs/grow_selection.html", NULL }, - { { N_("/Select/Border..."), NULL, + { { N_("/Select/Bo_rder..."), NULL, select_border_cmd_callback, 0 }, NULL, "select/dialogs/border_selection.html", NULL }, MENU_SEPARATOR ("/Select/---"), - { { N_("/Select/Toggle QuickMask"), "Q", + { { N_("/Select/Toggle _QuickMask"), "Q", select_toggle_quickmask_cmd_callback, 0, "", GIMP_STOCK_QMASK_ON }, NULL, "select/quickmask.html", NULL }, - { { N_("/Select/Save to Channel"), NULL, + { { N_("/Select/Save to _Channel"), NULL, select_save_cmd_callback, 0, "", GIMP_STOCK_SELECTION_TO_CHANNEL }, NULL, @@ -308,12 +308,12 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_BRANCH (N_("/_View")), - { { N_("/View/New View"), "", + { { N_("/View/_New View"), "", view_new_view_cmd_callback, 0, "", GTK_STOCK_NEW }, NULL, "view/new_view.html", NULL }, - { { N_("/View/Dot for Dot"), NULL, + { { N_("/View/_Dot for Dot"), NULL, view_dot_for_dot_cmd_callback, 0, "" }, NULL, "view/dot_for_dot.html", NULL }, @@ -322,17 +322,17 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_BRANCH (N_("/View/_Zoom")), - { { N_("/View/Zoom/Zoom Out"), "minus", + { { N_("/View/Zoom/Zoom _Out"), "minus", view_zoom_out_cmd_callback, 0, "", GTK_STOCK_ZOOM_OUT }, NULL, "view/zoom.html", NULL }, - { { N_("/View/Zoom/Zoom In"), "plus", + { { N_("/View/Zoom/Zoom _In"), "plus", view_zoom_in_cmd_callback, 0, "", GTK_STOCK_ZOOM_IN }, NULL, "view/zoom.html", NULL }, - { { N_("/View/Zoom/Zoom to Fit Window"), "E", + { { N_("/View/Zoom/Zoom to _Fit Window"), "E", view_zoom_fit_cmd_callback, 0, "", GTK_STOCK_ZOOM_FIT }, NULL, @@ -379,89 +379,89 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_SEPARATOR ("/View/Zoom/---"), - { { "/View/Zoom/Other...", NULL, + { { "/View/Zoom/O_ther...", NULL, view_zoom_other_cmd_callback, 0, "/View/Zoom/16:1" }, NULL, "view/zoom.html", NULL }, MENU_SEPARATOR ("/View/---"), - { { N_("/View/Info Window..."), "I", + { { N_("/View/_Info Window..."), "I", view_info_window_cmd_callback, 0, "", GIMP_STOCK_INFO }, NULL, "view/dialogs/info_window.html", NULL }, - { { N_("/View/Navigation Window..."), "N", + { { N_("/View/Na_vigation Window..."), "N", view_navigation_window_cmd_callback, 0, "", GIMP_STOCK_NAVIGATION }, NULL, "view/dialogs/navigation_window.html", NULL }, - { { N_("/View/Display Filters..."), NULL, + { { N_("/View/Display _Filters..."), NULL, view_display_filters_cmd_callback, 0 }, NULL, "dialogs/display_filters/display_filters.html", NULL }, MENU_SEPARATOR ("/View/---"), - { { N_("/View/Show Selection"), "T", + { { N_("/View/Show _Selection"), "T", view_toggle_selection_cmd_callback, 0, "" }, NULL, "view/toggle_selection.html", NULL }, - { { N_("/View/Show Layer Boundary"), NULL, + { { N_("/View/Show _Layer Boundary"), NULL, view_toggle_layer_boundary_cmd_callback, 0, "" }, NULL, "view/toggle_selection.html", NULL }, - { { N_("/View/Show Guides"), "T", + { { N_("/View/Show _Guides"), "T", view_toggle_guides_cmd_callback, 0, "" }, NULL, "view/toggle_guides.html", NULL }, - { { N_("/View/Snap to Guides"), NULL, + { { N_("/View/Sn_ap to Guides"), NULL, view_snap_to_guides_cmd_callback, 0, "" }, NULL, "view/snap_to_guides.html", NULL }, MENU_SEPARATOR ("/View/---"), - { { N_("/View/Configure Grid..."), NULL, + { { N_("/View/Configure G_rid..."), NULL, view_configure_grid_cmd_callback, 0, NULL }, NULL, "view/configure_grid.html", NULL }, - { { N_("/View/Show Grid"), NULL, + { { N_("/View/S_how Grid"), NULL, view_toggle_grid_cmd_callback, 0, "" }, NULL, "view/toggle_grid.html", NULL }, - { { N_("/View/Snap to Grid"), NULL, + { { N_("/View/Sna_p to Grid"), NULL, view_snap_to_grid_cmd_callback, 0, "" }, NULL, "view/snap_to_grid.html", NULL }, MENU_SEPARATOR ("/View/---"), - { { N_("/View/Show Menubar"), NULL, + { { N_("/View/Show _Menubar"), NULL, view_toggle_menubar_cmd_callback, 0, "" }, NULL, "view/toggle_menubar.html", NULL }, - { { N_("/View/Show Rulers"), "R", + { { N_("/View/Show R_ulers"), "R", view_toggle_rulers_cmd_callback, 0, "" }, NULL, "view/toggle_rulers.html", NULL }, - { { N_("/View/Show Scrollbars"), NULL, + { { N_("/View/Show Scroll_bars"), NULL, view_toggle_scrollbars_cmd_callback, 0, "" }, NULL, "view/toggle_rulers.html", NULL }, - { { N_("/View/Show Statusbar"), NULL, + { { N_("/View/Show S_tatusbar"), NULL, view_toggle_statusbar_cmd_callback, 0, "" }, NULL, "view/toggle_statusbar.html", NULL }, MENU_SEPARATOR ("/View/---"), - { { N_("/View/Shrink Wrap"), "E", + { { N_("/View/Shrink _Wrap"), "E", view_shrink_wrap_cmd_callback, 0 }, NULL, "view/shrink_wrap.html", NULL }, - { { N_("/View/Fullscreen"), "F11", + { { N_("/View/Fullscr_een"), "F11", view_fullscreen_cmd_callback, 0, "" }, NULL, "view/fullscreen.html", NULL }, @@ -474,17 +474,17 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_BRANCH (N_("/Image/_Mode")), - { { N_("/Image/Mode/RGB"), NULL, + { { N_("/Image/Mode/_RGB"), NULL, image_convert_rgb_cmd_callback, 0, "", GIMP_STOCK_CONVERT_RGB }, NULL, "image/mode/convert_to_rgb.html", NULL }, - { { N_("/Image/Mode/Grayscale"), NULL, + { { N_("/Image/Mode/_Grayscale"), NULL, image_convert_grayscale_cmd_callback, 0, "", GIMP_STOCK_CONVERT_GRAYSCALE }, NULL, "image/mode/convert_to_grayscale.html", NULL }, - { { N_("/Image/Mode/Indexed..."), NULL, + { { N_("/Image/Mode/_Indexed..."), NULL, image_convert_indexed_cmd_callback, 0, "", GIMP_STOCK_CONVERT_INDEXED }, NULL, @@ -494,12 +494,12 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_BRANCH (N_("/Image/_Transform")), - { { N_("/Image/Transform/Flip Horizontally"), NULL, + { { N_("/Image/Transform/Flip _Horizontally"), NULL, image_flip_cmd_callback, GIMP_ORIENTATION_HORIZONTAL, "", GIMP_STOCK_FLIP_HORIZONTAL }, NULL, "image/dialogs/flip_image.html", NULL }, - { { N_("/Image/Transform/Flip Vertically"), NULL, + { { N_("/Image/Transform/Flip _Vertically"), NULL, image_flip_cmd_callback, GIMP_ORIENTATION_VERTICAL, "", GIMP_STOCK_FLIP_VERTICAL }, NULL, @@ -508,17 +508,17 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_SEPARATOR ("/Image/Transform/---"), /* please use the degree symbol in the translation */ - { { N_("/Image/Transform/Rotate 90 degrees CW"), NULL, + { { N_("/Image/Transform/Rotate 90 degrees _CW"), NULL, image_rotate_cmd_callback, GIMP_ROTATE_90, "", GIMP_STOCK_ROTATE_90 }, NULL, "image/dialogs/rotate_image.html", NULL }, - { { N_("/Image/Transform/Rotate 90 degrees CCW"), NULL, + { { N_("/Image/Transform/Rotate 90 degrees CC_W"), NULL, image_rotate_cmd_callback, GIMP_ROTATE_270, "", GIMP_STOCK_ROTATE_270 }, NULL, "image/dialogs/rotate_image.html", NULL }, - { { N_("/Image/Transform/Rotate 180 degrees"), NULL, + { { N_("/Image/Transform/Rotate _180 degrees"), NULL, image_rotate_cmd_callback, GIMP_ROTATE_180, "", GIMP_STOCK_ROTATE_180 }, NULL, @@ -528,22 +528,22 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_SEPARATOR ("/Image/---"), - { { N_("/Image/Canvas Size..."), NULL, + { { N_("/Image/Can_vas Size..."), NULL, image_resize_cmd_callback, 0, "", GIMP_STOCK_RESIZE }, NULL, "image/dialogs/set_canvas_size.html", NULL }, - { { N_("/Image/Scale Image..."), NULL, + { { N_("/Image/_Scale Image..."), NULL, image_scale_cmd_callback, 0, "", GIMP_STOCK_SCALE }, NULL, "image/dialogs/scale_image.html", NULL }, - { { N_("/Image/Crop Image"), NULL, + { { N_("/Image/_Crop Image"), NULL, image_crop_cmd_callback, 0, "", GIMP_STOCK_TOOL_CROP }, NULL, "image/dialogs/crop_image.html", NULL }, - { { N_("/Image/Duplicate"), "D", + { { N_("/Image/_Duplicate"), "D", image_duplicate_cmd_callback, 0, "", GIMP_STOCK_DUPLICATE }, NULL, @@ -551,11 +551,11 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_SEPARATOR ("/Image/---"), - { { N_("/Image/Merge Visible Layers..."), "M", + { { N_("/Image/_Merge Visible Layers..."), "M", image_merge_layers_cmd_callback, 0 }, NULL, "layers/dialogs/merge_visible_layers.html", NULL }, - { { N_("/Image/Flatten Image"), NULL, + { { N_("/Image/_Flatten Image"), NULL, image_flatten_image_cmd_callback, 0 }, NULL, "layers/flatten_image.html", NULL }, @@ -564,27 +564,27 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_BRANCH (N_("/_Layer")), - { { N_("/Layer/New Layer..."), "", + { { N_("/Layer/_New Layer..."), "", layers_new_cmd_callback, 0, "", GTK_STOCK_NEW }, NULL, "layers/dialogs/new_layer.html", NULL }, - { { N_("/Layer/Duplicate Layer"), NULL, + { { N_("/Layer/Du_plicate Layer"), NULL, layers_duplicate_cmd_callback, 0, "", GIMP_STOCK_DUPLICATE }, NULL, "layers/duplicate_layer.html", NULL }, - { { N_("/Layer/Anchor Layer"), "H", + { { N_("/Layer/Anchor _Layer"), "H", layers_anchor_cmd_callback, 0, "", GIMP_STOCK_ANCHOR }, NULL, "layers/anchor_layer.html", NULL }, - { { N_("/Layer/Merge Down"), "M", + { { N_("/Layer/Me_rge Down"), "M", layers_merge_down_cmd_callback, 0, "", GIMP_STOCK_MERGE_DOWN }, NULL, "layers/merge_visible_layers.html", NULL }, - { { N_("/Layer/Delete Layer"), NULL, + { { N_("/Layer/_Delete Layer"), NULL, layers_delete_cmd_callback, 0, "", GTK_STOCK_DELETE }, NULL, @@ -594,43 +594,43 @@ GimpItemFactoryEntry image_menu_entries[] = /* /Layer/Stack */ - MENU_BRANCH (N_("/Layer/_Stack")), + MENU_BRANCH (N_("/Layer/Stac_k")), - { { N_("/Layer/Stack/Select Previous Layer"), "Prior", + { { N_("/Layer/Stack/Select _Previous Layer"), "Prior", layers_select_previous_cmd_callback, 0 }, NULL, "layers/stack/stack.html#previous_layer", NULL }, - { { N_("/Layer/Stack/Select Next Layer"), "Next", + { { N_("/Layer/Stack/Select _Next Layer"), "Next", layers_select_next_cmd_callback, 0 }, NULL, "layers/stack/stack.html#next_layer", NULL }, - { { N_("/Layer/Stack/Select Top Layer"), "Home", + { { N_("/Layer/Stack/Select _Top Layer"), "Home", layers_select_top_cmd_callback, 0 }, NULL, "layers/stack/stack.html#previous_layer", NULL }, - { { N_("/Layer/Stack/Select Bottom Layer"), "End", + { { N_("/Layer/Stack/Select _Bottom Layer"), "End", layers_select_bottom_cmd_callback, 0 }, NULL, "layers/stack/stack.html#next_layer", NULL }, MENU_SEPARATOR ("/Layer/Stack/---"), - { { N_("/Layer/Stack/Raise Layer"), "Prior", + { { N_("/Layer/Stack/_Raise Layer"), "Prior", layers_raise_cmd_callback, 0, "", GTK_STOCK_GO_UP }, NULL, "layers/stack/stack.html#raise_layer", NULL }, - { { N_("/Layer/Stack/Lower Layer"), "Next", + { { N_("/Layer/Stack/_Lower Layer"), "Next", layers_lower_cmd_callback, 0, "", GTK_STOCK_GO_DOWN }, NULL, "layers/stack/stack.html#lower_layer", NULL }, - { { N_("/Layer/Stack/Layer to Top"), "Home", + { { N_("/Layer/Stack/Layer to T_op"), "Home", layers_raise_to_top_cmd_callback, 0, "", GTK_STOCK_GOTO_TOP }, NULL, "layers/stack/stack.html#layer_to_top", NULL }, - { { N_("/Layer/Stack/Layer to Bottom"), "End", + { { N_("/Layer/Stack/Layer to Botto_m"), "End", layers_lower_to_bottom_cmd_callback, 0, "", GTK_STOCK_GOTO_BOTTOM }, NULL, @@ -640,42 +640,42 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_BRANCH (N_("/Layer/_Colors")), - { { N_("/Layer/Colors/Color Balance..."), NULL, + { { N_("/Layer/Colors/Color _Balance..."), NULL, tools_select_cmd_callback, 0, "", GIMP_STOCK_TOOL_COLOR_BALANCE }, "gimp-color-balance-tool", "tools/color_balance.html", NULL }, - { { N_("/Layer/Colors/Hue-Saturation..."), NULL, + { { N_("/Layer/Colors/Hue-_Saturation..."), NULL, tools_select_cmd_callback, 0, "", GIMP_STOCK_TOOL_HUE_SATURATION }, "gimp-hue-saturation-tool", "tools/hue_saturation.html", NULL }, - { { N_("/Layer/Colors/Colorize..."), NULL, + { { N_("/Layer/Colors/Colori_ze..."), NULL, tools_select_cmd_callback, 0, "", GIMP_STOCK_TOOL_COLORIZE }, "gimp-colorize-tool", "tools/colorize.html", NULL }, - { { N_("/Layer/Colors/Brightness-Contrast..."), NULL, + { { N_("/Layer/Colors/B_rightness-Contrast..."), NULL, tools_select_cmd_callback, 0, "", GIMP_STOCK_TOOL_BRIGHTNESS_CONTRAST }, "gimp-brightness-contrast-tool", "tools/brightness-contrast.html", NULL }, - { { N_("/Layer/Colors/Threshold..."), NULL, + { { N_("/Layer/Colors/_Threshold..."), NULL, tools_select_cmd_callback, 0, "", GIMP_STOCK_TOOL_THRESHOLD }, "gimp-threshold-tool", "tools/threshold.html", NULL }, - { { N_("/Layer/Colors/Levels..."), NULL, + { { N_("/Layer/Colors/_Levels..."), NULL, tools_select_cmd_callback, 0, "", GIMP_STOCK_TOOL_LEVELS }, "gimp-levels-tool", "tools/levels.html", NULL }, - { { N_("/Layer/Colors/Curves..."), NULL, + { { N_("/Layer/Colors/_Curves..."), NULL, tools_select_cmd_callback, 0, "", GIMP_STOCK_TOOL_CURVES }, "gimp-curves-tool", "tools/curves.html", NULL }, - { { N_("/Layer/Colors/Posterize..."), NULL, + { { N_("/Layer/Colors/_Posterize..."), NULL, tools_select_cmd_callback, 0, "", GIMP_STOCK_TOOL_POSTERIZE }, "gimp-posterize-tool", @@ -683,12 +683,12 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_SEPARATOR ("/Layer/Colors/---"), - { { N_("/Layer/Colors/Desaturate"), NULL, + { { N_("/Layer/Colors/_Desaturate"), NULL, drawable_desaturate_cmd_callback, 0, "", GIMP_STOCK_CONVERT_GRAYSCALE }, NULL, "layers/colors/desaturate.html", NULL }, - { { N_("/Layer/Colors/Invert"), NULL, + { { N_("/Layer/Colors/In_vert"), NULL, drawable_invert_cmd_callback, 0, "", GIMP_STOCK_INVERT }, NULL, @@ -698,14 +698,14 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_BRANCH (N_("/Layer/Colors/_Auto")), - { { N_("/Layer/Colors/Auto/Equalize"), NULL, + { { N_("/Layer/Colors/Auto/_Equalize"), NULL, drawable_equalize_cmd_callback, 0 }, NULL, "layers/colors/auto/equalize.html", NULL }, MENU_SEPARATOR ("/Layer/Colors/---"), - { { N_("/Layer/Colors/Histogram..."), NULL, + { { N_("/Layer/Colors/_Histogram..."), NULL, tools_select_cmd_callback, 0, "", GIMP_STOCK_TOOL_HISTOGRAM }, "gimp-histogram-tool", @@ -715,20 +715,20 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_BRANCH (N_("/Layer/_Mask")), - { { N_("/Layer/Mask/Add Layer Mask..."), NULL, + { { N_("/Layer/Mask/_Add Layer Mask..."), NULL, layers_add_layer_mask_cmd_callback, 0 }, NULL, "layers/dialogs/add_layer_mask.html", NULL }, - { { N_("/Layer/Mask/Apply Layer Mask"), NULL, + { { N_("/Layer/Mask/A_pply Layer Mask"), NULL, layers_apply_layer_mask_cmd_callback, 0 }, NULL, "layers/apply_mask.html", NULL }, - { { N_("/Layer/Mask/Delete Layer Mask"), NULL, + { { N_("/Layer/Mask/_Delete Layer Mask"), NULL, layers_delete_layer_mask_cmd_callback, 0, "", GTK_STOCK_DELETE }, NULL, "layers/delete_mask.html", NULL }, - { { N_("/Layer/Mask/Mask to Selection"), NULL, + { { N_("/Layer/Mask/_Mask to Selection"), NULL, layers_mask_select_cmd_callback, 0, "", GIMP_STOCK_SELECTION_REPLACE }, NULL, @@ -738,11 +738,11 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_BRANCH (N_("/Layer/Tr_ansparency")), - { { N_("/Layer/Transparency/Add Alpha Channel"), NULL, + { { N_("/Layer/Transparency/_Add Alpha Channel"), NULL, layers_add_alpha_channel_cmd_callback, 0 }, NULL, "layers/add_alpha_channel.html", NULL }, - { { N_("/Layer/Transparency/Alpha to Selection"), NULL, + { { N_("/Layer/Transparency/Al_pha to Selection"), NULL, layers_alpha_select_cmd_callback, 0, "", GIMP_STOCK_SELECTION_REPLACE }, NULL, @@ -754,12 +754,12 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_BRANCH (N_("/Layer/_Transform")), - { { N_("/Layer/Transform/Flip Horizontally"), NULL, + { { N_("/Layer/Transform/Flip _Horizontally"), NULL, drawable_flip_cmd_callback, GIMP_ORIENTATION_HORIZONTAL, "", GIMP_STOCK_FLIP_HORIZONTAL }, NULL, "layers/flip_layer.html", NULL }, - { { N_("/Layer/Transform/Flip Vertically"), NULL, + { { N_("/Layer/Transform/Flip _Vertically"), NULL, drawable_flip_cmd_callback, GIMP_ORIENTATION_VERTICAL, "", GIMP_STOCK_FLIP_VERTICAL }, NULL, @@ -767,22 +767,22 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_SEPARATOR ("/Layer/Transform/---"), - { { N_("/Layer/Transform/Rotate 90 degrees CW"), NULL, + { { N_("/Layer/Transform/Rotate 90 degrees _CW"), NULL, drawable_rotate_cmd_callback, GIMP_ROTATE_90, "", GIMP_STOCK_ROTATE_90 }, NULL, "layers/rotate_layer.html", NULL }, - { { N_("/Layer/Transform/Rotate 90 degrees CCW"), NULL, + { { N_("/Layer/Transform/Rotate 90 degrees CC_W"), NULL, drawable_rotate_cmd_callback, GIMP_ROTATE_270, "", GIMP_STOCK_ROTATE_270 }, NULL, "layers/rotate_layer.html", NULL }, - { { N_("/Layer/Transform/Rotate 180 degrees"), NULL, + { { N_("/Layer/Transform/Rotate _180 degrees"), NULL, drawable_rotate_cmd_callback, GIMP_ROTATE_180, "", GIMP_STOCK_ROTATE_180 }, NULL, "layers/rotate_layer.html", NULL }, - { { N_("/Layer/Transform/Arbitrary Rotation..."), NULL, + { { N_("/Layer/Transform/_Arbitrary Rotation..."), NULL, tools_select_cmd_callback, 0, "", GIMP_STOCK_TOOL_ROTATE }, "gimp-rotate-tool", @@ -790,29 +790,29 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_SEPARATOR ("/Layer/Transform/---"), - { { N_("/Layer/Transform/Offset..."), "O", + { { N_("/Layer/Transform/_Offset..."), "O", drawable_offset_cmd_callback, 0 }, NULL, "layers/dialogs/offset.html", NULL }, MENU_SEPARATOR ("/Layer/---"), - { { N_("/Layer/Layer Boundary Size..."), NULL, + { { N_("/Layer/Layer _Boundary Size..."), NULL, layers_resize_cmd_callback, 0, "", GIMP_STOCK_RESIZE }, NULL, "layers/dialogs/layer_boundary_size.html", NULL }, - { { N_("/Layer/Layer to Imagesize"), NULL, + { { N_("/Layer/Layer to _Imagesize"), NULL, layers_resize_to_image_cmd_callback, 0, "", GIMP_STOCK_LAYER_TO_IMAGESIZE }, NULL, "layers/layer_to_image_size.html", NULL }, - { { N_("/Layer/Scale Layer..."), NULL, + { { N_("/Layer/_Scale Layer..."), NULL, layers_scale_cmd_callback, 0, "", GIMP_STOCK_SCALE }, NULL, "layers/dialogs/scale_layer.html", NULL }, - { { N_("/Layer/Crop Layer"), NULL, + { { N_("/Layer/Cr_op Layer"), NULL, layers_crop_cmd_callback, 0, "", GIMP_STOCK_TOOL_CROP }, NULL, @@ -824,16 +824,16 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_BRANCH (N_("/_Tools")), - { { N_("/Tools/Toolbox"), NULL, + { { N_("/Tools/Tool_box"), NULL, dialogs_show_toolbox_cmd_callback, 0 }, NULL, "toolbox/toolbox.html", NULL }, - { { N_("/Tools/Default Colors"), "D", + { { N_("/Tools/_Default Colors"), "D", tools_default_colors_cmd_callback, 0, "", GIMP_STOCK_DEFAULT_COLORS }, NULL, "toolbox/toolbox.html#default_colors", NULL }, - { { N_("/Tools/Swap Colors"), "X", + { { N_("/Tools/S_wap Colors"), "X", tools_swap_colors_cmd_callback, 0, "", GIMP_STOCK_SWAP_COLORS }, NULL, @@ -850,27 +850,27 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_BRANCH (N_("/_Dialogs")), - MENU_BRANCH (N_("/Dialogs/_Create New Dock")), + MENU_BRANCH (N_("/Dialogs/Create New Doc_k")), - { { N_("/Dialogs/Create New Dock/Layers, Channels & Paths..."), NULL, + { { N_("/Dialogs/Create New Dock/_Layers, Channels & Paths..."), NULL, dialogs_create_lc_cmd_callback, 0 }, NULL, "dialogs/layers_and_channels.html", NULL }, - { { N_("/Dialogs/Create New Dock/Brushes, Patterns & Gradients..."), NULL, + { { N_("/Dialogs/Create New Dock/_Brushes, Patterns & Gradients..."), NULL, dialogs_create_data_cmd_callback, 0 }, NULL, NULL, NULL }, - { { N_("/Dialogs/Create New Dock/Misc. Stuff..."), NULL, + { { N_("/Dialogs/Create New Dock/_Misc. Stuff..."), NULL, dialogs_create_stuff_cmd_callback, 0 }, NULL, NULL, NULL }, - { { N_("/Dialogs/Tool Options..."), NULL, + { { N_("/Dialogs/Tool _Options..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_TOOL_OPTIONS }, "gimp-tool-options", "dialogs/tool_options.html", NULL }, - { { N_("/Dialogs/Device Status..."), NULL, + { { N_("/Dialogs/_Device Status..."), NULL, dialogs_create_toplevel_cmd_callback, 0, "", GIMP_STOCK_DEVICE_STATUS }, "gimp-device-status-dialog", @@ -878,37 +878,37 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_SEPARATOR ("/Dialogs/---"), - { { N_("/Dialogs/Layers..."), "L", + { { N_("/Dialogs/_Layers..."), "L", dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_LAYERS }, "gimp-layer-list", NULL, NULL }, - { { N_("/Dialogs/Channels..."), NULL, + { { N_("/Dialogs/_Channels..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_CHANNELS }, "gimp-channel-list", NULL, NULL }, - { { N_("/Dialogs/Paths..."), NULL, + { { N_("/Dialogs/_Paths..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_PATHS }, "gimp-vectors-list", NULL, NULL }, - { { N_("/Dialogs/Indexed Palette..."), NULL, + { { N_("/Dialogs/_Indexed Palette..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GTK_STOCK_SELECT_COLOR }, "gimp-indexed-palette", "file/dialogs/indexed_palette.html", NULL }, - { { N_("/Dialogs/Selection Editor..."), NULL, + { { N_("/Dialogs/_Selection Editor..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_TOOL_RECT_SELECT }, "gimp-selection-editor", NULL, NULL }, - { { N_("/Dialogs/Navigation..."), NULL, + { { N_("/Dialogs/Na_vigation..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_NAVIGATION }, "gimp-navigation-view", NULL, NULL }, - { { N_("/Dialogs/Undo History..."), NULL, + { { N_("/Dialogs/_Undo History..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GTK_STOCK_UNDO }, "gimp-undo-history", @@ -916,37 +916,37 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_SEPARATOR ("/Dialogs/---"), - { { N_("/Dialogs/Colors..."), NULL, + { { N_("/Dialogs/Colo_rs..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GTK_STOCK_SELECT_COLOR }, "gimp-color-editor", NULL, NULL }, - { { N_("/Dialogs/Brushes..."), "B", + { { N_("/Dialogs/Brus_hes..."), "B", dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_TOOL_PAINTBRUSH }, "gimp-brush-grid", "dialogs/brush_selection.html", NULL }, - { { N_("/Dialogs/Patterns..."), "P", + { { N_("/Dialogs/P_atterns..."), "P", dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_TOOL_BUCKET_FILL }, "gimp-pattern-grid", "dialogs/pattern_selection.html", NULL }, - { { N_("/Dialogs/Gradients..."), "G", + { { N_("/Dialogs/_Gradients..."), "G", dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_TOOL_BLEND }, "gimp-gradient-list", "dialogs/gradient_selection.html", NULL }, - { { N_("/Dialogs/Palettes..."), "P", + { { N_("/Dialogs/Pal_ettes..."), "P", dialogs_create_dockable_cmd_callback, 0, "", GTK_STOCK_SELECT_COLOR }, "gimp-palette-list", "dialogs/palette_selection.html", NULL }, - { { N_("/Dialogs/Fonts..."), NULL, + { { N_("/Dialogs/_Fonts..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GTK_STOCK_SELECT_FONT }, "gimp-font-list", "dialogs/font_selection.html", NULL }, - { { N_("/Dialogs/Buffers..."), "foo", + { { N_("/Dialogs/_Buffers..."), "foo", dialogs_create_dockable_cmd_callback, 0, "", GTK_STOCK_PASTE }, "gimp-buffer-list", @@ -954,22 +954,22 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_SEPARATOR ("/Dialogs/---"), - { { N_("/Dialogs/Images..."), NULL, + { { N_("/Dialogs/I_mages..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_IMAGES }, "gimp-image-list", NULL, NULL }, - { { N_("/Dialogs/Document History..."), "", + { { N_("/Dialogs/Document Histor_y..."), "", dialogs_create_dockable_cmd_callback, 0, "", GTK_STOCK_OPEN }, "gimp-document-list", "dialogs/document_index.html", NULL }, - { { N_("/Dialogs/Templates..."), NULL, + { { N_("/Dialogs/_Templates..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_TEMPLATE }, "gimp-template-list", "dialogs/templates.html", NULL }, - { { N_("/Dialogs/Error Console..."), NULL, + { { N_("/Dialogs/Error Co_nsole..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_WARNING }, "gimp-error-console", @@ -997,7 +997,7 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_BRANCH (N_("/Filters/_Blur")), MENU_BRANCH (N_("/Filters/_Colors")), MENU_BRANCH (N_("/Filters/_Noise")), - MENU_BRANCH (N_("/Filters/_Edge-Detect")), + MENU_BRANCH (N_("/Filters/Edge-De_tect")), MENU_BRANCH (N_("/Filters/En_hance")), MENU_BRANCH (N_("/Filters/_Generic")), @@ -1018,7 +1018,7 @@ GimpItemFactoryEntry image_menu_entries[] = MENU_SEPARATOR ("/Filters/---"), - MENU_BRANCH (N_("/Filters/_Toys")) + MENU_BRANCH (N_("/Filters/To_ys")) }; gint n_image_menu_entries = G_N_ELEMENTS (image_menu_entries); @@ -1339,12 +1339,12 @@ image_menu_update (GtkItemFactory *item_factory, if (undo) undo_name = - g_strdup_printf (_("Undo %s"), + g_strdup_printf (_("_Undo %s"), gimp_object_get_name (GIMP_OBJECT (undo))); if (redo) redo_name = - g_strdup_printf (_("Redo %s"), + g_strdup_printf (_("_Redo %s"), gimp_object_get_name (GIMP_OBJECT (redo))); } diff --git a/app/menus/plug-in-menus.c b/app/menus/plug-in-menus.c index f733760c93..664f311663 100644 --- a/app/menus/plug-in-menus.c +++ b/app/menus/plug-in-menus.c @@ -353,8 +353,8 @@ plug_in_menus_update (GimpItemFactory *item_factory, if (ellipses && ellipses == (basename + strlen (basename) - 3)) *ellipses = '\0'; - repeat = g_strdup_printf (_("Repeat \"%s\""), basename); - reshow = g_strdup_printf (_("Re-show \"%s\""), basename); + repeat = g_strdup_printf (_("Re_peat \"%s\""), basename); + reshow = g_strdup_printf (_("R_e-show \"%s\""), basename); g_free (basename); diff --git a/app/menus/toolbox-menu.c b/app/menus/toolbox-menu.c index d126f12f8d..55afac0553 100644 --- a/app/menus/toolbox-menu.c +++ b/app/menus/toolbox-menu.c @@ -47,12 +47,12 @@ GimpItemFactoryEntry toolbox_menu_entries[] = MENU_BRANCH (N_("/_File")), - { { N_("/File/New..."), "N", + { { N_("/File/_New..."), "N", file_new_cmd_callback, 0, "", GTK_STOCK_NEW }, NULL, "file/dialogs/file_new.html", NULL }, - { { N_("/File/Open..."), "O", + { { N_("/File/_Open..."), "O", file_open_cmd_callback, 0, "", GTK_STOCK_OPEN }, NULL, @@ -60,14 +60,14 @@ GimpItemFactoryEntry toolbox_menu_entries[] = /* /File/Open Recent */ - MENU_BRANCH (N_("/File/_Open Recent")), + MENU_BRANCH (N_("/File/Open _Recent")), { { N_("/File/Open Recent/(None)"), NULL, NULL, 0 }, NULL, NULL, NULL }, MENU_SEPARATOR ("/File/Open Recent/---"), - { { N_("/File/Open Recent/Document History..."), "foo", + { { N_("/File/Open Recent/Document _History..."), "foo", dialogs_create_dockable_cmd_callback, 0, "", GTK_STOCK_OPEN }, "gimp-document-list", @@ -79,7 +79,7 @@ GimpItemFactoryEntry toolbox_menu_entries[] = MENU_SEPARATOR ("/File/---"), - { { N_("/File/Preferences..."), NULL, + { { N_("/File/_Preferences..."), NULL, dialogs_create_toplevel_cmd_callback, 0, "", GTK_STOCK_PREFERENCES }, "gimp-preferences-dialog", @@ -89,27 +89,27 @@ GimpItemFactoryEntry toolbox_menu_entries[] = MENU_BRANCH (N_("/File/_Dialogs")), - MENU_BRANCH (N_("/File/Dialogs/_Create New Dock")), + MENU_BRANCH (N_("/File/Dialogs/Create New Doc_k")), - { { N_("/File/Dialogs/Create New Dock/Layers, Channels & Paths..."), NULL, + { { N_("/File/Dialogs/Create New Dock/_Layers, Channels & Paths..."), NULL, dialogs_create_lc_cmd_callback, 0 }, NULL, "file/dialogs/layers_and_channels.html", NULL }, - { { N_("/File/Dialogs/Create New Dock/Brushes, Patterns & Gradients..."), NULL, + { { N_("/File/Dialogs/Create New Dock/_Brushes, Patterns & Gradients..."), NULL, dialogs_create_data_cmd_callback, 0 }, NULL, NULL, NULL }, - { { N_("/File/Dialogs/Create New Dock/Misc. Stuff..."), NULL, + { { N_("/File/Dialogs/Create New Dock/_Misc. Stuff..."), NULL, dialogs_create_stuff_cmd_callback, 0 }, NULL, NULL, NULL }, - { { N_("/File/Dialogs/Tool Options..."), "T", + { { N_("/File/Dialogs/Tool _Options..."), "T", dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_TOOL_OPTIONS }, "gimp-tool-options", "file/dialogs/tool_options.html", NULL }, - { { N_("/File/Dialogs/Device Status..."), NULL, + { { N_("/File/Dialogs/_Device Status..."), NULL, dialogs_create_toplevel_cmd_callback, 0, "", GIMP_STOCK_DEVICE_STATUS }, "gimp-device-status-dialog", @@ -117,37 +117,37 @@ GimpItemFactoryEntry toolbox_menu_entries[] = MENU_SEPARATOR ("/File/Dialogs/---"), - { { N_("/File/Dialogs/Layers..."), "L", + { { N_("/File/Dialogs/_Layers..."), "L", dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_LAYERS }, "gimp-layer-list", NULL, NULL }, - { { N_("/File/Dialogs/Channels..."), NULL, + { { N_("/File/Dialogs/_Channels..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_CHANNELS }, "gimp-channel-list", NULL, NULL }, - { { N_("/File/Dialogs/Paths..."), NULL, + { { N_("/File/Dialogs/_Paths..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_PATHS }, "gimp-vectors-list", NULL, NULL }, - { { N_("/File/Dialogs/Indexed Palette..."), NULL, + { { N_("/File/Dialogs/_Indexed Palette..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GTK_STOCK_SELECT_COLOR }, "gimp-indexed-palette", "file/dialogs/indexed_palette.html", NULL }, - { { N_("/File/Dialogs/Selection Editor..."), NULL, + { { N_("/File/Dialogs/_Selection Editor..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_TOOL_RECT_SELECT }, "gimp-selection-editor", NULL, NULL }, - { { N_("/File/Dialogs/Navigation..."), NULL, + { { N_("/File/Dialogs/Na_vigation..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_NAVIGATION }, "gimp-navigation-view", NULL, NULL }, - { { N_("/File/Dialogs/Undo History..."), NULL, + { { N_("/File/Dialogs/_Undo History..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GTK_STOCK_UNDO }, "gimp-undo-history", @@ -155,37 +155,37 @@ GimpItemFactoryEntry toolbox_menu_entries[] = MENU_SEPARATOR ("/File/Dialogs/---"), - { { N_("/File/Dialogs/Colors..."), NULL, + { { N_("/File/Dialogs/Colo_rs..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GTK_STOCK_SELECT_COLOR }, "gimp-color-editor", NULL, NULL }, - { { N_("/File/Dialogs/Brushes..."), "B", + { { N_("/File/Dialogs/Brus_hes..."), "B", dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_TOOL_PAINTBRUSH }, "gimp-brush-grid", "file/dialogs/brush_selection.html", NULL }, - { { N_("/File/Dialogs/Patterns..."), "P", + { { N_("/File/Dialogs/P_atterns..."), "P", dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_TOOL_BUCKET_FILL }, "gimp-pattern-grid", "file/dialogs/pattern_selection.html", NULL }, - { { N_("/File/Dialogs/Gradients..."), "G", + { { N_("/File/Dialogs/_Gradients..."), "G", dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_TOOL_BLEND }, "gimp-gradient-list", "file/dialogs/gradient_selection.html", NULL }, - { { N_("/File/Dialogs/Palettes..."), "P", + { { N_("/File/Dialogs/Pal_ettes..."), "P", dialogs_create_dockable_cmd_callback, 0, "", GTK_STOCK_SELECT_COLOR }, "gimp-palette-list", "file/dialogs/palette_selection.html", NULL }, - { { N_("/File/Dialogs/Fonts..."), NULL, + { { N_("/File/Dialogs/_Fonts..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GTK_STOCK_SELECT_FONT }, "gimp-font-list", "file/dialogs/font_selection.html", NULL }, - { { N_("/File/Dialogs/Buffers..."), "foo", + { { N_("/File/Dialogs/_Buffers..."), "foo", dialogs_create_dockable_cmd_callback, 0, "", GTK_STOCK_PASTE }, "gimp-buffer-list", @@ -193,39 +193,39 @@ GimpItemFactoryEntry toolbox_menu_entries[] = MENU_SEPARATOR ("/File/Dialogs/---"), - { { N_("/File/Dialogs/Images..."), NULL, + { { N_("/File/Dialogs/I_mages..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_IMAGES }, "gimp-image-list", NULL, NULL }, - { { N_("/File/Dialogs/Document History..."), "", + { { N_("/File/Dialogs/Document Histor_y..."), "", dialogs_create_dockable_cmd_callback, 0, "", GTK_STOCK_OPEN }, "gimp-document-list", "file/dialogs/document_index.html", NULL }, - { { N_("/File/Dialogs/Templates..."), "", + { { N_("/File/Dialogs/_Templates..."), "", dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_TEMPLATE }, "gimp-template-list", "file/dialogs/templates.html", NULL }, - { { N_("/File/Dialogs/Error Console..."), NULL, + { { N_("/File/Dialogs/Error Co_nsole..."), NULL, dialogs_create_dockable_cmd_callback, 0, "", GIMP_STOCK_WARNING }, "gimp-error-console", "file/dialogs/error_console.html", NULL }, #ifdef ENABLE_DEBUG_ENTRIES - { { "/File/Debug/Mem Profile", NULL, + { { "/File/Debug/_Mem Profile", NULL, debug_mem_profile_cmd_callback, 0 }, NULL, NULL, NULL }, - { { "/File/Debug/Dump Items", NULL, + { { "/File/Debug/_Dump Items", NULL, debug_dump_menus_cmd_callback, 0 }, NULL, NULL, NULL }, #endif MENU_SEPARATOR ("/File/---"), - { { N_("/File/Quit"), "Q", + { { N_("/File/_Quit"), "Q", file_quit_cmd_callback, 0, "", GTK_STOCK_QUIT }, NULL, @@ -235,7 +235,7 @@ GimpItemFactoryEntry toolbox_menu_entries[] = MENU_BRANCH (N_("/_Xtns")), - { { N_("/Xtns/Module Manager..."), NULL, + { { N_("/Xtns/_Module Manager..."), NULL, dialogs_create_toplevel_cmd_callback, 0 }, "gimp-module-manager-dialog", "dialogs/module_manager.html", NULL }, @@ -246,22 +246,22 @@ GimpItemFactoryEntry toolbox_menu_entries[] = MENU_BRANCH (N_("/_Help")), - { { N_("/Help/Help..."), "F1", + { { N_("/Help/_Help..."), "F1", help_help_cmd_callback, 0, "", GTK_STOCK_HELP }, NULL, "help/dialogs/help.html", NULL }, - { { N_("/Help/Context Help..."), "F1", + { { N_("/Help/_Context Help..."), "F1", help_context_help_cmd_callback, 0, "", GTK_STOCK_HELP }, NULL, "help/context_help.html", NULL }, - { { N_("/Help/Tip of the Day..."), NULL, + { { N_("/Help/_Tip of the Day..."), NULL, dialogs_create_toplevel_cmd_callback, 0, "", GIMP_STOCK_INFO }, "gimp-tips-dialog", "help/dialogs/tip_of_the_day.html", NULL }, - { { N_("/Help/About..."), NULL, + { { N_("/Help/_About..."), NULL, dialogs_create_toplevel_cmd_callback, 0, "", GIMP_STOCK_WILBER }, "gimp-about-dialog", diff --git a/app/paint/gimpink.c b/app/paint/gimpink.c index 32af4c4a6d..17ebf2aa40 100644 --- a/app/paint/gimpink.c +++ b/app/paint/gimpink.c @@ -166,7 +166,7 @@ gimp_ink_tool_register (GimpToolRegisterCallback callback, "gimp-ink-tool", _("Ink"), _("Draw in ink"), - N_("/Tools/Paint Tools/Ink"), "K", + N_("/Tools/Paint Tools/In_k"), "K", NULL, "tools/ink.html", GIMP_STOCK_TOOL_INK, data); diff --git a/app/tools/gimpairbrushtool.c b/app/tools/gimpairbrushtool.c index 6c1726bb6a..a5ac8cb3c2 100644 --- a/app/tools/gimpairbrushtool.c +++ b/app/tools/gimpairbrushtool.c @@ -60,7 +60,7 @@ gimp_airbrush_tool_register (GimpToolRegisterCallback callback, "gimp-airbrush-tool", _("Airbrush"), _("Airbrush with variable pressure"), - N_("/Tools/Paint Tools/Airbrush"), "A", + N_("/Tools/Paint Tools/_Airbrush"), "A", NULL, "tools/airbrush.html", GIMP_STOCK_TOOL_AIRBRUSH, data); diff --git a/app/tools/gimpblendtool.c b/app/tools/gimpblendtool.c index b6e9164db0..d042c85e31 100644 --- a/app/tools/gimpblendtool.c +++ b/app/tools/gimpblendtool.c @@ -95,7 +95,7 @@ gimp_blend_tool_register (GimpToolRegisterCallback callback, "gimp-blend-tool", _("Blend"), _("Fill with a color gradient"), - N_("/Tools/Paint Tools/Blend"), "L", + N_("/Tools/Paint Tools/Blen_d"), "L", NULL, "tools/blend.html", GIMP_STOCK_TOOL_BLEND, data); diff --git a/app/tools/gimpbrightnesscontrasttool.c b/app/tools/gimpbrightnesscontrasttool.c index 03a80be913..990fbe1f8b 100644 --- a/app/tools/gimpbrightnesscontrasttool.c +++ b/app/tools/gimpbrightnesscontrasttool.c @@ -81,7 +81,7 @@ gimp_brightness_contrast_tool_register (GimpToolRegisterCallback callback, "gimp-brightness-contrast-tool", _("Brightness-Contrast"), _("Adjust brightness and contrast"), - N_("/Tools/Color Tools/Brightness-Contrast..."), NULL, + N_("/Tools/Color Tools/B_rightness-Contrast..."), NULL, NULL, "tools/brightness_contrast.html", GIMP_STOCK_TOOL_BRIGHTNESS_CONTRAST, data); diff --git a/app/tools/gimpbucketfilltool.c b/app/tools/gimpbucketfilltool.c index 116447d363..0e16dfdc65 100644 --- a/app/tools/gimpbucketfilltool.c +++ b/app/tools/gimpbucketfilltool.c @@ -87,7 +87,7 @@ gimp_bucket_fill_tool_register (GimpToolRegisterCallback callback, "gimp-bucket-fill-tool", _("Bucket Fill"), _("Fill with a color or pattern"), - N_("/Tools/Paint Tools/Bucket Fill"), "B", + N_("/Tools/Paint Tools/_Bucket Fill"), "B", NULL, "tools/bucket_fill.html", GIMP_STOCK_TOOL_BUCKET_FILL, data); diff --git a/app/tools/gimpbycolorselecttool.c b/app/tools/gimpbycolorselecttool.c index d90e47c622..f987b5dad7 100644 --- a/app/tools/gimpbycolorselecttool.c +++ b/app/tools/gimpbycolorselecttool.c @@ -79,7 +79,7 @@ gimp_by_color_select_tool_register (GimpToolRegisterCallback callback, "gimp-by-color-select-tool", _("Select By Color"), _("Select regions by color"), - N_("/Tools/Selection Tools/By Color Select"), NULL, + N_("/Tools/Selection Tools/_By Color Select"), NULL, NULL, "tools/by_color_select.html", GIMP_STOCK_TOOL_BY_COLOR_SELECT, data); diff --git a/app/tools/gimpclonetool.c b/app/tools/gimpclonetool.c index f4a8b40d97..e65baedbde 100644 --- a/app/tools/gimpclonetool.c +++ b/app/tools/gimpclonetool.c @@ -97,7 +97,7 @@ gimp_clone_tool_register (GimpToolRegisterCallback callback, "gimp-clone-tool", _("Clone"), _("Paint using Patterns or Image Regions"), - N_("/Tools/Paint Tools/Clone"), "C", + N_("/Tools/Paint Tools/_Clone"), "C", NULL, "tools/clone.html", GIMP_STOCK_TOOL_CLONE, data); diff --git a/app/tools/gimpcolorbalancetool.c b/app/tools/gimpcolorbalancetool.c index 0b87fc853d..55d016b244 100644 --- a/app/tools/gimpcolorbalancetool.c +++ b/app/tools/gimpcolorbalancetool.c @@ -93,7 +93,7 @@ gimp_color_balance_tool_register (GimpToolRegisterCallback callback, "gimp-color-balance-tool", _("Color Balance"), _("Adjust color balance"), - N_("/Tools/Color Tools/Color Balance..."), NULL, + N_("/Tools/Color Tools/Color _Balance..."), NULL, NULL, "tools/color_balance.html", GIMP_STOCK_TOOL_COLOR_BALANCE, data); diff --git a/app/tools/gimpcolorizetool.c b/app/tools/gimpcolorizetool.c index c34bccfdbf..357472a75e 100644 --- a/app/tools/gimpcolorizetool.c +++ b/app/tools/gimpcolorizetool.c @@ -92,7 +92,7 @@ gimp_colorize_tool_register (GimpToolRegisterCallback callback, "gimp-colorize-tool", _("Colorize"), _("Colorize the image"), - N_("/Tools/Color Tools/Colorize..."), NULL, + N_("/Tools/Color Tools/Colori_ze..."), NULL, NULL, "tools/colorize.html", GIMP_STOCK_TOOL_COLORIZE, data); diff --git a/app/tools/gimpcolorpickertool.c b/app/tools/gimpcolorpickertool.c index 4f6f216655..c59160c519 100644 --- a/app/tools/gimpcolorpickertool.c +++ b/app/tools/gimpcolorpickertool.c @@ -101,7 +101,7 @@ gimp_color_picker_tool_register (GimpToolRegisterCallback callback, "gimp-color-picker-tool", _("Color Picker"), _("Pick colors from the image"), - N_("/Tools/Color Picker"), "O", + N_("/Tools/C_olor Picker"), "O", NULL, "tools/color_picker.html", GIMP_STOCK_TOOL_COLOR_PICKER, data); diff --git a/app/tools/gimpconvolvetool.c b/app/tools/gimpconvolvetool.c index 5abdbef8ad..4b0fb0ab4d 100644 --- a/app/tools/gimpconvolvetool.c +++ b/app/tools/gimpconvolvetool.c @@ -89,7 +89,7 @@ gimp_convolve_tool_register (GimpToolRegisterCallback callback, "gimp-convolve-tool", _("Convolve"), _("Blur or Sharpen"), - N_("/Tools/Paint Tools/Convolve"), "V", + N_("/Tools/Paint Tools/Con_volve"), "V", NULL, "tools/convolve.html", GIMP_STOCK_TOOL_BLUR, data); diff --git a/app/tools/gimpcroptool.c b/app/tools/gimpcroptool.c index 93e94edda4..7656691217 100644 --- a/app/tools/gimpcroptool.c +++ b/app/tools/gimpcroptool.c @@ -158,7 +158,7 @@ gimp_crop_tool_register (GimpToolRegisterCallback callback, "gimp-crop-tool", _("Crop & Resize"), _("Crop or Resize an image"), - N_("/Tools/Transform Tools/Crop & Resize"), "C", + N_("/Tools/Transform Tools/_Crop & Resize"), "C", NULL, "tools/crop_tool.html", GIMP_STOCK_TOOL_CROP, data); diff --git a/app/tools/gimpcurvestool.c b/app/tools/gimpcurvestool.c index 9c1edefabe..bfb1213d72 100644 --- a/app/tools/gimpcurvestool.c +++ b/app/tools/gimpcurvestool.c @@ -158,7 +158,7 @@ gimp_curves_tool_register (GimpToolRegisterCallback callback, "gimp-curves-tool", _("Curves"), _("Adjust color curves"), - N_("/Tools/Color Tools/Curves..."), NULL, + N_("/Tools/Color Tools/_Curves..."), NULL, NULL, "tools/curves.html", GIMP_STOCK_TOOL_CURVES, data); diff --git a/app/tools/gimpdodgeburntool.c b/app/tools/gimpdodgeburntool.c index 52b9daec1e..2f439ab27b 100644 --- a/app/tools/gimpdodgeburntool.c +++ b/app/tools/gimpdodgeburntool.c @@ -69,7 +69,7 @@ gimp_dodgeburn_tool_register (GimpToolRegisterCallback callback, "gimp-dodgeburn-tool", _("Dodge/Burn"), _("Dodge or Burn strokes"), - N_("/Tools/Paint Tools/DodgeBurn"), "D", + N_("/Tools/Paint Tools/Dod_geBurn"), "D", NULL, "tools/dodgeburn.html", GIMP_STOCK_TOOL_DODGE, data); diff --git a/app/tools/gimpellipseselecttool.c b/app/tools/gimpellipseselecttool.c index 519f4ccb00..5426a8c4cf 100644 --- a/app/tools/gimpellipseselecttool.c +++ b/app/tools/gimpellipseselecttool.c @@ -69,7 +69,7 @@ gimp_ellipse_select_tool_register (GimpToolRegisterCallback callback, "gimp-ellipse-select-tool", _("Ellipse Select"), _("Select elliptical regions"), - N_("/Tools/Selection Tools/Ellipse Select"), "E", + N_("/Tools/Selection Tools/_Ellipse Select"), "E", NULL, "tools/ellipse_select.html", GIMP_STOCK_TOOL_ELLIPSE_SELECT, data); diff --git a/app/tools/gimperasertool.c b/app/tools/gimperasertool.c index cd864ea5a0..d823a73df0 100644 --- a/app/tools/gimperasertool.c +++ b/app/tools/gimperasertool.c @@ -69,7 +69,7 @@ gimp_eraser_tool_register (GimpToolRegisterCallback callback, "gimp-eraser-tool", _("Eraser"), _("Erase to background or transparency"), - N_("/Tools/Paint Tools/Eraser"), "E", + N_("/Tools/Paint Tools/_Eraser"), "E", NULL, "tools/eraser.html", GIMP_STOCK_TOOL_ERASER, data); diff --git a/app/tools/gimpfliptool.c b/app/tools/gimpfliptool.c index 72e19ec83e..5e3adce1cf 100644 --- a/app/tools/gimpfliptool.c +++ b/app/tools/gimpfliptool.c @@ -83,7 +83,7 @@ gimp_flip_tool_register (GimpToolRegisterCallback callback, "gimp-flip-tool", _("Flip"), _("Flip the layer or selection"), - N_("/Tools/Transform Tools/Flip"), "F", + N_("/Tools/Transform Tools/_Flip"), "F", NULL, "tools/flip.html", GIMP_STOCK_TOOL_FLIP, data); diff --git a/app/tools/gimpfreeselecttool.c b/app/tools/gimpfreeselecttool.c index d5bbbf29cb..75523e1149 100644 --- a/app/tools/gimpfreeselecttool.c +++ b/app/tools/gimpfreeselecttool.c @@ -95,7 +95,7 @@ gimp_free_select_tool_register (GimpToolRegisterCallback callback, "gimp-free-select-tool", _("Free Select"), _("Select hand-drawn regions"), - N_("/Tools/Selection Tools/Free Select"), "F", + N_("/Tools/Selection Tools/_Free Select"), "F", NULL, "tools/free_select.html", GIMP_STOCK_TOOL_FREE_SELECT, data); diff --git a/app/tools/gimpfuzzyselecttool.c b/app/tools/gimpfuzzyselecttool.c index 021058be2f..7ea3542a8d 100644 --- a/app/tools/gimpfuzzyselecttool.c +++ b/app/tools/gimpfuzzyselecttool.c @@ -97,7 +97,7 @@ gimp_fuzzy_select_tool_register (GimpToolRegisterCallback callback, "gimp-fuzzy-select-tool", _("Fuzzy Select"), _("Select contiguous regions"), - N_("/Tools/Selection Tools/Fuzzy Select"), "Z", + N_("/Tools/Selection Tools/Fu_zzy Select"), "Z", NULL, "tools/fuzzy_select.html", GIMP_STOCK_TOOL_FUZZY_SELECT, data); diff --git a/app/tools/gimphistogramtool.c b/app/tools/gimphistogramtool.c index e8d4d34643..cfee4ce23a 100644 --- a/app/tools/gimphistogramtool.c +++ b/app/tools/gimphistogramtool.c @@ -120,7 +120,7 @@ gimp_histogram_tool_register (GimpToolRegisterCallback callback, "gimp-histogram-tool", _("Histogram"), _("View image histogram"), - N_("/Tools/Color Tools/Histogram..."), NULL, + N_("/Tools/Color Tools/_Histogram..."), NULL, NULL, "tools/histogram.html", GIMP_STOCK_TOOL_HISTOGRAM, data); diff --git a/app/tools/gimphuesaturationtool.c b/app/tools/gimphuesaturationtool.c index a7a54eb97c..1c820a1db4 100644 --- a/app/tools/gimphuesaturationtool.c +++ b/app/tools/gimphuesaturationtool.c @@ -106,7 +106,7 @@ gimp_hue_saturation_tool_register (GimpToolRegisterCallback callback, "gimp-hue-saturation-tool", _("Hue-Saturation"), _("Adjust hue and saturation"), - N_("/Tools/Color Tools/Hue-Saturation..."), NULL, + N_("/Tools/Color Tools/Hue-_Saturation..."), NULL, NULL, "tools/hue_saturation.html", GIMP_STOCK_TOOL_HUE_SATURATION, data); diff --git a/app/tools/gimpinktool.c b/app/tools/gimpinktool.c index 32af4c4a6d..17ebf2aa40 100644 --- a/app/tools/gimpinktool.c +++ b/app/tools/gimpinktool.c @@ -166,7 +166,7 @@ gimp_ink_tool_register (GimpToolRegisterCallback callback, "gimp-ink-tool", _("Ink"), _("Draw in ink"), - N_("/Tools/Paint Tools/Ink"), "K", + N_("/Tools/Paint Tools/In_k"), "K", NULL, "tools/ink.html", GIMP_STOCK_TOOL_INK, data); diff --git a/app/tools/gimpiscissorstool.c b/app/tools/gimpiscissorstool.c index 7ee6c4a763..adf805504a 100644 --- a/app/tools/gimpiscissorstool.c +++ b/app/tools/gimpiscissorstool.c @@ -276,7 +276,7 @@ gimp_iscissors_tool_register (GimpToolRegisterCallback callback, "gimp-iscissors-tool", _("Scissors"), _("Select shapes from image"), - N_("/Tools/Selection Tools/Intelligent Scissors"), + N_("/Tools/Selection Tools/_Intelligent Scissors"), "I", NULL, "tools/iscissors.html", GIMP_STOCK_TOOL_ISCISSORS, diff --git a/app/tools/gimplevelstool.c b/app/tools/gimplevelstool.c index e25884bd08..8daf385be9 100644 --- a/app/tools/gimplevelstool.c +++ b/app/tools/gimplevelstool.c @@ -161,7 +161,7 @@ gimp_levels_tool_register (GimpToolRegisterCallback callback, "gimp-levels-tool", _("Levels"), _("Adjust color levels"), - N_("/Tools/Color Tools/Levels..."), NULL, + N_("/Tools/Color Tools/_Levels..."), NULL, NULL, "tools/levels.html", GIMP_STOCK_TOOL_LEVELS, data); diff --git a/app/tools/gimpmagnifytool.c b/app/tools/gimpmagnifytool.c index b1e6655842..7f5e49946b 100644 --- a/app/tools/gimpmagnifytool.c +++ b/app/tools/gimpmagnifytool.c @@ -94,7 +94,7 @@ gimp_magnify_tool_register (GimpToolRegisterCallback callback, "gimp-magnify-tool", _("Magnify"), _("Zoom in & out"), - N_("/Tools/Magnify"), NULL, + N_("/Tools/M_agnify"), NULL, NULL, "tools/magnify.html", GIMP_STOCK_TOOL_ZOOM, data); diff --git a/app/tools/gimpmeasuretool.c b/app/tools/gimpmeasuretool.c index a25853a40b..1b06941e3c 100644 --- a/app/tools/gimpmeasuretool.c +++ b/app/tools/gimpmeasuretool.c @@ -127,7 +127,7 @@ gimp_measure_tool_register (GimpToolRegisterCallback callback, "gimp-measure-tool", _("Measure"), _("Measure angles and lengths"), - N_("/Tools/Measure"), NULL, + N_("/Tools/_Measure"), NULL, NULL, "tools/measure.html", GIMP_STOCK_TOOL_MEASURE, data); diff --git a/app/tools/gimpmovetool.c b/app/tools/gimpmovetool.c index 903c49a0a2..ba602f464a 100644 --- a/app/tools/gimpmovetool.c +++ b/app/tools/gimpmovetool.c @@ -103,7 +103,7 @@ gimp_move_tool_register (GimpToolRegisterCallback callback, "gimp-move-tool", _("Move"), _("Move layers & selections"), - N_("/Tools/Transform Tools/Move"), "M", + N_("/Tools/Transform Tools/_Move"), "M", NULL, "tools/move.html", GIMP_STOCK_TOOL_MOVE, data); diff --git a/app/tools/gimppaintbrushtool.c b/app/tools/gimppaintbrushtool.c index aad5ccb4a7..c49ea11c7b 100644 --- a/app/tools/gimppaintbrushtool.c +++ b/app/tools/gimppaintbrushtool.c @@ -55,7 +55,7 @@ gimp_paintbrush_tool_register (GimpToolRegisterCallback callback, "gimp-paintbrush-tool", _("Paintbrush"), _("Paint fuzzy brush strokes"), - N_("/Tools/Paint Tools/Paintbrush"), "P", + N_("/Tools/Paint Tools/_Paintbrush"), "P", NULL, "tools/paintbrush.html", GIMP_STOCK_TOOL_PAINTBRUSH, data); diff --git a/app/tools/gimppenciltool.c b/app/tools/gimppenciltool.c index 6c3f458be3..29148699c2 100644 --- a/app/tools/gimppenciltool.c +++ b/app/tools/gimppenciltool.c @@ -54,7 +54,7 @@ gimp_pencil_tool_register (GimpToolRegisterCallback callback, "gimp-pencil-tool", _("Pencil"), _("Paint hard edged pixels"), - N_("/Tools/Paint Tools/Pencil"), "N", + N_("/Tools/Paint Tools/Pe_ncil"), "N", NULL, "tools/pencil.html", GIMP_STOCK_TOOL_PENCIL, data); diff --git a/app/tools/gimpperspectivetool.c b/app/tools/gimpperspectivetool.c index 0d59c12d8a..b4c43c97fd 100644 --- a/app/tools/gimpperspectivetool.c +++ b/app/tools/gimpperspectivetool.c @@ -81,7 +81,7 @@ gimp_perspective_tool_register (GimpToolRegisterCallback callback, "gimp-perspective-tool", _("Perspective"), _("Change perspective of the layer or selection"), - N_("/Tools/Transform Tools/Perspective"), "P", + N_("/Tools/Transform Tools/_Perspective"), "P", NULL, "tools/perspective.html", GIMP_STOCK_TOOL_PERSPECTIVE, data); diff --git a/app/tools/gimpposterizetool.c b/app/tools/gimpposterizetool.c index 8bdd0ef077..008d2009b5 100644 --- a/app/tools/gimpposterizetool.c +++ b/app/tools/gimpposterizetool.c @@ -74,7 +74,7 @@ gimp_posterize_tool_register (GimpToolRegisterCallback callback, "gimp-posterize-tool", _("Posterize"), _("Reduce image to a fixed number of colors"), - N_("/Tools/Color Tools/Posterize..."), NULL, + N_("/Tools/Color Tools/_Posterize..."), NULL, NULL, "tools/posterize.html", GIMP_STOCK_TOOL_POSTERIZE, data); diff --git a/app/tools/gimprectselecttool.c b/app/tools/gimprectselecttool.c index be1f0935f5..d31fe7a241 100644 --- a/app/tools/gimprectselecttool.c +++ b/app/tools/gimprectselecttool.c @@ -94,7 +94,7 @@ gimp_rect_select_tool_register (GimpToolRegisterCallback callback, "gimp-rect-select-tool", _("Rect Select"), _("Select rectangular regions"), - N_("/Tools/Selection Tools/Rect Select"), "R", + N_("/Tools/Selection Tools/_Rect Select"), "R", NULL, "tools/rect_select.html", GIMP_STOCK_TOOL_RECT_SELECT, data); diff --git a/app/tools/gimpregionselecttool.c b/app/tools/gimpregionselecttool.c index 021058be2f..7ea3542a8d 100644 --- a/app/tools/gimpregionselecttool.c +++ b/app/tools/gimpregionselecttool.c @@ -97,7 +97,7 @@ gimp_fuzzy_select_tool_register (GimpToolRegisterCallback callback, "gimp-fuzzy-select-tool", _("Fuzzy Select"), _("Select contiguous regions"), - N_("/Tools/Selection Tools/Fuzzy Select"), "Z", + N_("/Tools/Selection Tools/Fu_zzy Select"), "Z", NULL, "tools/fuzzy_select.html", GIMP_STOCK_TOOL_FUZZY_SELECT, data); diff --git a/app/tools/gimprotatetool.c b/app/tools/gimprotatetool.c index 9d7d59d016..8526849247 100644 --- a/app/tools/gimprotatetool.c +++ b/app/tools/gimprotatetool.c @@ -103,7 +103,7 @@ gimp_rotate_tool_register (GimpToolRegisterCallback callback, "gimp-rotate-tool", _("Rotate"), _("Rotate the layer or selection"), - N_("/Tools/Transform Tools/Rotate"), "R", + N_("/Tools/Transform Tools/_Rotate"), "R", NULL, "tools/rotate.html", GIMP_STOCK_TOOL_ROTATE, data); diff --git a/app/tools/gimpscaletool.c b/app/tools/gimpscaletool.c index b25eedb310..774999c168 100644 --- a/app/tools/gimpscaletool.c +++ b/app/tools/gimpscaletool.c @@ -96,7 +96,7 @@ gimp_scale_tool_register (GimpToolRegisterCallback callback, "gimp-scale-tool", _("Scale"), _("Scale the layer or selection"), - N_("/Tools/Transform Tools/Scale"), "T", + N_("/Tools/Transform Tools/_Scale"), "T", NULL, "tools/transform.html", GIMP_STOCK_TOOL_SCALE, data); diff --git a/app/tools/gimpsheartool.c b/app/tools/gimpsheartool.c index b1d507fbf5..08a6e31a05 100644 --- a/app/tools/gimpsheartool.c +++ b/app/tools/gimpsheartool.c @@ -98,7 +98,7 @@ gimp_shear_tool_register (GimpToolRegisterCallback callback, "gimp-shear-tool", _("Shear"), _("Shear the layer or selection"), - N_("/Tools/Transform Tools/Shear"), "S", + N_("/Tools/Transform Tools/S_hear"), "S", NULL, "tools/shear.html", GIMP_STOCK_TOOL_SHEAR, data); diff --git a/app/tools/gimpsmudgetool.c b/app/tools/gimpsmudgetool.c index b291aa35cc..a966e6e2b0 100644 --- a/app/tools/gimpsmudgetool.c +++ b/app/tools/gimpsmudgetool.c @@ -60,7 +60,7 @@ gimp_smudge_tool_register (GimpToolRegisterCallback callback, "gimp-smudge-tool", _("Smudge"), _("Smudge image"), - N_("/Tools/Paint Tools/Smudge"), "S", + N_("/Tools/Paint Tools/_Smudge"), "S", NULL, "tools/smudge.html", GIMP_STOCK_TOOL_SMUDGE, data); diff --git a/app/tools/gimpsourcetool.c b/app/tools/gimpsourcetool.c index f4a8b40d97..e65baedbde 100644 --- a/app/tools/gimpsourcetool.c +++ b/app/tools/gimpsourcetool.c @@ -97,7 +97,7 @@ gimp_clone_tool_register (GimpToolRegisterCallback callback, "gimp-clone-tool", _("Clone"), _("Paint using Patterns or Image Regions"), - N_("/Tools/Paint Tools/Clone"), "C", + N_("/Tools/Paint Tools/_Clone"), "C", NULL, "tools/clone.html", GIMP_STOCK_TOOL_CLONE, data); diff --git a/app/tools/gimptexttool.c b/app/tools/gimptexttool.c index 9bdb89cdb3..7479b044ce 100644 --- a/app/tools/gimptexttool.c +++ b/app/tools/gimptexttool.c @@ -114,7 +114,7 @@ gimp_text_tool_register (GimpToolRegisterCallback callback, "gimp-text-tool", _("Text"), _("Add text to the image"), - N_("/Tools/Text"), "T", + N_("/Tools/Te_xt"), "T", NULL, "tools/text.html", GIMP_STOCK_TOOL_TEXT, data); diff --git a/app/tools/gimpthresholdtool.c b/app/tools/gimpthresholdtool.c index 79f0b7ac26..7e9669fcc0 100644 --- a/app/tools/gimpthresholdtool.c +++ b/app/tools/gimpthresholdtool.c @@ -87,7 +87,7 @@ gimp_threshold_tool_register (GimpToolRegisterCallback callback, "gimp-threshold-tool", _("Threshold"), _("Reduce image to two colors using a threshold"), - N_("/Tools/Color Tools/Threshold..."), NULL, + N_("/Tools/Color Tools/_Threshold..."), NULL, NULL, "tools/threshold.html", GIMP_STOCK_TOOL_THRESHOLD, data); diff --git a/app/tools/gimpvectortool.c b/app/tools/gimpvectortool.c index c988774ccc..b85c582811 100644 --- a/app/tools/gimpvectortool.c +++ b/app/tools/gimpvectortool.c @@ -113,7 +113,7 @@ gimp_vector_tool_register (GimpToolRegisterCallback callback, "gimp-vector-tool", _("Vectors"), _("the most promising path tool prototype... :-)"), - N_("/Tools/Vectors"), NULL, + N_("/Tools/_Vectors"), NULL, NULL, "tools/vector.html", GIMP_STOCK_TOOL_PATH, data);