Misc. typos

Found via `codespell`
This commit is contained in:
luz.paz 2019-04-06 10:36:03 -04:00 committed by luz paz
parent f4c6fd0ee4
commit 86edc31b11
10 changed files with 13 additions and 13 deletions

View File

@ -185,7 +185,7 @@ gimp_dialog_config_class_init (GimpDialogConfigClass *klass)
GIMP_CONFIG_PROP_ENUM (object_class, PROP_IMAGE_CONVERT_PROFILE_INTENT,
"image-convert-profile-intent",
"Default rendering intent fo color profile conversion",
"Default rendering intent for color profile conversion",
IMAGE_CONVERT_PROFILE_INTENT_BLURB,
GIMP_TYPE_COLOR_RENDERING_INTENT,
GIMP_COLOR_RENDERING_INTENT_RELATIVE_COLORIMETRIC,

View File

@ -1269,7 +1269,7 @@ gimp_curve_plot (GimpCurve *curve,
/*
* finally calculate the y(t) values for the given bezier values. We can
* use homogenously distributed values for t, since x(t) increases linearly.
* use homogeneously distributed values for t, since x(t) increases linearly.
*/
for (i = 0; i <= ROUND (dx * (gdouble) (curve->n_samples - 1)); i++)
{

View File

@ -1112,7 +1112,7 @@ register_fileops_procs (GimpPDB *pdb)
gimp_procedure_set_static_strings (procedure,
"gimp-register-file-handler-uri",
"Registers a file handler procedure as capable of handling URIs.",
"Registers a file handler procedure as capable of handling URIs. This allows GIMP to call the procecure directly for all kinds of URIs, and the 'filename' traditionally passed to file procesures turns into an URI.",
"Registers a file handler procedure as capable of handling URIs. This allows GIMP to call the procedure directly for all kinds of URIs, and the 'filename' traditionally passed to file procesures turns into an URI.",
"Michael Natterer <mitch@gimp.org>",
"Michael Natterer",
"2012",

View File

@ -3842,7 +3842,7 @@ register_image_procs (GimpPDB *pdb)
gimp_procedure_set_static_strings (procedure,
"gimp-image-raise-item",
"Raise the specified item in its level in its item tree",
"This procedure raises the specified item one step in the item tree. The procecure call will fail if there is no item above it.",
"This procedure raises the specified item one step in the item tree. The procedure call will fail if there is no item above it.",
"Michael Natterer <mitch@gimp.org>",
"Michael Natterer",
"2010",
@ -3871,7 +3871,7 @@ register_image_procs (GimpPDB *pdb)
gimp_procedure_set_static_strings (procedure,
"gimp-image-lower-item",
"Lower the specified item in its level in its item tree",
"This procedure lowers the specified item one step in the item tree. The procecure call will fail if there is no item below it.",
"This procedure lowers the specified item one step in the item tree. The procedure call will fail if there is no item below it.",
"Michael Natterer <mitch@gimp.org>",
"Michael Natterer",
"2010",

View File

@ -161,7 +161,7 @@
<rdf:li>select</rdf:li>
<rdf:li>region</rdf:li>
<rdf:li>continuous</rdf:li>
<rdf:li>homogenous</rdf:li>
<rdf:li>homogeneous</rdf:li>
<rdf:li>color</rdf:li>
</rdf:Bag>
</dc:subject>

Before

Width:  |  Height:  |  Size: 7.9 KiB

After

Width:  |  Height:  |  Size: 7.9 KiB

View File

@ -449,7 +449,7 @@ gimp_register_file_handler_mime (const gchar *procedure_name,
* Registers a file handler procedure as capable of handling URIs.
*
* Registers a file handler procedure as capable of handling URIs. This
* allows GIMP to call the procecure directly for all kinds of URIs,
* allows GIMP to call the procedure directly for all kinds of URIs,
* and the 'filename' traditionally passed to file procesures turns
* into an URI.
*

View File

@ -1285,7 +1285,7 @@ gimp_image_get_item_position (gint32 image_ID,
* Raise the specified item in its level in its item tree
*
* This procedure raises the specified item one step in the item tree.
* The procecure call will fail if there is no item above it.
* The procedure call will fail if there is no item above it.
*
* Returns: TRUE on success.
*
@ -1320,7 +1320,7 @@ gimp_image_raise_item (gint32 image_ID,
* Lower the specified item in its level in its item tree
*
* This procedure lowers the specified item one step in the item tree.
* The procecure call will fail if there is no item below it.
* The procedure call will fail if there is no item below it.
*
* Returns: TRUE on success.
*

View File

@ -1617,7 +1617,7 @@ gimp_metadata_copy_tags (GExiv2Metadata *src,
for (i = 0; tags[i] != NULL; i++)
{
/* don't copy the same tag multile times */
/* don't copy the same tag multiple times */
if (i > 0 && ! strcmp (tags[i], tags[i - 1]))
continue;

View File

@ -594,7 +594,7 @@ sub register_file_handler_uri {
$help = <<'HELP';
Registers a file handler procedure as capable of handling URIs. This
allows GIMP to call the procecure directly for all kinds of URIs, and
allows GIMP to call the procedure directly for all kinds of URIs, and
the 'filename' traditionally passed to file procesures turns into an
URI.
HELP

View File

@ -554,7 +554,7 @@ sub image_raise_item {
$help = <<'HELP';
This procedure raises the specified item one step in the item tree.
The procecure call will fail if there is no item above it.
The procedure call will fail if there is no item above it.
HELP
&mitch_pdb_misc('2010', '2.8');
@ -583,7 +583,7 @@ sub image_lower_item {
$help = <<'HELP';
This procedure lowers the specified item one step in the item tree.
The procecure call will fail if there is no item below it.
The procedure call will fail if there is no item below it.
HELP
&mitch_pdb_misc('2010', '2.8');