comparison src/protocols/jabber/chat.c @ 10959:b6cafdeda2a8

[gaim-migrate @ 12761] this actually saves me some work I thought I had to do committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Wed, 01 Jun 2005 01:26:08 +0000
parents cef48e318125
children e8890f996cc1
comparison
equal deleted inserted replaced
10958:90d22e1b68df 10959:b6cafdeda2a8
38 struct proto_chat_entry *pce; 38 struct proto_chat_entry *pce;
39 39
40 pce = g_new0(struct proto_chat_entry, 1); 40 pce = g_new0(struct proto_chat_entry, 1);
41 pce->label = _("_Room:"); 41 pce->label = _("_Room:");
42 pce->identifier = "room"; 42 pce->identifier = "room";
43 pce->required = TRUE;
43 m = g_list_append(m, pce); 44 m = g_list_append(m, pce);
44 45
45 pce = g_new0(struct proto_chat_entry, 1); 46 pce = g_new0(struct proto_chat_entry, 1);
46 pce->label = _("_Server:"); 47 pce->label = _("_Server:");
47 pce->identifier = "server"; 48 pce->identifier = "server";
49 pce->required = TRUE;
48 m = g_list_append(m, pce); 50 m = g_list_append(m, pce);
49 51
50 pce = g_new0(struct proto_chat_entry, 1); 52 pce = g_new0(struct proto_chat_entry, 1);
51 pce->label = _("_Handle:"); 53 pce->label = _("_Handle:");
52 pce->identifier = "handle"; 54 pce->identifier = "handle";
55 pce->required = TRUE;
53 m = g_list_append(m, pce); 56 m = g_list_append(m, pce);
54 57
55 pce = g_new0(struct proto_chat_entry, 1); 58 pce = g_new0(struct proto_chat_entry, 1);
56 pce->label = _("_Password:"); 59 pce->label = _("_Password:");
57 pce->identifier = "password"; 60 pce->identifier = "password";