[empathy] Say in the status message when the call has been terminated



commit 5bfe5733ac4e743ec7c025a3c9f6551739e334d5
Author: Guillaume Desmottes <guillaume desmottes collabora co uk>
Date:   Fri Sep 21 10:13:07 2012 +0200

    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 files changed, 2 insertions(+), 0 deletions(-)
---
diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c
index d375083..8318720 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



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]