diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2008-10-17 11:48:03 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-10-17 11:48:03 +0800 |
commit | 54b80a7271e8ce1b2f3ccc68bb553940a24b80e2 (patch) | |
tree | 74dd75a7dca547164ff4be88c07d407517663105 /calendar | |
parent | 79aa45cfed7e87150de85869795ef0dd3be06db0 (diff) | |
download | gsoc2013-evolution-54b80a7271e8ce1b2f3ccc68bb553940a24b80e2.tar.gz gsoc2013-evolution-54b80a7271e8ce1b2f3ccc68bb553940a24b80e2.tar.zst gsoc2013-evolution-54b80a7271e8ce1b2f3ccc68bb553940a24b80e2.zip |
Get the mail folder tree compiling, though I'm not yet sure why it's not
showing anything. Probably something stupid. Also enabled the composer.
svn path=/branches/kill-bonobo/; revision=36623
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/modules/e-cal-shell-view.c | 4 | ||||
-rw-r--r-- | calendar/modules/e-memo-shell-view.c | 2 | ||||
-rw-r--r-- | calendar/modules/e-task-shell-view.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/calendar/modules/e-cal-shell-view.c b/calendar/modules/e-cal-shell-view.c index 353658474b..4e966024bd 100644 --- a/calendar/modules/e-cal-shell-view.c +++ b/calendar/modules/e-cal-shell-view.c @@ -185,8 +185,8 @@ cal_shell_view_class_init (ECalShellViewClass *class, object_class->constructed = cal_shell_view_constructed; shell_view_class = E_SHELL_VIEW_CLASS (class); - shell_view_class->label = N_("Cals"); - shell_view_class->icon_name = "evolution-cals"; + shell_view_class->label = _("Calendar"); + shell_view_class->icon_name = "evolution-calendar"; shell_view_class->ui_definition = "evolution-calendars.ui"; shell_view_class->search_options = "/calendar-search-options"; shell_view_class->search_rules = "caltypes.xml"; diff --git a/calendar/modules/e-memo-shell-view.c b/calendar/modules/e-memo-shell-view.c index 72427107d3..a618c307e9 100644 --- a/calendar/modules/e-memo-shell-view.c +++ b/calendar/modules/e-memo-shell-view.c @@ -195,7 +195,7 @@ memo_shell_view_class_init (EMemoShellViewClass *class, object_class->constructed = memo_shell_view_constructed; shell_view_class = E_SHELL_VIEW_CLASS (class); - shell_view_class->label = N_("Memos"); + shell_view_class->label = _("Memos"); shell_view_class->icon_name = "evolution-memos"; shell_view_class->ui_definition = "evolution-memos.ui"; shell_view_class->search_options = "/memo-search-options"; diff --git a/calendar/modules/e-task-shell-view.c b/calendar/modules/e-task-shell-view.c index 9fc0643a14..3183323901 100644 --- a/calendar/modules/e-task-shell-view.c +++ b/calendar/modules/e-task-shell-view.c @@ -230,7 +230,7 @@ task_shell_view_class_init (ETaskShellViewClass *class, object_class->constructed = task_shell_view_constructed; shell_view_class = E_SHELL_VIEW_CLASS (class); - shell_view_class->label = N_("Tasks"); + shell_view_class->label = _("Tasks"); shell_view_class->icon_name = "evolution-tasks"; shell_view_class->ui_definition = "evolution-tasks.ui"; shell_view_class->search_options = "/task-search-options"; |