comparison src/protocols/irc/irc.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 ebd43be54140
children 1b8261f374ea
comparison
equal deleted inserted replaced
7840:13334c29799b 7841:0555e59dfba9
153 { 153 {
154 GList *m = NULL; 154 GList *m = NULL;
155 struct proto_chat_entry *pce; 155 struct proto_chat_entry *pce;
156 156
157 pce = g_new0(struct proto_chat_entry, 1); 157 pce = g_new0(struct proto_chat_entry, 1);
158 pce->label = _("Channel:"); 158 pce->label = _("_Channel:");
159 pce->identifier = "channel"; 159 pce->identifier = "channel";
160 m = g_list_append(m, pce); 160 m = g_list_append(m, pce);
161 161
162 pce = g_new0(struct proto_chat_entry, 1); 162 pce = g_new0(struct proto_chat_entry, 1);
163 pce->label = _("Password:"); 163 pce->label = _("_Password:");
164 pce->identifier = "password"; 164 pce->identifier = "password";
165 pce->secret = TRUE; 165 pce->secret = TRUE;
166 m = g_list_append(m, pce); 166 m = g_list_append(m, pce);
167 167
168 return m; 168 return m;