]> git.0d.be Git - empathy.git/commitdiff
Say in the status message when the call has been terminated
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Fri, 21 Sep 2012 08:13:07 +0000 (10:13 +0200)
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Tue, 25 Sep 2012 07:33:13 +0000 (09:33 +0200)
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

index d37508350015df7410994b37c8c6beeddca6374d..83187203229349125e686a7425b7a159be0d2520 100644 (file)
@@ -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