diff --git a/app/pdb/color_cmds.c b/app/pdb/color_cmds.c index b1ab48fce1..10431d3192 100644 --- a/app/pdb/color_cmds.c +++ b/app/pdb/color_cmds.c @@ -1192,7 +1192,7 @@ register_color_procs (GimpPDB *pdb) gimp_procedure_set_static_strings (procedure, "gimp-color-balance", "Modify the color balance of the specified drawable.", - "Modify the color balance of the specified drawable. There are three axis which can be modified: cyan-red, magenta-green, and yellow-blue. Negative values increase the amount of the former, positive values increase the amount of the latter. Color balance can be controlled with the 'transfer_mode' setting, which allows shadows, midtones, and highlights in an image to be affected differently. The 'preserve-lum' parameter, if TRUE, ensures that the luminosity of each pixel remains fixed.", + "Modify the color balance of the specified drawable. There are three axis which can be modified: cyan-red, magenta-green, and yellow-blue. Negative values increase the amount of the former, positive values increase the amount of the latter. Color balance can be controlled with the 'transfer_mode' setting, which allows shadows, mid-tones, and highlights in an image to be affected differently. The 'preserve-lum' parameter, if TRUE, ensures that the luminosity of each pixel remains fixed.", "Spencer Kimball & Peter Mattis", "Spencer Kimball & Peter Mattis", "1997", @@ -1245,7 +1245,7 @@ register_color_procs (GimpPDB *pdb) gimp_procedure_set_static_strings (procedure, "gimp-colorize", "Render the drawable as a grayscale image seen through a colored glass.", - "Desatures the drawable, then tints it with the specified color. This tool is only valid on RGB color images. It will not operate on grayscale or indexed drawables.", + "Desaturates the drawable, then tints it with the specified color. This tool is only valid on RGB color images. It will not operate on grayscale or indexed drawables.", "Sven Neumann ", "Sven Neumann", "2004", diff --git a/app/pdb/drawable_cmds.c b/app/pdb/drawable_cmds.c index 6026e8374b..44ecb54cc0 100644 --- a/app/pdb/drawable_cmds.c +++ b/app/pdb/drawable_cmds.c @@ -1856,7 +1856,7 @@ register_drawable_procs (GimpPDB *pdb) gimp_procedure_set_static_strings (procedure, "gimp-drawable-mask-bounds", "Find the bounding box of the current selection in relation to the specified drawable.", - "This procedure returns whether there is a selection. If there is one, the upper left and lower righthand corners of its bounding box are returned. These coordinates are specified relative to the drawable's origin, and bounded by the drawable's extents. Please note that the pixel specified by the lower righthand coordinate of the bounding box is not part of the selection. The selection ends at the upper left corner of this pixel. This means the width of the selection can be calculated as (x2 - x1), its height as (y2 - y1). Note that the returned boolean does NOT correspond with the returned region being empty or not, it always returns whether the selection is non_empty. See 'gimp-drawable-mask-intersect' for a boolean return value which is more useful in most cases.", + "This procedure returns whether there is a selection. If there is one, the upper left and lower right-hand corners of its bounding box are returned. These coordinates are specified relative to the drawable's origin, and bounded by the drawable's extents. Please note that the pixel specified by the lower right-hand coordinate of the bounding box is not part of the selection. The selection ends at the upper left corner of this pixel. This means the width of the selection can be calculated as (x2 - x1), its height as (y2 - y1). Note that the returned boolean does NOT correspond with the returned region being empty or not, it always returns whether the selection is non_empty. See 'gimp-drawable-mask-intersect' for a boolean return value which is more useful in most cases.", "Spencer Kimball & Peter Mattis", "Spencer Kimball & Peter Mattis", "1995-1996", diff --git a/libgimp/gimpcolor_pdb.c b/libgimp/gimpcolor_pdb.c index 967a971698..7eb406864a 100644 --- a/libgimp/gimpcolor_pdb.c +++ b/libgimp/gimpcolor_pdb.c @@ -458,7 +458,7 @@ gimp_curves_explicit (gint32 drawable_ID, * yellow-blue. Negative values increase the amount of the former, * positive values increase the amount of the latter. Color balance can * be controlled with the 'transfer_mode' setting, which allows - * shadows, midtones, and highlights in an image to be affected + * shadows, mid-tones, and highlights in an image to be affected * differently. The 'preserve-lum' parameter, if TRUE, ensures that the * luminosity of each pixel remains fixed. * @@ -503,8 +503,8 @@ gimp_color_balance (gint32 drawable_ID, * Render the drawable as a grayscale image seen through a colored * glass. * - * Desatures the drawable, then tints it with the specified color. This - * tool is only valid on RGB color images. It will not operate on + * Desaturates the drawable, then tints it with the specified color. + * This tool is only valid on RGB color images. It will not operate on * grayscale or indexed drawables. * * Returns: TRUE on success. diff --git a/libgimp/gimpdrawable_pdb.c b/libgimp/gimpdrawable_pdb.c index 8462d36d2f..dfb643719f 100644 --- a/libgimp/gimpdrawable_pdb.c +++ b/libgimp/gimpdrawable_pdb.c @@ -803,10 +803,10 @@ gimp_drawable_set_tattoo (gint32 drawable_ID, * specified drawable. * * This procedure returns whether there is a selection. If there is - * one, the upper left and lower righthand corners of its bounding box + * one, the upper left and lower right-hand corners of its bounding box * are returned. These coordinates are specified relative to the * drawable's origin, and bounded by the drawable's extents. Please - * note that the pixel specified by the lower righthand coordinate of + * note that the pixel specified by the lower right-hand coordinate of * the bounding box is not part of the selection. The selection ends at * the upper left corner of this pixel. This means the width of the * selection can be calculated as (x2 - x1), its height as (y2 - y1).