[glade] Fix minor typos



commit b8b1b0fa7b072dadcc9a875bfc76847ee9a6fc35
Author: Yuri Chornoivan <yurchor ukr net>
Date:   Sat Mar 21 19:32:17 2020 +0200

    Fix minor typos

 build/linux/LibcWrapGenerator.vala        |  2 +-
 doc/catalogintro.sgml                     |  8 +++---
 doc/gladepython.sgml                      |  2 +-
 doc/properties.sgml                       |  4 +--
 doc/widgetclasses.sgml                    | 10 +++----
 gladeui/glade-app.c                       |  4 +--
 gladeui/glade-base-editor.c               |  8 +++---
 gladeui/glade-builtins.c                  |  2 +-
 gladeui/glade-catalog.c                   |  2 +-
 gladeui/glade-catalog.h                   |  2 +-
 gladeui/glade-command.c                   | 14 ++++-----
 gladeui/glade-dnd.c                       |  2 +-
 gladeui/glade-editor-property.c           |  4 +--
 gladeui/glade-editor-table.c              |  6 ++--
 gladeui/glade-editor.c                    | 10 +++----
 gladeui/glade-named-icon-chooser-dialog.c |  4 +--
 gladeui/glade-placeholder.c               |  4 +--
 gladeui/glade-preview.c                   |  2 +-
 gladeui/glade-previewer.c                 |  6 ++--
 gladeui/glade-project.c                   | 26 ++++++++---------
 gladeui/glade-property-def.c              | 10 +++----
 gladeui/glade-property-label.c            |  2 +-
 gladeui/glade-property.c                  |  4 +--
 gladeui/glade-signal-editor.c             |  4 +--
 gladeui/glade-tsort.c                     |  2 +-
 gladeui/glade-utils.c                     | 14 ++++-----
 gladeui/glade-widget-action.c             |  4 +--
 gladeui/glade-widget-adaptor.c            | 48 +++++++++++++++----------------
 gladeui/glade-widget-adaptor.h            | 36 +++++++++++------------
 gladeui/glade-widget.c                    | 40 +++++++++++++-------------
 gladeui/glade-xml-utils.c                 | 10 +++----
 gladeui/glade-xml-utils.h                 |  2 +-
 plugins/gladeui/gladeui.xml               |  6 ++--
 plugins/gtk+/glade-attributes.c           |  2 +-
 plugins/gtk+/glade-attributes.h           |  2 +-
 plugins/gtk+/glade-column-types.c         |  2 +-
 plugins/gtk+/glade-fixed.h                |  2 +-
 plugins/gtk+/glade-gtk-about-dialog.c     |  2 +-
 plugins/gtk+/glade-gtk-box.c              |  4 +--
 plugins/gtk+/glade-gtk-button.c           |  2 +-
 plugins/gtk+/glade-gtk-container.c        |  6 ++--
 plugins/gtk+/glade-gtk-dialog.c           |  6 ++--
 plugins/gtk+/glade-gtk-fixed-layout.c     |  2 +-
 plugins/gtk+/glade-gtk-grid.c             |  2 +-
 plugins/gtk+/glade-gtk-notebook.c         |  2 +-
 plugins/gtk+/glade-gtk-text-view.c        |  2 +-
 plugins/gtk+/glade-gtk-widget.c           |  4 +--
 plugins/gtk+/glade-label-editor.c         |  2 +-
 plugins/gtk+/gtk+.xml                     |  2 +-
 src/glade-http.c                          |  6 ++--
 src/glade-registration.c                  |  2 +-
 tests/Makefile.am                         |  2 +-
 52 files changed, 179 insertions(+), 179 deletions(-)
