diff options
author | Not Zed <NotZed@Ximian.com> | 2004-04-27 16:23:55 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-04-27 16:23:55 +0800 |
commit | 60d23895f74a901e27a8118f9d97186d5e6a60c1 (patch) | |
tree | c5ad1a1b543895eacfd4901def60484940428435 /camel/camel-vee-store.c | |
parent | 81d3fd68b3d62326b88d59fa99f61655ab14cd21 (diff) | |
download | gsoc2013-evolution-60d23895f74a901e27a8118f9d97186d5e6a60c1.tar.gz 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.c | 2 |
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, '/'); |