aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-local-storage.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/e-local-storage.c')
-rw-r--r--shell/e-local-storage.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/shell/e-local-storage.c b/shell/e-local-storage.c
index 854fb35700..6d83cfaaf6 100644
--- a/shell/e-local-storage.c
+++ b/shell/e-local-storage.c
@@ -47,6 +47,7 @@
#include <gtk/gtksignal.h>
#include <libgnome/gnome-defs.h>
+#include <libgnome/gnome-i18n.h>
#include <libgnome/gnome-util.h>
#include <gal/util/e-util.h>
#include "e-util/e-path.h"
@@ -546,6 +547,12 @@ impl_get_name (EStorage *storage)
return E_LOCAL_STORAGE_NAME;
}
+static const char *
+impl_get_display_name (EStorage *storage)
+{
+ return _("Local Folders");
+}
+
/* Creating folders. */
@@ -900,6 +907,7 @@ class_init (ELocalStorageClass *class)
object_class->destroy = impl_destroy;
storage_class->get_name = impl_get_name;
+ storage_class->get_display_name = impl_get_display_name;
storage_class->async_create_folder = impl_async_create_folder;
storage_class->async_remove_folder = impl_async_remove_folder;
storage_class->async_xfer_folder = impl_async_xfer_folder;