diff options
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/gui/itip-utils.c | 29 |
2 files changed, 21 insertions, 13 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 50392c0a88..953fa4212a 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +2001-12-05 Zbigniew Chyla <cyba@gnome.pl> + + * gui/itip-utils.c (comp_subject, comp_description): + Marked strings for translation. + 2001-12-03 Damon Chaplin <damon@ximian.com> * gui/e-meeting-model.c: diff --git a/calendar/gui/itip-utils.c b/calendar/gui/itip-utils.c index 15d7686baf..8eed74f42b 100644 --- a/calendar/gui/itip-utils.c +++ b/calendar/gui/itip-utils.c @@ -310,15 +310,15 @@ comp_subject (CalComponent *comp) switch (cal_component_get_vtype (comp)) { case CAL_COMPONENT_EVENT: - return CORBA_string_dup ("Event information"); + return CORBA_string_dup (U_("Event information")); case CAL_COMPONENT_TODO: - return CORBA_string_dup ("Task information"); + return CORBA_string_dup (U_("Task information")); case CAL_COMPONENT_JOURNAL: - return CORBA_string_dup ("Journal information"); + return CORBA_string_dup (U_("Journal information")); case CAL_COMPONENT_FREEBUSY: - return CORBA_string_dup ("Free/Busy information"); + return CORBA_string_dup (U_("Free/Busy information")); default: - return CORBA_string_dup ("Calendar information"); + return CORBA_string_dup (U_("Calendar information")); } } @@ -352,11 +352,11 @@ comp_description (CalComponent *comp) switch (cal_component_get_vtype (comp)) { case CAL_COMPONENT_EVENT: - return CORBA_string_dup ("Event information"); + return CORBA_string_dup (U_("Event information")); case CAL_COMPONENT_TODO: - return CORBA_string_dup ("Task information"); + return CORBA_string_dup (U_("Task information")); case CAL_COMPONENT_JOURNAL: - return CORBA_string_dup ("Journal information"); + return CORBA_string_dup (U_("Journal information")); case CAL_COMPONENT_FREEBUSY: cal_component_get_dtstart (comp, &dt); if (dt.value) { @@ -366,17 +366,20 @@ comp_description (CalComponent *comp) end = get_label (dt.value); } if (start != NULL && end != NULL) { - char *tmp = g_strdup_printf ("Free/Busy information (%s to %s)", start, end); - description = CORBA_string_dup (tmp); - g_free (tmp); + char *tmp, *tmp_utf; + tmp = g_strdup_printf (_("Free/Busy information (%s to %s)"), start, end); + tmp_utf = e_utf8_from_locale_string (tmp); + description = CORBA_string_dup (tmp_utf); + g_free (tmp_utf); + g_free (tmp); } else { - description = CORBA_string_dup ("Free/Busy information"); + description = CORBA_string_dup (U_("Free/Busy information")); } g_free (start); g_free (end); return description; default: - return CORBA_string_dup ("iCalendar information"); + return CORBA_string_dup (U_("iCalendar information")); } } |