aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui
diff options
context:
space:
mode:
authorSrinivasa Ragavan <sragavan@novell.com>2005-12-15 20:50:24 +0800
committerSrinivasa Ragavan <sragavan@src.gnome.org>2005-12-15 20:50:24 +0800
commit14aa169551ed52f94bd04e4c06ea9a86a7fbf298 (patch)
tree0254c821499265415ecce7a2addb55bfd7e01956 /calendar/gui
parent8757f8253d34267c81067d8b50b9d8a0b17bd32b (diff)
downloadgsoc2013-evolution-14aa169551ed52f94bd04e4c06ea9a86a7fbf298.tar
gsoc2013-evolution-14aa169551ed52f94bd04e4c06ea9a86a7fbf298.tar.gz
gsoc2013-evolution-14aa169551ed52f94bd04e4c06ea9a86a7fbf298.tar.bz2
gsoc2013-evolution-14aa169551ed52f94bd04e4c06ea9a86a7fbf298.tar.lz
gsoc2013-evolution-14aa169551ed52f94bd04e4c06ea9a86a7fbf298.tar.xz
gsoc2013-evolution-14aa169551ed52f94bd04e4c06ea9a86a7fbf298.tar.zst
gsoc2013-evolution-14aa169551ed52f94bd04e4c06ea9a86a7fbf298.zip
Commited fix to remove markup from translation and added few notes to
2005-12-15 Srinivasa Ragavan <sragavan@novell.com> * Commited fix to remove markup from translation and added few notes to translaters, on what will be displayed. svn path=/trunk/; revision=30783
Diffstat (limited to 'calendar/gui')
-rw-r--r--calendar/gui/e-calendar-view.c10
1 files changed, 9 insertions, 1 deletions
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);