# HG changeset patch # User Elliott Sales de Andrade # Date 1238829610 0 # Node ID 28f1512b0f94c6daa34e0fe287a6ecd953cf25af # Parent 4c1af7f30af89d5ba940c10b7e8fc5056c02562a Minor grammatical message fixes. diff -r 4c1af7f30af8 -r 28f1512b0f94 finch/gntmedia.c --- 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); diff -r 4c1af7f30af8 -r 28f1512b0f94 libpurple/protocols/jabber/jabber.c --- 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);