aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorArvind_evo <sa.phoenix@gmail.com>2006-06-27 21:32:32 +0800
committerAndre Klapper <aklapper@src.gnome.org>2006-06-27 21:32:32 +0800
commitaa16daa845ff4c79f9a7ce729509b7dad2402337 (patch)
treeb7ebd04ff721fb342ea74bc347f56e4244f51479 /mail
parent5137c4537114e00ef1efa45803ae9909c25f35df (diff)
downloadgsoc2013-evolution-aa16daa845ff4c79f9a7ce729509b7dad2402337.tar
gsoc2013-evolution-aa16daa845ff4c79f9a7ce729509b7dad2402337.tar.gz
gsoc2013-evolution-aa16daa845ff4c79f9a7ce729509b7dad2402337.tar.bz2
gsoc2013-evolution-aa16daa845ff4c79f9a7ce729509b7dad2402337.tar.lz
gsoc2013-evolution-aa16daa845ff4c79f9a7ce729509b7dad2402337.tar.xz
gsoc2013-evolution-aa16daa845ff4c79f9a7ce729509b7dad2402337.tar.zst
gsoc2013-evolution-aa16daa845ff4c79f9a7ce729509b7dad2402337.zip
Fix for bug#260354 comment 35: set the window title to reflect the
2006-06-27 Arvind_evo <sa.phoenix@gmail.com> Fix for bug#260354 comment 35: * mail-component.c: set the window title to reflect the localized folder names svn path=/trunk/; revision=32198
Diffstat (limited to 'mail')
-rw-r--r--mail/ChangeLog6
-rw-r--r--mail/mail-component.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index dcdeffef04..edd08429f9 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,9 @@
+2006-06-27 Arvind_evo <sa.phoenix@gmail.com>
+
+ Fix for bug#260354 comment 35:
+ * mail-component.c: set the window title to reflect the
+ localized folder names
+
2006-06-21 Srinivasa Ragavan <sragavan@novell.com>
** Fix for bug #344338
diff --git a/mail/mail-component.c b/mail/mail-component.c
index 9f48497891..43e469b78b 100644
--- a/mail/mail-component.c
+++ b/mail/mail-component.c
@@ -568,7 +568,7 @@ view_changed(EMFolderView *emfv, EComponentView *component_view)
else
e_info_label_set_info(el, name, tmp->str);
- title = g_strdup_printf("%s (%s)", name, tmp->str);
+ title = g_strdup_printf("%s (%s)", _(name), tmp->str);
e_component_view_set_title(component_view, title);
g_free(title);