diff options
Diffstat (limited to 'calendar/gui/print.c')
-rw-r--r-- | calendar/gui/print.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/calendar/gui/print.c b/calendar/gui/print.c index 717c9d2110..3930949269 100644 --- a/calendar/gui/print.c +++ b/calendar/gui/print.c @@ -2302,11 +2302,13 @@ print_comp_item (GnomePrintContext *pc, ECalComponent *comp, ECal *client, vtype = e_cal_component_get_vtype (comp); - /* We should only be asked to print VEVENTs or VTODOs. */ + /* We should only be asked to print VEVENTs, VTODOs, or VJOURNALs. */ if (vtype == E_CAL_COMPONENT_EVENT) title = _("Appointment"); else if (vtype == E_CAL_COMPONENT_TODO) title = _("Task"); + else if (vtype == E_CAL_COMPONENT_JOURNAL) + title = _("Memo"); else return; |