pidgin: 3ac38e33: Minor grammatical message fixes.
qulogic at pidgin.im
qulogic at pidgin.im
Sat Apr 4 03:35:40 EDT 2009
-----------------------------------------------------------------
Revision: 3ac38e3376ccf262ad9a831b270b51f7d12a5810
Ancestor: aafa8335a0f0460abd4e18df41f5860ec4bffec8
Author: qulogic at pidgin.im
Date: 2009-04-04T07:20:10
Branch: im.pidgin.pidgin
URL: http://d.pidgin.im/viewmtn/revision/info/3ac38e3376ccf262ad9a831b270b51f7d12a5810
Modified files:
finch/gntmedia.c libpurple/protocols/jabber/jabber.c
ChangeLog:
Minor grammatical message fixes.
-------------- next part --------------
============================================================
--- finch/gntmedia.c 3533aa0bb156755db685ddb1a2195656734b50dd
+++ finch/gntmedia.c c641d8c76002069d530ec31045a4458f030494ed
@@ -272,7 +272,7 @@ finch_media_state_changed_cb(PurpleMedia
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);
============================================================
--- libpurple/protocols/jabber/jabber.c c8de69e0a6f1dbf009ebd5d4c31a78d2b7b1d990
+++ libpurple/protocols/jabber/jabber.c 42ee0d167543c7d739af263aabd57bdac0a17bca
@@ -2691,11 +2691,11 @@ jabber_initiate_media(PurpleConnection *
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 @@ jabber_initiate_media(PurpleConnection *
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);
More information about the Commits
mailing list