~ubuntu-branches/ubuntu/natty/empathy/natty

« back to all changes in this revision

Viewing changes to .pc/reword_subscription_dailog_to_be_less_technical.patch/src/empathy-event-manager.c

  • Committer: Bazaar Package Importer
  • Author(s): Brian Curtis
  • Date: 2011-01-25 13:20:01 UTC
  • Revision ID: james.westby@ubuntu.com-20110125132001-vyasbmnk6n4d3gvq
Tags: 2.32.2-0ubuntu7
* debian/patches/00_git_conn_disc_notif.patch (LP: #582757)
* debian/patches/00_git_F2_opens_contact_info.patch (LP: #387991)
* debian/patches/00_git_tooltip_on_error_info.patch (LP: #681413)
* debian/rules
  - added --with-ca-file='/etc/ssl/certs/ca-certificates.crt'

Show diffs side-by-side

added added

removed removed

Lines of Context:
1049
1049
          if (g_settings_get_boolean (gsettings,
1050
1050
                EMPATHY_PREFS_NOTIFICATIONS_CONTACT_SIGNOUT))
1051
1051
            {
1052
 
              header = g_strdup_printf (_("%s is now offline."),
 
1052
              header = g_strdup_printf ("<b>%s</b>",
1053
1053
                  empathy_contact_get_alias (contact));
1054
1054
 
1055
 
              event_manager_add (manager, contact, EMPATHY_EVENT_TYPE_PRESENCE,
1056
 
                  EMPATHY_IMAGE_AVATAR_DEFAULT, header, NULL, NULL, NULL, NULL);
 
1055
              event_manager_add (manager, contact,
 
1056
                  EMPATHY_EVENT_TYPE_PRESENCE, EMPATHY_IMAGE_AVATAR_DEFAULT,
 
1057
                  header, _("Disconnected"), NULL, NULL, NULL);
1057
1058
            }
1058
1059
        }
1059
1060
    }
1069
1070
          if (g_settings_get_boolean (gsettings,
1070
1071
                EMPATHY_PREFS_NOTIFICATIONS_CONTACT_SIGNIN))
1071
1072
            {
1072
 
              header = g_strdup_printf (_("%s is now online."),
 
1073
              header = g_strdup_printf ("<b>%s</b>",
1073
1074
                  empathy_contact_get_alias (contact));
1074
1075
 
1075
 
              event_manager_add (manager, contact, EMPATHY_EVENT_TYPE_PRESENCE,
1076
 
                  EMPATHY_IMAGE_AVATAR_DEFAULT, header, NULL, NULL, NULL, NULL);
 
1076
              event_manager_add (manager, contact,
 
1077
                  EMPATHY_EVENT_TYPE_PRESENCE, EMPATHY_IMAGE_AVATAR_DEFAULT,
 
1078
                  header, _("Connected"), NULL, NULL, NULL);
1077
1079
            }
1078
1080
        }
1079
1081
    }