aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-vee-store.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-04-27 16:23:55 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-04-27 16:23:55 +0800
commit60d23895f74a901e27a8118f9d97186d5e6a60c1 (patch)
treec5ad1a1b543895eacfd4901def60484940428435 /camel/camel-vee-store.c
parent81d3fd68b3d62326b88d59fa99f61655ab14cd21 (diff)
downloadgsoc2013-evolution-60d23895f74a901e27a8118f9d97186d5e6a60c1.tar
gsoc2013-evolution-60d23895f74a901e27a8118f9d97186d5e6a60c1.tar.gz
gsoc2013-evolution-60d23895f74a901e27a8118f9d97186d5e6a60c1.tar.bz2
gsoc2013-evolution-60d23895f74a901e27a8118f9d97186d5e6a60c1.tar.lz
gsoc2013-evolution-60d23895f74a901e27a8118f9d97186d5e6a60c1.tar.xz
gsoc2013-evolution-60d23895f74a901e27a8118f9d97186d5e6a60c1.tar.zst
gsoc2013-evolution-60d23895f74a901e27a8118f9d97186d5e6a60c1.zip
** See bug #57659.
2004-04-27 Not Zed <NotZed@Ximian.com> ** See bug #57659. * camel-vee-store.c (vee_get_folder_info): translate Unmatched in the folder display name. * camel-store.c (add_special_info): dont translate full_name or path, only do that for name. svn path=/trunk/; revision=25626
Diffstat (limited to 'camel/camel-vee-store.c')
-rw-r--r--camel/camel-vee-store.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-vee-store.c b/camel/camel-vee-store.c
index c25f252af4..10321bac00 100644
--- a/camel/camel-vee-store.c
+++ b/camel/camel-vee-store.c
@@ -326,7 +326,7 @@ vee_get_folder_info(CamelStore *store, const char *top, guint32 flags, CamelExce
camel_url_free(url);
/*info->url = g_strdup_printf("vfolder:%s#%s", ((CamelService *)store)->url->path, CAMEL_UNMATCHED_NAME);*/
info->full_name = g_strdup(CAMEL_UNMATCHED_NAME);
- info->name = g_strdup(CAMEL_UNMATCHED_NAME);
+ info->name = g_strdup(_("Unmatched"));
info->unread = -1;
info->flags = CAMEL_FOLDER_NOCHILDREN|CAMEL_FOLDER_NOINFERIORS|CAMEL_FOLDER_SYSTEM|CAMEL_FOLDER_VIRTUAL;
camel_folder_info_build_path(info, '/');