[Commits] cm_gdata_contacts.c 1.1.2.12 1.1.2.13 gdata_plugin.c 1.1.2.5 1.1.2.6

holger at claws-mail.org holger at claws-mail.org
Mon Dec 19 00:53:17 CET 2011


Update of /home/claws-mail/plugins/gdata/src
In directory claws-mail:/tmp/cvs-serv18096/src

Modified Files:
      Tag: gtk2
	cm_gdata_contacts.c gdata_plugin.c 
Log Message:
2011-12-18 [holger]	0.3cvs1

	* src/cm_gdata_contacts.c
	* src/gdata_plugin.c
		Spelling fixes, thanks to wwp 

Index: gdata_plugin.c
===================================================================
RCS file: /home/claws-mail/plugins/gdata/src/Attic/gdata_plugin.c,v
retrieving revision 1.1.2.5
retrieving revision 1.1.2.6
diff -u -d -r1.1.2.5 -r1.1.2.6
--- gdata_plugin.c	31 Aug 2011 21:37:50 -0000	1.1.2.5
+++ gdata_plugin.c	18 Dec 2011 23:53:15 -0000	1.1.2.6
@@ -165,9 +165,9 @@
 
 const gchar *plugin_desc(void)
 {
-  return _("This plugin provides access to the GData protocoll "
+  return _("This plugin provides access to the GData protocol "
 	   "for Claws Mail.\n\n"
-      "The GData protocoll is an interface to Google services.\n"
+      "The GData protocol is an interface to Google services.\n"
       "Currently, the only implemented functionality is to include "
       "Google Contacts into the Tab-address completion.\n"
      "\nFeedback to <berndth at gmx.de> is welcome.");

Index: cm_gdata_contacts.c
===================================================================
RCS file: /home/claws-mail/plugins/gdata/src/Attic/cm_gdata_contacts.c,v
retrieving revision 1.1.2.12
retrieving revision 1.1.2.13
diff -u -d -r1.1.2.12 -r1.1.2.13
--- cm_gdata_contacts.c	16 Oct 2011 11:44:18 -0000	1.1.2.12
+++ cm_gdata_contacts.c	18 Dec 2011 23:53:15 -0000	1.1.2.13
@@ -224,13 +224,13 @@
 
   if(gdata_client_login_authorizer_authenticate_finish(authorizer, res, &error) == FALSE)
   {
-    log_error(LOG_PROTOCOL, _("GData plugin: Authentification error: %s\n"), error->message);
+    log_error(LOG_PROTOCOL, _("GData plugin: Authentication error: %s\n"), error->message);
     g_error_free(error);
     cm_gdata_contacts_query_running = FALSE;
     return;
   }
 
-  log_message(LOG_PROTOCOL, _("GData plugin: Authentificated\n"));
+  log_message(LOG_PROTOCOL, _("GData plugin: Authenticated\n"));
 
   service = gdata_contacts_service_new(GDATA_AUTHORIZER(authorizer));
 
@@ -245,13 +245,13 @@
 
   if(!gdata_service_authenticate_finish(GDATA_SERVICE(service), res, &error))
   {
-    log_error(LOG_PROTOCOL, _("GData plugin: Authentification error: %s\n"), error->message);
+    log_error(LOG_PROTOCOL, _("GData plugin: Authentication error: %s\n"), error->message);
     g_error_free(error);
     cm_gdata_contacts_query_running = FALSE;
     return;
   }
 
-  log_message(LOG_PROTOCOL, _("GData plugin: Authentificated\n"));
+  log_message(LOG_PROTOCOL, _("GData plugin: Authenticated\n"));
 
   query_after_auth(service);
 }
@@ -271,7 +271,7 @@
     return;
   }
 
-  log_message(LOG_PROTOCOL, _("GData plugin: Starting async authentification\n"));
+  log_message(LOG_PROTOCOL, _("GData plugin: Starting async authentication\n"));
 
 #ifdef HAVE_GDATA_VERSION_0_9
   authorizer = gdata_client_login_authorizer_new(CM_GDATA_CLIENT_ID, GDATA_TYPE_CONTACTS_SERVICE);



More information about the Commits mailing list