diff options
author | Dan Winship <danw@src.gnome.org> | 2001-10-15 02:21:40 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2001-10-15 02:21:40 +0800 |
commit | c425788e1cb35596053a1d9f82ce5c74eae26818 (patch) | |
tree | 79920ed75a40c1372e052c0f1248ce2de4c2bb50 /shell/e-storage.c | |
parent | f618c258e13386998997886fd7fcd20dc4ea2276 (diff) | |
download | gsoc2013-evolution-c425788e1cb35596053a1d9f82ce5c74eae26818.tar.gz gsoc2013-evolution-c425788e1cb35596053a1d9f82ce5c74eae26818.tar.zst gsoc2013-evolution-c425788e1cb35596053a1d9f82ce5c74eae26818.zip |
Add two missing codes.
* e-corba-storage.c (async_folder_cb):
* e-storage.c (e_storage_result_to_string): Add two missing codes.
svn path=/trunk/; revision=13670
Diffstat (limited to 'shell/e-storage.c')
-rw-r--r-- | shell/e-storage.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/shell/e-storage.c b/shell/e-storage.c index 0dc4d9a2f4..ec6ea67d6a 100644 --- a/shell/e-storage.c +++ b/shell/e-storage.c @@ -507,6 +507,8 @@ e_storage_result_to_string (EStorageResult result) return _("I/O error"); case E_STORAGE_NOSPACE: return _("Not enough space to create the folder"); + case E_STORAGE_NOTEMPTY: + return _("The folder is not empty"); case E_STORAGE_NOTFOUND: return _("The specified folder was not found"); case E_STORAGE_NOTIMPLEMENTED: @@ -521,6 +523,8 @@ e_storage_result_to_string (EStorageResult result) return _("The specified folder cannot be modified or removed"); case E_STORAGE_CANTMOVETODESCENDANT: return _("Cannot make a folder a child of one of its descendants"); + case E_STORAGE_INVALIDNAME: + return _("Cannot create a folder with that name"); default: return _("Unknown error"); } |