From d362be429cf05a0e7aaa0582d55dbd97c4616256 Mon Sep 17 00:00:00 2001 From: Not Zed Date: Fri, 24 Sep 2004 04:23:29 +0000 Subject: ** See bug #65329. 2004-09-20 Not Zed ** See bug #65329. * em-folder-tree-model.c (emft_is_special_local_folder): added helper for finding local folders for translation. (em_folder_tree_model_set_folder_info): translate the special local folder names. * mail-component.c: mark standard folder names for translation. svn path=/trunk/; revision=27359 --- mail/mail-component.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'mail/mail-component.c') diff --git a/mail/mail-component.c b/mail/mail-component.c index 4ac09c0ce3..6bd8c9d123 100644 --- a/mail/mail-component.c +++ b/mail/mail-component.c @@ -132,10 +132,11 @@ static struct { char *uri; CamelFolder *folder; } mc_default_folders[] = { - { "Inbox", }, - { "Drafts", }, - { "Outbox", }, - { "Sent", }, + /* translators: standard local mailbox names */ + { N_("Inbox"), }, + { N_("Drafts"), }, + { N_("Outbox"), }, + { N_("Sent"), }, { "Inbox", }, /* 'always local' inbox */ }; -- cgit