mirror of https://github.com/GNOME/gimp.git
app/tools/gimpcropoptions.c revert back to "Current".
2003-10-19 Sven Neumann <sven@gimp.org> * app/tools/gimpcropoptions.c * app/tools/gimpmoveoptions.c: revert back to "Current". * app/tools/tools-enums.[ch]: removed "Active" from the enum value descriptions; it was misleading.
This commit is contained in:
parent
28e1ecebfc
commit
fb448d8004
|
@ -1,3 +1,11 @@
|
|||
2003-10-19 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/tools/gimpcropoptions.c
|
||||
* app/tools/gimpmoveoptions.c: revert back to "Current".
|
||||
|
||||
* app/tools/tools-enums.[ch]: removed "Active" from the enum value
|
||||
descriptions; it was misleading.
|
||||
|
||||
2003-10-19 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/widgets/gimppropwidgets.c (gimp_prop_enum_radio_frame_new)
|
||||
|
|
|
@ -246,7 +246,7 @@ GimpItemFactoryEntry image_menu_entries[] =
|
|||
"<StockItem>", GIMP_STOCK_SELECTION_STROKE },
|
||||
NULL,
|
||||
GIMP_HELP_SELECTION_STROKE, NULL },
|
||||
{ { N_("/Edit/St_roke Active Path..."), NULL,
|
||||
{ { N_("/Edit/St_roke Path..."), NULL,
|
||||
vectors_stroke_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_PATH_STROKE },
|
||||
NULL,
|
||||
|
@ -1441,7 +1441,7 @@ image_menu_update (GtkItemFactory *item_factory,
|
|||
SET_SENSITIVE ("/Edit/Fill with BG Color", lp);
|
||||
SET_SENSITIVE ("/Edit/Fill with Pattern", lp);
|
||||
SET_SENSITIVE ("/Edit/Stroke Selection...", lp && sel);
|
||||
SET_SENSITIVE ("/Edit/Stroke Active Path...", lp && vectors);
|
||||
SET_SENSITIVE ("/Edit/Stroke Path...", lp && vectors);
|
||||
|
||||
/* Select */
|
||||
|
||||
|
|
|
@ -246,7 +246,7 @@ GimpItemFactoryEntry image_menu_entries[] =
|
|||
"<StockItem>", GIMP_STOCK_SELECTION_STROKE },
|
||||
NULL,
|
||||
GIMP_HELP_SELECTION_STROKE, NULL },
|
||||
{ { N_("/Edit/St_roke Active Path..."), NULL,
|
||||
{ { N_("/Edit/St_roke Path..."), NULL,
|
||||
vectors_stroke_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_PATH_STROKE },
|
||||
NULL,
|
||||
|
@ -1441,7 +1441,7 @@ image_menu_update (GtkItemFactory *item_factory,
|
|||
SET_SENSITIVE ("/Edit/Fill with BG Color", lp);
|
||||
SET_SENSITIVE ("/Edit/Fill with Pattern", lp);
|
||||
SET_SENSITIVE ("/Edit/Stroke Selection...", lp && sel);
|
||||
SET_SENSITIVE ("/Edit/Stroke Active Path...", lp && vectors);
|
||||
SET_SENSITIVE ("/Edit/Stroke Path...", lp && vectors);
|
||||
|
||||
/* Select */
|
||||
|
||||
|
|
|
@ -195,7 +195,7 @@ gimp_crop_options_gui (GimpToolOptions *tool_options)
|
|||
|
||||
/* layer toggle */
|
||||
button = gimp_prop_check_button_new (config, "layer-only",
|
||||
_("Active Layer only"));
|
||||
_("Current Layer only"));
|
||||
gtk_box_pack_start (GTK_BOX (vbox), button, FALSE, FALSE, 0);
|
||||
gtk_widget_show (button);
|
||||
|
||||
|
|
|
@ -177,7 +177,7 @@ gimp_move_options_notify_type (GimpMoveOptions *move_options,
|
|||
{
|
||||
case GIMP_TRANSFORM_TYPE_LAYER:
|
||||
false_label = _("Pick a Layer or Guide to Move");
|
||||
true_label = _("Move the Active Layer");
|
||||
true_label = _("Move the Current Layer");
|
||||
break;
|
||||
|
||||
case GIMP_TRANSFORM_TYPE_SELECTION:
|
||||
|
@ -187,7 +187,7 @@ gimp_move_options_notify_type (GimpMoveOptions *move_options,
|
|||
|
||||
case GIMP_TRANSFORM_TYPE_PATH:
|
||||
false_label = _("Pick a Path to Move");
|
||||
true_label = _("Move the Active Path");
|
||||
true_label = _("Move the Current Path");
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
|
@ -69,9 +69,9 @@ gimp_rect_select_mode_get_type (void)
|
|||
|
||||
static const GEnumValue gimp_transform_type_enum_values[] =
|
||||
{
|
||||
{ GIMP_TRANSFORM_TYPE_LAYER, N_("Transform Active Layer"), "layer" },
|
||||
{ GIMP_TRANSFORM_TYPE_LAYER, N_("Transform Layer"), "layer" },
|
||||
{ GIMP_TRANSFORM_TYPE_SELECTION, N_("Transform Selection"), "selection" },
|
||||
{ GIMP_TRANSFORM_TYPE_PATH, N_("Transform Active Path"), "path" },
|
||||
{ GIMP_TRANSFORM_TYPE_PATH, N_("Transform Path"), "path" },
|
||||
{ 0, NULL, NULL }
|
||||
};
|
||||
|
||||
|
|
|
@ -63,9 +63,9 @@ GType gimp_transform_type_get_type (void) G_GNUC_CONST;
|
|||
|
||||
typedef enum
|
||||
{
|
||||
GIMP_TRANSFORM_TYPE_LAYER, /*< desc="Transform Active Layer" >*/
|
||||
GIMP_TRANSFORM_TYPE_SELECTION, /*< desc="Transform Selection" >*/
|
||||
GIMP_TRANSFORM_TYPE_PATH /*< desc="Transform Active Path" >*/
|
||||
GIMP_TRANSFORM_TYPE_LAYER, /*< desc="Transform Layer" >*/
|
||||
GIMP_TRANSFORM_TYPE_SELECTION, /*< desc="Transform Selection" >*/
|
||||
GIMP_TRANSFORM_TYPE_PATH /*< desc="Transform Path" >*/
|
||||
} GimpTransformType;
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue