[gimp] Misc. typos



commit 86edc31b11092aeaf846834ed7720851ee39e5e3
Author: luz.paz <luzpaz users noreply github com>
Date:   Sat Apr 6 10:36:03 2019 -0400

    Misc. typos
    
    Found via `codespell`

 app/config/gimpdialogconfig.c                   | 2 +-
 app/core/gimpcurve.c                            | 2 +-
 app/pdb/fileops-cmds.c                          | 2 +-
 app/pdb/image-cmds.c                            | 4 ++--
 icons/Color/scalable/gimp-tool-fuzzy-select.svg | 2 +-
 libgimp/gimpfileops_pdb.c                       | 2 +-
 libgimp/gimpimage_pdb.c                         | 4 ++--
 libgimpbase/gimpmetadata.c                      | 2 +-
 pdb/groups/fileops.pdb                          | 2 +-
 pdb/groups/image.pdb                            | 4 ++--
 10 files changed, 13 insertions(+), 13 deletions(-)
---
diff --git a/app/config/gimpdialogconfig.c b/app/config/gimpdialogconfig.c
index 766d1d18f4..9a226cf9d5 100644
--- a/app/config/gimpdialogconfig.c
+++ b/app/config/gimpdialogconfig.c
@@ -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,
diff --git a/app/core/gimpcurve.c b/app/core/gimpcurve.c
index ae12d15af3..ee57391164 100644
--- a/app/core/gimpcurve.c
+++ b/app/core/gimpcurve.c
@@ -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++)
     {
diff --git a/app/pdb/fileops-cmds.c b/app/pdb/fileops-cmds.c
index 5af8d42f54..18990c9c3f 100644
--- a/app/pdb/fileops-cmds.c
+++ b/app/pdb/fileops-cmds.c
@@ -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",
diff --git a/app/pdb/image-cmds.c b/app/pdb/image-cmds.c
index 17c56d737b..744518f37b 100644
--- a/app/pdb/image-cmds.c
+++ b/app/pdb/image-cmds.c
@@ -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",
diff --git a/icons/Color/scalable/gimp-tool-fuzzy-select.svg b/icons/Color/scalable/gimp-tool-fuzzy-select.svg
index a26642b663..10942d90fb 100644
--- a/icons/Color/scalable/gimp-tool-fuzzy-select.svg
+++ b/icons/Color/scalable/gimp-tool-fuzzy-select.svg
@@ -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>
diff --git a/libgimp/gimpfileops_pdb.c b/libgimp/gimpfileops_pdb.c
index 6f14eae610..6ed6502f78 100644
--- a/libgimp/gimpfileops_pdb.c
+++ b/libgimp/gimpfileops_pdb.c
@@ -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.
  *
diff --git a/libgimp/gimpimage_pdb.c b/libgimp/gimpimage_pdb.c
index add4b1b1e4..82548ef9b8 100644
--- a/libgimp/gimpimage_pdb.c
+++ b/libgimp/gimpimage_pdb.c
@@ -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.
  *
diff --git a/libgimpbase/gimpmetadata.c b/libgimpbase/gimpmetadata.c
index 70c40bc5b1..9bf18f83cc 100644
--- a/libgimpbase/gimpmetadata.c
+++ b/libgimpbase/gimpmetadata.c
@@ -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;
 
diff --git a/pdb/groups/fileops.pdb b/pdb/groups/fileops.pdb
index ff5ded8fa5..3dc668541e 100644
--- a/pdb/groups/fileops.pdb
+++ b/pdb/groups/fileops.pdb
@@ -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
diff --git a/pdb/groups/image.pdb b/pdb/groups/image.pdb
index d51079082c..cb12bfead8 100644
--- a/pdb/groups/image.pdb
+++ b/pdb/groups/image.pdb
@@ -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');


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]