comparison libpurple/protocols/qq/group_join.c @ 24374:75545fdf8944

String changes. I'm kind of blindly making changes to the qq strings
author Mark Doliner <mark@kingant.net>
date Fri, 14 Nov 2008 19:58:32 +0000
parents 2a19984c0005
children fecedf6d9ee1
comparison
equal deleted inserted replaced
24373:ad685dadbaca 24374:75545fdf8944
217 bytes += qq_get32(&id, data + bytes); 217 bytes += qq_get32(&id, data + bytes);
218 g_return_if_fail(id > 0); 218 g_return_if_fail(id > 0);
219 219
220 rmd = qq_room_data_find(gc, id); 220 rmd = qq_room_data_find(gc, id);
221 if (rmd != NULL) { 221 if (rmd != NULL) {
222 msg = g_strdup_printf(_("Successed join to Qun %s (%d)"), rmd->title_utf8, rmd->ext_id); 222 msg = g_strdup_printf(_("Successfully joined Qun %s (%d)"), rmd->title_utf8, rmd->ext_id);
223 qq_got_attention(gc, msg); 223 qq_got_attention(gc, msg);
224 g_free(msg); 224 g_free(msg);
225 } else { 225 } else {
226 qq_got_attention(gc, _("Successed join to Qun")); 226 qq_got_attention(gc, _("Successfully joined Qun"));
227 } 227 }
228 } 228 }
229 229
230 /* process group cmd reply "join group" */ 230 /* process group cmd reply "join group" */
231 void qq_process_group_cmd_join_group(guint8 *data, gint len, PurpleConnection *gc) 231 void qq_process_group_cmd_join_group(guint8 *data, gint len, PurpleConnection *gc)