From 5bfe5733ac4e743ec7c025a3c9f6551739e334d5 Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Fri, 21 Sep 2012 10:13:07 +0200 Subject: Say in the status message when the call has been terminated This is not a string freeze break as this string is already used in a bunch of place in this file. We could probably improve the phrasing a little bit but that's too late for this cycle. https://bugzilla.gnome.org/show_bug.cgi?id=684528 --- src/empathy-call-window.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c index d37508350..831872032 100644 --- a/src/empathy-call-window.c +++ b/src/empathy-call-window.c @@ -2872,6 +2872,8 @@ empathy_call_window_update_timer (gpointer user_data) if (priv->call_state == HELD) status = _("On hold"); + else if (priv->call_state == DISCONNECTED) + status = _("Disconnected"); else if (priv->muted) status = _("Mute"); else -- cgit v1.2.3