comparison src/protocols/oscar/oscar.c @ 7841:0555e59dfba9

[gaim-migrate @ 8494] A few more minor updates to the Join Chat dialog. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sat, 13 Dec 2003 01:16:23 +0000
parents 5f0bb52c0609
children 340df1652af1
comparison
equal deleted inserted replaced
7840:13334c29799b 7841:0555e59dfba9
5206 static GList *oscar_chat_info(GaimConnection *gc) { 5206 static GList *oscar_chat_info(GaimConnection *gc) {
5207 GList *m = NULL; 5207 GList *m = NULL;
5208 struct proto_chat_entry *pce; 5208 struct proto_chat_entry *pce;
5209 5209
5210 pce = g_new0(struct proto_chat_entry, 1); 5210 pce = g_new0(struct proto_chat_entry, 1);
5211 pce->label = _("Join what group:"); 5211 pce->label = _("_Group:");
5212 pce->identifier = "room"; 5212 pce->identifier = "room";
5213 m = g_list_append(m, pce); 5213 m = g_list_append(m, pce);
5214 5214
5215 pce = g_new0(struct proto_chat_entry, 1); 5215 pce = g_new0(struct proto_chat_entry, 1);
5216 pce->label = _("Exchange:"); 5216 pce->label = _("_Exchange:");
5217 pce->identifier = "exchange"; 5217 pce->identifier = "exchange";
5218 pce->is_int = TRUE; 5218 pce->is_int = TRUE;
5219 pce->min = 4; 5219 pce->min = 4;
5220 pce->max = 20; 5220 pce->max = 20;
5221 m = g_list_append(m, pce); 5221 m = g_list_append(m, pce);