aboutsummaryrefslogtreecommitdiffstats
path: root/src/empathy-call-window.c
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2009-11-13 19:46:40 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2009-11-16 19:58:25 +0800
commitff55f4aeee822b9533668ecdee722b4e5f6f2d89 (patch)
tree6330ee4826bf07401bf3220fecfb9184c7516f77 /src/empathy-call-window.c
parent8512bd90845bb5eace68704c65203238587500f5 (diff)
downloadgsoc2013-empathy-ff55f4aeee822b9533668ecdee722b4e5f6f2d89.tar
gsoc2013-empathy-ff55f4aeee822b9533668ecdee722b4e5f6f2d89.tar.gz
gsoc2013-empathy-ff55f4aeee822b9533668ecdee722b4e5f6f2d89.tar.bz2
gsoc2013-empathy-ff55f4aeee822b9533668ecdee722b4e5f6f2d89.tar.lz
gsoc2013-empathy-ff55f4aeee822b9533668ecdee722b4e5f6f2d89.tar.xz
gsoc2013-empathy-ff55f4aeee822b9533668ecdee722b4e5f6f2d89.tar.zst
gsoc2013-empathy-ff55f4aeee822b9533668ecdee722b4e5f6f2d89.zip
rephrase the TP_MEDIA_STREAM_ERROR_NO_CODECS error
Diffstat (limited to 'src/empathy-call-window.c')
-rw-r--r--src/empathy-call-window.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c
index f5595edd5..6c8a7ccaf 100644
--- a/src/empathy-call-window.c
+++ b/src/empathy-call-window.c
@@ -1572,9 +1572,11 @@ media_stream_error_to_txt (EmpathyCallWindow *self,
case TP_MEDIA_STREAM_ERROR_NO_CODECS:
if (audio)
- return g_strdup (_("Your computer doesn't support any audio format"));
+ return g_strdup (_("The audio formats necessary for this call "
+ "are not installed on your computer"));
else
- return g_strdup (_("Your computer doesn't support any video format"));
+ return g_strdup (_("The video formats necessary for this call "
+ "are not installed on your computer"));
case TP_MEDIA_STREAM_ERROR_INVALID_CM_BEHAVIOR:
cm = empathy_tp_call_get_connection_manager (call);