diff options
author | Emilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk> | 2011-03-10 23:12:15 +0800 |
---|---|---|
committer | Emilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk> | 2011-06-09 17:20:05 +0800 |
commit | 9be16f5be776b52b54f6fc9b4f8bccb167177162 (patch) | |
tree | c41f800bdf2e62ba6f7bd53162711adf85800dab | |
parent | 2906ba60cc084087fae19ee7060a661686f11ab6 (diff) | |
download | gsoc2013-empathy-9be16f5be776b52b54f6fc9b4f8bccb167177162.tar gsoc2013-empathy-9be16f5be776b52b54f6fc9b4f8bccb167177162.tar.gz gsoc2013-empathy-9be16f5be776b52b54f6fc9b4f8bccb167177162.tar.bz2 gsoc2013-empathy-9be16f5be776b52b54f6fc9b4f8bccb167177162.tar.lz gsoc2013-empathy-9be16f5be776b52b54f6fc9b4f8bccb167177162.tar.xz gsoc2013-empathy-9be16f5be776b52b54f6fc9b4f8bccb167177162.tar.zst gsoc2013-empathy-9be16f5be776b52b54f6fc9b4f8bccb167177162.zip |
Check for TP_ERROR_EMERGENCY_CALLS_NOT_SUPPORTED when a call fails
-rw-r--r-- | libempathy-gtk/empathy-call-utils.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-call-utils.c b/libempathy-gtk/empathy-call-utils.c index 2c7d6d18b..425cda5d7 100644 --- a/libempathy-gtk/empathy-call-utils.c +++ b/libempathy-gtk/empathy-call-utils.c @@ -51,6 +51,8 @@ get_error_display_message (GError *error) return _("The specified contact is offline"); case TP_ERROR_INVALID_HANDLE: return _("The specified contact is not valid"); + case TP_ERROR_EMERGENCY_CALLS_NOT_SUPPORTED: + return _("Emergency calls are not supported on this protocol"); } return _("There was an error starting the call"); |