diff options
-rw-r--r-- | src/empathy-main-window.c | 4 | ||||
-rw-r--r-- | src/empathy-preferences.c | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/empathy-main-window.c b/src/empathy-main-window.c index b95783f3a..07f4b9f7d 100644 --- a/src/empathy-main-window.c +++ b/src/empathy-main-window.c @@ -472,7 +472,7 @@ main_window_contact_presence_changed_cb (EmpathyContactMonitor *monitor, /* someone is logging in */ empathy_sound_play (GTK_WIDGET (window->window), EMPATHY_PREFS_SOUNDS_CONTACT_LOGIN, - "service-login", _("Contact logged in")); + "service-login", _("Contact connected")); return; } @@ -480,7 +480,7 @@ main_window_contact_presence_changed_cb (EmpathyContactMonitor *monitor, /* someone is logging off */ empathy_sound_play (GTK_WIDGET (window->window), EMPATHY_PREFS_SOUNDS_CONTACT_LOGOUT, - "service-logout", _("Contact logged out")); + "service-logout", _("Contact disconnected")); } } diff --git a/src/empathy-preferences.c b/src/empathy-preferences.c index f3d0d10a5..e8eef8748 100644 --- a/src/empathy-preferences.c +++ b/src/empathy-preferences.c @@ -153,10 +153,10 @@ static SoundEventEntry sound_entries [] = { { N_("Message received"), EMPATHY_PREFS_SOUNDS_INCOMING_MESSAGE }, { N_("Message sent"), EMPATHY_PREFS_SOUNDS_OUTGOING_MESSAGE }, { N_("New conversation"), EMPATHY_PREFS_SOUNDS_NEW_CONVERSATION }, - { N_("Contact logs in"), EMPATHY_PREFS_SOUNDS_CONTACT_LOGIN }, - { N_("Contact logs out"), EMPATHY_PREFS_SOUNDS_CONTACT_LOGOUT }, - { N_("Logging in a network"), EMPATHY_PREFS_SOUNDS_SERVICE_LOGIN }, - { N_("Logging off a network"), EMPATHY_PREFS_SOUNDS_SERVICE_LOGOUT } + { N_("Contact goes online"), EMPATHY_PREFS_SOUNDS_CONTACT_LOGIN }, + { N_("Contact goes offline"), EMPATHY_PREFS_SOUNDS_CONTACT_LOGOUT }, + { N_("Account connected"), EMPATHY_PREFS_SOUNDS_SERVICE_LOGIN }, + { N_("Account disconnected"), EMPATHY_PREFS_SOUNDS_SERVICE_LOGOUT } }; static void |