src/protocols/msn/msn.c

changeset 12948
0867a553ed26
parent 12943
8f11013baa86
child 12970
c2f3b4dcf711
equal deleted inserted replaced
12947:676252f9d2a6 12948:0867a553ed26
552 g_string_append_printf(s, _("\n<b>%s:</b> %s"), _("Status"), 552 g_string_append_printf(s, _("\n<b>%s:</b> %s"), _("Status"),
553 gaim_presence_is_idle(presence) ? 553 gaim_presence_is_idle(presence) ?
554 _("Idle") : gaim_status_get_name(status)); 554 _("Idle") : gaim_status_get_name(status));
555 } 555 }
556 556
557 if (user) 557 if (full && user)
558 { 558 {
559 g_string_append_printf(s, _("\n<b>%s:</b> %s"), _("Has you"), 559 g_string_append_printf(s, _("\n<b>%s:</b> %s"), _("Has you"),
560 (user->list_op & (1 << MSN_LIST_RL)) ? 560 (user->list_op & (1 << MSN_LIST_RL)) ?
561 _("Yes") : _("No")); 561 _("Yes") : _("No"));
562
563 /* XXX: This is being shown in non-full tooltips because the
564 * XXX: blocked icon overlay isn't always accurate for MSN.
565 * XXX: This can die as soon as gaim_privacy_check() knows that
566 * XXX: this prpl always honors both the allow and deny lists. */
567 if (user)
562 g_string_append_printf(s, _("\n<b>%s:</b> %s"), _("Blocked"), 568 g_string_append_printf(s, _("\n<b>%s:</b> %s"), _("Blocked"),
563 (user->list_op & (1 << MSN_LIST_BL)) ? 569 (user->list_op & (1 << MSN_LIST_BL)) ?
564 _("Yes") : _("No")); 570 _("Yes") : _("No"));
565 } 571 }
566 572

mercurial