app/actions/file-actions.c app/actions/plug-in-actions.c removed ellipsis
2005-06-15 Sven Neumann <sven@gimp.org> * app/actions/file-actions.c * app/actions/plug-in-actions.c * app/actions/tool-options-actions.c: removed ellipsis from commands that only present a confirmation dialog. * app/actions/file-actions.c * app/tools/gimpcolorbalancetool.c * app/tools/gimplevelstool.c * app/widgets/gimpgrideditor.c: capitalization.
This commit is contained in:

committed by
Sven Neumann

parent
57a90113ac
commit
2665b357da
@ -1,5 +1,13 @@
|
||||
2005-06-15 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/actions/file-actions.c
|
||||
* app/actions/plug-in-actions.c
|
||||
* app/actions/tool-options-actions.c: removed ellipsis from commands
|
||||
that only present a confirmation dialog.
|
||||
|
||||
* app/actions/file-actions.c
|
||||
* app/tools/gimpcolorbalancetool.c
|
||||
* app/tools/gimplevelstool.c
|
||||
* app/widgets/gimpgrideditor.c: capitalization.
|
||||
|
||||
2005-06-15 Sven Neumann <sven@gimp.org>
|
||||
|
@ -88,7 +88,7 @@ static GimpActionEntry file_actions[] =
|
||||
GIMP_HELP_FILE_SAVE },
|
||||
|
||||
{ "file-save-as", GTK_STOCK_SAVE_AS,
|
||||
N_("Save _as..."), "<control><shift>S", NULL,
|
||||
N_("Save _As..."), "<control><shift>S", NULL,
|
||||
G_CALLBACK (file_save_as_cmd_callback),
|
||||
GIMP_HELP_FILE_SAVE_AS },
|
||||
|
||||
@ -103,7 +103,7 @@ static GimpActionEntry file_actions[] =
|
||||
GIMP_HELP_FILE_SAVE_AS_TEMPLATE },
|
||||
|
||||
{ "file-revert", GTK_STOCK_REVERT_TO_SAVED,
|
||||
N_("Re_vert..."), NULL, NULL,
|
||||
N_("Re_vert"), NULL, NULL,
|
||||
G_CALLBACK (file_revert_cmd_callback),
|
||||
GIMP_HELP_FILE_REVERT },
|
||||
|
||||
|
@ -82,7 +82,7 @@ static GimpActionEntry plug_in_actions[] =
|
||||
{ "plug-in-toys-menu", NULL, N_("To_ys") },
|
||||
|
||||
{ "plug-in-reset-all", GIMP_STOCK_RESET,
|
||||
N_("Reset all _Filters..."), NULL, NULL,
|
||||
N_("Reset all _Filters"), NULL, NULL,
|
||||
G_CALLBACK (plug_in_reset_all_cmd_callback),
|
||||
GIMP_HELP_FILTER_RESET_ALL }
|
||||
};
|
||||
|
@ -84,7 +84,7 @@ static GimpActionEntry tool_options_actions[] =
|
||||
GIMP_HELP_TOOL_OPTIONS_RESET },
|
||||
|
||||
{ "tool-options-reset-all", GIMP_STOCK_RESET,
|
||||
N_("Reset _all Tool Options..."), "",
|
||||
N_("Reset _all Tool Options"), "",
|
||||
N_("Reset all tool options"),
|
||||
G_CALLBACK (tool_options_reset_all_cmd_callback),
|
||||
GIMP_HELP_TOOL_OPTIONS_RESET }
|
||||
|
@ -321,7 +321,7 @@ gimp_color_balance_tool_dialog (GimpImageMapTool *image_map_tool)
|
||||
gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 0);
|
||||
gtk_widget_show (hbox);
|
||||
|
||||
button = gtk_button_new_with_mnemonic (_("R_eset range"));
|
||||
button = gtk_button_new_with_mnemonic (_("R_eset Range"));
|
||||
gtk_box_pack_end (GTK_BOX (hbox), button, FALSE, FALSE, 0);
|
||||
gtk_widget_show (button);
|
||||
|
||||
|
@ -428,7 +428,7 @@ gimp_levels_tool_dialog (GimpImageMapTool *image_map_tool)
|
||||
|
||||
gtk_label_set_mnemonic_widget (GTK_LABEL (label), menu);
|
||||
|
||||
button = gtk_button_new_with_mnemonic (_("R_eset channel"));
|
||||
button = gtk_button_new_with_mnemonic (_("R_eset Channel"));
|
||||
gtk_box_pack_start (GTK_BOX (hbox), button, FALSE, FALSE, 0);
|
||||
gtk_widget_show (button);
|
||||
|
||||
|
Reference in New Issue
Block a user