diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2002-09-18 04:52:02 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2002-09-18 04:52:02 +0800 |
commit | 79c77a65590803aaad270da48bf9bb8fbeb9e61c (patch) | |
tree | 88f207be1841f3accbdf0dfa4e8ab292cdd8584a /shell/e-storage.c | |
parent | 266cd02466e71c0b6fe2bdb613d8a7f12f1eaa8b (diff) | |
download | gsoc2013-evolution-79c77a65590803aaad270da48bf9bb8fbeb9e61c.tar.gz gsoc2013-evolution-79c77a65590803aaad270da48bf9bb8fbeb9e61c.tar.zst gsoc2013-evolution-79c77a65590803aaad270da48bf9bb8fbeb9e61c.zip |
Add description for E_STORAGE_NOTONLINE.
* e-storage.c (e_storage_result_to_string): Add description for
E_STORAGE_NOTONLINE.
* e-corba-storage.c
(e_corba_storage_corba_result_to_storage_result): Support
GNOME_Evolution_Storage_NOT_ONLINE (E_STORAGE_NOTONLINE).
* Evolution-Storage.idl: Add NOT_ONLINE to enum Result.
* e-storage.h: Add E_STORAGE_NOTONLINE to EStorageResult enum.
svn path=/trunk/; revision=18097
Diffstat (limited to 'shell/e-storage.c')
-rw-r--r-- | shell/e-storage.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/shell/e-storage.c b/shell/e-storage.c index 8db704883b..df8a21faa1 100644 --- a/shell/e-storage.c +++ b/shell/e-storage.c @@ -512,6 +512,8 @@ e_storage_result_to_string (EStorageResult result) return _("Cannot make a folder a child of one of its descendants"); case E_STORAGE_INVALIDNAME: return _("Cannot create a folder with that name"); + case E_STORAGE_NOTONLINE: + return _("This operation cannot be performed in off-line mode"); default: return _("Unknown error"); } |