diff options
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/mail-vfolder.c | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 9a696d5b7f..ccbf947337 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2001-08-31 Zbigniew Chyla <cyba@gnome.pl> + + * mail-vfolder.c (vfolder_create_storage): + Marked string for translation (with U_). + 2001-08-28 Zbigniew Chyla <cyba@gnome.pl> * message-list.c diff --git a/mail/mail-vfolder.c b/mail/mail-vfolder.c index 8240b0008c..6b141802e3 100644 --- a/mail/mail-vfolder.c +++ b/mail/mail-vfolder.c @@ -32,6 +32,8 @@ #include "filter/vfolder-context.h" #include "filter/vfolder-editor.h" +#include "e-util/e-unicode-i18n.h" + #define d(x) x struct _vfolder_info { @@ -275,7 +277,7 @@ vfolder_create_storage (EvolutionShellComponent *shell_component) corba_shell = bonobo_object_corba_objref (BONOBO_OBJECT (global_shell_client)); - storage = evolution_storage_new (_("VFolders"), NULL, NULL); + storage = evolution_storage_new (U_("VFolders"), NULL, NULL); if (evolution_storage_register_on_shell (storage, corba_shell) != EVOLUTION_STORAGE_OK) { g_warning ("Cannot register storage"); return; |