Minor grammatical message fixes.

Sat, 04 Apr 2009 07:20:10 +0000

author
Elliott Sales de Andrade <qulogic@pidgin.im>
date
Sat, 04 Apr 2009 07:20:10 +0000
changeset 26647
89bcc7bce53e
parent 26646
ec5cf90362ec
child 26648
1a733d58d74a

Minor grammatical message fixes.

finch/gntmedia.c file | annotate | diff | comparison | revisions
libpurple/protocols/jabber/jabber.c file | annotate | diff | comparison | revisions
--- 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);

mercurial