diff options
author | Chris Toshok <toshok@ximian.com> | 2002-05-21 05:56:58 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2002-05-21 05:56:58 +0800 |
commit | 9b2e9f2b20d848c3bb884f3d7203d1eef72ca8c9 (patch) | |
tree | bbc38d1377e005a67ed2ab902883049f9967490f /addressbook/gui | |
parent | 4939e31d9370d63e673824100c2b62f74a7d2324 (diff) | |
download | gsoc2013-evolution-9b2e9f2b20d848c3bb884f3d7203d1eef72ca8c9.tar gsoc2013-evolution-9b2e9f2b20d848c3bb884f3d7203d1eef72ca8c9.tar.gz gsoc2013-evolution-9b2e9f2b20d848c3bb884f3d7203d1eef72ca8c9.tar.bz2 gsoc2013-evolution-9b2e9f2b20d848c3bb884f3d7203d1eef72ca8c9.tar.lz gsoc2013-evolution-9b2e9f2b20d848c3bb884f3d7203d1eef72ca8c9.tar.xz gsoc2013-evolution-9b2e9f2b20d848c3bb884f3d7203d1eef72ca8c9.tar.zst gsoc2013-evolution-9b2e9f2b20d848c3bb884f3d7203d1eef72ca8c9.zip |
make sure we map status -> string correctly (add missing strings).
2002-05-17 Chris Toshok <toshok@ximian.com>
* gui/widgets/e-addressbook-util.c (e_addressbook_error_dialog):
make sure we map status -> string correctly (add missing strings).
* backend/ebook/e-book-types.h (EBookStatus): add the missing
AUTHENTICATION_REQUIRED status code, to map to the idl response.
* backend/ebook/e-book-listener.c
(e_book_listener_convert_status): make sure we map all idl status
codes to EBookStatus statuses.
svn path=/trunk/; revision=16958
Diffstat (limited to 'addressbook/gui')
-rw-r--r-- | addressbook/gui/widgets/e-addressbook-util.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/addressbook/gui/widgets/e-addressbook-util.c b/addressbook/gui/widgets/e-addressbook-util.c index b1c40bd483..f0f0e8dfe6 100644 --- a/addressbook/gui/widgets/e-addressbook-util.c +++ b/addressbook/gui/widgets/e-addressbook-util.c @@ -40,6 +40,9 @@ e_addressbook_error_dialog (const gchar *msg, EBookStatus status) N_("Card ID already exists"), N_("Protocol not supported"), N_("Cancelled"), + N_("Authentication Failed"), + N_("Authentication Required"), + N_("TLS not Available"), N_("Other error") }; char *error_msg; |