diff src/protocols/gg/gg.c @ 4059:c3968c878c68

[gaim-migrate @ 4269] spelling and such: " <Smigs> what's the 'proper' terminology? 'Buddies List' or 'Buddy List'? It's inconsistant, though I'm seeing more of 'Buddy List' than 'Buddies List' (I'm willing to go through and correct them :P) <LSchiere> i'd say "Buddy List" <Paco-Paco> buddy list The "Buddies List" -> "Buddy List" corrections are mostly in gg.c (plus all the .po's). Other typos have been corrected that I saw as I went through: "buddylist" -> "buddy list" (I also corrected the .po's in another instance of this that had already been fixed in the actual file) "sucessfully" -> "successfully" "communicating to" -> "communicating with" "Pleae tryagain" -> "Please try again" "this users profile" -> "this user's profile" "passord" -> "password" All adds up to a pretty big patch.. hopefully it's all correct :)" --Matthew Smith (smigs) committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Wed, 11 Dec 2002 02:09:43 +0000
parents a5c49e9c6a53
children ee884f1d7ae3
line wrap: on
line diff
--- a/src/protocols/gg/gg.c	Tue Dec 10 21:38:38 2002 +0000
+++ b/src/protocols/gg/gg.c	Wed Dec 11 02:09:43 2002 +0000
@@ -1,6 +1,6 @@
 /*
  * gaim - Gadu-Gadu Protocol Plugin
- * $Id: gg.c 4261 2002-12-08 23:29:45Z lschiere $
+ * $Id: gg.c 4269 2002-12-11 02:09:43Z lschiere $
  *
  * Copyright (C) 2001 Arkadiusz Mi¶kiewicz <misiek@pld.ORG.PL>
  * 
@@ -771,7 +771,7 @@
 
 	if ((ptr = strstr(webdata, "get_results:")) == NULL || (ptr = strchr(ptr, ':')) == NULL) {
 		debug_printf("import_buddies_server_results: import buddies result [%s]\n", webdata);
-		do_error_dialog(_("Couldn't Import Buddies List from Server"), NULL, GAIM_ERROR);
+		do_error_dialog(_("Couldn't Import Buddy List from Server"), NULL, GAIM_ERROR);
 		return;
 	}
 	ptr++;
@@ -829,7 +829,7 @@
 static void delete_buddies_server_results(struct gaim_connection *gc, gchar *webdata)
 {
 	if (strstr(webdata, "put_success:")) {
-		do_error_dialog(_("Buddy List sucessfully deleted from Gadu-Gadu server"), NULL, GAIM_INFO);
+		do_error_dialog(_("Buddy List successfully deleted from Gadu-Gadu server"), NULL, GAIM_INFO);
 		return;
 	}
 
@@ -958,7 +958,7 @@
 		close(source);
 		do_error_dialog(_("Error communicating with Gadu-Gadu server"),
 				_("Gaim was unable to complete your request due to a problem "
-				  "communicating to the Gadu-Gadu HTTP server.  Please try again "
+				  "communicating with the Gadu-Gadu HTTP server.  Please try again "
 				  "later."), GAIM_ERROR);
 		return;
 	}
@@ -1114,7 +1114,7 @@
 	if (proxy_connect(GG_PUBDIR_HOST, GG_PUBDIR_PORT, http_req_callback, srch) < 0) {
 		do_error_dialog(_("Unable to access directory"), 
 				_("Gaim was unable to search the Directory because it "
-				  "was unable to connect to the directory server.  Please try"
+				  "was unable to connect to the directory server.  Please try "
 				  "again later."), GAIM_ERROR);
 		g_free(srch->request);
 		g_free(srch);
@@ -1160,11 +1160,11 @@
 		show_find_info(gc);
 	} else if (!strcmp(action, _("Change Password"))) {
 		show_change_passwd(gc);
-	} else if (!strcmp(action, _("Import Buddies List from Server"))) {
+	} else if (!strcmp(action, _("Import Buddy List from Server"))) {
 		import_buddies_server(gc);
-	} else if (!strcmp(action, _("Export Buddies List to Server"))) {
+	} else if (!strcmp(action, _("Export Buddy List to Server"))) {
 		export_buddies_server(gc);
-	} else if (!strcmp(action, _("Delete Buddies List from Server"))) {
+	} else if (!strcmp(action, _("Delete Buddy List from Server"))) {
 	        delete_buddies_server(gc);
 	}
 }
@@ -1177,9 +1177,9 @@
 	m = g_list_append(m, NULL);
 	m = g_list_append(m, _("Change Password"));
 	m = g_list_append(m, NULL);
-	m = g_list_append(m, _("Import Buddies List from Server"));
-	m = g_list_append(m, _("Export Buddies List to Server"));
-	m = g_list_append(m, _("Delete Buddies List from Server"));
+	m = g_list_append(m, _("Import Buddy List from Server"));
+	m = g_list_append(m, _("Export Buddy List to Server"));
+	m = g_list_append(m, _("Delete Buddy List from Server"));
 
 	return m;
 }
@@ -1209,7 +1209,7 @@
 
 	if (proxy_connect(GG_PUBDIR_HOST, GG_PUBDIR_PORT, http_req_callback, srch) < 0) {
 		do_error_dialog(_("Unable to access user profile."), 
-				_("Gaim was unable to access this users profile due to an error "
+				_("Gaim was unable to access this user's profile due to an error "
 				  "connecting to the directory server.  Please try again later."), GAIM_ERROR);
 		g_free(srch->request);
 		g_free(srch);