aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-component.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-09-24 12:23:29 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-09-24 12:23:29 +0800
commitd362be429cf05a0e7aaa0582d55dbd97c4616256 (patch)
tree734c86a9b728163ac4bde7fede92e6789068245b /mail/mail-component.c
parent6ce4413006e2ebd82c9e03d90bfa707c2ed371ee (diff)
downloadgsoc2013-evolution-d362be429cf05a0e7aaa0582d55dbd97c4616256.tar
gsoc2013-evolution-d362be429cf05a0e7aaa0582d55dbd97c4616256.tar.gz
gsoc2013-evolution-d362be429cf05a0e7aaa0582d55dbd97c4616256.tar.bz2
gsoc2013-evolution-d362be429cf05a0e7aaa0582d55dbd97c4616256.tar.lz
gsoc2013-evolution-d362be429cf05a0e7aaa0582d55dbd97c4616256.tar.xz
gsoc2013-evolution-d362be429cf05a0e7aaa0582d55dbd97c4616256.tar.zst
gsoc2013-evolution-d362be429cf05a0e7aaa0582d55dbd97c4616256.zip
** See bug #65329.
2004-09-20 Not Zed <NotZed@Ximian.com> ** 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
Diffstat (limited to 'mail/mail-component.c')
-rw-r--r--mail/mail-component.c9
1 files changed, 5 insertions, 4 deletions
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 */
};