Mercurial > pidgin
changeset 13536:977714c5e8a6
[gaim-migrate @ 15913]
The tab status (typing, stopped typing, etc.) accessibility strings pending the end of string freeze.
committer: Tailor Script <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Tue, 21 Mar 2006 01:00:58 +0000 |
parents | 99040e8c1142 |
children | 207f974ca030 |
files | src/gtkconv.c |
diffstat | 1 files changed, 3 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/src/gtkconv.c Tue Mar 21 00:54:54 2006 +0000 +++ b/src/gtkconv.c Tue Mar 21 01:00:58 2006 +0000 @@ -5627,14 +5627,12 @@ else if (im != NULL && gaim_conv_im_get_typing_state(im) == GAIM_TYPED) { - /* TODO: Post string freeze. - atk_object_set_description(accessibility_obj, _("Stopped Typing")); */ + atk_object_set_description(accessibility_obj, _("Stopped Typing")); strncpy(style, "color=\"#D1940C\"", sizeof(style)); } else if (gtkconv->unseen_state == GAIM_UNSEEN_NICK) { - /* TODO: Post string freeze. - atk_object_set_description(accessibility_obj, _("Nick Said")); */ + atk_object_set_description(accessibility_obj, _("Nick Said")); strncpy(style, "color=\"#0D4E91\" style=\"italic\" weight=\"bold\"", sizeof(style)); } else if (gtkconv->unseen_state == GAIM_UNSEEN_TEXT) @@ -5644,9 +5642,7 @@ } else if (gtkconv->unseen_state == GAIM_UNSEEN_EVENT) { - atk_object_set_description(accessibility_obj, _("Event")); - /* TODO: Post string freeze - atk_object_set_description(accessibility_obj, _("New Event")); */ + atk_object_set_description(accessibility_obj, _("New Event")); strncpy(style, "color=\"#868272\" style=\"italic\"", sizeof(style)); }