X-Git-Url: http://git.maemo.org/git/?p=modest;a=blobdiff_plain;f=src%2Fmodest-local-folder-info.c;h=c818cca40f22d6473d2533ca19642beac15c24f6;hp=60bf66883401c0d5d4aa3e6f139878b7bfeece89;hb=e45958deaf9701399c552ea0d84c2447efacd4ca;hpb=07537ed7ca26f7512195af5dd6bd31b41cc0589a diff --git a/src/modest-local-folder-info.c b/src/modest-local-folder-info.c index 60bf668..c818cca 100644 --- a/src/modest-local-folder-info.c +++ b/src/modest-local-folder-info.c @@ -41,8 +41,6 @@ typedef struct { const ModestLocalFolder ModestLocalFolderMap[] = { { TNY_FOLDER_TYPE_UNKNOWN, "", N_("")}, { TNY_FOLDER_TYPE_NORMAL, "", N_("")}, - /* There is no special Inbox folder for local accounts */ -/* { TNY_FOLDER_TYPE_INBOX, "inbox", N_("mcen_me_folder_inbox")}, */ { TNY_FOLDER_TYPE_OUTBOX, "outbox", N_("mcen_me_folder_outbox")}, { TNY_FOLDER_TYPE_TRASH, "trash", N_("Trash")}, { TNY_FOLDER_TYPE_JUNK, "junk", N_("Junk")}, @@ -50,11 +48,7 @@ const ModestLocalFolder ModestLocalFolderMap[] = { { TNY_FOLDER_TYPE_ROOT, "", N_("")}, { TNY_FOLDER_TYPE_NOTES, "notes", N_("Notes")}, { TNY_FOLDER_TYPE_DRAFTS, "drafts", N_("mcen_me_folder_drafts")}, -/* TODO: Do we want these? If so, they need a type ID: - * { TNY_FOLDER_TYPE_OUTBOX, "contacts", N_("Contacts")}, - { TNY_FOLDER_TYPE_OUTBOX, "calendar", N_("Calendar")}, -*/ - { TNY_FOLDER_TYPE_ARCHIVE, "archive", N_("Archive")} + { TNY_FOLDER_TYPE_ARCHIVE, "archive", N_("mcen_me_folder_archive")} }; @@ -114,7 +108,8 @@ modest_local_folder_info_get_maildir_path (const gchar* location_filepath) NULL); } -gchar *modest_per_account_local_outbox_folder_info_get_maildir_path (const gchar* account_name) +gchar* +modest_per_account_local_outbox_folder_info_get_maildir_path (const gchar* account_name) { /* This directory should contain an "outbox" child directory: */ return g_build_filename (g_get_home_dir(), @@ -124,7 +119,8 @@ gchar *modest_per_account_local_outbox_folder_info_get_maildir_path (const gchar NULL); } -gchar *modest_per_account_local_outbox_folder_info_get_maildir_path_to_outbox_folder (const gchar* account_name) +gchar* +modest_per_account_local_outbox_folder_info_get_maildir_path_to_outbox_folder (const gchar* account_name) { gchar *path_to_account_folder = modest_per_account_local_outbox_folder_info_get_maildir_path(account_name);