From 14aa169551ed52f94bd04e4c06ea9a86a7fbf298 Mon Sep 17 00:00:00 2001 From: Srinivasa Ragavan Date: Thu, 15 Dec 2005 12:50:24 +0000 Subject: Commited fix to remove markup from translation and added few notes to 2005-12-15 Srinivasa Ragavan * Commited fix to remove markup from translation and added few notes to translaters, on what will be displayed. svn path=/trunk/; revision=30783 --- calendar/gui/e-calendar-view.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'calendar/gui') diff --git a/calendar/gui/e-calendar-view.c b/calendar/gui/e-calendar-view.c index 16e1fba33c..c529729444 100644 --- a/calendar/gui/e-calendar-view.c +++ b/calendar/gui/e-calendar-view.c @@ -1901,6 +1901,14 @@ get_label (struct icaltimetype *tt) return g_strdup (buffer); } +/* + * It is expected to show the tooltips in this below format + * + * SUBJECT OF THE MEETING + * Organiser: NameOfTheUser + * Location: PlaceOfTheMeeting + * Time : DateAndTime (xx Minutes) + */ gboolean e_calendar_view_get_tooltips (ECalendarViewEventData *data) @@ -1928,7 +1936,7 @@ e_calendar_view_get_tooltips (ECalendarViewEventData *data) box = gtk_vbox_new (FALSE, 0); str = icalcomponent_get_summary (pevent->comp_data->icalcomp); - tmp = g_strdup_printf (_("%s"), str); + tmp = g_strdup_printf ("%s", str); label = gtk_label_new (NULL); gtk_label_set_line_wrap ((GtkLabel *)label, TRUE); gtk_label_set_markup ((GtkLabel *)label, tmp); -- cgit v1.2.3