changeset 26518:28f1512b0f94

Minor grammatical message fixes.
author Elliott Sales de Andrade <qulogic@pidgin.im>
date Sat, 04 Apr 2009 07:20:10 +0000
parents 4c1af7f30af8
children 9eb8c8ec0a75
files finch/gntmedia.c libpurple/protocols/jabber/jabber.c
diffstat 2 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/finch/gntmedia.c	Sat Apr 04 05:17:30 2009 +0000
+++ b/finch/gntmedia.c	Sat Apr 04 07:20:10 2009 +0000
@@ -272,7 +272,7 @@
 					alias);
 		} else {
 			message = g_strdup_printf(
-					_("%s is trying to start an unsuppoted media session type with you."),
+					_("%s is trying to start an unsupported media session type with you."),
 					alias);
 		}
 		finch_media_emit_message(gntmedia, message);
--- a/libpurple/protocols/jabber/jabber.c	Sat Apr 04 05:17:30 2009 +0000
+++ b/libpurple/protocols/jabber/jabber.c	Sat Apr 04 07:20:10 2009 +0000
@@ -2691,11 +2691,11 @@
 		char *msg;
 
 		if(!jb) {
-			msg = g_strdup_printf(_("Unable to initiate media with %s, invalid JID"), who);
+			msg = g_strdup_printf(_("Unable to initiate media with %s: invalid JID"), who);
 		} else if(jb->subscription & JABBER_SUB_TO) {
-			msg = g_strdup_printf(_("Unable to initiate media with %s, user is not online"), who);
+			msg = g_strdup_printf(_("Unable to initiate media with %s: user is not online"), who);
 		} else {
-			msg = g_strdup_printf(_("Unable to initiate media with %s, not subscribed to user presence"), who);
+			msg = g_strdup_printf(_("Unable to initiate media with %s: not subscribed to user presence"), who);
 		}
 
 		purple_notify_error(js->gc, _("Media Initiation Failed"),
@@ -2769,7 +2769,7 @@
 			return result;
 		}
 
-		msg = g_strdup_printf(_("Please select the resource of %s to which you would like to start a media session with."), who);
+		msg = g_strdup_printf(_("Please select the resource of %s with which you would like to start a media session."), who);
 		fields = purple_request_fields_new();
 		group =	purple_request_field_group_new(NULL);
 		request = g_new0(JabberMediaRequest, 1);