# HG changeset patch # User Richard Laager # Date 1143395153 0 # Node ID 433001d94e3ecf7871b479e1fa9a606006b77927 # Parent b054b0e348fe0b0152d7fbd529eab4a6c16c6cd3 [gaim-migrate @ 15952] Björn pointed out on gaim-i18n that the instructions are not translated. For users who might not speak English (or whatever language the server configuration file is in), it seems worthwhile to flag that text as coming from the server. diff -r b054b0e348fe -r 433001d94e3e src/protocols/jabber/buddy.c --- a/src/protocols/jabber/buddy.c Sun Mar 26 16:19:19 2006 +0000 +++ b/src/protocols/jabber/buddy.c Sun Mar 26 17:45:53 2006 +0000 @@ -1383,7 +1383,11 @@ gaim_request_fields_add_group(fields, group); if((instnode = xmlnode_get_child(query, "instructions"))) - instructions = xmlnode_get_data(instnode); + { + char *tmp = xmlnode_get_data(instnode); + instructions = g_strdup_printf(_("Server Instructions: %s"), tmp); + g_free(tmp); + } else instructions = g_strdup(_("Fill in one or more fields to search " "for any matching Jabber users."));