Mercurial > pidgin.yaz
diff libpurple/protocols/qq/group_join.c @ 24630:8f757b2139d2
String changes (a few of which I had already made, grumble grumble).
I tried to re-use strings that exist in other protocols as much as
possible. When calling purple_connection_update_progress() the strings
should not have ellipsis. When calling purple_connection_error_reason()
due to a keep alive timeout, do not include the number of seconds,
because there shouldn't be a reason for users to care
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Thu, 11 Dec 2008 07:17:32 +0000 |
parents | 55b7371eadf4 |
children | 370fd1834371 |
line wrap: on
line diff
--- a/libpurple/protocols/qq/group_join.c Thu Dec 11 04:20:14 2008 +0000 +++ b/libpurple/protocols/qq/group_join.c Thu Dec 11 07:17:32 2008 +0000 @@ -219,11 +219,11 @@ rmd = qq_room_data_find(gc, id); if (rmd != NULL) { - msg = g_strdup_printf(_("Succeeded joining Qun %s (%u)"), rmd->title_utf8, rmd->ext_id); + msg = g_strdup_printf(_("Successfully joined Qun %s (%u)"), rmd->title_utf8, rmd->ext_id); qq_got_message(gc, msg); g_free(msg); } else { - qq_got_message(gc, _("Succeeded joining Qun")); + qq_got_message(gc, _("Successfully joined Qun")); } }