[gnome-contacts] Correct some spelling mistakes



commit c640b7a19e9054489fe718f535b89b57cf7850e3
Author: Niels De Graef <nielsdegraef gmail com>
Date:   Sun Dec 6 10:58:12 2020 +0100

    Correct some spelling mistakes
    
    These were found after running `codespell`.

 data/org.gnome.Contacts.appdata.xml.in.in | 2 +-
 src/contacts-contact-pane.vala            | 2 +-
 src/contacts-editor-property.vala         | 2 +-
 src/contacts-esd-setup.vala               | 2 +-
 src/contacts-setup-window.vala            | 2 +-
 src/contacts-utils.vala                   | 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/data/org.gnome.Contacts.appdata.xml.in.in b/data/org.gnome.Contacts.appdata.xml.in.in
index 87ca1cb5..a9c33685 100644
--- a/data/org.gnome.Contacts.appdata.xml.in.in
+++ b/data/org.gnome.Contacts.appdata.xml.in.in
@@ -456,7 +456,7 @@
         <ul>
           <li>Folks now requires version 11.4 or higher</li>
           <li>Migrated away from intltool and libgd</li>
-          <li>Got rid of a bunch of warnings and critical messsages</li>
+          <li>Got rid of a bunch of warnings and critical messages</li>
           <li>Use the locale to translate months</li>
           <li>Added git.mk to automagically create .gitignores</li>
         </ul>
diff --git a/src/contacts-contact-pane.vala b/src/contacts-contact-pane.vala
index 6ab9c2c1..458d91a8 100644
--- a/src/contacts-contact-pane.vala
+++ b/src/contacts-contact-pane.vala
@@ -246,7 +246,7 @@ public class Contacts.ContactPane : Gtk.ScrolledWindow {
     var individual = persona.individual;
 
     if (individual != null) {
-      //FIXME: This causes a flicker, especially visibile when a avatar is set
+      //FIXME: This causes a flicker, especially visible when an avatar is set
       this.parent_window.set_shown_contact (individual);
     } else {
       show_message_dialog (_("Unable to find newly created contact"));
diff --git a/src/contacts-editor-property.vala b/src/contacts-editor-property.vala
index e80e54eb..e9f35eb1 100644
--- a/src/contacts-editor-property.vala
+++ b/src/contacts-editor-property.vala
@@ -213,7 +213,7 @@ public class Contacts.EditorPropertyRow : Gtk.ListBoxRow {
   // This hides the widget with an animation and then destroys it
   public new void remove () {
     this.revealer.set_reveal_child (false);
-    // Remove the seperator during the animation to make it look a little better
+    // Remove the separator during the animation to make it look a little better
     Timeout.add (this.revealer.get_transition_duration ()/2, () => {
       this.set_header (null);
       return false;
diff --git a/src/contacts-esd-setup.vala b/src/contacts-esd-setup.vala
index 51ba7913..b0c58adb 100644
--- a/src/contacts-esd-setup.vala
+++ b/src/contacts-esd-setup.vala
@@ -77,7 +77,7 @@ private async void on_credentials_required (E.Source source, E.SourceCredentials
     return;
 
   if (reason == E.SourceCredentialsReason.ERROR && err != null) {
-    warning ("Failed to autheticate for source \"%s\": %s", source.display_name, err.message);
+    warning ("Failed to authenticate for source \"%s\": %s", source.display_name, err.message);
     return;
   }
 
diff --git a/src/contacts-setup-window.vala b/src/contacts-setup-window.vala
index eab16d58..2fd25c6c 100644
--- a/src/contacts-setup-window.vala
+++ b/src/contacts-setup-window.vala
@@ -28,7 +28,7 @@ public class Contacts.SetupWindow : Gtk.ApplicationWindow {
   private AccountsList setup_accounts_list;
 
   /**
-   * Fired after the user has succesfully performed the setup proess.
+   * Fired after the user has successfully performed the setup proess.
    */
   public signal void setup_done (Edsf.PersonaStore selected_address_book);
 
diff --git a/src/contacts-utils.vala b/src/contacts-utils.vala
index 8466882f..48388765 100644
--- a/src/contacts-utils.vala
+++ b/src/contacts-utils.vala
@@ -498,7 +498,7 @@ namespace Contacts.Utils {
           yield set_persona_property (p, property_name, value);
         }
       }
-      //TODO: Add fallback if we can't write to any persona (Do we wan't to support that?)
+      //TODO: Add fallback if we can't write to any persona (Do we want to support that?)
     }
 
   public async void set_persona_property (Persona persona,


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