app/paint/gimpclone.c app/paint/gimpheal.c

2006-09-26  Michael Natterer  <mitch@gimp.org>

	* app/paint/gimpclone.c
	* app/paint/gimpheal.c
	* app/paint/gimpperspectiveclone.c
	* app/tools/gimpblendtool.c
	* app/tools/gimpcolorbalancetool.c
	* app/tools/gimpcurvestool.c
	* app/tools/gimplevelstool.c: message review. Thanks to Bill.
This commit is contained in:
Michael Natterer 2006-09-26 21:53:43 +00:00 committed by Michael Natterer
parent 1b1299aff3
commit f939f120d5
8 changed files with 17 additions and 7 deletions

View File

@ -1,3 +1,13 @@
2006-09-26 Michael Natterer <mitch@gimp.org>
* app/paint/gimpclone.c
* app/paint/gimpheal.c
* app/paint/gimpperspectiveclone.c
* app/tools/gimpblendtool.c
* app/tools/gimpcolorbalancetool.c
* app/tools/gimpcurvestool.c
* app/tools/gimplevelstool.c: message review. Thanks to Bill.
2006-09-26 Michael Natterer <mitch@gimp.org>
* app/paint/gimppaintcore.[ch]: added GError** parameter to

View File

@ -138,7 +138,7 @@ gimp_clone_start (GimpPaintCore *paint_core,
if (! gimp_context_get_pattern (GIMP_CONTEXT (options)))
{
g_set_error (error, 0, 0,
_("No patterns available for this operation."));
_("No patterns available for use with this tool."));
return FALSE;
}
}

View File

@ -122,7 +122,7 @@ gimp_heal_start (GimpPaintCore *paint_core,
if (! source_core->set_source && gimp_drawable_is_indexed (drawable))
{
g_set_error (error, 0, 0,
_("Indexed images are not currently supported."));
_("Healing does not operate on indexed layers."));
return FALSE;
}

View File

@ -160,7 +160,7 @@ gimp_perspective_clone_start (GimpPaintCore *paint_core,
if (! source_core->set_source && gimp_drawable_is_indexed (drawable))
{
g_set_error (error, 0, 0,
_("Indexed images are not currently supported."));
_("Perspective Clone does not operate on indexed layers."));
return FALSE;
}

View File

@ -158,7 +158,7 @@ gimp_blend_tool_initialize (GimpTool *tool,
if (gimp_drawable_is_indexed (drawable))
{
g_set_error (error, 0, 0,
_("Blend: Invalid for indexed images."));
_("Blend does not operate on indexed layers."));
return FALSE;
}

View File

@ -156,7 +156,7 @@ gimp_color_balance_tool_initialize (GimpTool *tool,
if (! gimp_drawable_is_rgb (drawable))
{
g_set_error (error, 0, 0,
_("Color balance operates only on RGB color layers."));
_("Color Balance operates only on RGB color layers."));
return FALSE;
}

View File

@ -255,7 +255,7 @@ gimp_curves_tool_initialize (GimpTool *tool,
if (gimp_drawable_is_indexed (drawable))
{
g_set_error (error, 0, 0,
_("Curves for indexed layers cannot be adjusted."));
_("Curves does not operate on indexed layers."));
return FALSE;
}

View File

@ -239,7 +239,7 @@ gimp_levels_tool_initialize (GimpTool *tool,
if (gimp_drawable_is_indexed (drawable))
{
g_set_error (error, 0, 0,
_("Levels for indexed layers cannot be adjusted."));
_("Levels does not operate on indexed layers."));
return FALSE;
}