diff options
author | Arvind_evo <sa.phoenix@gmail.com> | 2006-06-27 21:32:32 +0800 |
---|---|---|
committer | Andre Klapper <aklapper@src.gnome.org> | 2006-06-27 21:32:32 +0800 |
commit | aa16daa845ff4c79f9a7ce729509b7dad2402337 (patch) | |
tree | b7ebd04ff721fb342ea74bc347f56e4244f51479 /mail/mail-component.c | |
parent | 5137c4537114e00ef1efa45803ae9909c25f35df (diff) | |
download | gsoc2013-evolution-aa16daa845ff4c79f9a7ce729509b7dad2402337.tar.gz 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/mail-component.c')
-rw-r--r-- | mail/mail-component.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |