comparison src/protocols/zephyr/zephyr.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 08ce2a94d9c7
children 1b8261f374ea
comparison
equal deleted inserted replaced
7840:13334c29799b 7841:0555e59dfba9
903 static GList *zephyr_chat_info(GaimConnection *gc) { 903 static GList *zephyr_chat_info(GaimConnection *gc) {
904 GList *m = NULL; 904 GList *m = NULL;
905 struct proto_chat_entry *pce; 905 struct proto_chat_entry *pce;
906 906
907 pce = g_new0(struct proto_chat_entry, 1); 907 pce = g_new0(struct proto_chat_entry, 1);
908 pce->label = _("Class:"); 908 pce->label = _("_Class:");
909 pce->identifier = "class"; 909 pce->identifier = "class";
910 m = g_list_append(m, pce); 910 m = g_list_append(m, pce);
911 911
912 pce = g_new0(struct proto_chat_entry, 1); 912 pce = g_new0(struct proto_chat_entry, 1);
913 pce->label = _("Instance:"); 913 pce->label = _("_Instance:");
914 pce->identifier = "instance"; 914 pce->identifier = "instance";
915 m = g_list_append(m, pce); 915 m = g_list_append(m, pce);
916 916
917 pce = g_new0(struct proto_chat_entry, 1); 917 pce = g_new0(struct proto_chat_entry, 1);
918 pce->label = _("Recipient:"); 918 pce->label = _("_Recipient:");
919 pce->identifier = "recipient"; 919 pce->identifier = "recipient";
920 m = g_list_append(m, pce); 920 m = g_list_append(m, pce);
921 921
922 return m; 922 return m;
923 } 923 }