comparison libpurple/protocols/jabber/buddy.c @ 16915:56042b2f8b64

s/Jabber/XMPP in user-visible places. This is the same as the changes in c0c4c168411c9fbc5ccb9790a43e21a62f6dcd55, except without the sedding of the .po files.
author Richard Laager <rlaager@wiktel.com>
date Sat, 05 May 2007 19:08:07 +0000
parents 1ac4039a2634
children 88444e60ea95
comparison
equal deleted inserted replaced
16914:11a0f2b4ac83 16915:56042b2f8b64
573 } 573 }
574 574
575 if(x_vc_data != NULL) 575 if(x_vc_data != NULL)
576 xmlnode_free(x_vc_data); 576 xmlnode_free(x_vc_data);
577 577
578 purple_request_fields(gc, _("Edit Jabber vCard"), 578 purple_request_fields(gc, _("Edit XMPP vCard"),
579 _("Edit Jabber vCard"), 579 _("Edit XMPP vCard"),
580 _("All items below are optional. Enter only the " 580 _("All items below are optional. Enter only the "
581 "information with which you feel comfortable."), 581 "information with which you feel comfortable."),
582 fields, 582 fields,
583 _("Save"), G_CALLBACK(jabber_format_info), 583 _("Save"), G_CALLBACK(jabber_format_info),
584 _("Cancel"), NULL, 584 _("Cancel"), NULL,
1727 } 1727 }
1728 1728
1729 if(!instructions) 1729 if(!instructions)
1730 { 1730 {
1731 instructions = g_strdup(_("Fill in one or more fields to search " 1731 instructions = g_strdup(_("Fill in one or more fields to search "
1732 "for any matching Jabber users.")); 1732 "for any matching XMPP users."));
1733 } 1733 }
1734 1734
1735 if(xmlnode_get_child(query, "first")) { 1735 if(xmlnode_get_child(query, "first")) {
1736 field = purple_request_field_string_new("first", _("First Name"), 1736 field = purple_request_field_string_new("first", _("First Name"),
1737 NULL, FALSE); 1737 NULL, FALSE);
1755 1755
1756 usi = g_new0(struct user_search_info, 1); 1756 usi = g_new0(struct user_search_info, 1);
1757 usi->js = js; 1757 usi->js = js;
1758 usi->directory_server = g_strdup(from); 1758 usi->directory_server = g_strdup(from);
1759 1759
1760 purple_request_fields(js->gc, _("Search for Jabber users"), 1760 purple_request_fields(js->gc, _("Search for XMPP users"),
1761 _("Search for Jabber users"), instructions, fields, 1761 _("Search for XMPP users"), instructions, fields,
1762 _("Search"), G_CALLBACK(user_search_cb), 1762 _("Search"), G_CALLBACK(user_search_cb),
1763 _("Cancel"), G_CALLBACK(user_search_cancel_cb), 1763 _("Cancel"), G_CALLBACK(user_search_cancel_cb),
1764 NULL, NULL, NULL, 1764 NULL, NULL, NULL,
1765 usi); 1765 usi);
1766 1766