diff options
-rw-r--r-- | src/empathy-accounts-dialog.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/empathy-accounts-dialog.c b/src/empathy-accounts-dialog.c index b0bc79d6a..016e8b6c3 100644 --- a/src/empathy-accounts-dialog.c +++ b/src/empathy-accounts-dialog.c @@ -217,6 +217,9 @@ accounts_dialog_update_status_infobar (EmpathyAccountsDialog *dialog, case TP_CONNECTION_STATUS_REASON_NONE_SPECIFIED: message = _("Disconnected - No error specified"); break; + case TP_CONNECTION_STATUS_REASON_REQUESTED: + message = _("Disconnected - Requested"); + break; case TP_CONNECTION_STATUS_REASON_NETWORK_ERROR: message = _("Disconnected - Network error"); break; |