diff options
author | Jeffrey Stedfast <fejj@novell.com> | 2004-10-23 03:33:52 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-10-23 03:33:52 +0800 |
commit | 85cd845179f02502d981b7db0d7c1abd52956a1e (patch) | |
tree | 7384f6deeee1761bda5037d1a5de3f812011eec3 | |
parent | ccb63117919e7a68b7614e4d79b5301092a4c27c (diff) | |
download | gsoc2013-evolution-85cd845179f02502d981b7db0d7c1abd52956a1e.tar.gz gsoc2013-evolution-85cd845179f02502d981b7db0d7c1abd52956a1e.tar.zst gsoc2013-evolution-85cd845179f02502d981b7db0d7c1abd52956a1e.zip |
Give the Rename item a different path than the Delete item.
2004-10-22 Jeffrey Stedfast <fejj@novell.com>
* em-folder-tree.c: Give the Rename item a different path than the
Delete item.
svn path=/trunk/; revision=27702
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/em-folder-tree.c | 2 | ||||
-rw-r--r-- | mail/mail-errors.xml.h | 2 |
3 files changed, 8 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 75b92d6230..71059a35b7 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2004-10-22 Jeffrey Stedfast <fejj@novell.com> + + * em-folder-tree.c: Give the Rename item a different path than the + Delete item. + 2004-10-22 Not Zed <NotZed@Ximian.com> * em-event.c (eme_target_free): duh, they're camel not gobjects. diff --git a/mail/em-folder-tree.c b/mail/em-folder-tree.c index 3d187abcaa..172423d626 100644 --- a/mail/em-folder-tree.c +++ b/mail/em-folder-tree.c @@ -2740,7 +2740,7 @@ static EPopupItem emft_popup_items[] = { { E_POPUP_ITEM, "20.emc.00", N_("_New Folder..."), emft_popup_new_folder, NULL, "stock_folder", 0, EM_POPUP_FOLDER_INFERIORS }, /* FIXME: need to disable for undeletable folders */ { E_POPUP_ITEM, "20.emc.01", N_("_Delete"), emft_popup_delete_folder, NULL, "stock_delete", 0, EM_POPUP_FOLDER_FOLDER|EM_POPUP_FOLDER_DELETE }, - { E_POPUP_ITEM, "20.emc.01", N_("_Rename..."), emft_popup_rename_folder, NULL, NULL, 0, EM_POPUP_FOLDER_FOLDER|EM_POPUP_FOLDER_DELETE }, + { E_POPUP_ITEM, "20.emc.02", N_("_Rename..."), emft_popup_rename_folder, NULL, NULL, 0, EM_POPUP_FOLDER_FOLDER|EM_POPUP_FOLDER_DELETE }, { E_POPUP_BAR, "80.emc" }, { E_POPUP_ITEM, "80.emc.00", N_("_Properties"), emft_popup_properties, NULL, "stock_folder-properties", 0, EM_POPUP_FOLDER_FOLDER|EM_POPUP_FOLDER_SELECT } diff --git a/mail/mail-errors.xml.h b/mail/mail-errors.xml.h index 25ac53aeba..9994212fba 100644 --- a/mail/mail-errors.xml.h +++ b/mail/mail-errors.xml.h @@ -236,6 +236,8 @@ char *s = N_("Unable to read license file."); char *s = N_("Cannot read the license file \"{0}\", due to an\n" " installation problem. You will not be able to use this provider until\n" " you can accept its license."); +/* mail:checking-service title */ +char *s = N_("Querying server"); /* mail:checking-service primary */ char *s = N_("Please wait."); /* mail:checking-service secondary */ |