app/gui/image-menu.c app/gui/plug-in-menus.c app/gui/toolbox-menu.c Added

2003-07-01  Jakub Steiner <jimmac@ximian.com>

* 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.
This commit is contained in:
Jakub Steiner 2003-07-01 16:22:03 +00:00 committed by Jakub Steiner
parent a8f6d6de9b
commit 7e6b71c8fd
48 changed files with 417 additions and 409 deletions

View File

@ -1,3 +1,11 @@
2003-07-01 Jakub Steiner <jimmac@ximian.com>
* 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 <sven@gimp.org>
* plug-ins/ifscompose/ifscompose.[ch]

View File

@ -82,12 +82,12 @@ GimpItemFactoryEntry image_menu_entries[] =
MENU_BRANCH (N_("/_File")),
{ { N_("/File/New..."), "<control>N",
{ { N_("/File/_New..."), "<control>N",
file_new_cmd_callback, 1,
"<StockItem>", GTK_STOCK_NEW },
NULL,
"file/dialogs/file_new.html", NULL },
{ { N_("/File/Open..."), "<control>O",
{ { N_("/File/_Open..."), "<control>O",
file_open_cmd_callback, 1,
"<StockItem>", GTK_STOCK_OPEN },
NULL,
@ -95,14 +95,14 @@ GimpItemFactoryEntry image_menu_entries[] =
/* <Image>/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,
"<StockItem>", GTK_STOCK_OPEN },
"gimp-document-list",
@ -110,25 +110,25 @@ GimpItemFactoryEntry image_menu_entries[] =
MENU_SEPARATOR ("/File/---"),
{ { N_("/File/Save"), "<control>S",
{ { N_("/File/_Save"), "<control>S",
file_save_cmd_callback, 0,
"<StockItem>", GTK_STOCK_SAVE },
NULL,
"file/dialogs/file_save.html", NULL },
{ { N_("/File/Save as..."), "<control><shift>S",
{ { N_("/File/Save _as..."), "<control><shift>S",
file_save_as_cmd_callback, 0,
"<StockItem>", 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,
"<StockItem>", GTK_STOCK_REVERT_TO_SAVED },
NULL,
@ -136,12 +136,12 @@ GimpItemFactoryEntry image_menu_entries[] =
MENU_SEPARATOR ("/File/---"),
{ { N_( "/File/Close"), "<control>W",
{ { N_( "/File/_Close"), "<control>W",
file_close_cmd_callback, 0,
"<StockItem>", GTK_STOCK_CLOSE },
NULL,
"file/close.html", NULL },
{ { N_("/File/Quit"), "<control>Q",
{ { N_("/File/_Quit"), "<control>Q",
file_quit_cmd_callback, 0,
"<StockItem>", GTK_STOCK_QUIT },
NULL,
@ -166,27 +166,27 @@ GimpItemFactoryEntry image_menu_entries[] =
MENU_SEPARATOR ("/Edit/---"),
{ { N_("/Edit/Cut"), "<control>X",
{ { N_("/Edit/Cu_t"), "<control>X",
edit_cut_cmd_callback, 0,
"<StockItem>", GTK_STOCK_CUT },
NULL,
"edit/cut.html", NULL },
{ { N_("/Edit/Copy"), "<control>C",
{ { N_("/Edit/_Copy"), "<control>C",
edit_copy_cmd_callback, 0,
"<StockItem>", GTK_STOCK_COPY },
NULL,
"edit/copy.html", NULL },
{ { N_("/Edit/Paste"), "<control>V",
{ { N_("/Edit/_Paste"), "<control>V",
edit_paste_cmd_callback, 0,
"<StockItem>", GTK_STOCK_PASTE },
NULL,
"edit/paste.html", NULL },
{ { N_("/Edit/Paste Into"), NULL,
{ { N_("/Edit/Paste _Into"), NULL,
edit_paste_into_cmd_callback, 0,
"<StockItem>", 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,
"<StockItem>", GIMP_STOCK_PASTE_AS_NEW },
NULL,
@ -196,17 +196,17 @@ GimpItemFactoryEntry image_menu_entries[] =
MENU_BRANCH (N_("/Edit/_Buffer")),
{ { N_("/Edit/Buffer/Cut Named..."), "<control><shift>X",
{ { N_("/Edit/Buffer/Cu_t Named..."), "<control><shift>X",
edit_named_cut_cmd_callback, 0,
"<StockItem>", GTK_STOCK_CUT },
NULL,
"edit/dialogs/cut_named.html", NULL },
{ { N_("/Edit/Buffer/Copy Named..."), "<control><shift>C",
{ { N_("/Edit/Buffer/_Copy Named..."), "<control><shift>C",
edit_named_copy_cmd_callback, 0,
"<StockItem>", GTK_STOCK_COPY },
NULL,
"edit/dialogs/copy_named.html", NULL },
{ { N_("/Edit/Buffer/Paste Named..."), "<control><shift>V",
{ { N_("/Edit/Buffer/_Paste Named..."), "<control><shift>V",
edit_named_paste_cmd_callback, 0,
"<StockItem>", GTK_STOCK_PASTE },
NULL,
@ -214,22 +214,22 @@ GimpItemFactoryEntry image_menu_entries[] =
MENU_SEPARATOR ("/Edit/---"),
{ { N_("/Edit/Clear"), "<control>K",
{ { N_("/Edit/Cl_ear"), "<control>K",
edit_clear_cmd_callback, 0,
"<StockItem>", GTK_STOCK_CLEAR },
NULL,
"edit/clear.html", NULL },
{ { N_("/Edit/Fill with FG Color"), "<control>comma",
{ { N_("/Edit/Fill with _FG Color"), "<control>comma",
edit_fill_cmd_callback, (guint) GIMP_FOREGROUND_FILL,
"<StockItem>", GIMP_STOCK_TOOL_BUCKET_FILL },
NULL,
"edit/fill.html", NULL },
{ { N_("/Edit/Fill with BG Color"), "<control>period",
{ { N_("/Edit/Fill with B_G Color"), "<control>period",
edit_fill_cmd_callback, (guint) GIMP_BACKGROUND_FILL,
"<StockItem>", GIMP_STOCK_TOOL_BUCKET_FILL },
NULL,
"edit/fill.html", NULL },
{ { N_("/Edit/Stroke"), NULL,
{ { N_("/Edit/_Stroke"), NULL,
edit_stroke_cmd_callback, 0,
"<StockItem>", GIMP_STOCK_SELECTION_STROKE },
NULL,
@ -241,26 +241,26 @@ GimpItemFactoryEntry image_menu_entries[] =
MENU_BRANCH (N_("/_Select")),
{ { N_("/Select/All"), "<control>A",
{ { N_("/Select/_All"), "<control>A",
select_all_cmd_callback, 0,
"<StockItem>", GIMP_STOCK_SELECTION_ALL },
NULL,
"select/all.html", NULL },
{ { N_("/Select/None"), "<control><shift>A",
{ { N_("/Select/_None"), "<control><shift>A",
select_none_cmd_callback, 0,
"<StockItem>", GIMP_STOCK_SELECTION_NONE },
NULL,
"select/none.html", NULL },
{ { N_("/Select/Invert"), "<control>I",
{ { N_("/Select/_Invert"), "<control>I",
select_invert_cmd_callback, 0,
"<StockItem>", GIMP_STOCK_INVERT },
NULL,
"select/invert.html", NULL },
{ { N_("/Select/Float"), "<control><shift>L",
{ { N_("/Select/_Float"), "<control><shift>L",
select_float_cmd_callback, 0 },
NULL,
"select/float.html", NULL },
{ { N_("/Select/By Color"), "<shift>O",
{ { N_("/Select/_By Color"), "<shift>O",
tools_select_cmd_callback, 0,
"<StockItem>", 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,
"<StockItem>", GIMP_STOCK_SELECTION_SHRINK },
NULL,
"select/dialogs/shrink_selection.html", NULL },
{ { N_("/Select/Grow..."), NULL,
{ { N_("/Select/_Grow..."), NULL,
select_grow_cmd_callback, 0,
"<StockItem>", 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"), "<shift>Q",
{ { N_("/Select/Toggle _QuickMask"), "<shift>Q",
select_toggle_quickmask_cmd_callback, 0,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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, "<ToggleItem>" },
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,
"<StockItem>", 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,
"<StockItem>", GTK_STOCK_ZOOM_IN },
NULL,
"view/zoom.html", NULL },
{ { N_("/View/Zoom/Zoom to Fit Window"), "<control><shift>E",
{ { N_("/View/Zoom/Zoom to _Fit Window"), "<control><shift>E",
view_zoom_fit_cmd_callback, 0,
"<StockItem>", 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..."), "<control><shift>I",
{ { N_("/View/_Info Window..."), "<control><shift>I",
view_info_window_cmd_callback, 0,
"<StockItem>", GIMP_STOCK_INFO },
NULL,
"view/dialogs/info_window.html", NULL },
{ { N_("/View/Navigation Window..."), "<control><shift>N",
{ { N_("/View/Na_vigation Window..."), "<control><shift>N",
view_navigation_window_cmd_callback, 0,
"<StockItem>", 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"), "<control>T",
{ { N_("/View/Show _Selection"), "<control>T",
view_toggle_selection_cmd_callback, 0, "<ToggleItem>" },
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, "<ToggleItem>" },
NULL,
"view/toggle_selection.html", NULL },
{ { N_("/View/Show Guides"), "<control><shift>T",
{ { N_("/View/Show _Guides"), "<control><shift>T",
view_toggle_guides_cmd_callback, 0, "<ToggleItem>" },
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, "<ToggleItem>" },
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, "<ToggleItem>" },
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, "<ToggleItem>" },
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, "<ToggleItem>" },
NULL,
"view/toggle_menubar.html", NULL },
{ { N_("/View/Show Rulers"), "<control><shift>R",
{ { N_("/View/Show R_ulers"), "<control><shift>R",
view_toggle_rulers_cmd_callback, 0, "<ToggleItem>" },
NULL,
"view/toggle_rulers.html", NULL },
{ { N_("/View/Show Scrollbars"), NULL,
{ { N_("/View/Show Scroll_bars"), NULL,
view_toggle_scrollbars_cmd_callback, 0, "<ToggleItem>" },
NULL,
"view/toggle_rulers.html", NULL },
{ { N_("/View/Show Statusbar"), NULL,
{ { N_("/View/Show S_tatusbar"), NULL,
view_toggle_statusbar_cmd_callback, 0, "<ToggleItem>" },
NULL,
"view/toggle_statusbar.html", NULL },
MENU_SEPARATOR ("/View/---"),
{ { N_("/View/Shrink Wrap"), "<control>E",
{ { N_("/View/Shrink _Wrap"), "<control>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, "<ToggleItem>" },
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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", GIMP_STOCK_TOOL_CROP },
NULL,
"image/dialogs/crop_image.html", NULL },
{ { N_("/Image/Duplicate"), "<control>D",
{ { N_("/Image/_Duplicate"), "<control>D",
image_duplicate_cmd_callback, 0,
"<StockItem>", GIMP_STOCK_DUPLICATE },
NULL,
@ -551,11 +551,11 @@ GimpItemFactoryEntry image_menu_entries[] =
MENU_SEPARATOR ("/Image/---"),
{ { N_("/Image/Merge Visible Layers..."), "<control>M",
{ { N_("/Image/_Merge Visible Layers..."), "<control>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,
"<StockItem>", 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,
"<StockItem>", GIMP_STOCK_DUPLICATE },
NULL,
"layers/duplicate_layer.html", NULL },
{ { N_("/Layer/Anchor Layer"), "<control>H",
{ { N_("/Layer/Anchor _Layer"), "<control>H",
layers_anchor_cmd_callback, 0,
"<StockItem>", GIMP_STOCK_ANCHOR },
NULL,
"layers/anchor_layer.html", NULL },
{ { N_("/Layer/Merge Down"), "<control><shift>M",
{ { N_("/Layer/Me_rge Down"), "<control><shift>M",
layers_merge_down_cmd_callback, 0,
"<StockItem>", 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,
"<StockItem>", GTK_STOCK_DELETE },
NULL,
@ -594,43 +594,43 @@ GimpItemFactoryEntry image_menu_entries[] =
/* <Image>/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"), "<shift>Prior",
{ { N_("/Layer/Stack/_Raise Layer"), "<shift>Prior",
layers_raise_cmd_callback, 0,
"<StockItem>", GTK_STOCK_GO_UP },
NULL,
"layers/stack/stack.html#raise_layer", NULL },
{ { N_("/Layer/Stack/Lower Layer"), "<shift>Next",
{ { N_("/Layer/Stack/_Lower Layer"), "<shift>Next",
layers_lower_cmd_callback, 0,
"<StockItem>", GTK_STOCK_GO_DOWN },
NULL,
"layers/stack/stack.html#lower_layer", NULL },
{ { N_("/Layer/Stack/Layer to Top"), "<shift>Home",
{ { N_("/Layer/Stack/Layer to T_op"), "<shift>Home",
layers_raise_to_top_cmd_callback, 0,
"<StockItem>", GTK_STOCK_GOTO_TOP },
NULL,
"layers/stack/stack.html#layer_to_top", NULL },
{ { N_("/Layer/Stack/Layer to Bottom"), "<Shift>End",
{ { N_("/Layer/Stack/Layer to Botto_m"), "<Shift>End",
layers_lower_to_bottom_cmd_callback, 0,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", GIMP_STOCK_TOOL_ROTATE },
"gimp-rotate-tool",
@ -790,29 +790,29 @@ GimpItemFactoryEntry image_menu_entries[] =
MENU_SEPARATOR ("/Layer/Transform/---"),
{ { N_("/Layer/Transform/Offset..."), "<control><shift>O",
{ { N_("/Layer/Transform/_Offset..."), "<control><shift>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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", GIMP_STOCK_DEVICE_STATUS },
"gimp-device-status-dialog",
@ -878,37 +878,37 @@ GimpItemFactoryEntry image_menu_entries[] =
MENU_SEPARATOR ("/Dialogs/---"),
{ { N_("/Dialogs/Layers..."), "<control>L",
{ { N_("/Dialogs/_Layers..."), "<control>L",
dialogs_create_dockable_cmd_callback, 0,
"<StockItem>", GIMP_STOCK_LAYERS },
"gimp-layer-list",
NULL, NULL },
{ { N_("/Dialogs/Channels..."), NULL,
{ { N_("/Dialogs/_Channels..."), NULL,
dialogs_create_dockable_cmd_callback, 0,
"<StockItem>", GIMP_STOCK_CHANNELS },
"gimp-channel-list",
NULL, NULL },
{ { N_("/Dialogs/Paths..."), NULL,
{ { N_("/Dialogs/_Paths..."), NULL,
dialogs_create_dockable_cmd_callback, 0,
"<StockItem>", GIMP_STOCK_PATHS },
"gimp-vectors-list",
NULL, NULL },
{ { N_("/Dialogs/Indexed Palette..."), NULL,
{ { N_("/Dialogs/_Indexed Palette..."), NULL,
dialogs_create_dockable_cmd_callback, 0,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", GIMP_STOCK_NAVIGATION },
"gimp-navigation-view",
NULL, NULL },
{ { N_("/Dialogs/Undo History..."), NULL,
{ { N_("/Dialogs/_Undo History..."), NULL,
dialogs_create_dockable_cmd_callback, 0,
"<StockItem>", 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,
"<StockItem>", GTK_STOCK_SELECT_COLOR },
"gimp-color-editor",
NULL, NULL },
{ { N_("/Dialogs/Brushes..."), "<control><shift>B",
{ { N_("/Dialogs/Brus_hes..."), "<control><shift>B",
dialogs_create_dockable_cmd_callback, 0,
"<StockItem>", GIMP_STOCK_TOOL_PAINTBRUSH },
"gimp-brush-grid",
"dialogs/brush_selection.html", NULL },
{ { N_("/Dialogs/Patterns..."), "<control><shift>P",
{ { N_("/Dialogs/P_atterns..."), "<control><shift>P",
dialogs_create_dockable_cmd_callback, 0,
"<StockItem>", GIMP_STOCK_TOOL_BUCKET_FILL },
"gimp-pattern-grid",
"dialogs/pattern_selection.html", NULL },
{ { N_("/Dialogs/Gradients..."), "<control>G",
{ { N_("/Dialogs/_Gradients..."), "<control>G",
dialogs_create_dockable_cmd_callback, 0,
"<StockItem>", GIMP_STOCK_TOOL_BLEND },
"gimp-gradient-list",
"dialogs/gradient_selection.html", NULL },
{ { N_("/Dialogs/Palettes..."), "<control>P",
{ { N_("/Dialogs/Pal_ettes..."), "<control>P",
dialogs_create_dockable_cmd_callback, 0,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", GIMP_STOCK_IMAGES },
"gimp-image-list",
NULL, NULL },
{ { N_("/Dialogs/Document History..."), "",
{ { N_("/Dialogs/Document Histor_y..."), "",
dialogs_create_dockable_cmd_callback, 0,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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)));
}

View File

@ -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);

View File

@ -47,12 +47,12 @@ GimpItemFactoryEntry toolbox_menu_entries[] =
MENU_BRANCH (N_("/_File")),
{ { N_("/File/New..."), "<control>N",
{ { N_("/File/_New..."), "<control>N",
file_new_cmd_callback, 0,
"<StockItem>", GTK_STOCK_NEW },
NULL,
"file/dialogs/file_new.html", NULL },
{ { N_("/File/Open..."), "<control>O",
{ { N_("/File/_Open..."), "<control>O",
file_open_cmd_callback, 0,
"<StockItem>", GTK_STOCK_OPEN },
NULL,
@ -60,14 +60,14 @@ GimpItemFactoryEntry toolbox_menu_entries[] =
/* <Toolbox>/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,
"<StockItem>", 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,
"<StockItem>", 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..."), "<control><shift>T",
{ { N_("/File/Dialogs/Tool _Options..."), "<control><shift>T",
dialogs_create_dockable_cmd_callback, 0,
"<StockItem>", 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,
"<StockItem>", GIMP_STOCK_DEVICE_STATUS },
"gimp-device-status-dialog",
@ -117,37 +117,37 @@ GimpItemFactoryEntry toolbox_menu_entries[] =
MENU_SEPARATOR ("/File/Dialogs/---"),
{ { N_("/File/Dialogs/Layers..."), "<control>L",
{ { N_("/File/Dialogs/_Layers..."), "<control>L",
dialogs_create_dockable_cmd_callback, 0,
"<StockItem>", GIMP_STOCK_LAYERS },
"gimp-layer-list",
NULL, NULL },
{ { N_("/File/Dialogs/Channels..."), NULL,
{ { N_("/File/Dialogs/_Channels..."), NULL,
dialogs_create_dockable_cmd_callback, 0,
"<StockItem>", GIMP_STOCK_CHANNELS },
"gimp-channel-list",
NULL, NULL },
{ { N_("/File/Dialogs/Paths..."), NULL,
{ { N_("/File/Dialogs/_Paths..."), NULL,
dialogs_create_dockable_cmd_callback, 0,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", GTK_STOCK_SELECT_COLOR },
"gimp-color-editor",
NULL, NULL },
{ { N_("/File/Dialogs/Brushes..."), "<control><shift>B",
{ { N_("/File/Dialogs/Brus_hes..."), "<control><shift>B",
dialogs_create_dockable_cmd_callback, 0,
"<StockItem>", GIMP_STOCK_TOOL_PAINTBRUSH },
"gimp-brush-grid",
"file/dialogs/brush_selection.html", NULL },
{ { N_("/File/Dialogs/Patterns..."), "<control><shift>P",
{ { N_("/File/Dialogs/P_atterns..."), "<control><shift>P",
dialogs_create_dockable_cmd_callback, 0,
"<StockItem>", GIMP_STOCK_TOOL_BUCKET_FILL },
"gimp-pattern-grid",
"file/dialogs/pattern_selection.html", NULL },
{ { N_("/File/Dialogs/Gradients..."), "<control>G",
{ { N_("/File/Dialogs/_Gradients..."), "<control>G",
dialogs_create_dockable_cmd_callback, 0,
"<StockItem>", GIMP_STOCK_TOOL_BLEND },
"gimp-gradient-list",
"file/dialogs/gradient_selection.html", NULL },
{ { N_("/File/Dialogs/Palettes..."), "<control>P",
{ { N_("/File/Dialogs/Pal_ettes..."), "<control>P",
dialogs_create_dockable_cmd_callback, 0,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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"), "<control>Q",
{ { N_("/File/_Quit"), "<control>Q",
file_quit_cmd_callback, 0,
"<StockItem>", 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,
"<StockItem>", GTK_STOCK_HELP },
NULL,
"help/dialogs/help.html", NULL },
{ { N_("/Help/Context Help..."), "<shift>F1",
{ { N_("/Help/_Context Help..."), "<shift>F1",
help_context_help_cmd_callback, 0,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", GIMP_STOCK_WILBER },
"gimp-about-dialog",

View File

@ -82,12 +82,12 @@ GimpItemFactoryEntry image_menu_entries[] =
MENU_BRANCH (N_("/_File")),
{ { N_("/File/New..."), "<control>N",
{ { N_("/File/_New..."), "<control>N",
file_new_cmd_callback, 1,
"<StockItem>", GTK_STOCK_NEW },
NULL,
"file/dialogs/file_new.html", NULL },
{ { N_("/File/Open..."), "<control>O",
{ { N_("/File/_Open..."), "<control>O",
file_open_cmd_callback, 1,
"<StockItem>", GTK_STOCK_OPEN },
NULL,
@ -95,14 +95,14 @@ GimpItemFactoryEntry image_menu_entries[] =
/* <Image>/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,
"<StockItem>", GTK_STOCK_OPEN },
"gimp-document-list",
@ -110,25 +110,25 @@ GimpItemFactoryEntry image_menu_entries[] =
MENU_SEPARATOR ("/File/---"),
{ { N_("/File/Save"), "<control>S",
{ { N_("/File/_Save"), "<control>S",
file_save_cmd_callback, 0,
"<StockItem>", GTK_STOCK_SAVE },
NULL,
"file/dialogs/file_save.html", NULL },
{ { N_("/File/Save as..."), "<control><shift>S",
{ { N_("/File/Save _as..."), "<control><shift>S",
file_save_as_cmd_callback, 0,
"<StockItem>", 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,
"<StockItem>", GTK_STOCK_REVERT_TO_SAVED },
NULL,
@ -136,12 +136,12 @@ GimpItemFactoryEntry image_menu_entries[] =
MENU_SEPARATOR ("/File/---"),
{ { N_( "/File/Close"), "<control>W",
{ { N_( "/File/_Close"), "<control>W",
file_close_cmd_callback, 0,
"<StockItem>", GTK_STOCK_CLOSE },
NULL,
"file/close.html", NULL },
{ { N_("/File/Quit"), "<control>Q",
{ { N_("/File/_Quit"), "<control>Q",
file_quit_cmd_callback, 0,
"<StockItem>", GTK_STOCK_QUIT },
NULL,
@ -166,27 +166,27 @@ GimpItemFactoryEntry image_menu_entries[] =
MENU_SEPARATOR ("/Edit/---"),
{ { N_("/Edit/Cut"), "<control>X",
{ { N_("/Edit/Cu_t"), "<control>X",
edit_cut_cmd_callback, 0,
"<StockItem>", GTK_STOCK_CUT },
NULL,
"edit/cut.html", NULL },
{ { N_("/Edit/Copy"), "<control>C",
{ { N_("/Edit/_Copy"), "<control>C",
edit_copy_cmd_callback, 0,
"<StockItem>", GTK_STOCK_COPY },
NULL,
"edit/copy.html", NULL },
{ { N_("/Edit/Paste"), "<control>V",
{ { N_("/Edit/_Paste"), "<control>V",
edit_paste_cmd_callback, 0,
"<StockItem>", GTK_STOCK_PASTE },
NULL,
"edit/paste.html", NULL },
{ { N_("/Edit/Paste Into"), NULL,
{ { N_("/Edit/Paste _Into"), NULL,
edit_paste_into_cmd_callback, 0,
"<StockItem>", 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,
"<StockItem>", GIMP_STOCK_PASTE_AS_NEW },
NULL,
@ -196,17 +196,17 @@ GimpItemFactoryEntry image_menu_entries[] =
MENU_BRANCH (N_("/Edit/_Buffer")),
{ { N_("/Edit/Buffer/Cut Named..."), "<control><shift>X",
{ { N_("/Edit/Buffer/Cu_t Named..."), "<control><shift>X",
edit_named_cut_cmd_callback, 0,
"<StockItem>", GTK_STOCK_CUT },
NULL,
"edit/dialogs/cut_named.html", NULL },
{ { N_("/Edit/Buffer/Copy Named..."), "<control><shift>C",
{ { N_("/Edit/Buffer/_Copy Named..."), "<control><shift>C",
edit_named_copy_cmd_callback, 0,
"<StockItem>", GTK_STOCK_COPY },
NULL,
"edit/dialogs/copy_named.html", NULL },
{ { N_("/Edit/Buffer/Paste Named..."), "<control><shift>V",
{ { N_("/Edit/Buffer/_Paste Named..."), "<control><shift>V",
edit_named_paste_cmd_callback, 0,
"<StockItem>", GTK_STOCK_PASTE },
NULL,
@ -214,22 +214,22 @@ GimpItemFactoryEntry image_menu_entries[] =
MENU_SEPARATOR ("/Edit/---"),
{ { N_("/Edit/Clear"), "<control>K",
{ { N_("/Edit/Cl_ear"), "<control>K",
edit_clear_cmd_callback, 0,
"<StockItem>", GTK_STOCK_CLEAR },
NULL,
"edit/clear.html", NULL },
{ { N_("/Edit/Fill with FG Color"), "<control>comma",
{ { N_("/Edit/Fill with _FG Color"), "<control>comma",
edit_fill_cmd_callback, (guint) GIMP_FOREGROUND_FILL,
"<StockItem>", GIMP_STOCK_TOOL_BUCKET_FILL },
NULL,
"edit/fill.html", NULL },
{ { N_("/Edit/Fill with BG Color"), "<control>period",
{ { N_("/Edit/Fill with B_G Color"), "<control>period",
edit_fill_cmd_callback, (guint) GIMP_BACKGROUND_FILL,
"<StockItem>", GIMP_STOCK_TOOL_BUCKET_FILL },
NULL,
"edit/fill.html", NULL },
{ { N_("/Edit/Stroke"), NULL,
{ { N_("/Edit/_Stroke"), NULL,
edit_stroke_cmd_callback, 0,
"<StockItem>", GIMP_STOCK_SELECTION_STROKE },
NULL,
@ -241,26 +241,26 @@ GimpItemFactoryEntry image_menu_entries[] =
MENU_BRANCH (N_("/_Select")),
{ { N_("/Select/All"), "<control>A",
{ { N_("/Select/_All"), "<control>A",
select_all_cmd_callback, 0,
"<StockItem>", GIMP_STOCK_SELECTION_ALL },
NULL,
"select/all.html", NULL },
{ { N_("/Select/None"), "<control><shift>A",
{ { N_("/Select/_None"), "<control><shift>A",
select_none_cmd_callback, 0,
"<StockItem>", GIMP_STOCK_SELECTION_NONE },
NULL,
"select/none.html", NULL },
{ { N_("/Select/Invert"), "<control>I",
{ { N_("/Select/_Invert"), "<control>I",
select_invert_cmd_callback, 0,
"<StockItem>", GIMP_STOCK_INVERT },
NULL,
"select/invert.html", NULL },
{ { N_("/Select/Float"), "<control><shift>L",
{ { N_("/Select/_Float"), "<control><shift>L",
select_float_cmd_callback, 0 },
NULL,
"select/float.html", NULL },
{ { N_("/Select/By Color"), "<shift>O",
{ { N_("/Select/_By Color"), "<shift>O",
tools_select_cmd_callback, 0,
"<StockItem>", 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,
"<StockItem>", GIMP_STOCK_SELECTION_SHRINK },
NULL,
"select/dialogs/shrink_selection.html", NULL },
{ { N_("/Select/Grow..."), NULL,
{ { N_("/Select/_Grow..."), NULL,
select_grow_cmd_callback, 0,
"<StockItem>", 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"), "<shift>Q",
{ { N_("/Select/Toggle _QuickMask"), "<shift>Q",
select_toggle_quickmask_cmd_callback, 0,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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, "<ToggleItem>" },
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,
"<StockItem>", 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,
"<StockItem>", GTK_STOCK_ZOOM_IN },
NULL,
"view/zoom.html", NULL },
{ { N_("/View/Zoom/Zoom to Fit Window"), "<control><shift>E",
{ { N_("/View/Zoom/Zoom to _Fit Window"), "<control><shift>E",
view_zoom_fit_cmd_callback, 0,
"<StockItem>", 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..."), "<control><shift>I",
{ { N_("/View/_Info Window..."), "<control><shift>I",
view_info_window_cmd_callback, 0,
"<StockItem>", GIMP_STOCK_INFO },
NULL,
"view/dialogs/info_window.html", NULL },
{ { N_("/View/Navigation Window..."), "<control><shift>N",
{ { N_("/View/Na_vigation Window..."), "<control><shift>N",
view_navigation_window_cmd_callback, 0,
"<StockItem>", 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"), "<control>T",
{ { N_("/View/Show _Selection"), "<control>T",
view_toggle_selection_cmd_callback, 0, "<ToggleItem>" },
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, "<ToggleItem>" },
NULL,
"view/toggle_selection.html", NULL },
{ { N_("/View/Show Guides"), "<control><shift>T",
{ { N_("/View/Show _Guides"), "<control><shift>T",
view_toggle_guides_cmd_callback, 0, "<ToggleItem>" },
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, "<ToggleItem>" },
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, "<ToggleItem>" },
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, "<ToggleItem>" },
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, "<ToggleItem>" },
NULL,
"view/toggle_menubar.html", NULL },
{ { N_("/View/Show Rulers"), "<control><shift>R",
{ { N_("/View/Show R_ulers"), "<control><shift>R",
view_toggle_rulers_cmd_callback, 0, "<ToggleItem>" },
NULL,
"view/toggle_rulers.html", NULL },
{ { N_("/View/Show Scrollbars"), NULL,
{ { N_("/View/Show Scroll_bars"), NULL,
view_toggle_scrollbars_cmd_callback, 0, "<ToggleItem>" },
NULL,
"view/toggle_rulers.html", NULL },
{ { N_("/View/Show Statusbar"), NULL,
{ { N_("/View/Show S_tatusbar"), NULL,
view_toggle_statusbar_cmd_callback, 0, "<ToggleItem>" },
NULL,
"view/toggle_statusbar.html", NULL },
MENU_SEPARATOR ("/View/---"),
{ { N_("/View/Shrink Wrap"), "<control>E",
{ { N_("/View/Shrink _Wrap"), "<control>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, "<ToggleItem>" },
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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", GIMP_STOCK_TOOL_CROP },
NULL,
"image/dialogs/crop_image.html", NULL },
{ { N_("/Image/Duplicate"), "<control>D",
{ { N_("/Image/_Duplicate"), "<control>D",
image_duplicate_cmd_callback, 0,
"<StockItem>", GIMP_STOCK_DUPLICATE },
NULL,
@ -551,11 +551,11 @@ GimpItemFactoryEntry image_menu_entries[] =
MENU_SEPARATOR ("/Image/---"),
{ { N_("/Image/Merge Visible Layers..."), "<control>M",
{ { N_("/Image/_Merge Visible Layers..."), "<control>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,
"<StockItem>", 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,
"<StockItem>", GIMP_STOCK_DUPLICATE },
NULL,
"layers/duplicate_layer.html", NULL },
{ { N_("/Layer/Anchor Layer"), "<control>H",
{ { N_("/Layer/Anchor _Layer"), "<control>H",
layers_anchor_cmd_callback, 0,
"<StockItem>", GIMP_STOCK_ANCHOR },
NULL,
"layers/anchor_layer.html", NULL },
{ { N_("/Layer/Merge Down"), "<control><shift>M",
{ { N_("/Layer/Me_rge Down"), "<control><shift>M",
layers_merge_down_cmd_callback, 0,
"<StockItem>", 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,
"<StockItem>", GTK_STOCK_DELETE },
NULL,
@ -594,43 +594,43 @@ GimpItemFactoryEntry image_menu_entries[] =
/* <Image>/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"), "<shift>Prior",
{ { N_("/Layer/Stack/_Raise Layer"), "<shift>Prior",
layers_raise_cmd_callback, 0,
"<StockItem>", GTK_STOCK_GO_UP },
NULL,
"layers/stack/stack.html#raise_layer", NULL },
{ { N_("/Layer/Stack/Lower Layer"), "<shift>Next",
{ { N_("/Layer/Stack/_Lower Layer"), "<shift>Next",
layers_lower_cmd_callback, 0,
"<StockItem>", GTK_STOCK_GO_DOWN },
NULL,
"layers/stack/stack.html#lower_layer", NULL },
{ { N_("/Layer/Stack/Layer to Top"), "<shift>Home",
{ { N_("/Layer/Stack/Layer to T_op"), "<shift>Home",
layers_raise_to_top_cmd_callback, 0,
"<StockItem>", GTK_STOCK_GOTO_TOP },
NULL,
"layers/stack/stack.html#layer_to_top", NULL },
{ { N_("/Layer/Stack/Layer to Bottom"), "<Shift>End",
{ { N_("/Layer/Stack/Layer to Botto_m"), "<Shift>End",
layers_lower_to_bottom_cmd_callback, 0,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", GIMP_STOCK_TOOL_ROTATE },
"gimp-rotate-tool",
@ -790,29 +790,29 @@ GimpItemFactoryEntry image_menu_entries[] =
MENU_SEPARATOR ("/Layer/Transform/---"),
{ { N_("/Layer/Transform/Offset..."), "<control><shift>O",
{ { N_("/Layer/Transform/_Offset..."), "<control><shift>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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", GIMP_STOCK_DEVICE_STATUS },
"gimp-device-status-dialog",
@ -878,37 +878,37 @@ GimpItemFactoryEntry image_menu_entries[] =
MENU_SEPARATOR ("/Dialogs/---"),
{ { N_("/Dialogs/Layers..."), "<control>L",
{ { N_("/Dialogs/_Layers..."), "<control>L",
dialogs_create_dockable_cmd_callback, 0,
"<StockItem>", GIMP_STOCK_LAYERS },
"gimp-layer-list",
NULL, NULL },
{ { N_("/Dialogs/Channels..."), NULL,
{ { N_("/Dialogs/_Channels..."), NULL,
dialogs_create_dockable_cmd_callback, 0,
"<StockItem>", GIMP_STOCK_CHANNELS },
"gimp-channel-list",
NULL, NULL },
{ { N_("/Dialogs/Paths..."), NULL,
{ { N_("/Dialogs/_Paths..."), NULL,
dialogs_create_dockable_cmd_callback, 0,
"<StockItem>", GIMP_STOCK_PATHS },
"gimp-vectors-list",
NULL, NULL },
{ { N_("/Dialogs/Indexed Palette..."), NULL,
{ { N_("/Dialogs/_Indexed Palette..."), NULL,
dialogs_create_dockable_cmd_callback, 0,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", GIMP_STOCK_NAVIGATION },
"gimp-navigation-view",
NULL, NULL },
{ { N_("/Dialogs/Undo History..."), NULL,
{ { N_("/Dialogs/_Undo History..."), NULL,
dialogs_create_dockable_cmd_callback, 0,
"<StockItem>", 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,
"<StockItem>", GTK_STOCK_SELECT_COLOR },
"gimp-color-editor",
NULL, NULL },
{ { N_("/Dialogs/Brushes..."), "<control><shift>B",
{ { N_("/Dialogs/Brus_hes..."), "<control><shift>B",
dialogs_create_dockable_cmd_callback, 0,
"<StockItem>", GIMP_STOCK_TOOL_PAINTBRUSH },
"gimp-brush-grid",
"dialogs/brush_selection.html", NULL },
{ { N_("/Dialogs/Patterns..."), "<control><shift>P",
{ { N_("/Dialogs/P_atterns..."), "<control><shift>P",
dialogs_create_dockable_cmd_callback, 0,
"<StockItem>", GIMP_STOCK_TOOL_BUCKET_FILL },
"gimp-pattern-grid",
"dialogs/pattern_selection.html", NULL },
{ { N_("/Dialogs/Gradients..."), "<control>G",
{ { N_("/Dialogs/_Gradients..."), "<control>G",
dialogs_create_dockable_cmd_callback, 0,
"<StockItem>", GIMP_STOCK_TOOL_BLEND },
"gimp-gradient-list",
"dialogs/gradient_selection.html", NULL },
{ { N_("/Dialogs/Palettes..."), "<control>P",
{ { N_("/Dialogs/Pal_ettes..."), "<control>P",
dialogs_create_dockable_cmd_callback, 0,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", GIMP_STOCK_IMAGES },
"gimp-image-list",
NULL, NULL },
{ { N_("/Dialogs/Document History..."), "",
{ { N_("/Dialogs/Document Histor_y..."), "",
dialogs_create_dockable_cmd_callback, 0,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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)));
}

View File

@ -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);

View File

@ -47,12 +47,12 @@ GimpItemFactoryEntry toolbox_menu_entries[] =
MENU_BRANCH (N_("/_File")),
{ { N_("/File/New..."), "<control>N",
{ { N_("/File/_New..."), "<control>N",
file_new_cmd_callback, 0,
"<StockItem>", GTK_STOCK_NEW },
NULL,
"file/dialogs/file_new.html", NULL },
{ { N_("/File/Open..."), "<control>O",
{ { N_("/File/_Open..."), "<control>O",
file_open_cmd_callback, 0,
"<StockItem>", GTK_STOCK_OPEN },
NULL,
@ -60,14 +60,14 @@ GimpItemFactoryEntry toolbox_menu_entries[] =
/* <Toolbox>/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,
"<StockItem>", 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,
"<StockItem>", 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..."), "<control><shift>T",
{ { N_("/File/Dialogs/Tool _Options..."), "<control><shift>T",
dialogs_create_dockable_cmd_callback, 0,
"<StockItem>", 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,
"<StockItem>", GIMP_STOCK_DEVICE_STATUS },
"gimp-device-status-dialog",
@ -117,37 +117,37 @@ GimpItemFactoryEntry toolbox_menu_entries[] =
MENU_SEPARATOR ("/File/Dialogs/---"),
{ { N_("/File/Dialogs/Layers..."), "<control>L",
{ { N_("/File/Dialogs/_Layers..."), "<control>L",
dialogs_create_dockable_cmd_callback, 0,
"<StockItem>", GIMP_STOCK_LAYERS },
"gimp-layer-list",
NULL, NULL },
{ { N_("/File/Dialogs/Channels..."), NULL,
{ { N_("/File/Dialogs/_Channels..."), NULL,
dialogs_create_dockable_cmd_callback, 0,
"<StockItem>", GIMP_STOCK_CHANNELS },
"gimp-channel-list",
NULL, NULL },
{ { N_("/File/Dialogs/Paths..."), NULL,
{ { N_("/File/Dialogs/_Paths..."), NULL,
dialogs_create_dockable_cmd_callback, 0,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", GTK_STOCK_SELECT_COLOR },
"gimp-color-editor",
NULL, NULL },
{ { N_("/File/Dialogs/Brushes..."), "<control><shift>B",
{ { N_("/File/Dialogs/Brus_hes..."), "<control><shift>B",
dialogs_create_dockable_cmd_callback, 0,
"<StockItem>", GIMP_STOCK_TOOL_PAINTBRUSH },
"gimp-brush-grid",
"file/dialogs/brush_selection.html", NULL },
{ { N_("/File/Dialogs/Patterns..."), "<control><shift>P",
{ { N_("/File/Dialogs/P_atterns..."), "<control><shift>P",
dialogs_create_dockable_cmd_callback, 0,
"<StockItem>", GIMP_STOCK_TOOL_BUCKET_FILL },
"gimp-pattern-grid",
"file/dialogs/pattern_selection.html", NULL },
{ { N_("/File/Dialogs/Gradients..."), "<control>G",
{ { N_("/File/Dialogs/_Gradients..."), "<control>G",
dialogs_create_dockable_cmd_callback, 0,
"<StockItem>", GIMP_STOCK_TOOL_BLEND },
"gimp-gradient-list",
"file/dialogs/gradient_selection.html", NULL },
{ { N_("/File/Dialogs/Palettes..."), "<control>P",
{ { N_("/File/Dialogs/Pal_ettes..."), "<control>P",
dialogs_create_dockable_cmd_callback, 0,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", 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"), "<control>Q",
{ { N_("/File/_Quit"), "<control>Q",
file_quit_cmd_callback, 0,
"<StockItem>", 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,
"<StockItem>", GTK_STOCK_HELP },
NULL,
"help/dialogs/help.html", NULL },
{ { N_("/Help/Context Help..."), "<shift>F1",
{ { N_("/Help/_Context Help..."), "<shift>F1",
help_context_help_cmd_callback, 0,
"<StockItem>", 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,
"<StockItem>", 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,
"<StockItem>", GIMP_STOCK_WILBER },
"gimp-about-dialog",

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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"), "<shift>B",
N_("/Tools/Paint Tools/_Bucket Fill"), "<shift>B",
NULL, "tools/bucket_fill.html",
GIMP_STOCK_TOOL_BUCKET_FILL,
data);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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"), "<shift>C",
N_("/Tools/Transform Tools/_Crop & Resize"), "<shift>C",
NULL, "tools/crop_tool.html",
GIMP_STOCK_TOOL_CROP,
data);

View File

@ -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);

View File

@ -69,7 +69,7 @@ gimp_dodgeburn_tool_register (GimpToolRegisterCallback callback,
"gimp-dodgeburn-tool",
_("Dodge/Burn"),
_("Dodge or Burn strokes"),
N_("/Tools/Paint Tools/DodgeBurn"), "<shift>D",
N_("/Tools/Paint Tools/Dod_geBurn"), "<shift>D",
NULL, "tools/dodgeburn.html",
GIMP_STOCK_TOOL_DODGE,
data);

View File

@ -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);

View File

@ -69,7 +69,7 @@ gimp_eraser_tool_register (GimpToolRegisterCallback callback,
"gimp-eraser-tool",
_("Eraser"),
_("Erase to background or transparency"),
N_("/Tools/Paint Tools/Eraser"), "<shift>E",
N_("/Tools/Paint Tools/_Eraser"), "<shift>E",
NULL, "tools/eraser.html",
GIMP_STOCK_TOOL_ERASER,
data);

View File

@ -83,7 +83,7 @@ gimp_flip_tool_register (GimpToolRegisterCallback callback,
"gimp-flip-tool",
_("Flip"),
_("Flip the layer or selection"),
N_("/Tools/Transform Tools/Flip"), "<shift>F",
N_("/Tools/Transform Tools/_Flip"), "<shift>F",
NULL, "tools/flip.html",
GIMP_STOCK_TOOL_FLIP,
data);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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,

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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"), "<shift>P",
N_("/Tools/Transform Tools/_Perspective"), "<shift>P",
NULL, "tools/perspective.html",
GIMP_STOCK_TOOL_PERSPECTIVE,
data);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -103,7 +103,7 @@ gimp_rotate_tool_register (GimpToolRegisterCallback callback,
"gimp-rotate-tool",
_("Rotate"),
_("Rotate the layer or selection"),
N_("/Tools/Transform Tools/Rotate"), "<shift>R",
N_("/Tools/Transform Tools/_Rotate"), "<shift>R",
NULL, "tools/rotate.html",
GIMP_STOCK_TOOL_ROTATE,
data);

View File

@ -96,7 +96,7 @@ gimp_scale_tool_register (GimpToolRegisterCallback callback,
"gimp-scale-tool",
_("Scale"),
_("Scale the layer or selection"),
N_("/Tools/Transform Tools/Scale"), "<shift>T",
N_("/Tools/Transform Tools/_Scale"), "<shift>T",
NULL, "tools/transform.html",
GIMP_STOCK_TOOL_SCALE,
data);

View File

@ -98,7 +98,7 @@ gimp_shear_tool_register (GimpToolRegisterCallback callback,
"gimp-shear-tool",
_("Shear"),
_("Shear the layer or selection"),
N_("/Tools/Transform Tools/Shear"), "<shift>S",
N_("/Tools/Transform Tools/S_hear"), "<shift>S",
NULL, "tools/shear.html",
GIMP_STOCK_TOOL_SHEAR,
data);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);