| 2366 } |
2366 } |
| 2367 |
2367 |
| 2368 static GList *zephyr_chat_info(PurpleConnection * gc) |
2368 static GList *zephyr_chat_info(PurpleConnection * gc) |
| 2369 { |
2369 { |
| 2370 GList *m = NULL; |
2370 GList *m = NULL; |
| 2371 struct proto_chat_entry *pce; |
2371 PurpleProtocolChatEntry *pce; |
| 2372 |
2372 |
| 2373 pce = g_new0(struct proto_chat_entry, 1); |
2373 pce = g_new0(PurpleProtocolChatEntry, 1); |
| 2374 |
2374 |
| 2375 pce->label = _("_Class:"); |
2375 pce->label = _("_Class:"); |
| 2376 pce->identifier = "class"; |
2376 pce->identifier = "class"; |
| 2377 m = g_list_append(m, pce); |
2377 m = g_list_append(m, pce); |
| 2378 |
2378 |
| 2379 pce = g_new0(struct proto_chat_entry, 1); |
2379 pce = g_new0(PurpleProtocolChatEntry, 1); |
| 2380 |
2380 |
| 2381 pce->label = _("_Instance:"); |
2381 pce->label = _("_Instance:"); |
| 2382 pce->identifier = "instance"; |
2382 pce->identifier = "instance"; |
| 2383 m = g_list_append(m, pce); |
2383 m = g_list_append(m, pce); |
| 2384 |
2384 |
| 2385 pce = g_new0(struct proto_chat_entry, 1); |
2385 pce = g_new0(PurpleProtocolChatEntry, 1); |
| 2386 |
2386 |
| 2387 pce->label = _("_Recipient:"); |
2387 pce->label = _("_Recipient:"); |
| 2388 pce->identifier = "recipient"; |
2388 pce->identifier = "recipient"; |
| 2389 m = g_list_append(m, pce); |
2389 m = g_list_append(m, pce); |
| 2390 |
2390 |