aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--calendar/ChangeLog7
-rw-r--r--calendar/gui/e-calendar-view.c10
2 files changed, 16 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index e51f85d5e1..b209fb8189 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,10 @@
+2005-12-15 Srinivasa Ragavan <sragavan@novell.com>
+
+ reviewed by: <delete if not using a buddy>
+
+ * gui/e-calendar-view.c: (e_calendar_view_get_tooltips): Removed
+ markup from translatable strings.
+
2005-12-15 Chenthill Palanisamy <pchenthill@novell.com>
Fixes #324058
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
+ *
+ * <B>SUBJECT OF THE MEETING</B>
+ * Organiser: NameOfTheUser<email@ofuser.com>
+ * 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 (_("<b>%s</b>"), str);
+ tmp = g_strdup_printf ("<b>%s</b>", str);
label = gtk_label_new (NULL);
gtk_label_set_line_wrap ((GtkLabel *)label, TRUE);
gtk_label_set_markup ((GtkLabel *)label, tmp);