---
diff --git a/build/linux/LibcWrapGenerator.vala b/build/linux/LibcWrapGenerator.vala
index 10d4a659..830ad761 100644
--- a/build/linux/LibcWrapGenerator.vala
+++ b/build/linux/LibcWrapGenerator.vala
@@ -244,7 +244,7 @@ public class Main : Object {
 
                                        symbolMap.set (symbolName, version);
 
-                                       /* First occurance of the symbol, if it's older
+                                       /* First occurrence of the symbol, if it's older
                                         * than the minimum required, put it in that table also
                                         */
                                        if (minimumVersion.newerThan (version)) {
diff --git a/doc/catalogintro.sgml b/doc/catalogintro.sgml
index e15236c4..8abfce2c 100644
--- a/doc/catalogintro.sgml
+++ b/doc/catalogintro.sgml
@@ -64,7 +64,7 @@ are integrating an object "Frobnicator":
     <title>Toplevel catalog properties and tags</title>
     <para>
 When defining the catalog, the 'name' and 'library' 
-are both manditory attributes of the 'glade-catalog' tag; optionally
+are both mandatory attributes of the 'glade-catalog' tag; optionally
 you can also use 'icon-prefix', 'depends' and 'domain'.
     </para>
 
@@ -95,7 +95,7 @@ Please note that all versioning related support is completely optional.
         <term>targetable</term>
         <listitem>
           <para>
-A comma separated list of 'major.minor' formed versions describing sensable previous
+A comma separated list of 'major.minor' formed versions describing sensible previous
 targetable versions of the underlying toolkit not including the current version; 
 example: <literal>targetable="0.6,0.8"</literal>.
           </para>
@@ -144,7 +144,7 @@ for your plugin.
         <listitem>
           <para>
 The domain in which to search for translatable strings from the 
-catalog file; please note that all strings from the catalog that will apear in the UI are
+catalog file; please note that all strings from the catalog that will appear in the UI are
 translated using this domain. If the 'domain' is not specified, the library property will
 be used in it's stead.
           </para>
@@ -156,7 +156,7 @@ be used in it's stead.
         <listitem>
           <para>
 Used to specify a namespace to search devhelp docs library with
-(specificly, it is the $(DOC_MODULE) that you specified in your gtk-doc Makefile.am).
+(specifically, it is the $(DOC_MODULE) that you specified in your gtk-doc Makefile.am).
           </para>
         </listitem>
       </varlistentry>
diff --git a/doc/gladepython.sgml b/doc/gladepython.sgml
index 327d13d5..141f6a4e 100644
--- a/doc/gladepython.sgml
+++ b/doc/gladepython.sgml
@@ -55,7 +55,7 @@ domain="glade-3" depends="gtk+">
 Glade's python interpreter will look up for your widgets in the same
 places it looks
 for regular catalogs plugins, that is $GLADE_ENV_MODULE_PATH
-enviroment variable
+environment variable
 and `pkg-config --variable=moduledir gladeui-2.0`
 
 So the easiest thing would be to make a symlink in one of those directory, just
diff --git a/doc/properties.sgml b/doc/properties.sgml
index 8e3e6a80..bc73207c 100644
--- a/doc/properties.sgml
+++ b/doc/properties.sgml
@@ -43,7 +43,7 @@ Properties of the 'property' tag:
           <term>id</term>
           <listitem>
             <para>
-This is manditory and specifies the property that we are modifying (or adding)
+This is mandatory and specifies the property that we are modifying (or adding)
             </para>
           </listitem>
         </varlistentry>
@@ -210,7 +210,7 @@ the widget when pasted to a new container that supports the same properties.
           <term>save-always</term>
           <listitem>
             <para>
-Specifies that the property should be saved regardless of its value (properties at thier
+Specifies that the property should be saved regardless of its value (properties at their
 default values are normally not saved).
             </para>
           </listitem>
diff --git a/doc/widgetclasses.sgml b/doc/widgetclasses.sgml
index a051ba33..27fc8f7d 100644
--- a/doc/widgetclasses.sgml
+++ b/doc/widgetclasses.sgml
@@ -16,7 +16,7 @@ Adding support for custom widgets
     <para>
 Widget support in Glade is provided by the #GladeWidgetAdaptor object, each
 `glade-widget-class' definition in the catalog will result in the creation
-of an adaptor, which inherits the funcionality of the adaptor created for its
+of an adaptor, which inherits the functionality of the adaptor created for its
 parent, or the closest adaptor available in the ancestry. Adaptor methods can
 be overridden by functions in the plugin by specifying them in the catalog.
 There is also a wealth of options you can use in the `glade-widget-class' without
@@ -76,7 +76,7 @@ Here is the complete example of the form of the `glade-widget-class' definition:
   <refsect1>
     <title>Widget Class Properties</title>
     <para>
-The following are all properies of the `glade-widget-class' tag
+The following are all properties of the `glade-widget-class' tag
     </para>
     <variablelist>
       <varlistentry>
@@ -168,7 +168,7 @@ tree and will be translated before use in the interface.
           <para>
 Use this to specify the name of the parent your widget derives from, you
 can use this option instead of loading a real widget type (this allows you
-to fake derive and still add properties and run your catalog independantly
+to fake derive and still add properties and run your catalog independently
 of any plugins or libraries).
           </para>
         </listitem>
@@ -506,7 +506,7 @@ are added to the toolbar.
     <para>
 Default values can be specified for packing properties on your widget when added
 to a said type of parent, as the example shows above; use the `parent-class' to 
-specify what parent (or derivative of that parent) you are targetting and fill
+specify what parent (or derivative of that parent) you are targeting and fill
 in any `child-property' tags you need for that parent using `id' property to 
 specify the property name and the `default' property for the value.
     </para>
@@ -542,7 +542,7 @@ and GENERIC_NAME is the value of an widget class's generic name attribute.
     </para>
   
     <para>
-To explicity set an icon name for a widget class, the "icon-name" attribute of the
+To explicitly set an icon name for a widget class, the "icon-name" attribute of the
 "glade-widget-class" element can be specified. This will override the default icon 
 name assigned to the widget class.
     </para>
diff --git a/gladeui/glade-app.c b/gladeui/glade-app.c
index 43069954..f60b9b8a 100644
--- a/gladeui/glade-app.c
+++ b/gladeui/glade-app.c
@@ -463,7 +463,7 @@ glade_app_class_init (GladeAppClass *klass)
   /**
    * GladeApp::widget-adaptor-registered:
    * @gladeapp: the #GladeApp which received the signal.
-   * @adaptor: the newlly registered #GladeWidgetAdaptor.
+   * @adaptor: the newly registered #GladeWidgetAdaptor.
    *
    * Emitted when a new widget adaptor is registered.
    */
@@ -503,7 +503,7 @@ glade_app_do_event (GdkEvent *event)
   gdk_window_get_user_data (window, &widget);
 
   /* As a slight optimization we could replace gtk_widget_get_ancestor()
-   * with a custom function that only iterates trought parents with windows.
+   * with a custom function that only iterates trough parents with windows.
    */
   if (widget && IS_GLADE_WIDGET_EVENT (event->type) &&
       (layout = gtk_widget_get_ancestor (widget, GLADE_TYPE_DESIGN_LAYOUT)))
diff --git a/gladeui/glade-base-editor.c b/gladeui/glade-base-editor.c
index f55677f0..f96b62b7 100644
--- a/gladeui/glade-base-editor.c
+++ b/gladeui/glade-base-editor.c
@@ -1409,7 +1409,7 @@ glade_base_editor_change_type (GladeBaseEditor *editor,
 
   child_new = glade_widget_get_object (gchild_new);
 
-  /* Cut and Paste childrens */
+  /* Cut and Paste children */
   if ((children = glade_widget_get_children (gchild)) != NULL)
     {
       GList *gchildren = NULL;
@@ -1636,7 +1636,7 @@ glade_base_editor_class_init (GladeBaseEditorClass *klass)
    * @gladebaseeditor: the #GladeBaseEditor which received the signal.
    * @gchild: the selected #GladeWidget.
    *
-   * Emited when the user selects a child in the editor's treeview.
+   * Emitted when the user selects a child in the editor's treeview.
    * You can add the relevant child properties here using 
    * glade_base_editor_add_default_properties() and glade_base_editor_add_properties() 
    * You can also add labels with glade_base_editor_add_label to make the
@@ -1656,7 +1656,7 @@ glade_base_editor_class_init (GladeBaseEditorClass *klass)
    * @child: the #GObject being changed.
    * @type: the new type for @child.
    *
-   * Returns: TRUE to stop signal emision.
+   * Returns: TRUE to stop signal emission.
    */
   glade_base_editor_signals[SIGNAL_CHANGE_TYPE] =
       g_signal_new ("change-type",
@@ -1726,7 +1726,7 @@ glade_base_editor_class_init (GladeBaseEditorClass *klass)
    *
    * Move child here if something else must be done other than cut & paste.
    *
-   * Returns: wheater child has been sucessfully moved or not.
+   * Returns: whether child has been successfully moved or not.
    */
   glade_base_editor_signals[SIGNAL_MOVE_CHILD] =
       g_signal_new ("move-child",
diff --git a/gladeui/glade-builtins.c b/gladeui/glade-builtins.c
index a5edbee1..8dbe6a5c 100644
--- a/gladeui/glade-builtins.c
+++ b/gladeui/glade-builtins.c
@@ -403,7 +403,7 @@ glade_glist_get_type (void)
 
 /****************************************************************
  *  Built-in GladeParamSpecObjects for object list properties   *
- *  (Used as a pspec to desctibe an AtkRelationSet, but can     *
+ *  (Used as a pspec to describe an AtkRelationSet, but can     *
  *  for any object list property)                               *
  ****************************************************************/
 static void
diff --git a/gladeui/glade-catalog.c b/gladeui/glade-catalog.c
index b10c51e3..9a0f3ead 100644
--- a/gladeui/glade-catalog.c
+++ b/gladeui/glade-catalog.c
@@ -658,7 +658,7 @@ glade_catalog_load_all (void)
   for (l = catalog_paths; l; l = g_list_next (l))
     catalogs = catalogs_from_path (catalogs, l->data);
   
-  /* Catalogs need dependancies, most catalogs depend on
+  /* Catalogs need dependencies, most catalogs depend on
    * the gtk+ catalog, but some custom toolkits may depend
    * on the gnome catalog for instance.
    */
diff --git a/gladeui/glade-catalog.h b/gladeui/glade-catalog.h
index 24e77730..5187e7dd 100644
--- a/gladeui/glade-catalog.h
+++ b/gladeui/glade-catalog.h
@@ -42,7 +42,7 @@ typedef struct _GladeWidgetGroup GladeWidgetGroup;
  * @name: The name of the catalog
  *
  * Called once at glade startup time for every catalog, catalogs
- * are initialized in order of dependancies.
+ * are initialized in order of dependencies.
  */
 typedef void      (*GladeCatalogInitFunc)    (const gchar *name);
 
diff --git a/gladeui/glade-command.c b/gladeui/glade-command.c
index 03a0a8a9..3a38eca6 100644
--- a/gladeui/glade-command.c
+++ b/gladeui/glade-command.c
@@ -264,12 +264,12 @@ glade_command_collapse (GladeCommand *command, GladeCommand *other)
 
 /**
  * glade_command_push_group:
- * @fmt:         The collective desctiption of the command group.
+ * @fmt:         The collective description of the command group.
  *               only the description of the first group on the 
  *               stack is used when embedding groups.
  * @...: args to the format string.
  *
- * Marks the begining of a group.
+ * Marks the beginning of a group.
  */
 void
 glade_command_push_group (const gchar *fmt, ...)
@@ -1178,9 +1178,9 @@ get_all_parentless_reffed_widgets (GList *reffed, GladeWidget *widget)
  * @pasting: whether we are pasting an existing widget or creating a new one.
  *
  * Performs an add command on all widgets in @widgets to @parent, possibly
- * replacing @placeholder (note toplevels dont need a parent; the active project
+ * replacing @placeholder (note toplevels don't need a parent; the active project
  * will be used when pasting toplevel objects).
- * Pasted widgets will persist packing properties from thier cut/copy source
+ * Pasted widgets will persist packing properties from their cut/copy source
  * while newly added widgets will prefer packing defaults.
  *
  */
@@ -1209,7 +1209,7 @@ glade_command_add (GList            *widgets,
   me->add = TRUE;
   me->from_clipboard = pasting;
 
-  /* Things can go wrong in this function if the dataset is inacurate,
+  /* Things can go wrong in this function if the dataset is inaccurate,
    * we make no real attempt here to recover, just g_critical() and
    * fix the bugs as they pop up.
    */
@@ -2816,7 +2816,7 @@ glade_command_property_unifies (GladeCommand *this_cmd, GladeCommand *other_cmd)
       GladeCommandProperty *this = (GladeCommandProperty *) this_cmd;
       GladeCommandProperty *other = (GladeCommandProperty *) other_cmd;
 
-      /* Intern strings can be compared by comparind the pointers */
+      /* Intern strings can be compared by comparing the pointers */
       return this->property_id == other->property_id;
     }
 
@@ -2894,7 +2894,7 @@ glade_command_set_project_property (GladeProject       *project,
   me->description_new = description_new;
   me->property_id = g_intern_static_string (property_id);
 
-  /* move the old value to the comand struct */
+  /* move the old value to the command struct */
   me->old_value = old_value;
 
   /* set new value */
diff --git a/gladeui/glade-dnd.c b/gladeui/glade-dnd.c
index 4a94fc22..39e6fb24 100644
--- a/gladeui/glade-dnd.c
+++ b/gladeui/glade-dnd.c
@@ -82,7 +82,7 @@ on_drag_icon_draw (GtkWidget *widget, cairo_t *cr)
   gdouble h2;
   GdkRGBA bg;
 
-  /* Not needed acording to GtkWidget:draw documentation
+  /* Not needed according to GtkWidget:draw documentation
    * But seems like there is a bug when used as a drag_icon that makes the
    * cairo translation used here persist when drawing children.
    */
diff --git a/gladeui/glade-editor-property.c b/gladeui/glade-editor-property.c
index 4343194e..34233871 100644
--- a/gladeui/glade-editor-property.c
+++ b/gladeui/glade-editor-property.c
@@ -511,7 +511,7 @@ glade_editor_property_finalize (GObject *object)
   GladeEditorProperty *eprop = GLADE_EDITOR_PROPERTY (object);
   GladeEditorPropertyPrivate *priv = glade_editor_property_get_instance_private (eprop);
 
-  /* detatch from loaded property */
+  /* detouch from loaded property */
   glade_editor_property_load_common (eprop, NULL);
 
   g_free (priv->custom_text);
@@ -957,7 +957,7 @@ glade_eprop_numeric_force_update (GtkSpinButton       *spin,
         {
           /* Here we commit the new property value but we make sure 
            * glade_eprop_numeric_load() is not called to prevent
-           * gtk_spin_button_set_value() changing the the value the
+           * gtk_spin_button_set_value() changing the value the
            * user is trying to input.
            */
           GladeEPropNumeric *eprop_numeric = GLADE_EPROP_NUMERIC (eprop);
diff --git a/gladeui/glade-editor-table.c b/gladeui/glade-editor-table.c
index d03d4aee..733c5f63 100644
--- a/gladeui/glade-editor-table.c
+++ b/gladeui/glade-editor-table.c
@@ -83,7 +83,7 @@ struct _GladeEditorTablePrivate
 
   GList *properties; /* A list of GladeEditorPropery items.
                       * For each row in the gtk_table, there is a
-                      * corrsponding GladeEditorProperty struct.
+                      * corresponding GladeEditorProperty struct.
                       */
 
   GladeEditorPageType type; /* Is this table to be used in the common tab, ?
@@ -493,7 +493,7 @@ property_class_comp (gconstpointer a, gconstpointer b)
       else
         return 0;
     }
-  /* Group properties by thier class hierarchy */
+  /* Group properties by their class hierarchy */
   else
     {
       if (g_type_is_a (pa->owner_type, pb->owner_type))
@@ -629,7 +629,7 @@ append_name_field (GladeEditorTable *table)
   glade_editor_table_attach (table, priv->name_label, 0, priv->rows);
   glade_editor_table_attach (table, priv->name_field, 1, priv->rows);
 
-  /* Set initial visiblity */
+  /* Set initial visibility */
   gtk_widget_set_visible (priv->name_label, priv->show_name);
   gtk_widget_set_visible (priv->name_field, priv->show_name);
 
diff --git a/gladeui/glade-editor.c b/gladeui/glade-editor.c
index 89d0d9f9..ccbd9576 100644
--- a/gladeui/glade-editor.c
+++ b/gladeui/glade-editor.c
@@ -107,7 +107,7 @@ typedef struct _GladeEditorPrivate
                          * them on demand
                          */
         
-  GtkWidget *packing_page; /* Packing pages are dynamicly created each
+  GtkWidget *packing_page; /* Packing pages are dynamically created each
                             * selection, this pointer is only to free
                             * the last packing page.
                             */
@@ -558,7 +558,7 @@ static void
 glade_editor_close_cb (GladeProject *project, GladeEditor *editor)
 {
   /* project we are viewing was closed,
-   * detatch from editor.
+   * detouch from editor.
    */
   glade_editor_load_widget (editor, NULL);
 }
@@ -571,7 +571,7 @@ glade_editor_removed_cb (GladeProject *project,
   GladeEditorPrivate *priv = glade_editor_get_instance_private (editor);
 
   /* Widget we were viewing was removed from project,
-   * detatch from editor.
+   * detouch from editor.
    */
   if (widget == priv->loaded_widget)
     glade_editor_load_widget (editor, NULL);
@@ -879,7 +879,7 @@ glade_editor_reset_view (void)
                                                G_TYPE_INT,      /* Parent node ?       */
                                                G_TYPE_BOOLEAN,  /* Child node ?        */
                                                G_TYPE_BOOLEAN,  /* Has default value   */
-                                               G_TYPE_BOOLEAN,  /* Doesn't have defaut */
+                                               G_TYPE_BOOLEAN,  /* Doesn't have default */
                                                G_TYPE_STRING);  /* Default string      */
 
   view_widget = gtk_tree_view_new_with_model (model);
@@ -1129,7 +1129,7 @@ glade_editor_reset_properties (GList *props)
     }
 
   if (project)
-    /* GladeCommand takes ownership of allocated list, ugly but practicle */
+    /* GladeCommand takes ownership of allocated list, ugly but practical */
     glade_command_set_properties_list (project, sdata_list);
 
 }
diff --git a/gladeui/glade-named-icon-chooser-dialog.c b/gladeui/glade-named-icon-chooser-dialog.c
index 39da21a1..ad367c9f 100644
--- a/gladeui/glade-named-icon-chooser-dialog.c
+++ b/gladeui/glade-named-icon-chooser-dialog.c
@@ -1567,7 +1567,7 @@ glade_named_icon_chooser_dialog_class_init (GladeNamedIconChooserDialogClass *kl
    * This signal is emitted when there is a change in the set of
    * selected icon names.  This can happen when a user
    * modifies the selection with the mouse or the keyboard, or when
-   * explicitely calling functions to change the selection.
+   * explicitly calling functions to change the selection.
    */
   dialog_signals[SELECTION_CHANGED] =
       g_signal_new ("selection-changed",
@@ -1674,7 +1674,7 @@ settings_to_keyfile (GladeNamedIconChooserDialog *dialog)
   return keyfile;
 }
 
-/* serializes the the current configuration to the config file */
+/* serializes the current configuration to the config file */
 static void
 settings_save (GladeNamedIconChooserDialog *dialog)
 {
diff --git a/gladeui/glade-placeholder.c b/gladeui/glade-placeholder.c
index ced5b92b..03d40351 100644
--- a/gladeui/glade-placeholder.c
+++ b/gladeui/glade-placeholder.c
@@ -27,8 +27,8 @@
  * @Short_Description: A #GtkWidget to fill empty places.
  *
  * Generally in Glade, container widgets are implemented with #GladePlaceholder 
- * children to allow users to 'click' and add thier widgets to a container. 
- * It is the responsability of the plugin writer to create placeholders for 
+ * children to allow users to 'click' and add their widgets to a container. 
+ * It is the responsibility of the plugin writer to create placeholders for 
  * container widgets where appropriate; usually in #GladePostCreateFunc 
  * when the #GladeCreateReason is %GLADE_CREATE_USER.
  */
diff --git a/gladeui/glade-preview.c b/gladeui/glade-preview.c
index 05897ff0..294fd31a 100644
--- a/gladeui/glade-preview.c
+++ b/gladeui/glade-preview.c
@@ -26,7 +26,7 @@
  * @Short_Description: The glade preview launch/kill interface.
  *
  * This object owns all data that is needed to keep a preview. It stores
- * the GIOChannel used for comunnication between glade and glade-previewer,
+ * the GIOChannel used for communication between glade and glade-previewer,
  * the event source id for a watch  (in the case a watch is used to monitor
  * the communication channel), the previewed widget and the pid of the
  * corresponding glade-previewer.
diff --git a/gladeui/glade-previewer.c b/gladeui/glade-previewer.c
index 8cdbe25e..9b835bad 100644
--- a/gladeui/glade-previewer.c
+++ b/gladeui/glade-previewer.c
@@ -651,7 +651,7 @@ glade_previewer_slideshow_save (GladePreviewer *preview,
  * 
  * Set whether to print handlers when they are activated or not.
  * It only works if you use glade_previewer_connect_function() as the 
- * connect funtion.
+ * connect function.
  */
 void
 glade_previewer_set_print_handlers (GladePreviewer *preview,
@@ -778,11 +778,11 @@ on_handler_called (SignalData *data)
   data->n_invocations++;
 
   if (data->n_invocations == 1)
-    /* translators: this will be shown in glade previewer when a signal %s::%s is emited one time */
+    /* translators: this will be shown in glade previewer when a signal %s::%s is emitted one time */
     g_string_append_printf (message, _("%s::%s emitted one time"),
                             G_OBJECT_TYPE_NAME (object), query->signal_name);
   else
-    /* translators: this will be shown in glade previewer when a signal %s::%s is emited %d times */
+    /* translators: this will be shown in glade previewer when a signal %s::%s is emitted %d times */
     g_string_append_printf (message, _("%s::%s emitted %d times"),
                             G_OBJECT_TYPE_NAME (object), query->signal_name,
                             data->n_invocations);
diff --git a/gladeui/glade-project.c b/gladeui/glade-project.c
index 6c7495c5..132b6deb 100644
--- a/gladeui/glade-project.c
+++ b/gladeui/glade-project.c
@@ -943,10 +943,10 @@ glade_project_class_init (GladeProjectClass *klass)
   /**
    * GladeProject::widget-visibility-changed:
    * @gladeproject: the #GladeProject which received the signal.
-   * @widget: the widget that its visibity changed
-   * @visible: the current visiblity of the widget
+   * @widget: the widget that its visibility changed
+   * @visible: the current visibility of the widget
    *
-   * Emitted when the visivility of a widget changed
+   * Emitted when the visibility of a widget changed
    */
   glade_project_signals[WIDGET_VISIBILITY_CHANGED] =
       g_signal_new ("widget-visibility-changed",
@@ -1399,7 +1399,7 @@ glade_project_fix_object_props (GladeProject *project)
                                         "glade-loaded-object")) != NULL)
             {
               /* Parse the object list and set the property to it
-               * (this magicly works for both objects & object lists)
+               * (this magically works for both objects & object lists)
                */
               value = glade_property_def_make_gvalue_from_string (def, txt, project);
 
@@ -2146,7 +2146,7 @@ glade_project_load_internal (GladeProject *project)
 
   glade_project_read_comments (project, root);
 
-  /* Read requieres, and do not abort load if there are missing catalog since
+  /* Read requires, and do not abort load if there are missing catalog since
    * GladeObjectStub is created to keep the original xml for unknown object classes
    */
   glade_project_read_requires (project, root, load_path ? load_path : priv->path, &has_gtk_dep);
@@ -3087,7 +3087,7 @@ glade_project_writing_preview (GladeProject       *project)
 }
 
 /*******************************************************************
-     Verify code here (versioning, incompatability checks)
+     Verify code here (versioning, incompatibility checks)
  *******************************************************************/
 
 /* Defined here for pretty translator comments (bug in intl tools, for some reason
@@ -3289,7 +3289,7 @@ glade_project_verify_signal_internal (GladeWidget     *widget,
   if ((flags & GLADE_VERIFY_VERSIONS) != 0 &&
       !GSC_VERSION_CHECK (signal_def, target_major, target_minor))
     {
-      GLADE_NOTE (VERIFY, g_print ("VERIFY: Signal '%s' of adaptor %s not avalable in version %d.%d\n",
+      GLADE_NOTE (VERIFY, g_print ("VERIFY: Signal '%s' of adaptor %s not available in version %d.%d\n",
                                    glade_signal_get_name (signal),
                                    glade_widget_adaptor_get_name (adaptor),
                                    target_major, target_minor));
@@ -3392,8 +3392,8 @@ glade_project_verify_signals (GladeWidget     *widget,
  * glade_project_verify_properties:
  * @widget: A #GladeWidget
  *
- * Synchonizes @widget with user visible information
- * about version compatability and notifies the UI
+ * Synchronizes @widget with user visible information
+ * about version compatibility and notifies the UI
  * it should update.
  */
 static void
@@ -3724,7 +3724,7 @@ glade_project_release_widget_name (GladeProject *project,
 /**
  * glade_project_available_widget_name:
  * @project: a #GladeProject
- * @widget: the #GladeWidget intended to recieve a new name
+ * @widget: the #GladeWidget intended to receive a new name
  * @name: base name of the widget to create
  *
  * Checks whether @name is an appropriate name for @widget.
@@ -3764,7 +3764,7 @@ glade_project_reserve_widget_name (GladeProject *project,
 /**
  * glade_project_new_widget_name:
  * @project: a #GladeProject
- * @widget: the #GladeWidget intended to recieve a new name, or %NULL
+ * @widget: the #GladeWidget intended to receive a new name, or %NULL
  * @base_name: base name of the widget to create
  *
  * Creates a new name for a widget that doesn't collide with any of the names 
@@ -4913,7 +4913,7 @@ glade_project_reset_path (GladeProject *project)
  * @project: The #GladeProject.
  * @resource: The resource basename
  *
- * Project resource strings are always relative, this function tranforms a
+ * Project resource strings are always relative, this function transforms a
  * path relative to project to a full path.
  *
  * Returns: A newly allocated string holding the
@@ -4954,7 +4954,7 @@ glade_project_resource_fullpath (GladeProject *project, const gchar *resource)
  * @widget: The widget which visibility changed
  * @visible: widget visibility value
  *
- * Emmits  GladeProject::widget-visibility-changed signal
+ * Emits  GladeProject::widget-visibility-changed signal
  *
  */
 void
diff --git a/gladeui/glade-property-def.c b/gladeui/glade-property-def.c
index f424e251..16ff9fb3 100644
--- a/gladeui/glade-property-def.c
+++ b/gladeui/glade-property-def.c
@@ -157,7 +157,7 @@ struct _GladePropertyDef
   guint is_modified : 1; /* If true, this property_def has been "modified" from the
                           * the standard property by a xml file. */
 
-  guint themed_icon : 1; /* Some GParamSpecString properties reffer to icon names
+  guint themed_icon : 1; /* Some GParamSpecString properties refer to icon names
                           * in the icon theme... these need to be specified in the
                           * property class definition if proper editing tools are to
                           * be used.
@@ -169,7 +169,7 @@ struct _GladePropertyDef
                          */
         
   guint transfer_on_paste : 1; /* If this is a packing prop, 
-                                * wether we should transfer it on paste.
+                                * whether we should transfer it on paste.
                                 */
         
   guint parentless_widget : 1;  /* True if this property should point to a parentless widget
@@ -2225,7 +2225,7 @@ glade_property_def_update_from_node (GladeXmlNode      *node,
  * @comp: a #GladePropertyDef
  *
  * Returns: whether @property_def and @comp are a match or not
- *          (properties in seperate decendant heirarchies that
+ *          (properties in separate descendant hierarchies that
  *           have the same name are not matches).
  */
 gboolean
@@ -2335,7 +2335,7 @@ glade_property_def_compare (GladePropertyDef *property_def,
  * @properties: (element-type GladePropertyDef): a list of #GladePropertyDef
  * @parent: the #GType of the parent
  *
- * This function assignes "weight" to each property in its natural order staring from 1.
+ * This function assigns "weight" to each property in its natural order staring from 1.
  * If parent is 0 weight will be set for every #GladePropertyDef in the list.
  * This function will not override weight if it is already set (weight >= 0.0)
  */
@@ -2364,7 +2364,7 @@ glade_property_def_set_weights (GList **properties, GType parent)
           if (property_def->weight >= 0.0)
             continue;
 
-          /* Special-casing weight of properties for seperate tabs */
+          /* Special-casing weight of properties for separate tabs */
           if (property_def->common)
             property_def->weight = common;
           else if (property_def->packing)
diff --git a/gladeui/glade-property-label.c b/gladeui/glade-property-label.c
index 3f1b4259..cacdd1ac 100644
--- a/gladeui/glade-property-label.c
+++ b/gladeui/glade-property-label.c
@@ -684,7 +684,7 @@ glade_property_label_set_property (GladePropertyLabel *label,
            */
           glade_property_label_sensitivity_cb (property, NULL, label);
 
-          /* Load intial label state
+          /* Load initial label state
            */
           glade_property_label_state_cb (property, NULL, label);
 
diff --git a/gladeui/glade-property.c b/gladeui/glade-property.c
index 008a290b..c7df0db0 100644
--- a/gladeui/glade-property.c
+++ b/gladeui/glade-property.c
@@ -1098,7 +1098,7 @@ glade_property_sync (GladeProperty *property)
  * glade_property_load:
  * @property: a #GladeProperty
  *
- * Loads the value of @property from the coresponding object instance
+ * Loads the value of @property from the corresponding object instance
  */
 void
 glade_property_load (GladeProperty *property)
@@ -1478,7 +1478,7 @@ glade_property_set_sensitive (GladeProperty *property,
 {
   g_return_if_fail (GLADE_IS_PROPERTY (property));
 
-  /* reason is only why we're disableing it */
+  /* reason is only why we're disabling it */
   if (sensitive == FALSE)
     {
       if (property->priv->insensitive_tooltip)
diff --git a/gladeui/glade-signal-editor.c b/gladeui/glade-signal-editor.c
index ed8c39a5..6b84c6c1 100644
--- a/gladeui/glade-signal-editor.c
+++ b/gladeui/glade-signal-editor.c
@@ -111,12 +111,12 @@ glade_signal_editor_take_target_focus_path (GladeSignalEditor *editor,
 
   if (priv->target_focus_path)
     {
-      /* ensure there is an idle callback registred */
+      /* ensure there is an idle callback registered */
       if (priv->focus_id == 0)
         priv->focus_id = g_idle_add (tree_path_focus_idle, editor);
     }
   else
-    /* ensure there is no idle callback registred */
+    /* ensure there is no idle callback registered */
     if (priv->focus_id > 0)
       {
         g_source_remove (priv->focus_id);
diff --git a/gladeui/glade-tsort.c b/gladeui/glade-tsort.c
index 5d43f702..72dd8cb7 100644
--- a/gladeui/glade-tsort.c
+++ b/gladeui/glade-tsort.c
@@ -95,7 +95,7 @@ tsort_node_has_no_incoming_edge (gpointer node, GList *edges)
  *         graph of @nodes.
  * 
  * Topological sorting implementation.
- * After calling this funtion only graph cycles (circular dependencies) are left
+ * After calling this function only graph cycles (circular dependencies) are left
  * in @edges list. So if @edges is NULL it means the returned list has all the 
  * elements topologically sorted if not it means there are at least one
  * circular dependency.
diff --git a/gladeui/glade-utils.c b/gladeui/glade-utils.c
index c0fd07d0..b08667bc 100644
--- a/gladeui/glade-utils.c
+++ b/gladeui/glade-utils.c
@@ -200,7 +200,7 @@ _glade_util_dialog_set_hig (GtkDialog *dialog)
  *
  * Creates a new warning dialog window as a child of @parent containing
  * the text of @format, runs it, then destroys it on close. Depending
- * on @type, a cancel button may apear or the icon may change.
+ * on @type, a cancel button may appear or the icon may change.
  *
  * Returns: True if the @type was GLADE_UI_ARE_YOU_SURE and the user
  *          selected "OK", True if the @type was GLADE_UI_YES_OR_NO and
@@ -522,7 +522,7 @@ glade_util_file_dialog_new (const gchar *title,
  * @a: a #gchar
  * @b: a #gchar
  *
- * Replaces each occurance of the character @a in @str to @b.
+ * Replaces each occurrence of the character @a in @str to @b.
  */
 void
 glade_util_replace (gchar *str, gchar a, gchar b)
@@ -541,11 +541,11 @@ glade_util_replace (gchar *str, gchar a, gchar b)
 /**
  * _glade_util_strreplace:
  * @str: a string
- * @free_str: wheter to free str or not
+ * @free_str: whether to free str or not
  * @key: the key string to search for
  * @replacement: string to replace key
  *
- * Replaces each occurance of the string @key in @str to @replacement.
+ * Replaces each occurrence of the string @key in @str to @replacement.
  */
 gchar *
 _glade_util_strreplace (gchar *str,
@@ -1013,7 +1013,7 @@ glade_util_have_devhelp (void)
       if (g_spawn_command_line_sync ("devhelp --version",
                                      &ptr, NULL, &ret, &error))
         {
-          /* If we have a successfull return code.. parse the output.
+          /* If we have a successful return code.. parse the output.
            */
           if (ret == 0)
             {
@@ -1295,7 +1295,7 @@ glade_util_icon_name_to_filename (const gchar *value)
 
   sscanf (value, "glade-generated-%s", filename);
 
-  /* XXX: Filenames without an extention will evidently
+  /* XXX: Filenames without an extension will evidently
    * break here
    */
   if ((p = strrchr (filename, '-')) != NULL)
@@ -1678,7 +1678,7 @@ glade_utils_string_from_value (const GValue *value)
 /**
  * glade_utils_liststore_from_enum_type:
  * @enum_type: A #GType
- * @include_empty: wheather to prepend an "Unset" slot
+ * @include_empty: whether to prepend an "Unset" slot
  *
  * Creates a liststore suitable for comboboxes and such to 
  * chose from a variety of types.
diff --git a/gladeui/glade-widget-action.c b/gladeui/glade-widget-action.c
index 1d6f404b..ad122e5a 100644
--- a/gladeui/glade-widget-action.c
+++ b/gladeui/glade-widget-action.c
@@ -288,7 +288,7 @@ gwa_action_path_get_id (const gchar *action_path)
  * glade_widget_action_def_new:
  * @path: the action path
  *
- * Returns: a newlly created #GladeWidgetActionDef for @path.
+ * Returns: a newly created #GladeWidgetActionDef for @path.
  */
 GladeWidgetActionDef *
 glade_widget_action_def_new (const gchar *path)
@@ -306,7 +306,7 @@ glade_widget_action_def_new (const gchar *path)
  * glade_widget_action_def_clone:
  * @action: a GladeWidgetActionDef
  *
- * Returns: a newlly allocated copy of @action.
+ * Returns: a newly allocated copy of @action.
  */
 GladeWidgetActionDef *
 glade_widget_action_def_clone (GladeWidgetActionDef *action)
diff --git a/gladeui/glade-widget-adaptor.c b/gladeui/glade-widget-adaptor.c
index a6a38e2c..d7e4d295 100644
--- a/gladeui/glade-widget-adaptor.c
+++ b/gladeui/glade-widget-adaptor.c
@@ -28,7 +28,7 @@
  * The #GladeWidgetAdaptor object is a proxy for widget class support in Glade.
  * it is automatically generated from the xml and allows you to override its
  * methods in the plugin library for fine grained support on how you load/save
- * widgets and handle thier properties in the runtime and more.
+ * widgets and handle their properties in the runtime and more.
  * 
  */
 
@@ -75,7 +75,7 @@ typedef struct
                                      * [see glade-property.h] this list contains
                                      * properties about the widget that we are going
                                      * to modify. Like "title", "label", "rows" .
-                                     * Each property creates an input in the propety
+                                     * Each property creates an input in the property
                                      * editor.
                                      */
   GList       *packing_props;       /* List of GladePropertyDef objects that describe
@@ -465,7 +465,7 @@ gwa_setup_properties (GladeWidgetAdaptor *adaptor,
   guint n_specs = 0;
   GList *l;
 
-  /* only GtkContainer child propeties can be introspected */
+  /* only GtkContainer child properties can be introspected */
   if (is_packing && !g_type_is_a (priv->type, GTK_TYPE_CONTAINER))
     return;
 
@@ -475,7 +475,7 @@ gwa_setup_properties (GladeWidgetAdaptor *adaptor,
   else
     priv->properties = gwa_clone_parent_properties (adaptor, is_packing);
 
-  /* Now automaticly introspect new properties added in this class,
+  /* Now automatically introspect new properties added in this class,
    * allow the class writer to decide what to override in the resulting
    * list of properties.
    */
@@ -2310,7 +2310,7 @@ gwa_update_properties_from_type (GladeWidgetAdaptor *adaptor,
   GParamSpec **specs = NULL, *spec;
   guint i, n_specs = 0;
 
-  /* only GtkContainer child propeties can be introspected */
+  /* only GtkContainer child properties can be introspected */
   if (is_packing && !g_type_is_a (priv->type, GTK_TYPE_CONTAINER))
     return;
 
@@ -2744,10 +2744,10 @@ generate_deprecated_icon (const gchar *icon_name)
  * @class_node: the #GladeXmlNode to load
  * @module: the plugin GModule.
  *
- * Dynamicly creates a subclass of #GladeWidgetAdaptor and subclasses
- * the closest parent adaptor (parent class adapters must be creates/registerd
+ * Dynamically creates a subclass of #GladeWidgetAdaptor and subclasses
+ * the closest parent adaptor (parent class adapters must be created/registered
  * prior to child classes, otherwise inheritance wont work) and parses in
- * the relevent catalog info.
+ * the relevant catalog info.
  *
  * Returns: (transfer full): a newly allocated #GladeWidgetAdaptor
  */
@@ -2959,7 +2959,7 @@ glade_widget_adaptor_from_catalog (GladeCatalog *catalog,
    * (the name specified in the catalog) means we are using the type specified in the
    * the parent tag as the runtime and the class already exist.
    * So we need to add the properties and signals from the real class
-   * even though they wont be aplied at runtime.
+   * even though they wont be applied at runtime.
    */
   if (priv->type != priv->real_type)
     {
@@ -3030,9 +3030,9 @@ glade_widget_adaptor_from_catalog (GladeCatalog *catalog,
  * @reason:            The #GladeCreateReason for which this internal widget
  *                     was created (usually just pass the reason from the post_create
  *                     function; note also this is used only by the plugin code so
- *                     pass something usefull here).
+ *                     pass something useful here).
  *
- * A convenienve function to create a #GladeWidget of the prescribed type
+ * A convenience function to create a #GladeWidget of the prescribed type
  * for internal widgets.
  *
  * Returns: (transfer full): a freshly created #GladeWidget wrapper object for the
@@ -3512,7 +3512,7 @@ glade_widget_adaptor_get_internal_child (GladeWidgetAdaptor *adaptor,
  * @property_name: The property identifier
  * @value:         The #GValue
  *
- * This delagate function is used to apply the property value on
+ * This delegate function is used to apply the property value on
  * the runtime object.
  *
  */
@@ -3571,11 +3571,11 @@ glade_widget_adaptor_get_property (GladeWidgetAdaptor *adaptor,
  * @property_name: The property identifier
  * @value:         The #GValue
  *
- * This delagate function is always called whenever setting any
+ * This delegate function is always called whenever setting any
  * properties with the exception of load time, and copy/paste time
- * (basicly the two places where we recreate a hierarchy that we
- * already know "works") its basicly an optional backend provided
- * boundry checker for properties.
+ * (basically the two places where we recreate a hierarchy that we
+ * already know "works") its basically an optional backend provided
+ * boundary checker for properties.
  *
  * Returns: whether or not its OK to set @value on @object, this function
  * will silently return TRUE if the class did not provide a verify function.
@@ -3818,11 +3818,11 @@ glade_widget_adaptor_child_get_property (GladeWidgetAdaptor *adaptor,
  * @property_name: The id of the property
  * @value:         The @GValue
  *
- * This delagate function is always called whenever setting any
+ * This delegate function is always called whenever setting any
  * properties with the exception of load time, and copy/paste time
- * (basicly the two places where we recreate a hierarchy that we
- * already know "works") its basicly an optional backend provided
- * boundry checker for properties.
+ * (basically the two places where we recreate a hierarchy that we
+ * already know "works") its basically an optional backend provided
+ * boundary checker for properties.
  *
  * Returns: whether or not its OK to set @value on @object, this function
  * will silently return TRUE if the class did not provide a verify function.
@@ -4295,8 +4295,8 @@ glade_widget_adaptor_child_action_activate (GladeWidgetAdaptor *adaptor,
  * @object:    The #GObject
  * @action_path: The action identifier in the action tree
  *
- * This delagate function is used to create dynamically customized
- * submenus. Called only for actions that dont have children.
+ * This delegate function is used to create dynamically customized
+ * submenus. Called only for actions that don't have children.
  *
  * Returns: (transfer full) (nullable): A newly created #GtkMenu or %NULL
  */
@@ -4497,8 +4497,8 @@ glade_widget_adaptor_create_eprop (GladeWidgetAdaptor *adaptor,
 /**
  * glade_widget_adaptor_create_eprop_by_name:
  * @adaptor: A #GladeWidgetAdaptor
- * @property_id: the string if of the coresponding #GladePropertyDef to be edited
- * @packing: whether this reffers to a packing property
+ * @property_id: the string if of the corresponding #GladePropertyDef to be edited
+ * @packing: whether this refers to a packing property
  * @use_command: whether to use the GladeCommand interface
  * to commit property changes
  * 
diff --git a/gladeui/glade-widget-adaptor.h b/gladeui/glade-widget-adaptor.h
index 276c48b3..3e5268d4 100644
--- a/gladeui/glade-widget-adaptor.h
+++ b/gladeui/glade-widget-adaptor.h
@@ -227,7 +227,7 @@ typedef GladeWidget * (* GladeCreateWidgetFunc) (GladeWidgetAdaptor *adaptor,
  * @property_name: The property identifier
  * @value: The #GValue
  *
- * This delagate function is used to apply the property value on
+ * This delegate function is used to apply the property value on
  * the runtime object.
  *
  * Sets @value on @object for a given #GladePropertyDef
@@ -258,11 +258,11 @@ typedef void     (* GladeGetPropertyFunc)    (GladeWidgetAdaptor *adaptor,
  * @property_name: The property identifier
  * @value: The #GValue
  *
- * This delagate function is always called whenever setting any
+ * This delegate function is always called whenever setting any
  * properties with the exception of load time, and copy/paste time
- * (basicly the two places where we recreate a hierarchy that we
- * already know "works") its basicly an optional backend provided
- * boundry checker for properties.
+ * (basically the two places where we recreate a hierarchy that we
+ * already know "works") its basically an optional backend provided
+ * boundary checker for properties.
  *
  * Returns: whether or not its OK to set @value on @object
  */
@@ -313,11 +313,11 @@ typedef void   (* GladeChildGetPropertyFunc)      (GladeWidgetAdaptor *adaptor,
  * @property_name: The property name
  * @value: The #GValue
  *
- * This delagate function is always called whenever setting any
+ * This delegate function is always called whenever setting any
  * properties with the exception of load time, and copy/paste time
- * (basicly the two places where we recreate a hierarchy that we
- * already know "works") its basicly an optional backend provided
- * boundry checker for properties.
+ * (basically the two places where we recreate a hierarchy that we
+ * already know "works") its basically an optional backend provided
+ * boundary checker for properties.
  *
  * Returns: whether or not its OK to set @value on @object
  */
@@ -475,7 +475,7 @@ typedef GObject *(* GladeGetInternalFunc)         (GladeWidgetAdaptor *adaptor,
  * @object: The #GObject
  * @action_path: The action path
  *
- * This delagate function is used to catch actions from the core.
+ * This delegate function is used to catch actions from the core.
  *
  */
 typedef void     (* GladeActionActivateFunc)  (GladeWidgetAdaptor *adaptor,
@@ -489,7 +489,7 @@ typedef void     (* GladeActionActivateFunc)  (GladeWidgetAdaptor *adaptor,
  * @object: The #GObject
  * @action_path: The action path
  *
- * This delagate function is used to catch packing actions from the core.
+ * This delegate function is used to catch packing actions from the core.
  *
  */
 typedef void     (* GladeChildActionActivateFunc) (GladeWidgetAdaptor *adaptor,
@@ -504,8 +504,8 @@ typedef void     (* GladeChildActionActivateFunc) (GladeWidgetAdaptor *adaptor,
  * @object: The #GObject
  * @action_path: The action path
  *
- * This delagate function is used to create dynamically customized
- * submenus. Called only for actions that dont have children.
+ * This delegate function is used to create dynamically customized
+ * submenus. Called only for actions that don't have children.
  *
  */
 typedef GtkWidget  *(* GladeActionSubmenuFunc)  (GladeWidgetAdaptor *adaptor,
@@ -645,11 +645,11 @@ struct _GladeWidgetAdaptorClass
                                              * instantiation).
                                              */
 
-  GladeGetInternalFunc       get_internal_child; /* Retrieves the the internal child
+  GladeGetInternalFunc       get_internal_child; /* Retrieves the internal child
                                                   * of the given name.
                                                   */
 
-  /* Delagate to verify if this is a valid value for this property,
+  /* Delegate to verify if this is a valid value for this property,
    * if this function exists and returns FALSE, then glade_property_set
    * will abort before making any changes
    */
@@ -677,7 +677,7 @@ struct _GladeWidgetAdaptorClass
                                                 * this support type.
                                                 */
 
-  GladeChildVerifyPropertyFunc child_verify_property; /* A boundry checker for 
+  GladeChildVerifyPropertyFunc child_verify_property; /* A boundary checker for 
                                                        * packing properties 
                                                        */
   GladeChildSetPropertyFunc    child_set_property; /* Sets/Gets a packing property */
@@ -686,12 +686,12 @@ struct _GladeWidgetAdaptorClass
                                                 * child widget with
                                                 * another one: it's used to
                                                 * replace a placeholder with
-                                                * a widget and viceversa.
+                                                * a widget and vice versa.
                                                 */
         
   GladeActionActivateFunc      action_activate;       /* This method is used to catch actions */
   GladeChildActionActivateFunc child_action_activate; /* This method is used to catch packing actions */
-  GladeActionSubmenuFunc       action_submenu;        /* Delagate function to create dynamic submenus
+  GladeActionSubmenuFunc       action_submenu;        /* Delegate function to create dynamic submenus
                                                        * in action menus. */
   GladeDependsFunc             depends;           /* Periodically sort widgets in the project */
   GladeReadWidgetFunc          read_widget;       /* Reads widget attributes from xml */
diff --git a/gladeui/glade-widget.c b/gladeui/glade-widget.c
index 4d954427..3e6206e4 100644
--- a/gladeui/glade-widget.c
+++ b/gladeui/glade-widget.c
@@ -254,9 +254,9 @@ glade_widget_add_child_impl (GladeWidget *widget,
    * after parenting the widget so that we can introspect the
    * values setup by the runtime widget, in which case the plugin
    * cannot access its packing properties and set them sensitive
-   * or connect to thier signals etc. maybe its not so important
+   * or connect to their signals etc. maybe its not so important
    * but its a flaw worthy of note, some kind of double pass api
-   * would be needed to accomadate this.
+   * would be needed to accommodate this.
    */
 
 
@@ -787,8 +787,8 @@ glade_widget_dup_properties (GladeWidget *dest_widget,
  *
  * Removes the #GladeProperty indicated by @id_property
  * from @widget (this is intended for use in the plugin, to
- * remove properties from composite children that dont make
- * sence to allow the user to specify, notably - properties
+ * remove properties from composite children that don't make
+ * sense to allow the user to specify, notably - properties
  * that are proxied through the composite widget's properties or
  * style properties).
  */
@@ -800,7 +800,7 @@ glade_widget_remove_property (GladeWidget *widget, const gchar *id_property)
   g_return_if_fail (GLADE_IS_WIDGET (widget));
   g_return_if_fail (id_property);
 
-  /* XXX FIXME: currently we arent calling this on packing properties,
+  /* XXX FIXME: currently we aren't calling this on packing properties,
    * but doing so could cause crashes because the hash table is not
    * managed properly
    */
@@ -1025,7 +1025,7 @@ glade_widget_dispose (GObject *object)
     g_list_foreach (widget->priv->properties, (GFunc) reset_object_property,
                     widget->priv->project);
 
-  /* We have to make sure properties release thier references on other widgets first 
+  /* We have to make sure properties release their references on other widgets first 
    * hence the reset (for object properties) */
   if (widget->priv->properties)
     {
@@ -1441,7 +1441,7 @@ glade_widget_class_init (GladeWidgetClass *klass)
 
   properties[PROP_VISIBLE] =
        g_param_spec_boolean ("visible", _("Visible"),
-                            _("Wether the widget is visible or not"),
+                            _("Whether the widget is visible or not"),
                              FALSE, G_PARAM_READABLE);
 
   properties[PROP_COMPOSITE] =
@@ -1510,7 +1510,7 @@ glade_widget_class_init (GladeWidgetClass *klass)
                     GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
 
   /**
-   * GladeWidget::button-relese-event:
+   * GladeWidget::button-release-event:
    * @gladewidget: the #GladeWidget which received the signal.
    * @arg1: the #GdkEvent
    */
@@ -1755,7 +1755,7 @@ glade_widget_dup_internal (GladeWidget *main_target,
                                      template_widget->priv->packing_properties, FALSE,
                                      FALSE, FALSE);
 
-  /* If custom properties are still at thier
+  /* If custom properties are still at their
    * default value, they need to be synced.
    */
   glade_widget_sync_custom_props (gwidget);
@@ -2141,7 +2141,7 @@ glade_widget_hide (GladeWidget *widget)
  * Adds @property to @widget 's list of referenced properties.
  *
  * Note: this is used to track properties on other objects that
- *       reffer to this object.
+ *       refer to this object.
  */
 void
 glade_widget_add_prop_ref (GladeWidget *widget, GladeProperty *property)
@@ -2154,7 +2154,7 @@ glade_widget_add_prop_ref (GladeWidget *widget, GladeProperty *property)
   if (!g_list_find (widget->priv->prop_refs, property))
     widget->priv->prop_refs = g_list_prepend (widget->priv->prop_refs, property);
 
-  /* parentless widget reffed widgets are added to thier reffering widgets. 
+  /* parentless widget reffed widgets are added to their referring widgets. 
    * they cant be in the design view.
    */
   pdef = glade_property_get_def (property);
@@ -2177,7 +2177,7 @@ glade_widget_add_prop_ref (GladeWidget *widget, GladeProperty *property)
  * Removes @property from @widget 's list of referenced properties.
  *
  * Note: this is used to track properties on other objects that
- *       reffer to this object.
+ *       refer to this object.
  */
 void
 glade_widget_remove_prop_ref (GladeWidget *widget, GladeProperty *property)
@@ -2574,8 +2574,8 @@ glade_widget_rebuild (GladeWidget *gwidget)
       glade_project_remove_object (project, gwidget->priv->object);
     }
 
-  /* parentless_widget and object properties that reffer to this widget 
-   * should be unset before transfering */
+  /* parentless_widget and object properties that refer to this widget 
+   * should be unset before transferring */
   l = g_list_copy (gwidget->priv->properties);
   save_properties = g_list_copy (gwidget->priv->prop_refs);
   save_properties = g_list_concat (l, save_properties);
@@ -2629,7 +2629,7 @@ glade_widget_rebuild (GladeWidget *gwidget)
   if (parent)
     glade_widget_add_child (parent, gwidget, FALSE);
 
-  /* Custom properties aren't transfered in build_object, since build_object
+  /* Custom properties aren't transferred in build_object, since build_object
    * is only concerned with object creation.
    */
   glade_widget_sync_custom_props (gwidget);
@@ -3292,7 +3292,7 @@ glade_widget_pack_property_set_save_always (GladeWidget *widget,
  *
  * Creates a printable string representing @id_property in
  * @widget, if @value is specified it will be used in place
- * of @id_property's real value (this is a convinience
+ * of @id_property's real value (this is a convenience
  * function to print/debug properties usually from plugin
  * backends).
  *
@@ -3924,8 +3924,8 @@ glade_widget_set_packing_properties (GladeWidget *widget,
  * @widget: a #GladeWidget
  * @type: a  #GType
  * 
- * Returns: whether this GladeWidget has any decendants of type @type
- *          or any decendants that implement the @type interface
+ * Returns: whether this GladeWidget has any descendants of type @type
+ *          or any descendants that implement the @type interface
  */
 gboolean
 glade_widget_has_decendant (GladeWidget *widget, GType type)
@@ -4047,7 +4047,7 @@ glade_widget_read_child (GladeWidget *widget, GladeXmlNode *node)
  *
  * Creates a new #GladeWidget from a XML node.
  *
- * If node is a template and its parent class is abstract/non instantiable,
+ * If node is a template and its parent class is abstract/non instantiatable,
  * Glade will use a class with the GladeInstantiable prefix instead.
  *
  * For example, with a GtkBin template Glade will GladeInstantiableGtkBin class
@@ -4504,7 +4504,7 @@ glade_widget_depends (GladeWidget *widget, GladeWidget *other)
  * 
  * Currently only motion and button events are handled (see IS_GLADE_WIDGET_EVENT)
  * 
- * Returns: (transfer none): the asociated #GdkDevice for this glade widget event.
+ * Returns: (transfer none): the associated #GdkDevice for this glade widget event.
  *
  * Deprecated: use gdk_event_get_device() instead.
  */
diff --git a/gladeui/glade-xml-utils.c b/gladeui/glade-xml-utils.c
index 04165389..16b438b4 100644
--- a/gladeui/glade-xml-utils.c
+++ b/gladeui/glade-xml-utils.c
@@ -154,7 +154,7 @@ glade_xml_set_content (GladeXmlNode *node_in, const gchar *content)
 }
 
 /*
- * Get a value for a node either carried as an attibute or as
+ * Get a value for a node either carried as an attribute or as
  * the content of a child.
  *
  * Returns a g_malloc'ed string.  Caller must free.
@@ -280,7 +280,7 @@ glade_xml_get_value_int_required (GladeXmlNode *node,
 }
 
 /*
- * Get a String value for a node either carried as an attibute or as
+ * Get a String value for a node either carried as an attribute or as
  * the content of a child.
  */
 gchar *
@@ -313,7 +313,7 @@ glade_xml_set_property (xmlNodePtr   node,
 }
 
 /*
- * Get a String value for a node either carried as an attibute or as
+ * Get a String value for a node either carried as an attribute or as
  * the content of a child.
  */
 gboolean
@@ -337,7 +337,7 @@ glade_xml_get_boolean (GladeXmlNode *node_in,
 }
 
 /*
- * Get a String value for a node either carried as an attibute or as
+ * Get a String value for a node either carried as an attribute or as
  * the content of a child.
  */
 gboolean
@@ -604,7 +604,7 @@ glade_xml_search_child (GladeXmlNode *node_in, const gchar *name)
  * @tree: A #GladeXmlNode
  * @name: the name of the child
  * 
- * just a small wrapper arround glade_xml_search_child that displays
+ * just a small wrapper around glade_xml_search_child that displays
  * an error if the child was not found
  *
  * Returns: (nullable): the requested #GladeXmlNode
diff --git a/gladeui/glade-xml-utils.h b/gladeui/glade-xml-utils.h
index 59329ae5..3a88acef 100644
--- a/gladeui/glade-xml-utils.h
+++ b/gladeui/glade-xml-utils.h
@@ -248,7 +248,7 @@ GladeXmlNode * glade_xml_node_add_prev_sibling (GladeXmlNode *node, GladeXmlNode
 GladeXmlNode * glade_xml_node_add_next_sibling (GladeXmlNode *node, GladeXmlNode *new_node);
 GType          glade_xml_node_get_type (void) G_GNUC_CONST;
 
-/* Document Operatons */
+/* Document Operations */
 GladeXmlNode * glade_xml_doc_get_root (GladeXmlDoc *doc);
 GladeXmlDoc *  glade_xml_doc_new (void);
 GladeXmlDoc *  glade_xml_doc_ref (GladeXmlDoc *doc);
diff --git a/plugins/gladeui/gladeui.xml b/plugins/gladeui/gladeui.xml
index 2052ec4a..b47faba8 100644
--- a/plugins/gladeui/gladeui.xml
+++ b/plugins/gladeui/gladeui.xml
@@ -32,8 +32,8 @@
        <property id="n-columns" disabled="True"/>
        <property id="row-spacing" disabled="True"/>
        <property id="column-spacing" disabled="True"/>
-       <property id="row-homogenous" disabled="True"/>
-       <property id="column-homogenous" disabled="True"/>
+       <property id="row-homogeneous" disabled="True"/>
+       <property id="column-homogeneous" disabled="True"/>
         <property id="page-type">
           <displayable-values>
             <value id="GLADE_PAGE_GENERAL" name="General"/>
@@ -68,7 +68,7 @@
        <property id="orientation" disabled="True"/>
        <property id="size" disabled="True"/>
        <property id="spacing" disabled="True"/>
-       <property id="homogenous" disabled="True"/>
+       <property id="homogeneous" disabled="True"/>
        <property id="baseline-position" disabled="True"/>
       </properties>
     </glade-widget-class>
diff --git a/plugins/gtk+/glade-attributes.c b/plugins/gtk+/glade-attributes.c
index 0019409e..fe02980c 100644
--- a/plugins/gtk+/glade-attributes.c
+++ b/plugins/gtk+/glade-attributes.c
@@ -117,7 +117,7 @@ enum
   COLUMN_BUTTON_ACTIVE,    /* whether the GladeCellRendererButton is to be used (to launch dialogs) */
   COLUMN_TEXT,             /* text attribute value for all text derived renderers */
   COLUMN_TEXT_STYLE,       /* whether to make italic */
-  COLUMN_TEXT_FG,          /* forground colour of the text */
+  COLUMN_TEXT_FG,          /* foreground colour of the text */
   
   COLUMN_COMBO_ACTIVE,     /* whether the combobox renderer is being used */
   COLUMN_COMBO_MODEL,      /* the model for the dropdown list */
diff --git a/plugins/gtk+/glade-attributes.h b/plugins/gtk+/glade-attributes.h
index 3a848499..9627dcfc 100644
--- a/plugins/gtk+/glade-attributes.h
+++ b/plugins/gtk+/glade-attributes.h
@@ -16,7 +16,7 @@ typedef struct _GladeAttribute             GladeAttribute;
 struct _GladeAttribute {
   PangoAttrType   type;   /* The type of pango attribute */
 
-  GValue          value;  /* The coresponding value */
+  GValue          value;  /* The corresponding value */
 
   guint           start;  /* The text offsets where the attributes should apply to */
   guint           end;
diff --git a/plugins/gtk+/glade-column-types.c b/plugins/gtk+/glade-column-types.c
index dd016068..2f769211 100644
--- a/plugins/gtk+/glade-column-types.c
+++ b/plugins/gtk+/glade-column-types.c
@@ -662,7 +662,7 @@ column_name_edited (GtkCellRendererText * cell,
       strcmp (new_column_name, old_column_name) == 0)
     return;
 
-  /* Attempt to rename the column, and commit if successfull... */
+  /* Attempt to rename the column, and commit if successful... */
   glade_property_get (prop, &columns);
   if (columns)
     columns = glade_column_list_copy (columns);
diff --git a/plugins/gtk+/glade-fixed.h b/plugins/gtk+/glade-fixed.h
index d29d581c..9b77fb50 100644
--- a/plugins/gtk+/glade-fixed.h
+++ b/plugins/gtk+/glade-fixed.h
@@ -46,7 +46,7 @@ struct _GladeFixed {
   gchar            *x_prop;      /* packing property names (on child widgets) used */
   gchar            *y_prop;      /* to obtain & configure widget coordinates */
   gchar            *width_prop;  /* property names (on child widgets) used to obtain */
-  gchar            *height_prop; /* & configure widget dimentions. */
+  gchar            *height_prop; /* & configure widget dimensions. */
 
   gboolean          can_resize; /* whether the container supports child resizes or only
                                  * drags.
diff --git a/plugins/gtk+/glade-gtk-about-dialog.c b/plugins/gtk+/glade-gtk-about-dialog.c
index bbfcd332..469ebc6f 100644
--- a/plugins/gtk+/glade-gtk-about-dialog.c
+++ b/plugins/gtk+/glade-gtk-about-dialog.c
@@ -39,7 +39,7 @@ glade_gtk_about_dialog_construct_object (GladeWidgetAdaptor *adaptor,
   gint i;
 
   /* Here we need to force use-header-bar to FALSE in the runtime because
-   * GtkAboutDialog set it to TRUE in its contructor which then triggers a
+   * GtkAboutDialog set it to TRUE in its constructor which then triggers a
    * warning when glade tries to add placeholders in the action area
    */
   for (i = 0; i < n_parameters; i++)
diff --git a/plugins/gtk+/glade-gtk-box.c b/plugins/gtk+/glade-gtk-box.c
index 8d11148a..1153c957 100644
--- a/plugins/gtk+/glade-gtk-box.c
+++ b/plugins/gtk+/glade-gtk-box.c
@@ -521,7 +521,7 @@ glade_gtk_box_add_child (GladeWidgetAdaptor *adaptor,
 
   gchild = glade_widget_get_from_gobject (child);
 
-  /* The "Remove Slot" operation only makes sence on placeholders,
+  /* The "Remove Slot" operation only makes sense on placeholders,
    * otherwise its a "Delete" operation on the child widget.
    */
   if (gchild)
@@ -603,7 +603,7 @@ glade_gtk_box_replace_child (GladeWidgetAdaptor *adaptor,
   gbox = glade_widget_get_from_gobject (container);
 
   if ((gchild = glade_widget_get_from_gobject (new_widget)) != NULL)
-    /* The "Remove Slot" operation only makes sence on placeholders,
+    /* The "Remove Slot" operation only makes sense on placeholders,
      * otherwise its a "Delete" operation on the child widget.
      */
     glade_widget_set_pack_action_visible (gchild, "remove_slot", FALSE);
diff --git a/plugins/gtk+/glade-gtk-button.c b/plugins/gtk+/glade-gtk-button.c
index 173db40d..7d45881b 100644
--- a/plugins/gtk+/glade-gtk-button.c
+++ b/plugins/gtk+/glade-gtk-button.c
@@ -264,7 +264,7 @@ glade_gtk_button_read_widget (GladeWidgetAdaptor *adaptor,
 
   glade_gtk_button_update_stock (widget);
 
-  /* Fold "font-name" property into the "font" propery */
+  /* Fold "font-name" property into the "font" property */
   object = glade_widget_get_object (widget);
   if (GTK_IS_FONT_BUTTON (object))
     {
diff --git a/plugins/gtk+/glade-gtk-container.c b/plugins/gtk+/glade-gtk-container.c
index 3066884f..a791ed12 100644
--- a/plugins/gtk+/glade-gtk-container.c
+++ b/plugins/gtk+/glade-gtk-container.c
@@ -127,10 +127,10 @@ glade_gtk_container_replace_child (GladeWidgetAdaptor *adaptor,
   for (i = 0; i < nproperties; i++)
     {
       /* If the added widget is a placeholder then we
-       * want to keep all the "tranfer-on-paste" properties
+       * want to keep all the "transfer-on-paste" properties
        * as default so that it looks fresh (transfer-on-paste
-       * properties dont effect the position/slot inside a 
-       * contianer)
+       * properties don't effect the position/slot inside a 
+       * container)
        */
       if (GLADE_IS_PLACEHOLDER (new_widget))
         {
diff --git a/plugins/gtk+/glade-gtk-dialog.c b/plugins/gtk+/glade-gtk-dialog.c
index 06a1ca3d..dc934014 100644
--- a/plugins/gtk+/glade-gtk-dialog.c
+++ b/plugins/gtk+/glade-gtk-dialog.c
@@ -83,7 +83,7 @@ glade_gtk_dialog_post_create (GladeWidgetAdaptor *adaptor,
   
   if (reason == GLADE_CREATE_USER)
     {
-      /* HIG complient border-width defaults on dialogs */
+      /* HIG compliant border-width defaults on dialogs */
       glade_widget_property_set (widget, "border-width", 5);
     }
 
@@ -105,7 +105,7 @@ G_GNUC_END_IGNORE_DEPRECATIONS
 
   /* These properties are controlled by the GtkDialog style properties:
    * "content-area-border", "button-spacing" and "action-area-border",
-   * so we must disable thier use.
+   * so we must disable their use.
    */
   glade_widget_remove_property (vbox_widget, "border-width");
   glade_widget_remove_property (actionarea_widget, "border-width");
@@ -143,7 +143,7 @@ G_GNUC_END_IGNORE_DEPRECATIONS
   /* Only set these on the original create. */
   if (reason == GLADE_CREATE_USER)
     {
-      /* HIG complient spacing defaults on dialogs */
+      /* HIG compliant spacing defaults on dialogs */
       glade_widget_property_set (vbox_widget, "spacing", 2);
 
       if (GTK_IS_ABOUT_DIALOG (object) ||
diff --git a/plugins/gtk+/glade-gtk-fixed-layout.c b/plugins/gtk+/glade-gtk-fixed-layout.c
index 87507a04..cf289229 100644
--- a/plugins/gtk+/glade-gtk-fixed-layout.c
+++ b/plugins/gtk+/glade-gtk-fixed-layout.c
@@ -110,7 +110,7 @@ glade_gtk_fixed_layout_post_create (GladeWidgetAdaptor *adaptor,
                                     GObject            *object,
                                     GladeCreateReason   reason)
 {
-  /* Set a minimun size so you can actually see it if you added to a box */
+  /* Set a minimum size so you can actually see it if you added to a box */
   gtk_widget_set_size_request (GTK_WIDGET (object), 32, 32);
 
   gtk_widget_set_has_window (GTK_WIDGET (object), TRUE);
diff --git a/plugins/gtk+/glade-gtk-grid.c b/plugins/gtk+/glade-gtk-grid.c
index 0e270cd2..1b2a1288 100644
--- a/plugins/gtk+/glade-gtk-grid.c
+++ b/plugins/gtk+/glade-gtk-grid.c
@@ -974,7 +974,7 @@ glade_gtk_grid_configure_end (GladeFixed  *fixed,
   glade_widget_pack_property_get (child, "top-attach",  &new_child.top_attach);
   glade_widget_pack_property_get (child, "height",      &new_child.height);
 
-  /* Compare the meaningfull part of the current edit. */
+  /* Compare the meaningful part of the current edit. */
   if (memcmp (&new_child, &grid_edit, sizeof (GladeGridChild)) != 0)
     {
       GValue left_attach_value = { 0, };
diff --git a/plugins/gtk+/glade-gtk-notebook.c b/plugins/gtk+/glade-gtk-notebook.c
index dcc1a064..ac204116 100644
--- a/plugins/gtk+/glade-gtk-notebook.c
+++ b/plugins/gtk+/glade-gtk-notebook.c
@@ -249,7 +249,7 @@ glade_gtk_notebook_extract_children (GtkWidget *notebook)
       /* Explicitly remove the tab label first */
       gtk_notebook_set_tab_label (nb, page, NULL);
 
-      /* FIXE: we need to unparent here to avoid anoying warning when reparenting */
+      /* FIXE: we need to unparent here to avoid annoying warning when reparenting */
       if (tab)
         {
           gtk_widget_unparent (tab);
diff --git a/plugins/gtk+/glade-gtk-text-view.c b/plugins/gtk+/glade-gtk-text-view.c
index 015ad2c0..76beadfb 100644
--- a/plugins/gtk+/glade-gtk-text-view.c
+++ b/plugins/gtk+/glade-gtk-text-view.c
@@ -53,7 +53,7 @@ glade_gtk_text_view_post_create (GladeWidgetAdaptor *adaptor,
                                  GObject            *object,
                                  GladeCreateReason   reason)
 {
-  /* This makes gtk_text_view_set_buffer() stop complaing */
+  /* This makes gtk_text_view_set_buffer() stop complaining */
   gtk_drag_dest_set (GTK_WIDGET (object), 0, NULL, 0, 0);
 
   /* Glade hangs when a TextView gets a double click. So we stop them */
diff --git a/plugins/gtk+/glade-gtk-widget.c b/plugins/gtk+/glade-gtk-widget.c
index 23c68927..b67eb685 100644
--- a/plugins/gtk+/glade-gtk-widget.c
+++ b/plugins/gtk+/glade-gtk-widget.c
@@ -697,7 +697,7 @@ widget_parent_changed (GtkWidget          *widget,
   GladeWidget *parent;
 
   /* this could get called for a stale instance of an object
-   * being rebuilt for a contruct-only property. */
+   * being rebuilt for a construct-only property. */
   if (!gwidget)
     return;
 
@@ -968,7 +968,7 @@ glade_gtk_widget_action_activate (GladeWidgetAdaptor *adaptor,
               glade_command_pop_group ();
 
               /* Undo delete command
-               * FIXME: this will leave the "Adding parent..." comand in the
+               * FIXME: this will leave the "Adding parent..." command in the
                * redo list, which I think its better than leaving it in the
                * undo list by using glade_command_add() to add the widget back
                * to the original parent.
diff --git a/plugins/gtk+/glade-label-editor.c b/plugins/gtk+/glade-label-editor.c
index 0e7b7a13..68708862 100644
--- a/plugins/gtk+/glade-label-editor.c
+++ b/plugins/gtk+/glade-label-editor.c
@@ -51,7 +51,7 @@ struct _GladeLabelEditorPrivate
   GtkWidget *pattern_radio;       /* Use a pattern string to underline portions of the text
                                    * (pattern eprop embedded) */
 
-  /* These control whether to use single-line-mode, wrap & wrap-mode or niether */
+  /* These control whether to use single-line-mode, wrap & wrap-mode or neither */
   GtkWidget *wrap_free_label; /* Set boldness on this label for a fake property */
   GtkWidget *wrap_free_radio;
   GtkWidget *single_radio;
diff --git a/plugins/gtk+/gtk+.xml b/plugins/gtk+/gtk+.xml
index baee064b..cdca9e8f 100644
--- a/plugins/gtk+/gtk+.xml
+++ b/plugins/gtk+/gtk+.xml
@@ -4168,7 +4168,7 @@
           <property id="is-expander" disabled="True"/>
           <property id="mode" disabled="True"/>
           
-          <!-- Cell renderer properties with thier virtual attribute and control properties -->
+          <!-- Cell renderer properties with their virtual attribute and control properties -->
           <property id="cell-background" common="True" save="False" custom-layout="True"/>
           <property id="attr-cell-background" name="Cell Background Color name column" save="False" 
default="-1" custom-layout="True">
             <parameter-spec>
diff --git a/src/glade-http.c b/src/glade-http.c
index ab3ae85c..849409d7 100644
--- a/src/glade-http.c
+++ b/src/glade-http.c
@@ -144,7 +144,7 @@ on_read_ready (GObject *source, GAsyncResult *res, gpointer data)
     {
       g_string_append_len (priv->response, priv->response_buffer, bytes_read);
 
-      /* NOTE: We do not need to parse content-lenght because we do not support
+      /* NOTE: We do not need to parse content-length because we do not support
        * multiples HTTP requests in the same connection.
        */
       if (priv->cancellable)
@@ -179,7 +179,7 @@ on_write_ready (GObject *source, GAsyncResult *res, gpointer data)
 
   if (error == NULL && priv->data->len != count)
     error = g_error_new (G_IO_ERROR, G_IO_ERROR_FAILED, 
-                         "Error sending data data to %s", 
+                         "Error sending data to %s", 
                          priv->host);
 
   if (error)
@@ -332,7 +332,7 @@ glade_http_class_init (GladeHTTPClass *klass)
 
   properties[PROP_TLS] =
     g_param_spec_boolean ("tls", "TLS",
-                          "Wheter to use tls encryption or not",
+                          "Whether to use tls encryption or not",
                           FALSE, G_PARAM_READWRITE);
 
   /* Install all properties */
diff --git a/src/glade-registration.c b/src/glade-registration.c
index eed80033..29fac50c 100644
--- a/src/glade-registration.c
+++ b/src/glade-registration.c
@@ -31,7 +31,7 @@
 /* translators: Email subject sent to the user after completing the survey */
 #define MAIL_SUBJECT _("Glade User Survey")
 /* translators: Email body sent to the user after completing the survey */
-#define MAIL_BODY _("Thank you for taking Glade Users survey, we appreciate it!\n\nTo validate this email 
address open the folowing 
link\n\nhttps://people.gnome.org/~jpu/glade/registration.php?email=$email&validation_token=$new_validation_token\n\nIn
 case you want to change or update the survey, your current update token is:\n$new_token\n\nCheers\n\n       
The Glade team\n")
+#define MAIL_BODY _("Thank you for taking Glade Users survey, we appreciate it!\n\nTo validate this email 
address open the following 
link\n\nhttps://people.gnome.org/~jpu/glade/registration.php?email=$email&validation_token=$new_validation_token\n\nIn
 case you want to change or update the survey, your current update token is:\n$new_token\n\nCheers\n\n      
The Glade team\n")
 
 /* translators: Email subject sent to the user after updating the survey */
 #define UPDATE_MAIL_SUBJECT _("Glade User Survey (update)")
diff --git a/tests/Makefile.am b/tests/Makefile.am
index fc961957..dfe51950 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -23,7 +23,7 @@ progs_cflags = \
 progs_libs  = $(GTK_LIBS) $(GTK_MAC_LIBS)
 progs_ldadd = $(top_builddir)/gladeui/libgladeui-2.la
 
-# Test that GladeWidgets and thier runtime objects
+# Test that GladeWidgets and their runtime objects
 # are created and finalized properly
 create_widgets_CPPFLAGS = $(progs_cppflags)
 create_widgets_CFLAGS   = $(progs_cflags)


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