diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-09-21 16:13:07 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-09-25 15:33:13 +0800 |
commit | 5bfe5733ac4e743ec7c025a3c9f6551739e334d5 (patch) | |
tree | c34a886a2ebfa16d9d12b5e749e8bb5852034723 /src | |
parent | b2bd57b5277f6a03d252f0abdb45bdd4fecdb8b4 (diff) | |
download | gsoc2013-empathy-5bfe5733ac4e743ec7c025a3c9f6551739e334d5.tar.gz gsoc2013-empathy-5bfe5733ac4e743ec7c025a3c9f6551739e334d5.tar.zst gsoc2013-empathy-5bfe5733ac4e743ec7c025a3c9f6551739e334d5.zip |
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
Diffstat (limited to 'src')
-rw-r--r-- | 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 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 |