# HG changeset patch # User Evan Schoenberg # Date 1201299437 0 # Node ID 7f2e3846778163da3adb2cdf1e145be2d40f4d57 # Parent fbdf8136c98c3fccc94388a14a0dce73ac1bb155 Fixed grammatically incorrect text when sending a file to an XMPP buddy with multiple online resources. I'm +/- on ending such requests with a period... but ending on a preposition, while acceptable if needed to make a sentence significantly more natural, should be avoided when smoothly possible. diff -r fbdf8136c98c -r 7f2e38467781 libpurple/protocols/jabber/si.c --- a/libpurple/protocols/jabber/si.c Fri Jan 25 13:48:24 2008 +0000 +++ b/libpurple/protocols/jabber/si.c Fri Jan 25 22:17:17 2008 +0000 @@ -1089,7 +1089,7 @@ } else { /* we've got multiple resources, we need to pick one to send to */ GList *l; - char *msg = g_strdup_printf(_("Please select which resource of %s you would like to send a file to"), xfer->who); + char *msg = g_strdup_printf(_("Please select the resource of %s to which you would like to send a file:"), xfer->who); PurpleRequestFields *fields = purple_request_fields_new(); PurpleRequestField *field = purple_request_field_choice_new("resource", _("Resource"), 0); PurpleRequestFieldGroup *group = purple_request_field_group_new(NULL);