diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-11-06 23:25:11 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-11-16 19:58:25 +0800 |
commit | dc7b032347dac5fd9043f8243910b67cbdd7d28c (patch) | |
tree | 562a1126f9e367a010e9534c4deff45e404b7dba /src/empathy-call-window.c | |
parent | 6ada60b8764cd0d202fd962e8ed96a6c84037a80 (diff) | |
download | gsoc2013-empathy-dc7b032347dac5fd9043f8243910b67cbdd7d28c.tar gsoc2013-empathy-dc7b032347dac5fd9043f8243910b67cbdd7d28c.tar.gz gsoc2013-empathy-dc7b032347dac5fd9043f8243910b67cbdd7d28c.tar.bz2 gsoc2013-empathy-dc7b032347dac5fd9043f8243910b67cbdd7d28c.tar.lz gsoc2013-empathy-dc7b032347dac5fd9043f8243910b67cbdd7d28c.tar.xz gsoc2013-empathy-dc7b032347dac5fd9043f8243910b67cbdd7d28c.tar.zst gsoc2013-empathy-dc7b032347dac5fd9043f8243910b67cbdd7d28c.zip |
media_stream_error_to_txt: add a msg for TP_MEDIA_STREAM_ERROR_INVALID_CM_BEHAVIOR
Diffstat (limited to 'src/empathy-call-window.c')
-rw-r--r-- | src/empathy-call-window.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c index d92f1b577..e75bc3428 100644 --- a/src/empathy-call-window.c +++ b/src/empathy-call-window.c @@ -1570,6 +1570,11 @@ media_stream_error_to_txt (EmpathyCallWindow *self, else return g_strdup (_("Your computer doesn't support any video format")); + case TP_MEDIA_STREAM_ERROR_INVALID_CM_BEHAVIOR: + return g_strdup (_("Something not expected happened. " + "Please report this bug and attach logs gathered " + "from the 'Debug' window in the Help menu.")); + /* TODO: support more errors */ default: return NULL; |